@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Franklin:wght@400;500;600;700&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&display=swap');

:root {
  --ink: #18201a;
  --charcoal: #252c27;
  --forest: #233b2a;
  --forest-deep: #14251a;
  --moss: #48614d;
  --sage: #aab6a5;
  --paper: #f7f4ec;
  --cream: #eee9dc;
  --white: #fffef9;
  --stone: #d7d2c6;
  --copper: #9d7c4c;
  --shadow: 0 22px 60px rgba(20, 37, 26, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 12px; top: -80px; z-index: 9999;
  background: var(--forest-deep); color: white; padding: 10px 14px;
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--moss); font-size: .77rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500; line-height: 1.06; letter-spacing: -.025em;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.4rem, 4.5vw, 4.25rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.28rem); color: #455048; max-width: 680px; }
.muted { color: #5f6962; }
.small { font-size: .88rem; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-tight { padding: 76px 0; }
.section-dark { background: var(--forest-deep); color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.topbar {
  background: var(--forest-deep); color: #e9eee8;
  font-size: .8rem; letter-spacing: .02em;
}
.topbar-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar a { text-decoration: none; font-weight: 600; }

.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(247,244,236,.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35,59,42,.1);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { width: 230px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { text-decoration: none; font-size: .92rem; font-weight: 600; color: #2d382f; position: relative; }
.nav-links a:not(.button)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--forest); transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--stone); border-radius: 999px; background: var(--white); align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { width: 19px; height: 2px; background: var(--forest); position: relative; display: block; transition: .2s; }
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; font-weight: 700; font-size: .91rem;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--white); box-shadow: 0 10px 25px rgba(35,59,42,.22); }
.button-primary:hover { background: #182c1f; }
.button-light { background: var(--white); color: var(--forest); }
.button-outline { border-color: rgba(35,59,42,.28); background: transparent; color: var(--forest); }
.button-outline-light { border-color: rgba(255,255,255,.45); color: white; background: transparent; }
.button-text { padding-inline: 0; min-height: auto; border-radius: 0; color: var(--forest); }
.button-text::after { content: "→"; transition: transform .2s; }
.button-text:hover::after { transform: translateX(4px); }

.hero { min-height: 730px; overflow: hidden; position: relative; background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr); min-height: 730px; }
.hero-copy { padding: 108px 62px 94px max(20px, calc((100vw - var(--max))/2)); display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 { margin: 22px 0 24px; max-width: 770px; }
.hero-copy .hero-accent { color: var(--forest); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--stone); color: #4c574f; font-size: .87rem; }
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--copper); }
.hero-media { position: relative; min-height: 620px; background: #566c57; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(20,37,26,.08), rgba(20,37,26,.02) 45%, rgba(20,37,26,.22)); }
.hero-note { position: absolute; left: 38px; bottom: 38px; z-index: 2; background: rgba(247,244,236,.94); backdrop-filter: blur(10px); padding: 20px 22px; border-radius: 16px; max-width: 310px; box-shadow: var(--shadow); }
.hero-note strong { display: block; color: var(--forest); margin-bottom: 4px; }

.fall-banner { position: relative; overflow: hidden; background: var(--forest-deep); color: white; }
.fall-banner::before { content: ""; position: absolute; width: 720px; height: 720px; border: 1px solid rgba(255,255,255,.1); border-radius: 48% 52% 54% 46%; right: -260px; top: -360px; transform: rotate(25deg); }
.fall-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; position: relative; z-index: 1; }
.fall-title { margin: 15px 0 22px; font-size: clamp(2.6rem, 5vw, 5rem); }
.fall-quote { font-family: "Newsreader", Georgia, serif; font-size: clamp(1.55rem, 2.5vw, 2.45rem); line-height: 1.2; color: #eef1e9; }
.fall-details { color: #cbd4cb; }
.fall-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 54px; }
.section-head h2 { margin: 14px 0 0; max-width: 790px; }
.section-head .lede { max-width: 470px; margin-bottom: 4px; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.value-card { background: var(--white); border: 1px solid #e4dfd3; border-radius: var(--radius-md); padding: 30px 26px; min-height: 260px; transition: transform .22s, box-shadow .22s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-number { font-family: "Newsreader", serif; color: var(--copper); font-size: 1.15rem; margin-bottom: 64px; display: block; }
.value-card h3 { font-size: 1.55rem; margin-bottom: 14px; }
.value-card p { margin-bottom: 0; color: #59635c; }

.split-feature { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.image-stack { position: relative; min-height: 570px; }
.image-main { width: 86%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); filter: saturate(.86); }
.image-small { position: absolute; width: 46%; height: 240px; right: 0; bottom: -18px; object-fit: cover; border-radius: var(--radius-md); border: 9px solid var(--paper); box-shadow: var(--shadow); }
.feature-list { display: grid; gap: 0; margin: 34px 0; border-top: 1px solid var(--stone); }
.feature-item { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--stone); }
.feature-index { color: var(--copper); font-family: "Newsreader", serif; font-size: 1.15rem; }
.feature-item strong { display: block; margin-bottom: 4px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-md); padding: 28px; min-height: 310px; display: flex; flex-direction: column; background: rgba(255,255,255,.035); }
.service-card .tag { color: #bac8ba; text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; font-weight: 700; }
.service-card h3 { margin: 46px 0 16px; font-size: 1.75rem; }
.service-card p { color: #c5cec5; }
.service-card .button-text { color: white; margin-top: auto; align-self: flex-start; }

.seed-panel { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.seed-copy { padding: 62px; }
.seed-copy h2 { font-size: clamp(2.25rem, 4vw, 3.8rem); margin: 18px 0 22px; }
.seed-media { min-height: 560px; }
.seed-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84); }
.spec-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.spec-list span { border: 1px solid var(--stone); border-radius: 999px; padding: 8px 12px; font-size: .78rem; font-weight: 700; color: #4d5a51; }

.quiz-teaser { border-radius: var(--radius-lg); padding: 66px; background: linear-gradient(125deg, #e8e8dc, #f7f4ec 60%); position: relative; overflow: hidden; }
.quiz-teaser::after { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(35,59,42,.13); border-radius: 50%; right: -140px; top: -210px; box-shadow: 0 0 0 45px rgba(35,59,42,.025), 0 0 0 90px rgba(35,59,42,.018); }
.quiz-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.quiz-factors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.quiz-factor { padding: 16px; background: rgba(255,255,255,.72); border-radius: 12px; border: 1px solid rgba(35,59,42,.1); font-size: .86rem; font-weight: 700; }

.cta { background: var(--forest); color: white; border-radius: var(--radius-lg); padding: 70px; display: flex; align-items: center; justify-content: space-between; gap: 55px; }
.cta h2 { margin-bottom: 12px; max-width: 700px; }
.cta p { color: #d0d9d0; max-width: 670px; margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; min-width: 235px; }

.page-hero { background: var(--forest-deep); color: white; padding: 100px 0 86px; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; right: -150px; bottom: -260px; width: 600px; height: 600px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); margin: 20px 0 24px; max-width: 980px; }
.page-hero .lede { color: #cbd4cb; }

.story-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.story-aside { position: sticky; top: 130px; }
.story-aside blockquote { font-family: "Newsreader", serif; font-size: 1.75rem; line-height: 1.3; margin: 30px 0; color: var(--forest); }
.story-content h2 { font-size: 2.65rem; margin-bottom: 18px; }
.story-content p { font-size: 1.04rem; color: #48544c; }
.story-section { padding-bottom: 42px; margin-bottom: 42px; border-bottom: 1px solid var(--stone); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.credential { padding: 20px; border: 1px solid var(--stone); border-radius: 12px; background: var(--white); }
.credential strong { display: block; color: var(--forest); }

.program-section { padding: 80px 0; border-bottom: 1px solid var(--stone); }
.program-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.program-heading h2 { font-size: clamp(2.5rem,4vw,4rem); }
.program-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 42px; }
.program-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid #e1ddcf; padding: 28px; }
.program-card.featured { background: var(--forest); color: white; border-color: var(--forest); }
.program-card .plan { font-size: .75rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--copper); }
.program-card.featured .plan { color: #d6c49f; }
.program-card h3 { margin: 32px 0 12px; }
.program-card p { color: #59635c; }
.program-card.featured p { color: #d0d9d0; }
.program-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.program-list li { position: relative; padding-left: 20px; font-size: .9rem; }
.program-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); position: absolute; left: 0; top: .65em; }

.method-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.method-card { background: var(--white); border: 1px solid var(--stone); border-radius: var(--radius-md); padding: 30px; }
.method-card h3 { margin-bottom: 12px; }
.method-card .best { font-size: .77rem; text-transform: uppercase; letter-spacing: .12em; color: var(--copper); font-weight: 700; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 68px; align-items: start; }
.contact-card { background: var(--forest-deep); color: white; padding: 38px; border-radius: var(--radius-lg); position: sticky; top: 126px; }
.contact-card h2 { font-size: 2.4rem; }
.contact-card p { color: #cbd4cb; }
.contact-link { display: block; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); text-decoration: none; }
.contact-link strong { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: #aebcaf; }
.contact-link span { font-size: 1.05rem; }
.form-shell { background: var(--white); border: 1px solid #e0dbcf; border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow); }
.form-shell h2 { font-size: 2.7rem; margin-bottom: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; margin-top: 30px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: #3b473e; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid #cfc9bc; border-radius: 10px; background: #fbfaf6;
  color: var(--ink); padding: 14px 15px; outline: none; transition: border .2s, box-shadow .2s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(35,59,42,.1); }
.field-help { font-size: .76rem; color: #727a74; }
.file-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.file-field { position: relative; min-height: 95px; border: 1px dashed #b9b3a7; border-radius: 10px; background: #fbfaf6; display: grid; place-items: center; text-align: center; padding: 12px; overflow: hidden; }
.file-field input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-field span { font-size: .79rem; font-weight: 700; color: #566158; }
.form-actions { margin-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.form-note { font-size: .76rem; color: #69716b; max-width: 480px; }

.thank-you { min-height: 74vh; display: grid; place-items: center; text-align: center; }
.thank-you-card { max-width: 710px; padding: 60px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.site-footer { background: #101b14; color: #d9dfd9; padding: 72px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 70px; }
.footer-brand img { width: 260px; filter: brightness(1.12); }
.footer-brand p { color: #aeb9af; max-width: 480px; margin-top: 20px; }
.footer-title { color: white; font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #c7d0c8; text-decoration: none; }
.footer-bottom { margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; font-size: .76rem; color: #94a096; }

.mobile-actions { display: none; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .program-cards { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 90px max(20px, calc((100vw - var(--max))/2)); }
  .hero-media { min-height: 520px; }
  .hero { min-height: auto; }
  .fall-grid, .split-feature, .seed-panel, .quiz-grid, .story-grid, .program-heading, .contact-layout { grid-template-columns: 1fr; }
  .story-aside, .contact-card { position: static; }
  .image-stack { max-width: 720px; }
  .seed-media { min-height: 420px; }
  .cta { align-items: flex-start; flex-direction: column; }
  .cta-actions { flex-direction: row; min-width: 0; flex-wrap: wrap; }
}

@media (max-width: 800px) {
  .topbar-inner { justify-content: center; }
  .topbar-inner span:first-child { display: none; }
  .brand img { width: 190px; }
  .menu-toggle { display: inline-flex; }
  .nav-links { position: fixed; inset: 121px 16px auto; background: var(--white); border: 1px solid var(--stone); box-shadow: var(--shadow); border-radius: 18px; padding: 24px; display: grid; gap: 0; transform: translateY(-18px); opacity: 0; visibility: hidden; transition: .2s; }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid #e7e2d8; }
  .nav-links a:last-child { margin-top: 14px; border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-tight { padding: 60px 0; }
  .section-head { display: block; }
  .section-head .lede { margin-top: 22px; }
  .values-grid, .service-grid, .method-grid { grid-template-columns: 1fr; }
  .fall-grid { gap: 34px; }
  .image-stack { min-height: 460px; }
  .image-main { height: 430px; width: 92%; }
  .image-small { height: 180px; }
  .seed-copy, .quiz-teaser, .cta { padding: 38px 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .file-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
  .mobile-actions { display: grid; grid-template-columns: repeat(3,1fr); position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 1100; background: rgba(16,27,20,.96); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.16); border-radius: 15px; padding: 7px; box-shadow: 0 12px 38px rgba(0,0,0,.3); }
  .mobile-actions a { color: white; text-align: center; text-decoration: none; padding: 10px 5px; font-size: .72rem; font-weight: 700; border-right: 1px solid rgba(255,255,255,.14); }
  .mobile-actions a:last-child { border: 0; background: var(--copper); border-radius: 9px; color: #101b14; }
  body { padding-bottom: 76px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-wrap { min-height: 76px; }
  .nav-links { inset-top: 111px; }
  .hero-copy { padding-top: 68px; padding-bottom: 66px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .hero-media { min-height: 420px; }
  .hero-note { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .hero-proof { gap: 12px; flex-direction: column; }
  .values-grid { grid-template-columns: 1fr; }
  .value-number { margin-bottom: 40px; }
  .quiz-factors, .credentials { grid-template-columns: 1fr; }
  .form-shell { padding: 28px 20px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .button { width: 100%; }
}

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