:root {
  --bg: #f8f5ef;
  --bg-soft: #f1ece4;
  --surface: #ffffff;

  --text: #292723;
  --text-soft: #6d6961;

  --brand: #a06f57;
  --brand-dark: #704838;
  --brand-light: #eadbd0;

  --border: #dfd9d0;

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1180px;
  --radius: 22px;
}


/* =========================
   RESET
========================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}


/* =========================
   GLOBAL
========================= */

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 110px 0;
}

.section-label,
.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label.light {
  color: #eddcd2;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 1.02;
}

h1 span {
  color: var(--brand);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
}

h3 {
  font-size: 22px;
  line-height: 1.3;
}

p {
  color: var(--text-soft);
}

.section-intro {
  font-size: 21px;
}

.section-heading {
  margin-bottom: 55px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.split-heading p {
  margin-bottom: 10px;
  font-size: 18px;
}

.centered-heading {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 60px;
  text-align: center;
}


/* =========================
   BUTTONS
========================= */

.button,
.header-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.button-primary,
.header-button {
  background: var(--brand-dark);
  color: #fff;
}

.button-primary:hover,
.header-button:hover {
  background: var(--text);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
}

.button-secondary:hover {
  background: #fff;
}

.button-light {
  background: #fff;
  color: var(--brand-dark);
}

.button-light:hover {
  transform: translateY(-2px);
}


/* =========================
   HEADER
========================= */

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(50, 40, 30, 0.08);
  background: rgba(248, 245, 239, 0.94);
}

.header-inner {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

.brand-sub {
  margin-top: 6px;
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--brand);
}

.header-button {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}


/* =========================
   HERO
========================= */

.hero {
  padding: 70px 0 100px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.hero-content {
  padding: 40px 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin-top: 36px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}

.hero-benefits span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--brand);
}

.hero-image {
  position: relative;
}

.hero-image img {
  height: 650px;
  border-radius: 180px 180px 30px 30px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  right: -18px;
  bottom: 28px;

  width: 175px;
  padding: 18px 20px;

  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;

  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 14px 35px rgba(50, 38, 29, 0.12);

  text-align: left;
}

.hero-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 14px;

  background: var(--brand);
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;

  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
}

.hero-card span {
  display: block;

  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
}


/* =========================
   INTRO
========================= */

.intro-section {
  padding-bottom: 70px;
  text-align: center;
}

.intro-section h2 {
  max-width: 720px;
  margin-inline: auto;
}

.intro-section p {
  margin-inline: auto;
}


/* =========================
   BENEFITS
========================= */

.benefits-section {
  padding-top: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.benefit-card {
  padding: 45px 40px;
}

.benefit-card + .benefit-card {
  border-left: 1px solid var(--border);
}

.benefit-number {
  display: block;
  margin-bottom: 30px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.benefit-card p {
  margin-bottom: 0;
}


/* =========================
   WORKSHOPS
========================= */

.workshops-section {
  background: var(--surface);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.workshop-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}

.workshop-image img {
  height: 380px;
  object-fit: cover;
}

.workshop-content {
  padding: 30px;
}

.workshop-content > span {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.workshop-content h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 29px;
}

.workshop-content p {
  margin-bottom: 0;
}

.seasonal-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 28px;
  padding: 45px;
  border-radius: var(--radius);
  background: var(--brand-light);
}

.seasonal-banner h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 32px;
}

.seasonal-banner p {
  margin-bottom: 0;
  align-self: center;
}


/* =========================
   PROCESS
========================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-item {
  padding: 35px 28px;
  border-top: 1px solid var(--border);
}

.process-item > span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.process-item p {
  margin-bottom: 0;
}


/* =========================
   DETAILS
========================= */

.details-section {
  background: var(--bg-soft);
}

.details-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.details-intro {
  position: sticky;
  top: 30px;
}

.text-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--brand-dark);
  font-weight: 700;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 1px solid #d2cbc1;
}

.detail-row:first-child {
  border-top: 1px solid #d2cbc1;
}

.detail-row span {
  color: var(--text-soft);
}

.detail-row strong {
  text-align: right;
}


/* =========================
   FORMATS
========================= */

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.format-grid article {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
}

.format-grid article h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 28px;
}

.format-grid article p {
  margin-bottom: 0;
}


/* =========================
   ABOUT
========================= */

.about-section {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-image img {
  height: 600px;
  border-radius: 30px;
  object-fit: cover;
}

.about-content p {
  font-size: 18px;
}


/* =========================
   CTA
========================= */

.cta-section {
  padding: 115px 0;
  background: var(--brand-dark);
  color: #fff;
}

.cta-inner {
  max-width: 850px;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.cta-inner p {
  max-width: 720px;
  margin: 0 auto 30px;
  color: #e9ddd7;
  font-size: 19px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 75px 0 30px;
  background: #24211e;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-grid p {
  max-width: 320px;
  color: #aaa39b;
}

.footer-grid h3 {
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid > div > a:not(.brand) {
  display: block;
  margin-bottom: 8px;
  color: #c5beb7;
  font-size: 15px;
}

.footer-grid > div > a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #857f79;
  font-size: 13px;
}


/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
  padding: 100px 0 80px;
}

.contact-hero-inner {
  max-width: 900px;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 28px;
}

.contact-hero h1 span {
  display: block;
  color: var(--brand);
}

.contact-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
}


/* CONTACT LAYOUT */

.contact-section {
  padding: 70px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}


/* LEFT SIDE */

.contact-info {
  padding-top: 20px;
}

.contact-info h2 {
  font-size: 46px;
}

.contact-info > p {
  max-width: 480px;
  font-size: 18px;
}

.contact-details {
  margin-top: 45px;
  border-top: 1px solid var(--border);
}

.contact-detail {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-label {
  display: block;
  margin-bottom: 4px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.contact-detail a:hover {
  color: var(--brand);
}


/* WORKSHOP NOTE */

.contact-note {
  margin-top: 35px;
  padding: 28px;
  border-radius: 20px;
  background: var(--brand-light);
}

.contact-note > span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-note strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 28px;
  color: var(--brand-dark);
}

.contact-note p {
  margin: 0;
  font-size: 14px;
}


/* FORM CARD */

.contact-form-wrap {
  padding: 48px;
  border-radius: 26px;
  background: #fff;
  box-shadow:
    0 25px 70px rgba(47, 37, 30, 0.08);
}

.contact-form-heading {
  margin-bottom: 35px;
}

.contact-form-heading h2 {
  margin-bottom: 12px;
  font-size: 40px;
}

.contact-form-heading p {
  margin-bottom: 0;
}


/* FORM */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfaf8;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input,
.form-group select {
  min-height: 52px;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow:
    0 0 0 3px rgba(160, 111, 87, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa49c;
}


/* PRIVACY */

.privacy-check {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-check input {
  margin-top: 4px;
  accent-color: var(--brand-dark);
}

.contact-submit {
  align-self: flex-start;
  min-width: 180px;
  border: 0;
  cursor: pointer;
}


/* HONEYPOT */

.form-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}


/* PHONE CTA */

.contact-bottom {
  padding: 100px 0;
  background: var(--bg-soft);
  text-align: center;
}

.contact-bottom-inner {
  max-width: 800px;
}

.contact-bottom h2 {
  margin-bottom: 20px;
}

.contact-phone-large {
  display: inline-block;
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.contact-phone-large:hover {
  color: var(--brand);
}


/* CONTACT RESPONSIVE */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info > p {
    max-width: none;
  }

}


@media (max-width: 650px) {

  .contact-hero {
    padding: 65px 0 45px;
  }

  .contact-hero p {
    font-size: 17px;
  }

  .contact-section {
    padding: 40px 0 80px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .contact-form-heading h2 {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .contact-bottom {
    padding: 75px 0;
  }

}


/* =========================
   THANK YOU PAGE
========================= */

.thank-you-section {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 100px 0 120px;
}

.thank-you-inner {
  max-width: 780px;
  text-align: center;
}

.thank-you-check {
  display: flex;
  width: 64px;
  height: 64px;
  margin: 0 auto 30px;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--brand-light);

  color: var(--brand-dark);
  font-size: 27px;
  font-weight: 700;
}

.thank-you-inner h1 {
  margin-bottom: 25px;
}

.thank-you-inner h1 span {
  display: block;
  color: var(--brand);
}

.thank-you-lead {
  max-width: 650px;
  margin: 0 auto 40px;
  font-size: 19px;
}

.thank-you-phone {
  max-width: 580px;
  margin: 0 auto 35px;
  padding: 28px 30px;

  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
}

.thank-you-phone span {
  display: block;
  margin-bottom: 6px;

  color: var(--text);
  font-weight: 700;
}

.thank-you-phone p {
  margin-bottom: 8px;
  font-size: 15px;
}

.thank-you-phone a {
  color: var(--brand-dark);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
}

.thank-you-phone a:hover {
  color: var(--brand);
}


@media (max-width: 650px) {

  .thank-you-section {
    min-height: 600px;
    padding: 70px 0 90px;
  }

  .thank-you-lead {
    font-size: 17px;
  }

  .thank-you-phone {
    padding: 24px 18px;
  }

  .thank-you-phone a {
    font-size: 25px;
  }

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 980px) {

  .main-nav {
    display: none;
  }

  .hero-grid,
  .details-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 560px;
  }

  .hero-card {
    right: 20px;
  }

  .benefits-grid,
  .workshop-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card + .benefit-card {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .seasonal-banner {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .details-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 650px) {

  body {
    font-size: 16px;
  }

  .section {
    padding: 80px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .header-button {
    display: none;
  }

  .brand-main {
    font-size: 22px;
  }

  .hero {
    padding-top: 35px;
  }

  .hero-grid {
    gap: 40px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-benefits {
    flex-direction: column;
    gap: 8px;
  }

  .hero-image img {
    height: 440px;
    border-radius: 100px 100px 20px 20px;
  }

  .hero-card {
    right: 12px;
    bottom: 16px;

    width: 155px;
    padding: 15px 17px;
    border-radius: 15px;
  }

  .hero-card strong {
    font-size: 22px;
  }

  .hero-card span {
    font-size: 12px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .detail-row {
    flex-direction: column;
    gap: 4px;
  }

  .detail-row strong {
    text-align: left;
  }

  .seasonal-banner {
    padding: 30px;
  }

  .about-image img {
    height: 450px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}