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

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

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

            /* Accent Color */
            --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);
            --accent-light: var(--harvest-amber);
            --border:     rgba(36,36,36,0.08);
            --border-mid: rgba(36,36,36,0.14);
            --text-hi:    var(--charcoal);
            --text-mid:   var(--charcoal-mid);
            --text-dim:   rgba(36,36,36,0.5);
            --ink-text:   var(--charcoal);
            --ink-mid:    var(--charcoal-mid);

            /* Font stacks */
            --font-display:  'Bricolage Grotesque', Georgia, serif;
            --font-serif:    'Instrument Serif', Georgia, serif;
            --font-sans:     'Plus Jakarta Sans', system-ui, sans-serif;
        }

        html { scroll-behavior: smooth; }

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

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

        .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-family: var(--font-sans);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--charcoal-mid);
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: color 0.2s;
        }

        .nav-link:hover { color: var(--deep-forest); }
        .nav-link.active { color: var(--harvest-amber); }

        .nav-cta {
            background: transparent;
            color: var(--deep-forest);
            padding: 0.5rem 1.3rem;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            font-weight: 600;
            text-decoration: none;
            letter-spacing: 0.02em;
            transition: all 0.2s;
            border: 1px solid var(--deep-forest);
        }

        .nav-cta:hover { background: rgba(18,54,41,0.05); }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
            z-index: 210;
            position: relative;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--charcoal);
            border-radius: 2px;
            transition: all 0.3s;
        }

        .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100vh;
            background: var(--bg-soft-white);
            z-index: 150;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .mobile-menu.active { display: flex; }

        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--charcoal);
            font-size: 1.5rem;
            cursor: pointer;
            opacity: 0.5;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--charcoal);
            text-decoration: none;
            transition: color 0.2s;
        }

        .mobile-menu a:hover { color: var(--deep-forest); }

        .mobile-menu .mobile-cta {
            margin-top: 0.5rem;
            background: var(--harvest-amber);
            color: #FFFFFF;
            padding: 0.85rem 2rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
        }

        /* ========================
           PAGE HERO
        ======================== */
        .page-hero {
            padding: 9rem 2rem 4rem;
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg-soft-white);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 2rem;
            font-family: var(--font-sans);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--charcoal-mid);
        }

        .breadcrumb a {
            color: var(--charcoal-mid);
            text-decoration: none;
            transition: color 0.2s;
        }

        .breadcrumb a:hover { color: var(--deep-forest); }

        .breadcrumb span { color: var(--harvest-amber); }

        .article-tag {
            display: inline-block;
            font-family: var(--font-sans);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--harvest-amber);
            background: rgba(201,122,50,0.08);
            border: 1px solid rgba(201,122,50,0.20);
            padding: 0.35rem 1rem;
            border-radius: 100px;
            margin-bottom: 1.75rem;
        }

        .article-title {
            font-family: var(--font-serif);
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 400;
            line-height: 1.15;
            color: var(--charcoal);
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }

        .article-title em {
            font-style: italic;
            color: var(--deep-forest);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid var(--stone);
            flex-wrap: wrap;
        }

        .article-meta-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            font-family: var(--font-sans);
            font-size: 0.82rem;
            color: var(--charcoal-mid);
            font-weight: 500;
        }

        .article-meta-item svg {
            width: 14px;
            height: 14px;
            opacity: 0.5;
        }

        /* ========================
           ARTICLE BODY
        ======================== */
        .article-body {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem 7rem;
        }

        .article-intro {
            font-family: var(--font-sans);
            font-size: 1.12rem;
            line-height: 1.85;
            color: var(--charcoal-mid);
            margin: 2.5rem 0 3.5rem;
        }

        /* ========================
           PDF ACCESS GATE
        ======================== */
        .resource-gate {
            display: grid;
            grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
            gap: 2rem;
            align-items: center;
            background: var(--deep-forest);
            border: 1px solid var(--deep-forest);
            border-radius: 14px;
            padding: 2.25rem;
            margin-bottom: 3.5rem;
            color: var(--white);
        }

        .resource-gate-eyebrow {
            font-family: var(--font-sans);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--harvest-amber);
            margin-bottom: 0.8rem;
        }

        .resource-gate-copy h2 {
            font-family: var(--font-display);
            font-size: clamp(1.55rem, 3vw, 2.1rem);
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: -0.025em;
            color: var(--white);
            margin-bottom: 0.8rem;
        }

        .resource-gate-copy p {
            font-family: var(--font-sans);
            font-size: 0.94rem;
            line-height: 1.7;
            color: rgba(255,255,255,0.76);
            margin: 0;
        }

        .resource-gate-panel {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.16);
            border-radius: 10px;
            padding: 1.25rem;
        }

        .resource-gate-form { display: grid; gap: 0.75rem; }

        .resource-gate-label {
            font-family: var(--font-sans);
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(255,255,255,0.88);
        }

        .resource-gate-input {
            width: 100%;
            border: 1px solid rgba(255,255,255,0.26);
            border-radius: 6px;
            background: rgba(255,255,255,0.96);
            color: var(--charcoal);
            font-family: var(--font-sans);
            font-size: 0.92rem;
            padding: 0.8rem 0.9rem;
            outline: none;
        }

        .resource-gate-input:focus {
            border-color: var(--harvest-amber);
            box-shadow: 0 0 0 3px rgba(201,122,50,0.2);
        }

        .resource-gate-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            background: var(--harvest-amber);
            color: var(--white);
            border: none;
            border-radius: 6px;
            padding: 0.85rem 1rem;
            font-family: var(--font-sans);
            font-size: 0.9rem;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: background 0.2s;
        }

        .resource-gate-btn:hover { background: var(--harvest-amber-hover); }
        .resource-gate-btn:disabled { opacity: 0.6; cursor: not-allowed; }

        .resource-gate-note,
        .resource-gate-msg {
            font-family: var(--font-sans);
            font-size: 0.76rem;
            line-height: 1.5;
            margin: 0;
        }

        .resource-gate-note { color: rgba(255,255,255,0.58); }
        .resource-gate-msg { min-height: 1.15em; color: rgba(255,255,255,0.82); }
        .resource-gate-msg.success { color: #d4e6c8; }
        .resource-gate-msg.error { color: #f0b49b; }

        .resource-download-card { display: grid; gap: 0.75rem; }

        .resource-download-card h3 {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--white);
        }

        .resource-download-card p {
            font-family: var(--font-sans);
            font-size: 0.82rem;
            line-height: 1.6;
            color: rgba(255,255,255,0.72);
            margin: 0;
        }

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

        /* Section blocks */
        .section-block {
            margin-bottom: 4rem;
        }

        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(201,122,50,0.08);
            border: 1px solid rgba(201,122,50,0.20);
            border-radius: 8px;
            font-family: var(--font-display);
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--harvest-amber);
            margin-bottom: 1.25rem;
            flex-shrink: 0;
        }

        .section-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-title-wrap { flex: 1; }

        .section-label {
            font-family: var(--font-sans);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--harvest-amber);
            margin-bottom: 0.4rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--charcoal);
            letter-spacing: -0.02em;
            line-height: 1.22;
        }

        .section-body {
            padding-left: 3.25rem;
        }

        .section-body p {
            font-family: var(--font-sans);
            font-size: 1rem;
            line-height: 1.85;
            color: var(--charcoal-mid);
            margin-bottom: 1rem;
        }

        .section-body p:last-child { margin-bottom: 0; }

        /* Example callout */
        .example-callout {
            background: var(--white);
            border: 1px solid var(--stone);
            border-left: 3px solid var(--harvest-amber);
            border-radius: 0 8px 8px 0;
            padding: 1.25rem 1.5rem;
            margin-top: 1.5rem;
        }

        .example-label {
            font-family: var(--font-sans);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--harvest-amber);
            margin-bottom: 0.6rem;
        }

        .example-callout p {
            font-size: 0.9rem !important;
            line-height: 1.75 !important;
            color: var(--charcoal-mid) !important;
            margin-bottom: 0 !important;
        }

        /* Divider */
        .section-divider {
            border: none;
            border-top: 1px solid var(--stone);
            margin: 3rem 0;
        }

        /* ========================
           CTA BLOCK
        ======================== */
        .article-cta {
            background: var(--bg-soft-white);
            border: 1px solid var(--stone);
            border-radius: 14px;
            padding: 3rem 2.5rem;
            text-align: center;
            margin: 2rem 0;
            position: relative;
            overflow: hidden;
        }

        /* Amber accent line across top */
        .article-cta::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--harvest-amber), transparent);
        }

        .cta-eyebrow {
            font-family: var(--font-sans);
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--harvest-amber);
            margin-bottom: 1rem;
        }

        .cta-headline {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 600;
            letter-spacing: -0.025em;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
            line-height: 1.18;
        }

        .cta-sub {
            font-family: var(--font-sans);
            font-size: 0.95rem;
            line-height: 1.75;
            color: var(--charcoal-mid);
            max-width: 480px;
            margin: 0 auto 2rem;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--harvest-amber);
            color: #FFFFFF;
            padding: 0.9rem 2rem;
            border-radius: 6px;
            font-family: var(--font-sans);
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
            letter-spacing: 0.01em;
        }

        .cta-btn:hover {
            background: var(--harvest-amber-hover);
        }

        .cta-note {
            margin-top: 1rem;
            font-family: var(--font-sans);
            font-size: 0.8rem;
            color: var(--charcoal-mid);
        }

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

        footer a {
            font-family: var(--font-display);
            color: var(--harvest-amber);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
        }

        footer a:hover { opacity: 0.8; }

        footer p {
            font-family: var(--font-sans);
            font-size: 0.82rem;
            color: rgba(255,255,255,0.45);
            margin-top: 0.75rem;
        }

        /* ========================
           RESPONSIVE
        ======================== */
        @media (max-width: 640px) {
            nav { padding: 0 1.25rem; }
            .nav-right .nav-link { display: none; }
            .nav-right .nav-cta { display: none; }
            .hamburger { display: flex; }

            .page-hero { padding: 7rem 1.25rem 3rem; }
            .article-body { padding: 0 1.25rem 4rem; }

            .article-title { font-size: 1.75rem; }
            .section-title { font-size: 1.2rem; }
            .section-body { padding-left: 0; margin-top: 1rem; }
            .section-header { flex-direction: column; gap: 0.75rem; }

            .article-cta { padding: 2rem 1.5rem; }
            .cta-headline { font-size: 1.3rem; }

            .resource-gate {
                grid-template-columns: 1fr;
                padding: 1.5rem;
                margin-bottom: 2.75rem;
            }
        }
