@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Roboto:wght@400;500;700&display=swap");

:root {
            --navy: #1c1917;
            --amber: #c2410c;
            --off-white: #fcfaf6;
            --light-gray: #f5f2eb;
            --dark-gray: #57534e;
            --border-gray: #e7e5e4;
        }

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

        html, body {
            height: 100%;
        }

        body {
            font-family: 'Roboto', system-ui, -apple-system, sans-serif;
            color: var(--navy);
            background-color: var(--off-white);
            line-height: 1.6;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 0.5rem;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        p {
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        a {
            color: var(--amber);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--navy);
        }

        /* Header & Navigation */
        header {
            background-color: white;
            border-bottom: 1px solid var(--border-gray);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        header nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .nav-brand-name {
            font-family: 'Roboto Slab', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
        }

        .nav-brand-tagline {
            font-size: 0.75rem;
            color: var(--dark-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--navy);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--amber);
        }

        /* Main Content */
        main {
            flex: 1;
        }

        section {
            padding: 4rem 2rem;
        }

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

        .section-wide {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Hero Section */
        #hero_cinematic {
            position: relative;
            height: 600px;
            padding: 0;
            margin: 0;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
        }

        .hero-image-container {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .hero-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.2) 100%);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            padding: 3rem 2rem 3rem 3rem;
            max-width: 600px;
        }

        .hero-content h1 {
            color: white;
            margin-bottom: 1rem;
            font-size: 3rem;
        }

        .hero-content p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 0;
        }

        .hero-accent {
            display: inline-block;
            height: 4px;
            width: 60px;
            background-color: var(--amber);
            margin-bottom: 1rem;
        }

        /* Concept Overview */
        #concept_overview {
            background-color: white;
        }

        .concept-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .concept-text h3 {
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .concept-text p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
        }

        .concept-image-container {
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }

        .concept-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Audience Focus */
        #audience_focus {
            background-color: var(--light-gray);
        }

        .audience-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .audience-image-container {
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
            order: -1;
        }

        .audience-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .audience-text h3 {
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .audience-text p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
        }

        .audience-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .audience-list li {
            padding: 0.75rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--dark-gray);
        }

        .audience-list li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--amber);
            font-weight: bold;
        }

        /* Visual Stat Break */
        #visual_stat_break {
            background: linear-gradient(135deg, var(--navy) 0%, #1a2847 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .stat-pull-quote {
            font-family: 'Roboto Slab', serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .stat-subtext {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Play Journey */
        #play_journey_intro {
            background-color: white;
        }

        .journey-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .journey-text h3 {
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .journey-text p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
        }

        .journey-steps {
            list-style: none;
            margin-top: 1.5rem;
        }

        .journey-steps li {
            padding: 1.5rem;
            margin-bottom: 1rem;
            background-color: var(--light-gray);
            border-left: 4px solid var(--amber);
            border-radius: 2px;
        }

        .journey-steps li strong {
            color: var(--navy);
            display: block;
            margin-bottom: 0.5rem;
        }

        .journey-steps li span {
            color: var(--dark-gray);
            font-size: 0.95rem;
        }

        .journey-image-container {
            height: 400px;
            overflow: hidden;
            border-radius: 4px;
        }

        .journey-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* CTA Footer Section */
        #cta_footer_nav {
            background-color: var(--light-gray);
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: var(--amber);
            color: var(--navy);
        }

        .btn-primary:hover {
            background-color: #f59e0b;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--navy);
            border-color: var(--navy);
        }

        .btn-secondary:hover {
            background-color: var(--navy);
            color: white;
        }

        /* Footer */
        footer {
            background-color: var(--navy);
            color: white;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-column h4 {
            color: var(--amber);
            margin-bottom: 1rem;
            font-size: 1rem;
        }

        .footer-column p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.75rem;
        }

        .footer-column a {
            color: var(--amber);
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .footer-column a:hover {
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-bottom {
            text-align: center;
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }

            h2 {
                font-size: 2rem;
            }

            .nav-links {
                gap: 1rem;
                font-size: 0.9rem;
            }

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

            .hero-content h1 {
                font-size: 2rem;
            }

            .concept-grid,
            .audience-content,
            .journey-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .audience-image-container {
                order: 0;
            }

            .stat-pull-quote {
                font-size: 1.8rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }

            section {
                padding: 3rem 1.5rem;
            }
        }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
