:root {
            /* Legacy aliases — forward to canonical brand tokens declared in /brand.css */
            --bg-soft-white:      var(--bg);
            --off-white:          var(--surface);
            --deep-forest:        var(--brand);
            --harvest-amber:      var(--accent);
            --harvest-amber-hover:var(--accent-hover);
            --charcoal:           var(--ink);
            --charcoal-mid:       var(--ink-mid);
            --midnight-forest:    var(--brand-deep);

            /* Page-local: supporting neutrals + dark-section overlays — kept local because they are not part of the canonical shell. */
            --white:      #FFFFFF;
            --panel:      rgba(255,255,255,0.04);
            --stone:      #D9D3C7;
            --stone-mid:  #B8B0A2;
            --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);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        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 — restrained light surface, layered onto .sl-hero from /brand.css
        ======================== */
        .hero {
            min-height: 88vh;
            color: var(--charcoal);
        }

        .hero .sl-hero__title { color: var(--charcoal); max-width: 780px; }
        .hero .sl-hero__title em { font-style: normal; color: var(--accent); }
        .hero .sl-hero__sub {
            color: var(--charcoal-mid);
            opacity: 1;
        }

        .hero .sl-hero__inner { animation: none; }

        /* Reuse .btn-primary from /brand.css for the hero CTA — the inline SVG arrow is fine inside it. */

        /* ========================
           SECTION SCAFFOLD
        ======================== */
        .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;
        }

        /* ========================
           TIER GRID
        ======================== */
        .section-tiers {
            background: var(--midnight-forest);
            padding: 7rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .section-tiers::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-tiers h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 4vw, 2.8rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: 1.2rem;
        }

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

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

        .tier-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            position: relative;
            z-index: 1;
        }

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

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

        .tier-name {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.13em;
            color: var(--accent);
            margin-bottom: 0.4rem;
        }

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

        .tier-price {
            display: flex;
            align-items: baseline;
            gap: 0.15rem;
            margin-bottom: 0.3rem;
        }

        .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: 2.6rem;
            font-weight: 600;
            line-height: 1;
            letter-spacing: -0.04em;
            color: var(--harvest-amber);
        }

        .price-label {
            font-size: 0.78rem;
            color: var(--text-dim);
            margin-bottom: 0.55rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .price-period {
            font-size: 0.85rem;
            color: var(--text-mid);
            margin-bottom: 1.25rem;
        }

        .diff-card .scope {
            font-size: 0.86rem;
            color: var(--text-mid);
            line-height: 1.65;
            margin-bottom: 1.5rem;
        }

        .tier-cta {
            margin-top: auto;
            background: var(--harvest-amber);
            color: var(--white);
            padding: 0.95rem 1.4rem;
            font-size: 0.9rem;
            border-radius: 8px;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

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

        .whats-included {
            margin: 1.4rem 0 1.6rem;
            padding-top: 1.4rem;
            border-top: 1px solid var(--border-mid);
        }
        .included-heading {
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--text-hi);
            margin-bottom: 0.4rem;
            letter-spacing: -0.01em;
        }
        .included-lead {
            font-size: 0.82rem;
            color: var(--text-dim);
            line-height: 1.55;
            margin-bottom: 0.9rem;
        }
        .included-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }
        .included-item {
            display: flex;
            gap: 0.7rem;
            align-items: flex-start;
        }
        .included-check {
            color: var(--harvest-amber);
            font-size: 0.95rem;
            flex-shrink: 0;
            margin-top: 0.18rem;
            font-weight: 700;
        }
        .included-body { flex: 1; min-width: 0; }
        .included-title {
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 0.15rem;
        }
        .included-copy {
            font-size: 0.78rem;
            color: var(--text-mid);
            line-height: 1.55;
            margin: 0;
        }
        .included-cta {
            display: inline-block;
            margin-top: 0.4rem;
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--harvest-amber);
            text-decoration: none;
            letter-spacing: 0.01em;
        }
        .included-cta:hover { color: var(--accent); text-decoration: underline; }

        /* ========================
           BOOK / CALENDAR SECTION
        ======================== */
        .section-book {
            background: var(--off-white);
            padding: 7rem 2rem;
        }

        .section-book h2 {
            font-family: var(--font-display);
            font-size: clamp(1.9rem, 3.8vw, 2.7rem);
            font-weight: 600;
            line-height: 1.1;
            letter-spacing: -0.025em;
            color: var(--deep-forest);
            margin-bottom: 1.5rem;
            max-width: 720px;
        }

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

        .section-book p.body {
            font-size: 1.02rem;
            color: var(--charcoal-mid);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 560px;
        }

        .reveal-btn {
            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: 700;
            letter-spacing: 0.01em;
            transition: all 0.22s;
            border: none;
            cursor: pointer;
        }

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

        .reveal-btn[aria-expanded="true"] { display: none; }

        .cal-embed-wrap {
            margin-top: 2.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 12px 40px rgba(11,29,24,0.10);
            border: 1px solid var(--stone);
        }

        .cal-embed-wrap iframe {
            display: block;
            width: 100%;
            height: 680px;
            border: 0;
            border-radius: 12px;
        }

        /* ========================
           FAQ (shared with /course)
        ======================== */
        .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; }
        }

        /* ========================
           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); }

        /* ========================
           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 {
                padding: 7rem 1.5rem 4rem;
                min-height: auto;
            }
            .hero::after { display: none; }
            nav { padding: 0 1.5rem; }
        }

        @media (max-width: 640px) {
            .nav-link { display: none; }
            .section-tiers, .section-book, .section-faq { padding: 4rem 1.5rem; }
            .tier-grid { gap: 1rem; }
            .cal-embed-wrap iframe { height: 560px; }
        }
