:root {
  --sage-950: #34392d;
  --sage-900: #464d3b;
  --sage-800: #59604a;
  --sage-700: #6a7159;
  --sage-500: #8f967e;
  --cream: #f5efe5;
  --cream-2: #ebe0cf;
  --paper: #fffaf2;
  --clay: #b77864;
  --clay-dark: #965b49;
  --gold: #c39949;
  --ink: #303128;
  --muted: #6a695f;
  --line: rgba(70, 77, 59, .20);
  --white: #fffdf8;
  --shadow-sm: 0 16px 36px rgba(48, 49, 40, .10);
  --shadow-lg: 0 30px 70px rgba(37, 39, 31, .18);
  --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-2);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

img { display: block; width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p { margin-top: 0; }
h1, h2, h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  font-weight: 600;
}
h2 { font-size: clamp(2.7rem, 5vw, 5rem); letter-spacing: -.035em; }
h3 { font-size: 2rem; }

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

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  border: 2px solid var(--sage-900);
  border-radius: 6px;
}
.skip-link:focus { top: 16px; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--sage-800);
  font-size: .74rem;
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
  font-weight: 700;
}
.eyebrow.clay { color: var(--clay-dark); }
.eyebrow.gold { color: #e4c479; }

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--white);
  background: var(--clay);
  box-shadow: var(--shadow-sm);
}
.button-primary:hover { background: var(--clay-dark); box-shadow: var(--shadow-lg); }
.button-quiet {
  color: var(--sage-950);
  border-color: rgba(70,77,59,.28);
  background: transparent;
}
.button-quiet:hover { background: rgba(255,255,255,.46); }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,239,229,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(38,40,31,.07);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sage-950);
}
.brand img {
  width: 82px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
}
.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 600;
}
.brand small {
  margin-top: 3px;
  color: var(--clay-dark);
  font-size: .62rem;
  letter-spacing: .24em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: var(--sage-950);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--clay-dark); }
.site-nav .nav-cta {
  padding: 12px 17px;
  color: var(--white);
  background: var(--clay);
}
.site-nav .nav-cta:hover { color: var(--white); background: var(--clay-dark); }

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  background: transparent;
}
.menu-button span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--sage-950);
  transition: transform .2s, opacity .2s;
}

/* Hero */
.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 47%) minmax(0, 53%);
  background: var(--cream-2);
}
.hero-copy {
  display: flex;
  align-items: center;
  padding: 78px max(40px, calc((100vw - var(--shell))/2)) 78px max(32px, calc((100vw - var(--shell))/2));
}
.hero-copy-inner { max-width: 610px; }
.hero-logo {
  width: min(440px, 92%);
  margin: 0 0 24px;
  mix-blend-mode: multiply;
}
.hero h1 {
  color: var(--sage-950);
  font-size: clamp(4rem, 7vw, 7rem);
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--clay-dark); font-weight: 500; }
.hero-lead {
  max-width: 600px;
  margin: 28px 0 10px;
  color: #5b5c52;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-plan {
  margin: 0 0 30px;
  color: var(--sage-950);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
  color: var(--sage-800);
  font-size: .82rem;
  font-weight: 600;
}
.hero-facts span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 1px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 720px;
}
.hero-visual > img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Clarity */
.clarity-section { padding: 118px 0 126px; }
.clarity-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start;
}
.clarity-section h2 { color: var(--sage-950); }
.clarity-copy {
  padding-top: 26px;
  color: var(--muted);
  font-size: 1.08rem;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 70px;
}
.benefit {
  padding: 34px;
  background: rgba(255,250,242,.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  padding: 12px;
  border: 1px solid var(--clay);
  border-radius: 50%;
}
.benefit-icon svg {
  fill: none;
  stroke: var(--clay-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit h3 { margin-bottom: 13px; color: var(--sage-950); }
.benefit p { margin-bottom: 0; color: var(--muted); }

/* Services */
.services-section {
  padding: 118px 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 10% 10%, rgba(195,153,73,.13), transparent 26%),
    var(--sage-950);
}
.services-intro {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.services-intro h2 { max-width: 790px; }
.services-intro > p:last-child { color: #d8d1c4; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(245,239,229,.18);
  background: rgba(255,255,255,.055);
  transition: transform .25s, background .25s;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.08);
}
.service-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255,255,255,.32);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
}
.service-icon svg {
  fill: none;
  stroke: #e4c479;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin-bottom: 15px; }
.service-card > p { color: #d5cec1; }
.service-card ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.service-card li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #eee7dc;
  font-size: .9rem;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e4c479;
}
.scope-notice {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold);
  color: #dfd8cb;
  background: rgba(255,255,255,.055);
  font-size: .87rem;
}
.services-section,
.services-section .clarity-copy,
.services-section .service-number,
.services-section .service-card > p,
.services-section .service-card li,
.services-section .scope-notice {
  color: #e3dccf;
}
.services-section .eyebrow {
  color: #e4c479;
}

/* Process */
.process-section { padding: 118px 0; }
.process-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 90px;
}
.process-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}
.process-copy h2 { color: var(--sage-950); }
.process-copy > p { margin: 24px 0; color: var(--muted); }
.text-link {
  color: var(--clay-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}
.text-link span { margin-left: 5px; }
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.step-number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--sage-950);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 700;
}
.steps h3 { margin-bottom: 10px; color: var(--sage-950); }
.steps p { margin-bottom: 0; color: var(--muted); }

/* Instructor */
.instructor-section {
  padding: 120px 0 140px;
  color: var(--cream);
  background: var(--sage-800);
}
.instructor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.instructor-image { position: relative; }
.image-stack {
  position: relative;
  aspect-ratio: 4 / 3;
}
.image-main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-lg);
}
.instructor-copy h2 { margin-bottom: 28px; }
.instructor-copy > p { color: #e3dccf; }
.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 24px;
}
.credential-grid span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  font-size: .84rem;
  font-weight: 600;
}
.small-note { font-size: .86rem; }

/* Mission */
.mission-section {
  padding: 104px 0;
  background: var(--cream-2);
}
.mission-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 90px;
  align-items: center;
}
.mission-heading h2 { color: var(--sage-950); }
.mission-copy { color: var(--muted); font-size: 1.08rem; }
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.values span {
  padding: 10px 12px;
  color: var(--sage-950);
  border-bottom: 2px solid var(--clay);
  background: rgba(245,239,229,.75);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Availability */
.availability-section {
  padding: 92px 0;
  background: var(--cream-2);
}
.availability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.availability-section h2 { color: var(--sage-950); }
.availability-copy { padding-top: 24px; color: var(--muted); }

/* FAQ */
.faq-section {
  padding: 118px 0;
  color: var(--cream);
  background: var(--sage-950);
}
.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}
.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq-list details {
  border-top: 1px solid rgba(255,255,255,.18);
}
.faq-list details:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.faq-list summary {
  position: relative;
  padding: 24px 54px 24px 0;
  list-style: none;
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 8px;
  color: #e4c479;
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform .2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  padding: 0 54px 24px 0;
  color: #d8d1c4;
}

/* Contact */
.contact-section { padding: 118px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 120px;
}
.contact-copy h2 { color: var(--sage-950); }
.contact-copy > p { margin-top: 24px; color: var(--muted); }
.contact-direct {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact-direct span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.contact-direct a {
  color: var(--clay-dark);
  font-weight: 700;
  text-underline-offset: 5px;
}
.inquiry-form {
  padding: 38px;
  background: rgba(255,250,242,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.inquiry-form label > span {
  color: var(--sage-950);
  font-size: .82rem;
  font-weight: 700;
}
input, select, textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(70,77,59,.28);
  border-radius: 2px;
}
input, select { height: 50px; padding: 0 12px; }
textarea { padding: 12px; resize: vertical; }
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .75rem;
}
.turnstile-wrap {
  min-height: 65px;
  margin: 2px 0 20px;
}
.turnstile-wrap .cf-turnstile { max-width: 100%; }
.form-submit[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}
.form-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--sage-800);
  font-size: .82rem;
}
.form-status.is-success { color: #315f3b; }
.form-status.is-error { color: #8a3028; }

/* Footer */
.site-footer {
  padding: 72px 0 26px;
  color: var(--cream);
  background: #30352a;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 60px;
}
.footer-brand img {
  width: 150px;
  mix-blend-mode: screen;
  opacity: .85;
}
.footer-brand p {
  color: #d7d0c4;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
}
.footer-grid h2 {
  margin-bottom: 14px;
  color: #e4c479;
  font-family: "Inter", sans-serif;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-grid a,
.footer-grid span {
  display: block;
  margin: 7px 0;
  color: #e3dccf;
  font-size: .86rem;
}
.legal {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-top: 50px;
  padding-top: 22px;
  color: #aaa79f;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .72rem;
}
.legal p:last-child { max-width: 760px; text-align: right; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 76px 40px; }
  .hero-copy-inner { max-width: 740px; }
  .hero-visual { min-height: 610px; }
  .clarity-grid,
  .services-intro,
  .process-grid,
  .instructor-grid,
  .mission-grid,
  .availability-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .service-grid,
  .benefits { grid-template-columns: 1fr; }
  .process-copy,
  .faq-heading,
  .contact-copy { position: static; }
  .instructor-grid { gap: 80px; }
  .instructor-image { max-width: 760px; }
}

@media (max-width: 780px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 72px; height: 39px; }
  .menu-button {
    display: block;
    position: relative;
    z-index: 102;
  }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 22px 26px;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }
  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }
  .site-nav a { padding: 14px 4px; }
  .site-nav .nav-cta {
    margin-top: 8px;
    padding: 14px;
    text-align: center;
  }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .hero-copy { padding: 64px 24px; }
  .hero h1 { font-size: clamp(3.6rem, 17vw, 5rem); }
  .hero-logo { width: 100%; }
  .hero-visual { min-height: 520px; }
  .hero-note { left: 18px; right: 18px; bottom: 18px; padding: 18px; }
  .concept-label { top: 12px; right: 12px; }

  .clarity-section,
  .services-section,
  .process-section,
  .instructor-section,
  .mission-section,
  .faq-section,
  .contact-section { padding: 82px 0; }

  .benefit,
  .service-card,
  .inquiry-form { padding: 26px; }

  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .legal { flex-direction: column; gap: 12px; }
  .legal p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
