/*
Theme Name: Hold the Room Protocol
Theme URI: https://github.com/ke7omc/tisha-ingram-httr
Author: Brady Hales / Lever Launch
Description: Custom theme for Tisha Ingram's Hold the Room Protocol — private coaching for high-performing men. Built for a portable, client-owned WordPress.com Business handoff.
Version: 0.3.9
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary (client work)
Text Domain: hold-the-room
*/

        .skip-link {
            position: absolute;
            left: -9999px;
            top: 0;
            z-index: 1000;
            background: var(--bg-secondary, #111811);
            color: var(--text-primary, #F3ECDC);
            padding: 0.85rem 1.5rem;
            font-size: 0.85rem;
            text-decoration: none;
        }
        .skip-link:focus {
            left: 1rem;
            top: 1rem;
        }

        /* ============================================
           HOLD THE ROOM PROTOCOL , FULL SITE
           [PALETTE: applied default dark masculine palette , pending Tisha approval]
           ============================================ */

        :root {
            --bg-primary: #1C281D;
            --bg-secondary: #111811;
            --text-primary: #F3ECDC;
            --accent-gold: #A6864A;
            --supporting-sage: #7E8C72;
            --font-heading: 'Playfair Display', Georgia, serif;
            --font-body: 'Inter', -apple-system, sans-serif;
        }

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

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ============================================
           NAVIGATION
           ============================================ */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(28, 40, 29, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(126, 140, 114, 0.15);
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--supporting-sage);
            text-decoration: none;
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: color 0.3s ease;
            white-space: nowrap;
        }

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

        .nav-cta {
            color: var(--accent-gold) !important;
            font-weight: 500 !important;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ============================================
           PAGE DIVIDERS
           ============================================ */
        .page-divider {
            width: 100%;
            padding: 1rem 4rem;
            background: var(--accent-gold);
            text-align: center;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--bg-secondary);
        }

        /* ============================================
           SHARED COMPONENTS
           ============================================ */
        .section-dark { background-color: var(--bg-primary); }
        .section-darker { background-color: var(--bg-secondary); }

        .section-heading {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 600;
            line-height: 1.25;
            margin-bottom: 2rem;
            color: var(--text-primary);
        }

        .section-body {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-primary);
            opacity: 0.9;
            max-width: 700px;
        }

        .section-body p {
            margin-bottom: 1.2rem;
        }

        .section-kicker {
            font-size: 2rem;
            font-family: var(--font-heading);
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.3;
            margin-top: 1.5rem;
        }

        .photo-placeholder {
            width: 100%;
            padding: 3rem;
            border: 1px dashed var(--supporting-sage);
            text-align: center;
            color: var(--supporting-sage);
            font-size: 0.85rem;
            font-style: italic;
            background: rgba(126, 140, 114, 0.05);
        }

        .about-photo {
            width: 100%;
            aspect-ratio: 2 / 3;
            overflow: hidden;
            border-radius: 4px;
        }
        .about-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            display: block;
        }

        .btn-primary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: var(--accent-gold);
            color: var(--bg-secondary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #b8954f;
            transform: translateY(-1px);
        }

        .btn-secondary {
            display: inline-block;
            padding: 1rem 2.5rem;
            background-color: transparent;
            color: var(--text-primary);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--supporting-sage);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--text-primary);
            transform: translateY(-1px);
        }

        .cta-group {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============================================
           PAGE 1: HOMEPAGE
           ============================================ */
        .home-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10rem 4rem 8rem;
        }

        .home-hero-content {
            max-width: 800px;
        }

        .home-hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.5rem;
        }

        .home-hero-sub {
            font-size: 1.15rem;
            color: var(--supporting-sage);
            font-weight: 300;
            margin-bottom: 3rem;
            line-height: 1.5;
        }

        .loop-section {
            padding: 8rem 4rem;
        }

        .loop-section .inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .who-section {
            padding: 8rem 4rem;
        }

        .who-section .inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: center;
        }

        .how-section {
            padding: 8rem 4rem;
        }

        .how-section .inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
            text-align: left;
        }

        .step {
            padding: 2.5rem;
            border-left: 2px solid var(--accent-gold);
        }

        .step-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .step-title {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .step-body {
            font-size: 0.95rem;
            color: var(--supporting-sage);
            line-height: 1.6;
        }

        .quiz-section {
            padding: 8rem 4rem;
            text-align: center;
        }

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

        .quiz-section .section-body {
            margin: 0 auto 2.5rem;
            text-align: center;
        }

        .testimonials-section {
            padding: 8rem 4rem;
        }

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

        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .testimonial {
            padding: 2.5rem;
            border-left: 3px solid var(--accent-gold);
            background: rgba(166, 134, 74, 0.03);
        }

        .testimonial p {
            font-size: 1rem;
            line-height: 1.7;
            font-style: italic;
            opacity: 0.9;
        }

        .final-cta {
            padding: 10rem 4rem;
            text-align: center;
        }

        .final-cta .inner {
            max-width: 700px;
            margin: 0 auto;
        }

        .final-cta .section-heading {
            margin-bottom: 1.5rem;
        }

        .final-cta .section-body {
            margin: 0 auto 3rem;
            text-align: center;
        }

        /* ============================================
           PAGE 2: ABOUT
           ============================================ */
        .about-hero {
            min-height: 70vh;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: center;
            padding: 10rem 4rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-hero-text h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .about-hero-text p {
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: 0.9;
            margin-bottom: 1.2rem;
            max-width: 550px;
        }

        .content-section {
            padding: 7rem 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content-section.centered {
            text-align: center;
            max-width: 800px;
        }

        .lineage-items {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .lineage-item {
            padding: 2rem;
            border-left: 2px solid var(--accent-gold);
        }

        .lineage-item h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .lineage-item p {
            font-size: 0.95rem;
            color: var(--supporting-sage);
            line-height: 1.6;
        }

        .stats-row {
            display: flex;
            gap: 4rem;
            justify-content: center;
            margin-top: 3rem;
        }

        .stat { text-align: center; }

        .stat-number {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
        }

        .stat-label {
            font-size: 0.85rem;
            color: var(--supporting-sage);
            margin-top: 0.3rem;
        }

        .close-section {
            padding: 8rem 4rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .close-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 2.5rem;
        }

        /* ============================================
           PAGE 3: ARMOR QUIZ LEAD-IN
           ============================================ */
        .quiz-page {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10rem 4rem 8rem;
        }

        .quiz-content {
            max-width: 650px;
        }

        .quiz-content h2 {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .quiz-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 1.2rem;
        }

        .quiz-content .note {
            font-size: 0.95rem;
            color: var(--supporting-sage);
            margin-bottom: 3rem;
        }

        /* ============================================
           PAGE 4: MAP THE PATTERN
           ============================================ */
        .sales-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10rem 4rem 6rem;
        }

        .sales-hero-content { max-width: 750px; }

        .sales-hero h2 {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 4.5vw, 3.2rem);
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 2rem;
        }

        .sales-hero p {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .content-narrow {
            max-width: 750px;
            margin: 0 auto;
        }

        .phases {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .phase {
            padding: 2.5rem;
            border-top: 3px solid var(--accent-gold);
        }

        .phase-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent-gold);
            margin-bottom: 0.75rem;
        }

        .phase-title {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .phase-body {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--supporting-sage);
        }

        .objections {
            padding: 7rem 4rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .objection {
            margin-bottom: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(126, 140, 114, 0.15);
        }

        .objection:last-child { border-bottom: none; }

        .objection p {
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .objection p:first-child {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-primary);
        }

        .objection p:last-child {
            color: var(--supporting-sage);
        }

        .coach-section {
            padding: 7rem 4rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 5rem;
            align-items: center;
        }

        /* ============================================
           PAGE 5: WORK WITH ME / THE PROTOCOL
           ============================================ */
        .protocol-hero {
            padding: 10rem 4rem 6rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .protocol-hero h2 {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .protocol-hero p {
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
        }

        .timeline {
            padding: 7rem 4rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 2.5rem;
            margin-bottom: 4rem;
            padding-bottom: 4rem;
            border-bottom: 1px solid rgba(126, 140, 114, 0.15);
        }

        .timeline-item:last-child { border-bottom: none; }

        .timeline-label {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--accent-gold);
            padding-top: 0.3rem;
        }

        .timeline-content h3 {
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .timeline-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--supporting-sage);
        }

        .evidence-loop {
            padding: 7rem 4rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .evidence-loop .section-body {
            margin: 0 auto;
            text-align: center;
        }

        .start-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .start-step {
            text-align: center;
            padding: 2rem;
        }

        .start-step-number {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--accent-gold);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .start-step h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .start-step p {
            font-size: 0.9rem;
            color: var(--supporting-sage);
            line-height: 1.6;
        }

        /* ============================================
           PAGE 6: SPEAKER
           ============================================ */
        .speaker-hero {
            padding: 10rem 4rem 6rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .speaker-hero h2 {
            font-family: var(--font-heading);
            font-size: clamp(2.2rem, 4vw, 3rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .speaker-hero p {
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .topics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .topic {
            padding: 2rem;
            border-left: 2px solid var(--accent-gold);
        }

        .topic h3 {
            font-size: 1.05rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .topic p {
            font-size: 0.95rem;
            color: var(--supporting-sage);
            line-height: 1.6;
        }

        .formats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .format {
            padding: 2.5rem;
            background: rgba(126, 140, 114, 0.05);
            border: 1px solid rgba(126, 140, 114, 0.15);
            text-align: center;
        }

        .format h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .format p {
            font-size: 0.9rem;
            color: var(--supporting-sage);
            line-height: 1.6;
        }

        /* ============================================
           PAGE 7: FAQ
           ============================================ */
        .faq-hero {
            padding: 10rem 4rem 4rem;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .faq-hero h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .faq-hero p {
            font-size: 1.05rem;
            color: var(--supporting-sage);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 4rem 4rem 8rem;
        }
        .zigzag-faq-container {
            max-width: none;
            margin: 0;
            padding: 0;
        }
        .zigzag-faq-container .faq-item { padding: 0.9rem 0; }
        .zigzag-faq-container .faq-question { font-size: 0.95rem; }

        .faq-item {
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(126, 140, 114, 0.15);
        }

        .faq-item:last-child { border-bottom: none; }

        .faq-question {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.2rem;
        }

        .faq-answer {
            font-size: 1.02rem;
            line-height: 1.8;
            opacity: 0.85;
            max-width: 680px;
        }

        .faq-answer p { margin-bottom: 0.8rem; }
        .faq-answer p:last-child { margin-bottom: 0; }

        /* ============================================
           PAGE 8: BLOG
           ============================================ */
        .blog-hero {
            padding: 10rem 4rem 4rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .blog-hero h2 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .blog-hero p {
            font-size: 1.05rem;
            color: var(--supporting-sage);
        }

        .blog-grid {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 4rem 4rem;
        }

        .blog-card {
            display: block;
            padding: 2.5rem 0;
            border-bottom: 1px solid rgba(126, 140, 114, 0.15);
            text-decoration: none;
            color: var(--text-primary);
            transition: opacity 0.3s ease;
        }

        .blog-card:first-child { padding-top: 0; }
        .blog-card:hover { opacity: 0.8; }

        .blog-card-title {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .blog-card-excerpt {
            font-size: 0.95rem;
            line-height: 1.7;
            color: var(--supporting-sage);
            max-width: 650px;
        }

        .blog-card-meta {
            font-size: 0.8rem;
            color: var(--supporting-sage);
            margin-top: 0.75rem;
            opacity: 0.7;
        }

        /* Blog Post */
        .blog-post {
            max-width: 700px;
            margin: 0 auto;
            padding: 6rem 4rem;
        }

        .blog-post h3 {
            font-family: var(--font-heading);
            font-size: clamp(1.8rem, 3.5vw, 2.4rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .blog-post-meta {
            font-size: 0.85rem;
            color: var(--supporting-sage);
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(126, 140, 114, 0.15);
        }

        .blog-post p {
            font-size: 1.05rem;
            line-height: 1.9;
            margin-bottom: 1.8rem;
            opacity: 0.9;
        }

        .blog-post h4 {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
        }

        .blog-post-kicker {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 600;
            line-height: 1.4;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }

        .post-cta {
            margin-top: 4rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(126, 140, 114, 0.15);
            text-align: center;
        }

        .post-cta p {
            text-align: center;
            margin-bottom: 1.5rem;
        }

        /* ============================================
           FOOTER
           ============================================ */
        footer {
            padding: 3rem 4rem;
            border-top: 1px solid rgba(126, 140, 114, 0.15);
            text-align: center;
            font-size: 0.8rem;
            color: var(--supporting-sage);
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 968px) {
            nav { padding: 1.2rem 2rem; }
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }

            .home-hero { padding: 8rem 2rem 5rem; }
            .loop-section .inner,
            .who-section .inner { grid-template-columns: 1fr; gap: 3rem; }
            .loop-section, .who-section, .how-section,
            .quiz-section, .testimonials-section { padding: 5rem 2rem; }
            .steps { grid-template-columns: 1fr; }
            .testimonial-grid { grid-template-columns: 1fr; }
            .final-cta { padding: 5rem 2rem; }

            .about-hero { grid-template-columns: 1fr; padding: 8rem 2rem 4rem; gap: 3rem; }
            .lineage-items { grid-template-columns: 1fr; }
            .stats-row { flex-direction: column; gap: 2rem; }
            .content-section, .close-section { padding: 5rem 2rem; }

            .quiz-page { padding: 8rem 2rem 5rem; }

            .sales-hero { padding: 8rem 2rem 4rem; }
            .phases { grid-template-columns: 1fr; }
            .coach-section { grid-template-columns: 1fr; padding: 5rem 2rem; }
            .objections { padding: 5rem 2rem; }

            .protocol-hero { padding: 8rem 2rem 4rem; }
            .timeline { padding: 5rem 2rem; }
            .timeline-item { grid-template-columns: 1fr; gap: 1rem; }
            .start-steps { grid-template-columns: 1fr; }
            .evidence-loop { padding: 5rem 2rem; }

            .speaker-hero { grid-template-columns: 1fr; padding: 8rem 2rem 4rem; gap: 3rem; }
            .topics, .formats { grid-template-columns: 1fr; }

            .faq-hero { padding: 8rem 2rem 3rem; }
            .faq-container { padding: 3rem 2rem 6rem; }

            .blog-hero { padding: 8rem 2rem 3rem; }
            .blog-grid { padding: 2rem 2rem 4rem; }
            .blog-post { padding: 4rem 2rem; }

            .page-divider { padding: 1rem 2rem; }
        }

        @media (max-width: 600px) {
            .home-hero h1 { font-size: 2rem; }
            .cta-group { flex-direction: column; align-items: center; }
            .btn-primary, .btn-secondary { width: 100%; text-align: center; }
        }
        /* Short reviews grid */
        .short-reviews-section {
            padding: 6rem 4rem;
        }
        .short-reviews-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 0;
        }
        .short-review {
            padding: 1.75rem;
            border-left: 2px solid var(--accent-gold, #A6864A);
            background: rgba(166,134,74,0.03);
        }
        .short-review p {
            font-size: 0.95rem;
            line-height: 1.65;
            font-style: italic;
            opacity: 0.9;
            margin-bottom: 0.85rem;
        }
        .short-review cite {
            font-size: 0.72rem;
            color: var(--accent-gold, #A6864A);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-style: normal;
        }
        @media (max-width: 1024px) {
            .short-reviews-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 600px) {
            .short-reviews-section { padding: 4rem 1.5rem; }
            .short-reviews-grid { grid-template-columns: 1fr; }
        }

        /* Quiz testimonials — horizontal under Take the Quiz button */
        .quiz-testimonials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(126,140,114,0.15);
            padding-top: 2.5rem;
        }
        .quiz-t p {
            font-size: 0.95rem;
            line-height: 1.7;
            font-style: italic;
            opacity: 0.88;
            margin-bottom: 0.85rem;
        }
        .quiz-t cite {
            font-size: 0.75rem;
            color: var(--accent-gold, #A6864A);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-style: normal;
        }
        @media (max-width: 768px) {
            .quiz-testimonials { grid-template-columns: 1fr; gap: 1.5rem; }
        }

        .protocol-teaser-grid {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 3rem;
        }
        @media (max-width: 768px) {
            .protocol-teaser-grid { grid-template-columns: 1fr; gap: 1.5rem; }
        }

        /* Zigzag rows */
        .zigzag-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 480px;
        }
        .zigzag-text {
            padding: 5rem 4rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .zigzag-photo {
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 620px;
            align-self: center;
        }
        .zigzag-photo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            display: block;
        }
        .zigzag-photo .photo-placeholder {
            height: 100%;
            min-height: 480px;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(126,140,114,0.04);
        }
        @media (max-width: 768px) {
            .zigzag-row { grid-template-columns: 1fr; min-height: unset; }
            .zigzag-photo { order: -1; height: 380px; padding-top: 1.5rem; box-sizing: border-box; }
            .zigzag-photo .photo-placeholder { min-height: 260px; }
            .zigzag-text { padding: 3rem 1.5rem; }
        }

        /* Scrolling reviews */
        .scroll-reviews-section {
            padding: 4rem 0;
            overflow: hidden;
        }
        .scroll-track-wrap {
            overflow: hidden;
            position: relative;
        }
        .scroll-track-wrap::before,
        .scroll-track-wrap::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0;
            width: 100px;
            z-index: 2;
            pointer-events: none;
        }
        .scroll-track-wrap::before {
            left: 0;
            background: linear-gradient(to right, var(--bg-darker, #111811), transparent);
        }
        .scroll-track-wrap::after {
            right: 0;
            background: linear-gradient(to left, var(--bg-darker, #111811), transparent);
        }
        .scroll-track {
            display: flex;
            gap: 1.5rem;
            width: max-content;
            animation: scroll-left 40s linear infinite;
        }
        .scroll-track:hover { animation-play-state: paused; }
        @keyframes scroll-left {
            0%   { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .scroll-card {
            width: 300px;
            flex-shrink: 0;
            padding: 2rem;
            border: 1px solid rgba(126,140,114,0.15);
            background: rgba(255,255,255,0.02);
        }
        .scroll-card p {
            font-size: 0.93rem;
            line-height: 1.75;
            font-style: italic;
            margin-bottom: 0.85rem;
            opacity: 0.9;
        }
        .scroll-card cite {
            font-size: 0.75rem;
            color: var(--accent-gold, #A6864A);
            letter-spacing: 0.8px;
            text-transform: uppercase;
            font-style: normal;
        }
        /* Larger CTA headings */
        .final-cta .section-heading,
        .quiz-section .section-heading {
            font-size: clamp(2rem, 4vw, 3rem);
            line-height: 1.15;
        }

        /* Bio data grid */
        .bio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        .bio-box {
            padding: 1.25rem 1.5rem;
            border: 1px solid rgba(166,134,74,0.25);
            background: rgba(166,134,74,0.04);
        }
        .bio-box-label {
            font-size: 0.68rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent-gold, #A6864A);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .bio-box-value {
            font-size: 0.93rem;
            line-height: 1.55;
            opacity: 0.9;
        }
        @media (max-width: 600px) {
            .bio-grid { grid-template-columns: 1fr; }
        }

        /* Stats zigzag */
        .stats-label {
            font-size: 0.72rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--accent-gold, #A6864A);
            font-weight: 500;
            margin-bottom: 2rem;
        }
        .stats-block { margin-bottom: 1.5rem; }
        .stat-item {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 1.5rem;
            padding: 1.25rem 0;
            border-bottom: 1px solid rgba(126,140,114,0.15);
            align-items: start;
        }
        .stat-item:last-child { border-bottom: none; }
        .stat-number {
            font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold, #A6864A);
            line-height: 1;
        }
        .stat-text {
            font-size: 0.95rem;
            line-height: 1.65;
            opacity: 0.85;
        }
        .stats-close {
            font-size: 0.95rem;
            color: var(--sage, #7E8C72);
            line-height: 1.65;
            margin-top: 1rem;
        }

        /* FAQ accordion toggle */
        .faq-question {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background: none;
            border: none;
            width: 100%;
            text-align: left;
            font: inherit;
            color: inherit;
            padding: 0;
            margin: 0;
        }
        .faq-question:hover { color: var(--accent-gold, #A6864A); }
        .faq-question:focus-visible { outline: 2px solid var(--accent-gold, #A6864A); outline-offset: 4px; }
        .faq-toggle {
            font-size: 1.4rem;
            font-weight: 300;
            color: var(--accent-gold, #A6864A);
            flex-shrink: 0;
            margin-left: 1rem;
            transition: transform 0.2s;
            font-family: sans-serif;
        }
        .faq-answer {
            display: none;
            padding-bottom: 1.25rem;
        }
        .faq-answer.open { display: block; }
        .faq-toggle.open { transform: rotate(45deg); display: inline-block; }


        /* ============================================
           PAGE 4: PATTERN MAP — standalone styles
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #111811; color: #F3ECDC; -webkit-font-smoothing: antialiased; line-height: 1.6; }
    a { color: inherit; text-decoration: none; }

    .bg-dark  { background: #111811; }
    .bg-green { background: #1C281D; }
    .sec { padding: 7rem 4rem; }
    .c  { max-width: 860px;  margin: 0 auto; }
    .cn { max-width: 640px;  margin: 0 auto; }

    .label { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #A6864A; font-weight: 500; margin-bottom: 1.25rem; }
    .h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; line-height: 1.15; font-style: italic; }
    .h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; }
    .body { font-size: 1.05rem; line-height: 1.85; opacity: 0.9; }

    /* NAV */
    .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(17,24,17,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(126,140,114,0.15); padding: 1.25rem 4rem; display: flex; justify-content: space-between; align-items: center; }
    .nav-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.5px; }
    .nav-btn { padding: 0.6rem 1.5rem; background: #A6864A; color: #111811; font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border: none; cursor: pointer; }

    /* BUTTONS */
    .btn-p { display: inline-block; padding: 1rem 2.8rem; background: #A6864A; color: #111811; font-size: 0.82rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s; font-family: 'Inter', sans-serif; }
    .btn-p:hover { background: #b8954f; }
    .btn-p.large { padding: 1.15rem 3.5rem; font-size: 0.88rem; }
    .btn-p.full { width: 100%; max-width: 520px; text-align: center; }
    .btn-ghost { display: inline-block; padding: 0.9rem 2.4rem; background: transparent; color: #F3ECDC; font-size: 0.8rem; font-weight: 500; letter-spacing: 1.2px; text-transform: uppercase; border: 1px solid #7E8C72; cursor: pointer; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
    .btn-ghost:hover { border-color: #F3ECDC; }
    .guar { font-size: 0.78rem; color: #7E8C72; margin-top: 0.65rem; display: block; }

    /* ── SECTION 1: HERO ── */
    .hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 12rem 4rem 7rem; background: #1C281D; }
    .hero-inner { max-width: 660px; }
    .hero-sub { font-size: 1.1rem; line-height: 1.75; opacity: 0.85; margin: 1.75rem auto 2.5rem; max-width: 560px; }

    /* ── SECTION 2: PRICE + WHAT YOU GET ── */
    .price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; margin-top: 0; }

    /* price side */
    .price-table { border: 1px solid rgba(126,140,114,0.2); }
    .price-row { display: flex; justify-content: space-between; align-items: center; padding: 0.95rem 1.5rem; border-bottom: 1px solid rgba(126,140,114,0.15); }
    .price-row-label { font-size: 0.9rem; color: #7E8C72; }
    .price-row-was { font-size: 0.85rem; color: #7E8C72; text-decoration: line-through; opacity: 0.5; }
    .price-total { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 1.5rem; background: rgba(166,134,74,0.07); border-top: 2px solid #A6864A; }
    .price-total-label { font-size: 0.95rem; font-weight: 600; }
    .price-total-amount { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; font-weight: 700; color: #A6864A; }
    .price-cta { margin-top: 1.5rem; }

    /* what you get side */
    .get-grid { border-top: 1px solid rgba(126,140,114,0.15); }
    .get-row { padding: 1.1rem 0; border-bottom: 1px solid rgba(126,140,114,0.15); }
    .get-label { font-size: 0.88rem; font-weight: 600; color: #F3ECDC; margin-bottom: 0.25rem; }
    .get-value { font-size: 0.88rem; line-height: 1.65; color: #7E8C72; }

    /* ── SECTION 3: TESTIMONIAL ── */
    .tbox { padding: 3.5rem 4rem; border-left: 4px solid #A6864A; background: rgba(166,134,74,0.04); }
    .ttext { font-size: 1.1rem; line-height: 1.85; font-style: italic; opacity: 0.92; margin-bottom: 1.25rem; }
    .tcite { font-size: 0.78rem; color: #A6864A; letter-spacing: 1px; text-transform: uppercase; font-style: normal; }

    /* ── SECTION 4: OBJECTIONS + SHORT REVIEWS ── */
    .obj { padding: 1.6rem 0; border-bottom: 1px solid rgba(126,140,114,0.15); }
    .obj:first-child { border-top: 1px solid rgba(126,140,114,0.15); }
    .obj-t { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
    .obj-b { font-size: 0.95rem; line-height: 1.75; color: #7E8C72; }

    .reviews-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
    .rc { padding: 1.5rem; border-left: 2px solid #A6864A; background: rgba(166,134,74,0.03); }
    .rc p { font-size: 0.9rem; line-height: 1.7; font-style: italic; opacity: 0.9; margin-bottom: 0.65rem; }
    .rc cite { font-size: 0.7rem; color: #A6864A; letter-spacing: 0.8px; text-transform: uppercase; font-style: normal; }

    /* ── SECTION 5: FINAL CTA ── */
    .final { padding: 9rem 4rem; text-align: center; background: #1C281D; }
    .final-h { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem; }
    .final-sub { font-size: 1rem; opacity: 0.75; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

    /* FAQ + UPSELL (below close) */
    .faq-item { border-bottom: 1px solid rgba(126,140,114,0.15); }
    .faq-item:first-child { border-top: 1px solid rgba(126,140,114,0.15); }
    .faq-btn { width: 100%; background: transparent; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; color: #F3ECDC; font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 600; padding: 1.35rem 0; line-height: 1.3; cursor: pointer; }
    .faq-btn:hover { color: #A6864A; }
    .faq-icon { color: #A6864A; font-size: 1.3rem; flex-shrink: 0; transition: transform 0.2s; font-family: sans-serif; font-weight: 300; }
    .faq-icon.open { transform: rotate(45deg); }
    .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; font-size: 0.95rem; line-height: 1.8; color: #7E8C72; }
    .faq-answer.open { max-height: 400px; padding-bottom: 1.25rem; }

    .upsell-strip { background: #111811; border-top: 1px solid rgba(126,140,114,0.15); padding: 4rem; display: flex; gap: 3rem; align-items: center; justify-content: space-between; max-width: 860px; margin: 0 auto; }
    .upsell-strip h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.35rem; font-weight: 600; margin-bottom: 0.5rem; }
    .upsell-strip p { font-size: 0.9rem; color: #7E8C72; line-height: 1.65; }

    footer { padding: 2rem 4rem; border-top: 1px solid rgba(126,140,114,0.12); text-align: center; font-size: 0.7rem; color: #7E8C72; line-height: 1.65; }

    @media (max-width: 900px) {
      .price-grid { grid-template-columns: 1fr; gap: 3rem; }
    }
    @media (max-width: 768px) {
      .nav { padding: 1.2rem 1.5rem; }
      .sec, .hero, .final { padding-left: 1.5rem; padding-right: 1.5rem; }
      .tbox { padding: 2rem 1.5rem; }
      .reviews-row { grid-template-columns: 1fr; }
      .side-by-side { grid-template-columns: 1fr !important; }
      .obj-grid { grid-template-columns: 1fr !important; }
      .upsell-strip { flex-direction: column; padding: 3rem 1.5rem; gap: 2rem; }
      .btn-p.full { max-width: 100%; }
    }

        /* ============================================
           PAGE 5: PROTOCOL — standalone styles
        ============================================ */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #111811; color: #F3ECDC; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; }
    .section { padding: 8rem 4rem; }
    .container { max-width: 900px; margin: 0 auto; }
    .container-narrow { max-width: 760px; margin: 0 auto; }
    .container-wide { max-width: 1200px; margin: 0 auto; }
    .label { font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: #A6864A; font-weight: 500; margin-bottom: 1.25rem; }
    .heading { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.85rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 1.75rem; color: #F3ECDC; }
    .body-text { font-size: 1.05rem; line-height: 1.85; opacity: 0.9; color: #F3ECDC; margin-bottom: 2rem; }
    .muted { color: #7E8C72; }
    .gold { color: #A6864A; }
    .btn-gold { display: inline-block; padding: 0.9rem 2.4rem; background: #A6864A; color: #111811; font-size: 0.8rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; border: none; cursor: pointer; }
    .bg-dark { background: #111811; }
    .bg-green { background: #1C281D; }

    /* Framework grid */
    .framework-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 3.5rem; border: 1px solid rgba(126,140,114,0.15); }
    .framework-card { padding: 2.5rem 2rem; border-right: 1px solid rgba(126,140,114,0.15); border-bottom: 1px solid rgba(126,140,114,0.15); }
    .framework-card:last-child { border-right: none; }
    .framework-num { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #A6864A; font-weight: 700; margin-bottom: 0.75rem; display: block; }
    .framework-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; color: #F3ECDC; }
    .framework-desc { font-size: 0.9rem; color: #7E8C72; line-height: 1.65; }

    /* Timeline */
    .timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 2.5rem; margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid rgba(126,140,114,0.15); }
    .timeline-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .timeline-label { font-family: 'Playfair Display', Georgia, serif; font-size: 1.05rem; font-weight: 600; color: #A6864A; padding-top: 0.2rem; }
    .timeline-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.65rem; color: #F3ECDC; }
    .timeline-desc { font-size: 1rem; line-height: 1.75; color: #7E8C72; }

    /* What changes grid */
    .changes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
    .changes-col-title { font-size: 0.82rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #A6864A; margin-bottom: 1.25rem; }
    .changes-list { list-style: none; padding: 0; margin: 0; }
    .changes-list li { font-size: 0.95rem; color: #7E8C72; padding: 0.45rem 0; border-bottom: 1px solid rgba(126,140,114,0.15); line-height: 1.5; }

    /* Steps grid */
    .steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 3rem; }
    .step-card { text-align: center; padding: 2rem 1.5rem; }
    .step-num { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; color: #A6864A; font-weight: 700; margin-bottom: 0.75rem; display: block; }
    .step-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: #F3ECDC; }
    .step-desc { font-size: 0.9rem; color: #7E8C72; line-height: 1.6; }

    @media (max-width: 1024px) {
      .framework-grid { grid-template-columns: repeat(2, 1fr); }
      .framework-card:nth-child(2) { border-right: none; }
      .changes-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .section { padding: 5rem 1.5rem; }
      .framework-grid { grid-template-columns: 1fr; }
      .framework-card { border-right: none; }
      .timeline-item { grid-template-columns: 1fr; gap: 0.75rem; }
      .changes-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: 1fr; }
    }



/* ==========================================================================
   HTRP theme fix — mobile menu reveal.
   The source markup toggles `.show` on `.nav-links` but shipped no matching
   CSS, so the hamburger did nothing at <=968px. This restores the intended
   behavior as a dropdown, using the existing nav palette values only.
   ========================================================================== */
@media (max-width: 968px) {
    .nav-links.show {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(28, 40, 29, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(126, 140, 114, 0.15);
        padding: 1.5rem 3rem 2rem;
    }
}
