        :root {
            --ivory: #FAF6F1;
            --rose: #F5E6E0;
            --rose-deep: #E8D5D0;
            --taupe: #6E655B;
            --taupe-light: #C4BBB0;
            --charcoal: #2D2D2D;
            --charcoal-soft: #4A4A4A;
            --white: #FFFFFF;
            --accent: #A56254;
        }

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

        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 1000;
            background: var(--accent);
            color: var(--white);
            padding: 10px 16px;
            border-radius: 0 0 6px 0;
            font-family: system-ui, sans-serif;
            font-size: 14px;
            text-decoration: none;
        }

        .skip-link:focus {
            left: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            color: var(--charcoal);
            background: var(--ivory);
            line-height: 1.7;
            font-size: 18px;
            -webkit-font-smoothing: antialiased;
        }

        /* ===== NAVIGATION ===== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(250, 246, 241, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--rose-deep);
            padding: 14px 0;
        }

        .nav-inner {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--charcoal);
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
        }

        .nav-links a {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 13px;
            text-decoration: none;
            color: var(--taupe);
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--charcoal);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            flex-direction: column;
            gap: 5px;
        }

        .nav-toggle span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--charcoal);
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .nav-open .nav-toggle span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .nav-open .nav-toggle span:nth-child(2) {
            opacity: 0;
        }

        .nav-open .nav-toggle span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* ===== SECTION BASE ===== */
        section {
            padding: 100px 24px;
        }

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

        .section-narrow {
            max-width: 800px;
            margin: 0 auto;
        }

        .section-label {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 11px;
            font-weight: normal;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--taupe);
            margin: 0 0 16px;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--white);
            padding: 14px 40px;
            border-radius: 8px;
            font-size: 16px;
        }

        .btn-primary:hover {
            background: #8E5247;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(165, 98, 84, 0.4);
        }

        /* ===== ANIMATION BASE ===== */
        .js .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease-out, transform 0.7s ease-out;
        }

        .js .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 120px 24px 80px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            display: flex;
            align-items: center;
        }

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

        .hero-content {
            max-width: 520px;
        }

        .hero-brand {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--taupe);
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 48px;
            line-height: 1.15;
            font-weight: normal;
            margin-bottom: 20px;
            color: var(--charcoal);
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--charcoal-soft);
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 12px;
            color: var(--taupe);
            margin-top: 16px;
        }

        .hero-badge span {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: var(--rose-deep);
            border-radius: 50%;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image img {
            position: relative;
            max-width: 100%;
            height: auto;
            max-height: 520px;
            object-fit: cover;
            object-position: top;
            border-radius: 16px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }

        /* ===== STATS ===== */
        .stats {
            background: var(--charcoal);
            padding: 48px 24px;
        }

        .stats-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            text-align: center;
        }

        .stat-item {
            padding: 12px;
        }

        .stat-number {
            font-family: Georgia, serif;
            font-size: 42px;
            color: var(--ivory);
            line-height: 1.2;
            margin-bottom: 6px;
        }

        .stat-label {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--taupe-light);
        }

        /* ===== PROBLEM ===== */
        .problem {
            background: var(--white);
        }

        .problem p {
            font-size: 19px;
            color: var(--charcoal-soft);
            line-height: 1.8;
            max-width: 720px;
        }

        /* ===== WHAT YOU GET ===== */
        .what-you-get {
            background: var(--rose);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .feature-card {
            background: var(--white);
            border-radius: 10px;
            padding: 28px 24px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 28px rgba(0,0,0,0.08);
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: normal;
            color: var(--charcoal);
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--charcoal-soft);
            line-height: 1.6;
            margin: 0;
        }

        /* ===== WHY IT WORKS ===== */
        .why-works {
            background: var(--white);
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .pillar-card {
            background: var(--ivory);
            border-radius: 10px;
            padding: 28px 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .pillar-card:hover {
            transform: translateY(-4px);
        }

        .pillar-icon {
            width: 36px;
            height: 36px;
            margin: 0 auto 12px;
            color: var(--taupe);
        }

        .pillar-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .pillar-card h3 {
            font-size: 16px;
            font-weight: normal;
            color: var(--charcoal);
            margin-bottom: 6px;
        }

        .pillar-card p {
            font-size: 13px;
            color: var(--charcoal-soft);
            line-height: 1.5;
            margin: 0;
        }

        /* ===== SNEAK PEEK ===== */
        .sneak-peek {
            background: var(--rose);
        }

        .sneak-intro {
            font-size: 18px;
            color: var(--charcoal-soft);
            margin-bottom: 32px;
        }

        .exercise-preview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 24px;
        }

        .exercise-preview-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .exercise-preview-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 36px rgba(0,0,0,0.1);
        }

        .exercise-preview-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
        }

        .exercise-preview-card img.align-top {
            object-position: center top;
        }

        .exercise-preview-card img.align-face {
            object-position: 50% 12%;
        }

        .exercise-preview-label {
            padding: 16px 20px;
            text-align: center;
        }

        .exercise-preview-label h3 {
            font-size: 17px;
            font-weight: normal;
            color: var(--charcoal);
            margin: 0;
        }

        .sneak-more {
            text-align: center;
            font-size: 14px;
            color: var(--taupe);
            font-style: italic;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--white);
            padding: 70px 24px;
        }

        .faq-list {
            max-width: 720px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--rose);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            font-family: Georgia, serif;
            font-size: 18px;
            color: var(--charcoal);
            text-align: left;
            padding: 14px 0 6px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .faq-question:hover {
            color: var(--charcoal-soft);
        }

        .faq-icon {
            font-family: system-ui, sans-serif;
            font-size: 22px;
            color: var(--taupe);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
        }

        .js .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }

        .js .faq-item.open .faq-answer {
            max-height: 500px;
            padding-bottom: 10px;
        }

        .faq-answer p {
            font-size: 16px;
            color: var(--charcoal-soft);
            line-height: 1.7;
            margin: 0;
        }

        /* ===== FINAL CTA ===== */
        .cta-final {
            background: var(--charcoal);
            color: var(--ivory);
            text-align: center;
            padding: 100px 24px;
        }

        .cta-final h2 {
            font-size: 36px;
            line-height: 1.2;
            font-weight: normal;
            margin-bottom: 16px;
            color: var(--ivory);
        }

        .cta-final .price-tag {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 20px;
            color: var(--taupe-light);
            margin-bottom: 32px;
        }

        .cta-final .btn-primary {
            font-size: 18px;
            padding: 18px 48px;
        }

        .cta-final .cta-footnote {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 12px;
            color: rgba(250, 246, 241, 0.55);
            margin-top: 20px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--ivory);
            padding: 48px 24px;
            text-align: center;
            border-top: 1px solid var(--rose-deep);
        }

        .footer-logo {
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--charcoal);
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .footer-legal {
            font-size: 12px;
            color: var(--taupe);
            line-height: 1.6;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            section {
                padding: 64px 20px;
            }

            .js .nav-toggle {
                display: inline-flex;
            }

            .js .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(250, 246, 241, 0.97);
                flex-direction: column;
                gap: 0;
                padding: 8px 24px 16px;
                border-bottom: 1px solid var(--rose-deep);
            }

            .js .nav-open .nav-links {
                display: flex;
            }

            .nav-links a {
                padding: 12px 0;
                border-bottom: 1px solid var(--rose);
            }

            .nav-links a:last-child {
                border-bottom: none;
            }

            .hero {
                padding: 100px 20px 60px;
                min-height: auto;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero h1 {
                font-size: 32px;
            }

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

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

            .exercise-preview-grid {
                grid-template-columns: 1fr;
                max-width: 360px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 640px) {
            body {
                font-size: 16px;
            }

            section {
                padding: 48px 16px;
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .stat-number {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .pillars-grid {
                grid-template-columns: 1fr;
            }

            .cta-final h2 {
                font-size: 26px;
            }

            .cta-final {
                padding: 64px 20px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            .js .reveal,
            .js .reveal.visible {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .btn,
            .feature-card,
            .pillar-card,
            .exercise-preview-card,
            .js .faq-answer,
            .faq-icon,
            .nav-toggle span {
                transition: none;
            }
        }

        /* ===== PRINT ===== */
        @media print {
            .nav {
                display: none !important;
            }

            .js .reveal,
            .js .reveal.visible {
                opacity: 1;
                transform: none;
                transition: none;
            }

            .js .faq-answer {
                grid-template-rows: none;
                overflow: visible;
            }

            .js .faq-answer > p {
                min-height: auto;
                overflow: visible;
            }

            body {
                background: white;
                color: black;
            }

            .stats,
            .cta-final {
                background: white;
                color: black;
            }

            .stats .stat-number,
            .cta-final h2 {
                color: black;
            }

            .stats .stat-label,
            .cta-final .price-tag,
            .cta-final .cta-footnote {
                color: #333;
            }

            .cta-final .btn-primary {
                background: #ddd;
                color: black;
            }

            section {
                page-break-inside: avoid;
                padding: 20px 0;
            }
        }

        /* ===== FOCUS STYLES ===== */
        .nav-links a:focus-visible,
        .btn:focus-visible,
        .faq-question:focus-visible,
        .nav-toggle:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

