:root {
  --green-950: #142820;
  --green-900: #1c352c;
  --green-800: #27483c;
  --green-700: #33594b;
  --green-500: #5d8876;
  --cream: #f7f2e8;
  --cream-2: #eee6d8;
  --paper: #fffdf8;
  --gold: #f0c36f;
  --gold-2: #d9a751;
  --rust: #b96645;
  --ink: #1f2a24;
  --muted: #66716b;
  --white: #fff;
  --border: rgba(31, 42, 36, .14);
  --shadow: 0 28px 80px rgba(35, 48, 40, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
.container { width: min(calc(100% - 48px), var(--container)); 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; z-index: 1000; top: 10px; left: 10px; transform: translateY(-140%); padding: 12px 16px; border-radius: 8px; background: var(--white); color: var(--ink); }
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p, blockquote { margin-top: 0; }
h1, h2, blockquote { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.section { position: relative; padding: 112px 0; }
.section-light { background: var(--paper); }
.section-dark { color: var(--white); background: var(--green-950); }
.section-warm { background: var(--cream-2); }
.eyebrow { margin: 0 0 18px; color: var(--gold-2); font-size: .78rem; line-height: 1; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.section-dark .eyebrow { color: var(--gold); }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 10px; padding: 0 27px; border: 0; border-radius: 12px; text-decoration: none; text-transform: uppercase; font-size: .86rem; font-weight: 850; letter-spacing: .02em; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, input:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.button-primary { color: var(--green-950); background: var(--gold); box-shadow: 0 12px 34px rgba(240,195,111,.2); }
.button-primary:hover { background: #f7d38e; box-shadow: 0 16px 38px rgba(240,195,111,.28); }
.button-full { width: 100%; }

/* 1. Hero */
.hero { min-height: 680px; display: grid; grid-template-columns: 1.04fr .96fr 1.04fr; background: var(--paper); }
.hero-photo { position: relative; min-width: 0; overflow: hidden; background-image: url("hero-reference.png"); background-repeat: no-repeat; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,40,32,.25), rgba(20,40,32,.76)); }
.hero-photo-left { background-size: auto 100%; background-position: left center; }
.hero-photo-right { background-size: auto 100%; background-position: right center; }
.hero-copy { z-index: 1; display: flex; flex-direction: column; justify-content: center; padding: 62px clamp(38px,4vw,78px); background: var(--paper); }
.hero-copy .eyebrow { margin-bottom: 20px; color: var(--green-700); }
.hero h1 { margin-bottom: 7px; font-size: clamp(2.7rem,3.5vw,4.4rem); line-height: 1.05; letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 span { color: var(--green-700); }
.hero-script { margin: 0 0 25px; font: italic 500 clamp(2rem,2.65vw,3.05rem)/1.06 Georgia, serif; }
.hero-description { margin-bottom: 26px; color: #4c5b54; font-size: 1rem; line-height: 1.68; }
.hero .button { width: 100%; max-width: 360px; background: var(--green-800); color: var(--white); box-shadow: none; }
.hero .button:hover { background: var(--green-700); }
.hero-pillars { margin: 22px 0 0; color: #40534a; font-size: .92rem; }
.hero-pillars i { padding: 0 4px; color: var(--gold-2); font-style: normal; }

/* Shared headings */
.section-heading { max-width: 930px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 15px; font-size: clamp(2.45rem,4.25vw,4.6rem); line-height: 1.05; letter-spacing: -.045em; text-transform: uppercase; }
.section-heading h2 em { color: var(--green-700); font-weight: 500; text-transform: none; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); font-size: 1.25rem; line-height: 1.55; }

/* 2. Journey */
.journey { overflow: hidden; }
.journey::before { content: ""; position: absolute; top: -220px; right: -240px; width: 520px; height: 520px; border: 1px solid rgba(51,89,75,.1); border-radius: 50%; box-shadow: 0 0 0 70px rgba(51,89,75,.025), 0 0 0 150px rgba(51,89,75,.018); pointer-events: none; }
.journey-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.journey-card { min-height: 300px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(255,255,255,.76); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.journey-card:hover { transform: translateY(-5px); border-color: rgba(51,89,75,.28); box-shadow: 0 20px 44px rgba(31,42,36,.08); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 18px; border: 1px solid rgba(51,89,75,.18); border-radius: 12px; background: var(--paper); }
.card-icon svg { width: 25px; fill: none; stroke: var(--green-700); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.journey-card h3 { margin: 0 0 6px; color: var(--green-950); font-size: .96rem; text-transform: uppercase; }
.journey-card strong { margin-bottom: 6px; color: var(--green-700); font-size: .92rem; line-height: 1.45; }
.journey-card p { margin-bottom: 20px; color: var(--muted); font-size: 1rem; line-height: 1.62; }
.journey-card a { margin-top: auto; color: var(--green-700); text-decoration: none; font-size: .9rem; font-weight: 800; }
.journey-card a span { margin-left: 4px; color: var(--gold-2); }

/* 3. Course */
.course { overflow: hidden; }
.course-pattern { position: absolute; inset: 0 0 0 48%; opacity: .1; background-image: radial-gradient(circle at 2px 2px, var(--gold) 1.2px, transparent 1.4px); background-size: 24px 24px; mask-image: linear-gradient(90deg, transparent, #000 30%); }
.course-inner { position: relative; }
.section-heading-dark h2 { margin-bottom: 8px; }
.section-heading-dark .course-script { margin: 0 0 10px; color: var(--gold); font: italic 500 clamp(1.9rem,3vw,3.35rem)/1.12 Georgia, serif; }
.section-heading-dark > p:last-child { color: rgba(255,255,255,.73); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px 64px; }
.feature { display: grid; grid-template-columns: 64px 1fr; align-items: center; gap: 18px; }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(240,195,111,.28); border-radius: 16px; background: rgba(240,195,111,.08); color: var(--gold); font: 800 1.15rem Georgia, serif; }
.feature h3 { margin: 0 0 5px; font-size: 1rem; }
.feature p { margin: 0; color: rgba(255,255,255,.62); font-size: .94rem; line-height: 1.5; }

/* 4. Philosophy */
.philosophy-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 80px; }
.philosophy-copy { padding-right: 30px; }
.philosophy h2 { margin-bottom: 25px; font-size: clamp(2.55rem,4.25vw,4.35rem); line-height: 1.05; letter-spacing: -.045em; text-transform: uppercase; }
.philosophy-copy p { color: #49554f; font-size: 1rem; line-height: 1.72; }
.philosophy-copy .lead { color: var(--green-700); font-size: 1.04rem; }
.philosophy-copy .highlight { margin-bottom: 30px; color: var(--green-700); font-weight: 800; }
.philosophy-copy .button { min-width: 330px; }
.principles { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding-left: 64px; border-left: 1px solid var(--border); }
.principles article { padding: 25px 0; border-bottom: 1px solid var(--border); }
.principles article:last-child { border-bottom: 0; }
.principles h3 { margin: 0 0 6px; color: var(--green-700); font: 600 1.55rem Georgia, serif; text-transform: uppercase; }
.principles p { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* 5. Manifesto */
.manifesto { padding: 92px 0; background: linear-gradient(135deg, var(--green-950), #1b3028 60%, #243f35); }
.manifesto-inner h2 { max-width: 1080px; margin-bottom: 38px; color: var(--cream); font-style: italic; font-size: clamp(2.05rem,3.5vw,3.8rem); line-height: 1.2; letter-spacing: -.02em; }
.manifesto-inner h2 span { color: var(--gold); }
.author { display: flex; align-items: center; gap: 18px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15); }
.author-photo-frame { width: 94px; height: 94px; display: block; flex: 0 0 auto; overflow: hidden; border-radius: 50%; background: #202f2a; box-shadow: 0 0 0 5px rgba(240,195,111,.1), 0 14px 34px rgba(0,0,0,.24); }
.author-photo { width: 100%; height: 100%; display: block; border-radius: 50%; object-fit: cover; transform: scale(1.08); }
.author strong { display: block; margin-bottom: 5px; font-size: 1.2rem; }
.author em { color: rgba(255,255,255,.58); font-size: .95rem; }

/* 6. Pricing */
.pricing { overflow: hidden; }
.pricing::after { content: ""; position: absolute; right: -190px; bottom: -240px; width: 520px; height: 520px; border: 1px solid rgba(185,102,69,.11); border-radius: 50%; box-shadow: 0 0 0 72px rgba(185,102,69,.026), 0 0 0 150px rgba(185,102,69,.018); pointer-events: none; }
.pricing-heading { position: relative; z-index: 1; margin: 0 auto 46px; text-align: center; }
.pricing-heading h2 { margin-bottom: 12px; font-family: inherit; font-size: clamp(2rem,3.55vw,3.7rem); font-weight: 850; line-height: 1.1; letter-spacing: -.04em; text-transform: uppercase; }
.pricing-heading h2 span { color: var(--green-700); }
.pricing-heading p { color: var(--muted); font-size: 1.08rem; }
.pricing-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.curriculum-card, .investment-card { display: flex; flex-direction: column; padding: 36px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: rgba(255,253,248,.86); box-shadow: 0 18px 50px rgba(31,42,36,.06); }
.investment-card { position: relative; overflow: hidden; border: 2px solid rgba(217,167,81,.72); background: linear-gradient(180deg, #fffdf8, #faf4e8); box-shadow: 0 28px 70px rgba(31,42,36,.14), 0 0 0 7px rgba(240,195,111,.08); }
.investment-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--green-700), var(--gold), var(--green-700)); }
.card-kicker { margin: 0 0 8px; color: var(--green-950); font-size: .9rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.curriculum-card > h3, .investment-card > h3 { margin: 0 0 27px; color: var(--green-700); font: italic 600 1.65rem Georgia, serif; }
.curriculum-card ul { display: grid; gap: 14px; margin: 0 0 30px; padding: 0; list-style: none; }
.curriculum-card li { position: relative; padding-left: 40px; color: #3f4b45; font-size: .98rem; line-height: 1.45; }
.curriculum-card li::before { content: "✓"; position: absolute; top: -1px; left: 0; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--green-700); color: var(--white); font-size: .78rem; font-weight: 900; }
.curriculum-card .button { margin-top: auto; }
.price-panel { margin-bottom: 17px; padding: 32px 28px; border: 1px solid rgba(240,195,111,.72); border-radius: 20px; background: radial-gradient(circle at 50% 20%, rgba(240,195,111,.13), transparent 45%), linear-gradient(145deg, #1c352c, var(--green-950)); color: var(--white); text-align: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 16px 36px rgba(20,40,32,.18); }
.price-panel > p { margin-bottom: 22px; color: rgba(255,255,255,.7); text-align: center; font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.installments small { display: inline-flex; margin-bottom: 8px; padding: 7px 13px; border: 1px solid rgba(240,195,111,.35); border-radius: 999px; background: rgba(240,195,111,.08); color: var(--gold); font-size: 1rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.installments strong { display: flex; align-items: baseline; justify-content: center; gap: 9px; font-size: 2rem; line-height: .9; letter-spacing: -.035em; }
.installments strong span { color: var(--gold); font-size: clamp(4.5rem,6.5vw,6.35rem); letter-spacing: -.065em; }
.cash strong span { color: var(--gold); font-size: 3.15rem; }
.price-panel > b { display: flex; align-items: center; gap: 12px; margin: 22px 0 13px; color: rgba(255,255,255,.6); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.price-panel > b::before, .price-panel > b::after { content: ""; height: 1px; flex: 1; background: rgba(255,255,255,.16); }
.cash { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.cash strong { font-size: 2rem; }
.cash small { color: rgba(255,255,255,.78); font-size: 1.15rem; font-weight: 700; }
.payment-trust { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 22px; padding: 11px 14px; border: 1px solid rgba(51,89,75,.13); border-radius: 12px; background: rgba(51,89,75,.055); color: var(--green-700); font-size: .78rem; font-weight: 800; }
.payment-trust i { width: 1px; height: 18px; background: rgba(51,89,75,.24); }
.investment-card .button { margin-top: auto; }

/* 7. Lead form */
.lead-section { padding-bottom: 110px; }
.lead-grid { display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: 84px; }
.lead-copy h2 { margin-bottom: 32px; font-size: clamp(2.65rem,4.9vw,5.05rem); line-height: 1.02; letter-spacing: -.04em; text-transform: uppercase; }
.lead-copy h2 em { color: var(--gold); font-weight: 500; text-transform: none; }
.lead-copy > h3 { margin: 0 0 14px; color: var(--gold); font: italic 500 1.45rem Georgia, serif; }
.lead-copy > p { max-width: 560px; color: rgba(255,255,255,.66); font-size: 1rem; line-height: 1.72; }
.contact { margin-top: 38px; }
.contact > span { display: block; margin-bottom: 12px; color: var(--gold); font-size: .9rem; }
.contact a { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: .97rem; }
.contact b { width: 38px; height: 38px; display: grid; flex: 0 0 38px; place-items: center; border-radius: 10px; background: var(--gold); color: var(--green-950); }
.contact b svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lead-form-column { min-width: 0; }
.contact-after-form { margin-top: 22px; padding: 22px 4px 0; border-top: 1px solid rgba(255,255,255,.12); }
.lead-form-card { padding: 34px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); background: rgba(255,255,255,.035); box-shadow: 0 24px 70px rgba(0,0,0,.15); }
.lead-form-card form { padding: 0; }
.lead-form-card h3 { margin: 0 0 9px; font-size: 1rem; text-transform: uppercase; }
.lead-form-card #lead-fields > p { margin-bottom: 25px; color: rgba(255,255,255,.49); font-size: .92rem; }
.field { margin-bottom: 13px; }
.field input { width: 100%; height: 58px; padding: 0 18px; border: 1px solid rgba(255,255,255,.19); border-radius: 11px; outline: none; background: rgba(255,255,255,.07); color: var(--white); font-size: 1rem; transition: border-color .2s ease, background .2s ease; }
.field input::placeholder { color: rgba(255,255,255,.38); }
.field input:focus { border-color: var(--gold); background: rgba(255,255,255,.1); }
.field input.invalid { border-color: #efa88a; }
.field-error { display: block; min-height: 18px; padding-top: 4px; color: #ffd1be; font-size: .78rem; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 3px; color: rgba(255,255,255,.58); font-size: .82rem; line-height: 1.45; cursor: pointer; }
.consent input { flex: 0 0 auto; width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--gold); }
.consent-error { margin-bottom: 8px; }
.form-note, .submission-error { margin: 11px 0 0 !important; text-align: center; font-size: .76rem !important; }
.form-note { color: rgba(255,255,255,.36) !important; }
.submission-error { color: #ffd1be !important; }
.form-success { display: flex; align-items: flex-start; gap: 14px; padding: 20px; border: 1px solid rgba(240,195,111,.28); border-radius: 16px; background: rgba(240,195,111,.08); }
.form-success > span { width: 32px; height: 32px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; background: var(--gold); color: var(--green-950); font-weight: 900; }
.form-success strong { color: var(--gold); }
.form-success p { margin: 5px 0 0; color: rgba(255,255,255,.65); line-height: 1.55; }
.download-button { margin-top: 18px; }
#interest-form[aria-busy="true"] { cursor: wait; }
#interest-form[aria-busy="true"] .button { opacity: .72; cursor: wait; }

footer { padding: 48px 24px; background: var(--gold); color: var(--green-950); text-align: center; }
footer blockquote { margin: 0 auto 8px; font-style: italic; font-size: clamp(1.55rem,3vw,2.6rem); line-height: 1.25; }
footer > p { margin-bottom: 24px; font: 700 .85rem Georgia, serif; letter-spacing: .1em; text-transform: uppercase; }
footer small { font-size: .82rem; font-weight: 650; }
footer i { padding: 0 4px; font-style: normal; }

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

@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; }
}

@media (max-width: 1080px) {
  .hero { grid-template-columns: .9fr 1.2fr .9fr; }
  .hero-copy { padding-inline: 36px; }
  .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { gap: 50px; }
  .principles { padding-left: 40px; }
  .lead-grid { gap: 50px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 82px 0; }
  .hero { min-height: auto; grid-template-columns: 1fr 1fr; grid-template-areas: "copy copy" "left right"; }
  .hero-copy { grid-area: copy; align-items: flex-start; padding: 72px 36px 60px; }
  .hero-copy .button { max-width: 420px; }
  .hero-photo { min-height: 310px; }
  .hero-photo-left { grid-area: left; }
  .hero-photo-right { grid-area: right; }
  .philosophy-grid, .pricing-grid, .lead-grid { grid-template-columns: 1fr; }
  .philosophy-copy { padding-right: 0; }
  .principles { padding: 10px 0 0; border-top: 1px solid var(--border); border-left: 0; }
  .pricing-grid { max-width: 640px; margin-inline: auto; }
  .lead-copy { max-width: 660px; }
  .feature-grid { gap: 30px 24px; }
}

@media (max-width: 590px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 68px 0; }
  .hero-copy { padding: 62px 24px 48px; }
  .hero h1 { font-size: 2.55rem; }
  .hero-script { font-size: 2rem; }
  .hero-description { font-size: .98rem; }
  .hero-pillars { font-size: .8rem; }
  .hero-photo { min-height: 220px; }
  .section-heading h2, .philosophy h2 { font-size: 2.4rem; }
  .section-heading > p:last-child { font-size: 1.05rem; }
  .journey-grid, .feature-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: 0; }
  .feature { grid-template-columns: 54px 1fr; }
  .feature-icon { width: 50px; height: 50px; }
  .philosophy-copy .button { width: 100%; min-width: 0; }
  .manifesto-inner h2 { font-size: 1.55rem; line-height: 1.28; }
  .curriculum-card, .investment-card, .lead-form-card { padding: 24px; border-radius: 20px; }
  .investment-card > h3 { margin-bottom: 20px; font-size: 1.28rem; line-height: 1.25; }
  .price-panel { padding: 26px 16px; }
  .installments strong { gap: 6px; font-size: 1.55rem; }
  .installments strong span { font-size: 3.75rem; }
  .cash strong { font-size: 1.6rem; }
  .cash strong span { font-size: 2.55rem; }
  .cash { flex-wrap: wrap; }
  .payment-trust { flex-wrap: wrap; gap: 8px; }
  .payment-trust i { display: none; }
  .lead-copy h2 { font-size: 2.3rem; line-height: 1.06; }
  .contact a { word-break: break-word; }
  footer { padding: 34px 18px; }
  footer blockquote { max-width: 320px; font-size: 1.05rem; line-height: 1.4; }
  footer > p { margin-bottom: 16px; font-size: .72rem; }
  footer small { display: flex; flex-direction: column; gap: 3px; font-size: .72rem; line-height: 1.45; }
  footer small i { display: none; }
}
