* { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            /* Primary Background */
            --bg-soft-white: #F8F7F3;
            --off-white:     #FFFFFF;

            /* Primary Brand Color */
            --deep-forest: #123629;

            /* Accent Color — CTAs, hover states */
            --harvest-amber: #C97A32;
            --harvest-amber-hover: #B36B2B;

            /* Supporting Neutral */
            --stone:      #D9D3C7;
            --stone-mid:  #B8B0A2;

            /* Text Color */
            --charcoal:   #242424;
            --charcoal-mid: #4A4A4A;

            /* Dark Sections */
            --midnight-forest: #0B1D18;

            /* Legacy aliases */
            --white:      #FFFFFF;
            --accent:     var(--harvest-amber);
            --accent-dim: rgba(201,122,50,0.10);
            --accent-glow:rgba(201,122,50,0.20);
            --border:     rgba(255,255,255,0.08);
            --border-mid: rgba(255,255,255,0.14);
            --text-dim:   rgba(255,255,255,0.45);
            --text-mid:   rgba(255,255,255,0.65);
            --text-hi:    rgba(255,255,255,0.92);
            --ink-text:   var(--charcoal);
            --ink-mid:    var(--charcoal-mid);

            --font-display: 'Bricolage Grotesque', Georgia, serif;
            --font-sans:    'Plus Jakarta Sans', system-ui, sans-serif;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: var(--font-sans);
            color: var(--charcoal);
            background: var(--bg-soft-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* ========================
           NAV
        ======================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 100;
            padding: 0 2rem;
            height: 64px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(24px) saturate(180%);
            background: rgba(26,20,14,0.85);
            border-bottom: 1px solid var(--border);
        }

        .logo {
            display: block;
            height: 32px;
            width: auto;
        }

        .logo img {
            height: 32px;
            width: auto;
            max-height: 44px;
            display: block;
            transition: height 0.2s;
        }

        @media (max-width: 768px) {
            .logo img { height: 38px; }
        }

        @media (max-width: 480px) {
            .logo img { height: 42px; }
        }

        .nav-right {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .nav-link {
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-mid);
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: color 0.2s;
        }

        .nav-link:hover { color: var(--text-hi); }

        .nav-cta {
            background: var(--accent) !important;
            color: var(--ink) !important;
            padding: 0.5rem 1.25rem !important;
            border-radius: 6px !important;
            font-weight: 700 !important;
            font-size: 0.8rem !important;
            letter-spacing: 0.02em !important;
            transition: all 0.2s !important;
            text-decoration: none;
        }

        .nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px); }

        /* ========================
           HERO
        ======================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 2rem 6rem;
            position: relative;
            overflow: hidden;
        }

        /* Field texture overlay */
        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(45,80,22,0.08) 0%, transparent 60%),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
        }

        /* Topographic rings */
        .hero::after {
            content: '';
            position: absolute;
            top: -40%;
            right: -20%;
            width: 80%;
            aspect-ratio: 1;
            background: transparent;
            border-radius: 50%;
            box-shadow:
                0 0 0 1px rgba(45,80,22,0.06),
                0 0 0 40px rgba(45,80,22,0.04),
                0 0 0 80px rgba(45,80,22,0.03),
                0 0 0 140px rgba(45,80,22,0.02),
                0 0 0 200px rgba(45,80,22,0.015);
            pointer-events: none;
        }

        .hero-inner {
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.13em;
            color: var(--accent);
            margin-bottom: 1.4rem;
        }

        .hero-label::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 1px;
            background: var(--accent);
            opacity: 0.7;
        }

        .hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.4rem, 5vw, 3.6rem);
            font-weight: 600;
            line-height: 1.08;
            letter-spacing: -0.03em;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .hero h1 em {
            font-style: normal;
            color: var(--accent);
        }

        .hero-sub {
            font-size: 1.05rem;
            line-height: 1.7;
            color: var(--text-mid);
            margin-bottom: 2.5rem;
            max-width: 480px;
        }

        .course-inline {
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
            max-width: 460px;
        }

        .course-inline-row {
            display: flex;
            gap: 0.5rem;
            background: var(--white);
            border: 1px solid var(--stone);
            border-radius: 8px;
            padding: 0.4rem;
            box-shadow: 0 4px 14px rgba(0,0,0,0.04);
        }

        .course-inline input {
            flex: 1;
            background: transparent;
            border: none;
            outline: none;
            color: var(--ink-text);
            font-family: var(--font-sans);
            font-size: 0.95rem;
            padding: 0.75rem 0.9rem;
        }

        .course-inline input::placeholder {
            color: var(--stone-mid);
        }

        .course-inline button {
            background: var(--harvest-amber);
            color: #fff;
            border: none;
            padding: 0.85rem 1.2rem;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
        }

        .course-inline button:hover {
            background: var(--harvest-amber-hover);
        }

        .course-inline button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .cp-proof {
            max-width: 920px;
            margin: 1.5rem auto 1.75rem;
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }
        .cp-proof-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }
        .cp-proof-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.1rem 1.15rem;
            margin: 0;
        }
        .cp-proof-card blockquote {
            font-family: var(--font-display);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0 0 0.7rem;
            color: var(--ink-text);
        }
        .cp-proof-card figcaption {
            font-size: 0.78rem;
            color: var(--ink-mid);
            line-height: 1.4;
        }
        .cp-proof-card figcaption strong {
            display: block;
            color: var(--harvest-amber);
            font-weight: 600;
            margin-bottom: 1px;
        }
        .cp-proof-card figcaption span {
            display: block;
            color: var(--stone-mid);
        }
        @media (max-width: 880px) {
            .cp-proof-grid { grid-template-columns: 1fr; }
        }

        .course-inline-msg {
            font-size: 0.78rem;
            color: var(--stone-mid);
            margin-top: 0.55rem;
            min-height: 1.2em;
        }

        .course-inline-msg.success { color: var(--harvest-amber); }
        .course-inline-msg.error { color: #B85C38; }

        @media (max-width: 480px) {
            .course-inline-row { flex-direction: column; }
            .course-inline button { width: 100%; }
        }

        .hero-cta-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            background: var(--accent);
            color: var(--ink);
            padding: 1.1rem 2.2rem;
            border-radius: 8px;
            font-family: var(--font-sans);
            font-size: 0.96rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: all 0.22s;
            width: fit-content;
            border: none;
            cursor: pointer;
        }

        .btn-hero:hover {
            background: #d4962f;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(45,80,22,0.35);
        }

        .btn-hero svg { flex-shrink: 0; }

        .hero-trust {
            font-size: 0.78rem;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-trust::before {
            content: '✓';
            color: var(--accent);
            font-size: 0.75rem;
        }

        /* Hero right: course card stack */
        .hero-card-stack {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .course-week {
            background: var(--bg-soft-white);
            border: 1px solid var(--stone);
            border-radius: 10px;
            padding: 1.25rem 1.4rem;
            margin-bottom: 0.6rem;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            transition: all 0.2s;
            position: relative;
        }

        .course-week:hover {
            border-color: var(--harvest-amber);
            transform: translateX(4px);
        }

        .week-badge {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: var(--accent-dim);
            border: 1px solid rgba(45,80,22,0.2);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 800;
            color: var(--accent);
            letter-spacing: 0.04em;
            font-family: var(--font-sans);
        }

        .week-content { flex: 1; }

        .week-title {
            font-family: var(--font-display);
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-hi);
            margin-bottom: 0.2rem;
            letter-spacing: -0.01em;
        }

        .week-desc {
            font-size: 0.76rem;
            color: var(--text-dim);
            line-height: 1.5;
        }

        /* ========================
           WHO THIS IS FOR
        ======================== */
        .section-who {
            background: var(--off-white);
            padding: 6rem 2rem;
        }

        .section-inner {
            max-width: 1100px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.13em;
            color: var(--harvest-amber);
            margin-bottom: 1.2rem;
        }

        .section-label::before {
            content: '';
            display: inline-block;
            width: 20px;
            height: 1px;
            background: var(--harvest-amber);
            opacity: 0.7;
        }

        .section-label.on-dark {
            color: var(--accent);
        }

        .section-label.on-dark::before {
            background: var(--accent);
            opacity: 0.7;
        }

        .section-who h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--deep-forest);
            margin-bottom: 1rem;
        }

        .section-who p.lead {
            font-size: 1.05rem;
            color: var(--charcoal-mid);
            max-width: 580px;
            line-height: 1.7;
            margin-bottom: 3rem;
        }

        .who-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1px;
            background: var(--stone);
            border-radius: 12px;
            overflow: hidden;
        }

        .who-item {
            background: var(--off-white);
            padding: 2rem 1.8rem;
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            transition: background 0.2s;
        }

        .who-item:hover { background: #fff; }

        .who-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            background: var(--stone);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .who-text h3 {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--ink-text);
            margin-bottom: 0.35rem;
            letter-spacing: -0.01em;
        }

        .who-text p {
            font-size: 0.82rem;
            color: var(--ink-mid);
            line-height: 1.6;
        }

        /* ========================
           WHAT MAKES THIS DIFFERENT
        ======================== */
        .section-diff {
            background: var(--midnight-forest);
            padding: 6rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-diff::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(201,122,50,0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .section-diff h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .section-diff p.lead {
            font-size: 1rem;
            color: var(--text-mid);
            max-width: 520px;
            line-height: 1.7;
            margin-bottom: 3.5rem;
        }

        .diff-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.5rem;
        }

        .diff-card {
            background: var(--panel);
            border: 1px solid var(--border-mid);
            border-radius: 10px;
            padding: 1.8rem;
            position: relative;
            transition: all 0.22s;
        }

        .diff-card:hover {
            border-color: rgba(45,80,22,0.25);
            transform: translateY(-2px);
        }

        .diff-marker {
            width: 28px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            margin-bottom: 1.1rem;
        }

        .diff-card h3 {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.6rem;
            letter-spacing: -0.01em;
        }

        .diff-card p {
            font-size: 0.84rem;
            color: var(--text-mid);
            line-height: 1.65;
        }

        /* ========================
           PRICE CALLOUT
        ======================== */
        .section-price {
            background: var(--off-white);
            padding: 6rem 2rem;
        }

        .price-box {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
        }

        .price-box h2 {
            font-family: var(--font-display);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--deep-forest);
            margin-bottom: 1rem;
        }

        .price-box h2 em {
            font-style: normal;
            color: var(--harvest-amber);
        }

        .price-box p.body {
            font-size: 1.02rem;
            color: var(--charcoal-mid);
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .price-amount {
            display: inline-flex;
            align-items: baseline;
            gap: 0.4rem;
            margin-bottom: 2.5rem;
        }

        .price-dollar {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--charcoal-mid);
            margin-top: 0.5rem;
        }

        .price-num {
            font-family: var(--font-display);
            font-size: 5rem;
            font-weight: 600;
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--harvest-amber);
        }

        .price-label {
            font-size: 0.85rem;
            color: var(--ink-mid);
            align-self: flex-end;
            margin-bottom: 0.4rem;
        }

        .btn-price {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            background: var(--harvest-amber);
            color: var(--white);
            padding: 1.1rem 2.4rem;
            border-radius: 8px;
            font-family: var(--font-sans);
            font-size: 0.96rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: all 0.22s;
            border: none;
        }

        .btn-price:hover {
            background: var(--harvest-amber-hover);
            transform: translateY(-2px);
        }

        .price-footnote {
            font-size: 0.78rem;
            color: var(--stone-mid);
            margin-top: 1.2rem;
        }

        /* ========================
           FINAL CTA
        ======================== */
        .section-final {
            background: var(--midnight-forest);
            padding: 7rem 2rem;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .section-final::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(45,80,22,0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .final-inner {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-inner .section-label {
            justify-content: center;
        }

        .section-final h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 4vw, 2.8rem);
            font-weight: 600;
            line-height: 1.12;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: 1.2rem;
        }

        .section-final p {
            font-size: 1.02rem;
            color: var(--text-mid);
            line-height: 1.7;
            margin-bottom: 2.5rem;
        }

        .cta-group {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .btn-final {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--harvest-amber);
            color: var(--white);
            padding: 1.1rem 2.4rem;
            border-radius: 8px;
            font-family: var(--font-sans);
            font-size: 0.96rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.01em;
            transition: all 0.22s;
            border: none;
        }

        .btn-final:hover {
            background: var(--harvest-amber-hover);
            transform: translateY(-2px);
        }

        .final-audit {
            font-size: 0.82rem;
            color: var(--text-dim);
        }

        .final-audit a {
            color: var(--text-mid);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s;
        }

        .final-audit a:hover { color: var(--text-hi); }

        /* ========================
           FOOTER
        ======================== */
        footer {
            background: var(--midnight-forest);
            border-top: 1px solid var(--border);
            padding: 2.5rem 2rem;
            text-align: center;
        }

        footer p {
            font-size: 0.8rem;
            color: var(--text-dim);
        }

        footer a {
            color: var(--text-mid);
            text-decoration: none;
        }

        footer a:hover { color: var(--text-hi); }

        /* ========================
           CROSS-SELL (course → workshop)
        ======================== */
        .section-cross-sell {
            background: var(--midnight-forest);
            padding: 5rem 2rem;
        }
        .section-cross-sell h2 {
            font-family: var(--font-display);
            font-size: clamp(1.7rem, 3.4vw, 2.3rem);
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: 1.2rem;
            max-width: 720px;
        }
        .section-cross-sell h2 em {
            color: var(--harvest-amber);
            font-style: normal;
        }
        .section-cross-sell p {
            color: rgba(255,255,255,0.82);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 660px;
            margin-bottom: 2rem;
        }
        .cross-sell-note {
            font-size: 0.82rem !important;
            color: rgba(255,255,255,0.6) !important;
            margin-top: 1rem !important;
            margin-bottom: 0 !important;
            max-width: none !important;
            letter-spacing: 0.01em;
        }

        /* ========================
           SCROLL ANIMATIONS
        ======================== */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ========================
           RESPONSIVE
        ======================== */
        @media (max-width: 860px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero {
                padding: 7rem 1.5rem 4rem;
            }

            .hero::after { display: none; }

            nav { padding: 0 1.5rem; }
        }

        @media (max-width: 640px) {
            .nav-link { display: none; }
            .section-who, .section-diff, .section-price, .section-final, .section-cross-sell, .section-faq { padding: 4rem 1.5rem; }
            .who-grid { gap: 0; }
            .diff-grid { gap: 1rem; }
        }

        /* ========================
           FAQ
        ======================== */
        .section-faq {
            background: var(--bg-soft-white);
            padding: 6rem 2rem;
        }
        .section-faq h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 3.8vw, 2.6rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--deep-forest);
            margin-bottom: 3rem;
            max-width: 720px;
        }
        .faq-list {
            max-width: 760px;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .faq-item {
            background: var(--off-white);
            border: 1px solid var(--stone);
            border-radius: 10px;
            padding: 0;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .faq-item:hover { border-color: var(--harvest-amber); }
        .faq-item[open] {
            border-color: var(--harvest-amber);
            box-shadow: 0 4px 18px rgba(45,80,22,0.06);
        }
        .faq-q {
            list-style: none;
            cursor: pointer;
            padding: 1.2rem 1.5rem;
            font-family: var(--font-display);
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--charcoal);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            letter-spacing: -0.01em;
        }
        .faq-q::-webkit-details-marker { display: none; }
        .faq-chev {
            flex-shrink: 0;
            font-family: var(--font-sans);
            font-size: 1.4rem;
            font-weight: 400;
            color: var(--harvest-amber);
            transition: transform 0.22s;
            line-height: 1;
        }
        .faq-item[open] .faq-chev { transform: rotate(45deg); }
        .faq-a {
            padding: 0 1.5rem 1.3rem;
            color: var(--charcoal-mid);
            font-size: 0.95rem;
            line-height: 1.7;
        }
        .faq-a p { margin: 0; }
        @media (max-width: 640px) {
            .faq-q { font-size: 0.94rem; padding: 1rem 1.15rem; }
            .faq-a { padding: 0 1.15rem 1.1rem; font-size: 0.88rem; }
        }

