:root {
    --bg: #f3eee5;
    --bg-soft: #ece3d7;
    --surface: rgba(255, 250, 244, 0.94);
    --surface-strong: #fffdf8;
    --ink: #18211b;
    --muted: #6a766d;
    --forest: #143a2f;
    --forest-soft: #215342;
    --clay: #965742;
    --gold: #c8a770;
    --line: rgba(24, 33, 27, 0.1);
    --shadow: 0 24px 72px rgba(16, 24, 20, 0.12);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(150, 87, 66, 0.12), transparent 26%),
        radial-gradient(circle at bottom right, rgba(20, 58, 47, 0.08), transparent 22%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

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

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

button {
    font: inherit;
    cursor: pointer;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.section {
    padding: 82px 0;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: clip;
    color: #fff;
    isolation: isolate;
}

.hero-media,
.hero-wash {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-wash {
    background:
        linear-gradient(180deg, rgba(10, 20, 16, 0.62) 0%, rgba(10, 20, 16, 0.36) 34%, rgba(10, 20, 16, 0.82) 100%),
        linear-gradient(108deg, rgba(10, 20, 16, 0.82) 0%, rgba(10, 20, 16, 0.18) 58%, rgba(10, 20, 16, 0.74) 100%);
}

.hero-nav,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-nav {
    padding-top: 1rem;
    z-index: 20;
}

.nav-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 0 0 auto;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: grid;
    gap: 0.08rem;
}

.brand-copy strong {
    font-size: 1rem;
    font-weight: 800;
}

.brand-copy small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.nav-link,
.button,
.track-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.88rem 1.15rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta,
.button-primary,
.track-link {
    background: #fff;
    color: var(--forest);
}

.nav-cta:hover,
.button-primary:hover,
.track-link:hover {
    background: #fff4e8;
    transform: translateY(-1px);
}

.button-secondary,
.track-link-soft {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.track-link-soft:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1202;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(9, 11, 15, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    min-height: calc(100vh - 94px);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1rem;
    align-items: end;
    padding: 2rem 0 2.2rem;
}

.hero-copy,
.hero-notes {
    position: relative;
    z-index: 1;
}

.hero-copy {
    width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.85rem;
    border-radius: 999px;
    font-size: 0.73rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
}

.eyebrow {
    background: rgba(255, 250, 242, 0.16);
    color: #fff;
}

.section-kicker {
    background: rgba(20, 58, 47, 0.08);
    color: var(--forest);
}

.section-kicker-light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.84);
}

.hero-copy h1,
.section-heading h2,
.fact-card h3,
.track-card h3,
.step-card h3,
.faq-card h2,
.support-card h2 {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.hero-copy h1 {
    margin-top: 0.9rem;
    font-size: clamp(3.2rem, 8vw, 6.3rem);
    line-height: 0.9;
    max-width: 10ch;
}

.hero-copy p,
.section-heading p,
.story-copy p,
.fact-card p,
.track-card p,
.step-card p,
.faq-list p,
.support-card p {
    line-height: 1.78;
}

.hero-copy p {
    max-width: 56ch;
    color: rgba(255, 255, 255, 0.84);
    margin: 1rem 0 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.hero-notes {
    display: grid;
    gap: 0.8rem;
}

.note-card {
    padding: 1rem 1.05rem;
    border-radius: 24px;
    background: rgba(255, 250, 244, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    color: var(--forest);
}

.note-card span {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.note-card strong {
    font-size: 1rem;
    line-height: 1.45;
}

.section-light {
    color: var(--ink);
}

.section-dark {
    background: linear-gradient(180deg, var(--forest), #0f2b22);
    color: #fff;
}

.story-grid,
.question-grid {
    display: grid;
    gap: 1rem;
}

.story-grid {
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
}

.section-heading h2 {
    margin-top: 0.7rem;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.96;
}

.section-heading p,
.story-copy p {
    margin: 0;
    color: var(--muted);
}

.section-dark .section-heading p {
    color: rgba(255, 255, 255, 0.78);
}

.fact-grid,
.track-grid,
.step-grid {
    display: grid;
    gap: 1rem;
}

.fact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1 / -1;
}

.fact-card,
.step-card,
.faq-card,
.support-card,
.join-strip {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.fact-card,
.step-card,
.faq-card,
.support-card {
    border-radius: var(--radius-lg);
    padding: 1.4rem;
}

.fact-card i,
.support-card i {
    color: var(--forest);
    font-size: 1.2rem;
}

.fact-card h3 {
    margin-top: 0.9rem;
    font-size: 2rem;
    line-height: 1;
}

.fact-card p {
    color: var(--muted);
    margin: 0.65rem 0 0;
}

.section-heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.2rem;
}

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

.track-card {
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
}

.track-card-featured {
    background: rgba(255, 249, 240, 0.96);
    color: var(--forest);
}

.track-card-featured p,
.track-card-featured ul {
    color: var(--muted);
}

.track-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.track-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.72);
}

.track-card-featured .track-label {
    color: var(--clay);
}

.track-top h3 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.track-pill {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 0.85rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--forest);
    background: rgba(255, 244, 220, 0.94);
}

.track-card:not(.track-card-featured) .track-pill {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.track-card p {
    margin: 0.9rem 0 0;
}

.track-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.42rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
}

.track-card .track-link {
    margin-top: 1rem;
}

.step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(20, 58, 47, 0.08);
    color: var(--forest);
    font-weight: 800;
}

.step-card h3 {
    margin-top: 1rem;
    font-size: 1.8rem;
    line-height: 1.05;
}

.step-card p {
    margin: 0.7rem 0 0;
    color: var(--muted);
}

.join-strip {
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.join-strip strong {
    display: block;
    color: var(--forest);
}

.join-strip span {
    color: var(--muted);
}

.question-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 0.85rem;
}

.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1rem 1.1rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 800;
}

.faq-list p {
    margin: 0.8rem 0 0;
    color: var(--muted);
}

.contact-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.contact-list a {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 1rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
}

.contact-list strong {
    display: block;
}

.contact-list small {
    color: var(--muted);
}

.support-actions {
    margin-top: 1rem;
}

.quiet-link {
    margin-top: 1rem;
    text-align: right;
}

.quiet-link a {
    color: var(--muted);
    font-size: 0.92rem;
}

.back-to-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--forest);
    color: #fff;
    box-shadow: var(--shadow);
    z-index: 99;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 1100px) {
    .hero-content,
    .story-grid,
    .fact-grid,
    .step-grid,
    .track-grid,
    .question-grid,
    .section-heading-split {
        grid-template-columns: 1fr;
    }

    .hero-content {
        align-items: end;
    }

    .hero-notes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: fixed;
        top: 86px;
        left: 1rem;
        right: 1rem;
        padding: 0.9rem;
        border-radius: 26px;
        background: rgba(255, 250, 244, 0.98);
        border: 1px solid rgba(24, 33, 27, 0.08);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.22s ease;
        z-index: 1201;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link,
    .nav-cta {
        width: 100%;
        color: var(--ink);
    }

    .nav-cta {
        background: var(--forest);
        color: #fff;
    }

    .hero-content {
        padding-bottom: 1.2rem;
    }

    .hero-notes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 1rem));
    }

    .section {
        padding: 56px 0;
    }

    .hero-content {
        padding-top: 1rem;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
        max-width: none;
    }

    .hero-actions,
    .join-strip,
    .support-actions {
        flex-direction: column;
    }

    .button,
    .track-link,
    .join-strip a {
        width: 100%;
    }

    .fact-card,
    .step-card,
    .faq-card,
    .support-card,
    .join-strip,
    .note-card,
    .nav-menu {
        border-radius: 24px;
    }

    .quiet-link {
        text-align: center;
    }
}
