:root {
    --green: #234F45;
    --green-deep: #1B3B34;
    --clay: #CB6B4B;
    --clay-dark: #B85C3D;
    --bg: #F6F3EF;
    --card: #FDF9F4;
    --ink: #333333;
    --ink-soft: #6E675E;
    --hairline: #E0DBD3;
    --white: #FFFFFF;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.8;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(203,107,75,0.18); }
h1, h2, h3.serif {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    color: var(--green);
}
img { max-width: 100%; }

/* ── NAV ── */
nav.site-nav {
    background: rgba(246,243,239,0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hairline);
    padding: 0 48px;
    display: flex; align-items: center; justify-content: space-between;
    height: 84px;
    position: sticky; top: 0; z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.brand-word {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 16px; font-weight: 600; letter-spacing: 0.24em;
    text-transform: uppercase; color: var(--green); line-height: 1.35;
}
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
    font-size: 13px; font-weight: 500; color: var(--ink);
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; transition: color 0.25s;
    padding-bottom: 3px; position: relative;
}
.nav-links a:not(.nav-cta)::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px; background: var(--clay);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--clay); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active { border-bottom: 1px solid var(--clay); color: var(--green); }
a.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--clay);
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 13px 26px;
    border-radius: 6px;
    border-bottom: none !important;
    transition: background 0.25s !important;
}
.nav-cta:hover { background: var(--clay-dark); color: var(--white) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--green); }
.nav-mobile { display: none; flex-direction: column; background: var(--bg); border-bottom: 1px solid var(--hairline); padding: 12px 24px 20px; }
.nav-mobile a { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--hairline); display: block; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-cta { background: var(--clay); color: var(--white) !important; padding: 13px 20px; border-radius: 3px; text-align: center; margin-top: 12px; }

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    text-decoration: none; cursor: pointer;
    border: 1px solid transparent; border-radius: 6px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-primary { background: var(--green); color: var(--bg); border-color: var(--green); }
.btn-primary:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn-outline { background: transparent; color: var(--ink); border-color: #B9B2A6; }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-cream { background: var(--bg); color: var(--green); border-color: var(--bg); }
.btn-cream:hover { background: transparent; color: var(--bg); border-color: var(--bg); }
.text-link {
    font-size: 11.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--green); text-decoration: none;
    transition: color 0.25s;
    position: relative; padding-bottom: 5px;
}
.text-link::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px; background: var(--clay);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
}
.text-link:hover { color: var(--clay); }
.text-link:hover::after { transform: scaleX(1); }
.text-link .arr { display: inline-block; transition: transform 0.25s; margin-left: 6px; }
.text-link:hover .arr { transform: translateX(4px); }

/* ── LAYOUT ── */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 48px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 48px; }
.eyebrow {
    font-size: 12.5px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--clay);
    margin-bottom: 22px; display: block;
}
h2 { font-size: clamp(40px, 4.6vw, 58px); line-height: 1.1; }
.lede { font-size: 19px; color: var(--ink-soft); line-height: 1.85; max-width: 680px; }
section.block { padding: 110px 0; }
.block-alt { background: var(--card); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.rule { width: 40px; height: 2px; background: var(--clay); border: none; margin: 30px 0; }

/* ── PAGE HERO (interior pages) ── */
.page-hero { padding: 104px 0 84px; }
.page-hero h1 { font-size: clamp(54px, 6.4vw, 84px); line-height: 1.05; max-width: 920px; letter-spacing: -0.01em; }
.page-hero .lede { max-width: 680px; margin-top: 38px; }

/* ── STATEMENT ── */
.statement { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.statement p {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(30px, 4.2vw, 50px);
    color: var(--green); line-height: 1.3;
    max-width: 880px; margin: 0 auto;
    position: relative;
}
.statement .sub {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px; color: var(--ink-soft); line-height: 1.85;
    max-width: 560px; margin: 34px auto 0;
    position: relative;
}

/* ── MOTIF ── */
.motif { display: block; margin: 0 0 30px; }
.motif.center { margin: 0 auto 30px; }
.constellation {
    position: absolute; pointer-events: none; opacity: 0.5;
}
.constellation line { stroke-width: 0.7; }

/* ── FRAMEWORK / SYSTEM MAP ── */
.principles { list-style: none; position: relative; max-width: 720px; }
.principles::before {
    content: ''; position: absolute; left: 7px; top: 48px; bottom: 48px;
    width: 1px; background: var(--hairline);
}
.principles li { position: relative; padding: 30px 0 30px 58px; }
.principles li::before {
    content: ''; position: absolute; left: 0; top: 42px;
    width: 13px; height: 13px; border-radius: 50%;
    border: 1.5px solid var(--clay); background: var(--bg);
}
.principles h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(24px, 2.6vw, 30px); font-weight: 500;
    color: var(--green); line-height: 1.25; margin-bottom: 10px;
}
.principles p { font-size: 15px; color: var(--ink-soft); line-height: 1.8; max-width: 560px; }

/* ── TIMELINE ── */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 72px; position: relative; padding-top: 38px; }
.timeline .card-kicker { font-size: 12.5px; color: var(--green); margin-bottom: 16px; }
.timeline::before {
    content: ''; position: absolute; left: 7px; right: 15%; top: 6px;
    height: 1px; background: var(--hairline);
}
.tl-item { position: relative; }
.tl-item::before {
    content: ''; position: absolute; left: 0; top: -34px;
    width: 13px; height: 13px; border-radius: 50%;
    border: 1.5px solid var(--clay); background: var(--bg);
}
.tl-item .card-kicker { margin-bottom: 12px; }
.tl-item h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px; font-weight: 500; color: var(--green);
    line-height: 1.25; margin-bottom: 14px;
}
.tl-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; }

/* ── PULL STAT ── */
.pull-stat { display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; padding: 26px 0; }
.pull-stat .big {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(72px, 9vw, 130px); font-weight: 500;
    color: var(--green); line-height: 1; white-space: nowrap;
}
.pull-stat .side { max-width: 460px; }
.pull-stat .side p { font-size: 15.5px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 12px; }
.pull-stat .side .stat-source { margin-top: 0; }

/* ── TEXT GRID (no cards) ── */
.text-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 68px 92px; }
.text-grid .tg-item { border-top: 1px solid rgba(224,219,211,0.5); padding-top: 30px; }
.text-grid h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 27px; font-weight: 500; color: var(--green);
    line-height: 1.25; margin-bottom: 14px;
}
.text-grid p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.9; max-width: 400px; }

/* ── EVIDENCE CARDS ── */
.evidence-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.ecard {
    background: var(--card); border: 1px solid rgba(224,219,211,0.7); border-radius: 6px;
    padding: 46px 38px 38px; display: flex; flex-direction: column;
}
.ecard-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--green); margin-bottom: 24px; display: block;
}
.ecard-number {
    font-family: 'Fraunces', Georgia, serif; font-weight: 500;
    font-size: clamp(42px, 4vw, 56px); color: var(--green);
    line-height: 1; margin-bottom: 22px;
}
.ecard p { font-size: 14px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 20px; }
.ecard .ecard-source { font-size: 11.5px; color: var(--ink-soft); font-style: italic; opacity: 0.7; margin-top: auto; }

/* ── NUMBERED ROWS ── */
.rows { list-style: none; }
.rows li {
    display: grid; grid-template-columns: 90px 300px 1fr;
    gap: 32px; align-items: baseline;
    padding: 54px 0;
    border-top: 1px solid var(--hairline);
}
.rows li:last-child { border-bottom: 1px solid var(--hairline); }
.rows .num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 26px; font-style: italic; color: var(--clay);
}
.rows h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 31px; font-weight: 500; color: var(--green); line-height: 1.2;
}
.rows p { font-size: 15px; color: var(--ink-soft); line-height: 1.85; max-width: 560px; }

/* ── DASH LIST ── */
.dash-list { list-style: none; }
.dash-list li {
    font-size: 16px; color: var(--ink); line-height: 1.75;
    padding: 24px 0 24px 34px; position: relative;
    border-top: 1px solid #D8D2C7;
}
.dash-list li:last-child { border-bottom: 1px solid #D8D2C7; }
.dash-list li::before { content: '—'; position: absolute; left: 0; top: 24px; color: var(--clay); }

/* ── CARDS ── */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.soft-card {
    background: var(--card); border: 1px solid var(--hairline); border-radius: 6px;
    padding: 38px 32px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.soft-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(35,79,69,0.07); }
.block-alt .soft-card { background: var(--bg); }
.card-kicker {
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--clay); margin-bottom: 14px; display: block;
}
.soft-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 23px; font-weight: 500; color: var(--green);
    line-height: 1.25; margin-bottom: 12px;
}
.soft-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.75; }

/* ── STATS ── */
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat {
    background: var(--card); border: 1px solid var(--hairline); border-radius: 6px;
    padding: 38px 32px; display: flex; flex-direction: column;
}
.stat-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 52px; font-weight: 500; color: var(--green);
    line-height: 1; margin-bottom: 18px;
}
.stat p { font-size: 14px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.stat-lead { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.65; margin-bottom: 18px; }
.stat-breakdown { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.stat-breakdown li {
    display: flex; justify-content: space-between; gap: 12px;
    font-size: 13.5px; color: var(--ink-soft); line-height: 1.5;
    padding-bottom: 10px; border-bottom: 1px solid var(--hairline);
}
.stat-breakdown .stat-pct { font-weight: 600; color: var(--green); flex-shrink: 0; }
.stat-source { font-size: 11.5px; color: var(--ink-soft); font-style: italic; opacity: 0.75; margin-top: auto; }

/* ── QUOTE BAND ── */
.quote-band { background: var(--green); padding: 54px 0; }
.quote-band .inner { max-width: 860px; margin: 0 auto; padding: 0 48px; text-align: center; }
.quote-band blockquote {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(26px, 3.2vw, 36px); color: var(--bg);
    line-height: 1.45; margin-bottom: 24px;
}
.quote-band cite {
    font-style: normal; font-size: 10px; font-weight: 600;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(246,243,239,0.5);
}

/* ── CTA BAND ── */
.cta-band { background: var(--green); padding: 104px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band .wrap, .cta-band .wrap-narrow { position: relative; }
.cta-band h2 { color: var(--bg); font-size: clamp(38px, 5vw, 60px); margin-bottom: 26px; }
.cta-band h2 em { font-style: italic; color: #E7C3AF; }
.cta-band p {
    font-size: 16.5px; color: rgba(246,243,239,0.75); line-height: 1.85;
    max-width: 540px; margin: 0 auto 48px;
}

/* ── PRICING ── */
.price-card {
    background: var(--bg); border: 1px solid var(--hairline); border-radius: 6px;
    padding: 44px 34px 38px;
    display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--green); }
.price-kicker {
    font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--clay); margin-bottom: 14px; min-height: 15px;
}
.price-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 24px; font-weight: 500; color: var(--green);
    line-height: 1.2; margin-bottom: 18px;
}
.price-typical {
    font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--ink-soft); margin-bottom: 6px;
}
.price-amount {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 30px; font-weight: 500; color: var(--ink); margin-bottom: 4px;
}
.price-note { font-size: 13.5px; color: var(--ink-soft); margin: 16px 0 22px; line-height: 1.7; }
.price-features { list-style: none; margin-bottom: 30px; }
.price-features li {
    font-size: 13.5px; color: var(--ink); line-height: 1.55;
    padding: 10px 0 10px 24px; position: relative;
    border-top: 1px solid var(--hairline);
}
.price-features li::before { content: '—'; position: absolute; left: 0; top: 10px; color: var(--clay); }
.price-card .btn { text-align: center; margin-top: auto; }
.price-context {
    font-size: 12px; color: var(--ink-soft); line-height: 1.65;
    margin-top: 20px; font-style: italic; opacity: 0.85;
}

/* ── FOOTER ── */
footer.site-footer { background: var(--bg); border-top: 1px solid rgba(224,219,211,0.5); padding: 48px 0 30px; text-align: center; }
.footer-logo { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 24px; }
.footer-logo .brand-word { font-size: 12.5px; }
.footer-logo svg { width: 34px; height: 34px; }
.footer-nav { display: flex; gap: 28px; justify-content: center; list-style: none; margin-bottom: 24px; flex-wrap: wrap; }
.footer-nav a {
    font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--ink-soft); opacity: 0.85; text-decoration: none; transition: color 0.2s;
}
.footer-nav a:hover { color: var(--clay); opacity: 1; }
.footer-social { display: flex; gap: 12px; justify-content: center; margin-bottom: 26px; }
.footer-social a {
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(224,219,211,0.55);
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s;
}
.footer-social a:hover { border-color: var(--clay); }
.footer-bottom {
    border-top: 1px solid rgba(224,219,211,0.45);
    padding-top: 18px;
    font-size: 11px; color: var(--ink-soft); opacity: 0.65;
}
.footer-bottom a { color: var(--ink-soft); text-decoration: none; }
.footer-bottom a:hover { color: var(--clay); }

/* ── REVEAL MOTION ── */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav.site-nav { padding: 0 20px; }
    .nav-hamburger { display: flex; }
    .nav-links { display: none; }
    .wrap, .wrap-narrow { padding: 0 24px; }
    section.block { padding: 64px 0; }
    .statement { padding: 80px 0; }
    .page-hero { padding: 60px 0 50px; }
    .rows li { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
    .cards-3, .cards-2, .stat-grid, .text-grid { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr; gap: 36px; padding-top: 0; padding-left: 34px; }
    .timeline::before { left: 6px; right: auto; top: 8px; bottom: 8px; width: 1px; height: auto; }
    .tl-item::before { left: -34px; top: 8px; }
    .pull-stat { grid-template-columns: 1fr; gap: 20px; }
    .cta-band { padding: 76px 0; }
    .quote-band { padding: 80px 0; }
    .quote-band .inner { padding: 0 24px; }
}
