        :root {
            --brand-red: #b02a26;
            --brand-dark: #252525;
            --accent-gold: #d4af37;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --text-light: #666666;
            --bg-cream: #faf9f7;
            --bg-white: #ffffff;
            --border-light: #e5e5e5;
        }

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

        body {
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            font-weight: 400; line-height: 1.6;
            color: var(--text-primary); background: var(--bg-white); overflow-x: hidden;
        }

        .h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.3; }
        .h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; line-height: 1.4; }
        .h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.4; }
        .body-lg { font-size: 1.125rem; font-weight: 400; line-height: 1.7; }
        .body { font-size: 1rem; font-weight: 400; line-height: 1.6; }
        .caption { font-size: 0.875rem; font-weight: 600; line-height: 1.5; text-transform: uppercase; letter-spacing: 2px; }

        .container { width: 100%; max-width: 75rem; margin: 0 auto; padding: 0 1rem; }
        @media screen and (min-width: 40em) { .container { padding: 0 2rem; } }

        .skip-link {
            position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
            overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
        }
        .skip-link:focus {
            position: fixed; top: 1rem; left: 1rem; width: auto; height: auto;
            padding: 0.75rem 1.5rem; margin: 0; overflow: visible; clip: auto;
            white-space: normal; background: var(--brand-red); color: white;
            text-decoration: none; font-weight: 600; z-index: 9999;
        }

        .top-bar { background: var(--brand-dark); color: #fff; padding: 0.5rem 0; font-size: 0.85rem; }
        .top-bar-inner { display: flex; justify-content: flex-end; align-items: center; gap: 1.5rem; }
        .top-bar-link {
            color: #ffffff; text-decoration: none; font-weight: 600;
            text-transform: uppercase; letter-spacing: 1px;
            display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease;
        }
        .top-bar-link:hover, .top-bar-link:focus { color: #e0e0e0; }

        .masthead {
            position: sticky; top: 0; background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light);
            z-index: 1000; padding: 1.5rem 0 0;
        }
        .masthead-inner { text-align: center; position: relative; }
        .brand { display: inline-block; text-decoration: none; color: var(--text-primary); margin-bottom: 1rem; }
        .brand-logo { width: 280px; height: auto; min-height: 148px; }

        .nav-main {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #1a1a1a 100%);
            width: 100vw; position: relative; left: 50%; margin-left: -50vw;
        }
        .nav-container { max-width: 75rem; margin: 0 auto; padding: 0 1rem; }
        @media screen and (min-width: 40em) { .nav-container { padding: 0 2rem; } }
        .nav-links { display: flex; justify-content: center; align-items: center; }
        .nav-link {
            color: #ffffff; text-decoration: none; font-weight: 600;
            font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px;
            position: relative; transition: all 0.2s ease;
            padding: 1.25rem 2rem; display: flex; align-items: center; gap: 0.5rem;
        }
        .nav-link::after {
            content: ''; position: absolute; bottom: 0; left: 50%;
            width: 0; height: 2px; background: #e8736f;
            transition: all 0.2s ease; transform: translateX(-50%);
        }
        .nav-link:hover::after, .nav-link:focus::after { width: 60%; }
        .nav-link:hover, .nav-link:focus { background: rgba(255,255,255,0.15); }
        .nav-toggle {
            display: none; background: none; border: none;
            font-size: 1.5rem; color: var(--text-primary); cursor: pointer;
            position: absolute; top: 1.5rem; right: 2rem;
        }
        @media screen and (max-width: 63.9375em) {
            .nav-links { display: none; flex-direction: column; }
            .nav-main.active .nav-links { display: flex; }
            .nav-link { padding: 1rem 2rem; width: 100%; justify-content: center; border-bottom: 1px solid #444; }
            .nav-toggle { display: block; }
        }

        /* Hero */
        .hero {
            position: relative; display: flex; align-items: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
            overflow: hidden; padding: 4rem 0;
        }
        .hero-bg {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"%3E%3Cg fill-opacity="0.03"%3E%3Cpolygon fill="%23fff" points="50 0 60 40 100 50 60 60 50 100 40 60 0 50 40 40"/%3E%3C/g%3E%3C/svg%3E') center/150px;
            z-index: 1;
        }
        .hero-inner {
            position: relative; z-index: 2;
            display: grid; grid-template-columns: 1fr 1fr;
            gap: 3rem; align-items: center; width: 100%;
        }
        .hero-content { color: #ffffff; }
        .hero-title { margin-bottom: 1.5rem; color: #ffffff; font-weight: 300; }
        .hero-subtitle { color: #e0e0e0; margin-bottom: 2.5rem; }
        .hero-cta {
            display: inline-flex; align-items: center; gap: 1rem;
            background: var(--brand-red); color: #ffffff;
            padding: 1rem 2.5rem; text-decoration: none;
            font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
            transition: all 0.3s ease; border: 2px solid var(--brand-red);
        }
        .hero-cta:hover, .hero-cta:focus { background: transparent; color: #ffffff; border-color: #ffffff; }
        .hero-video-wrap {
            position: relative; width: 100%; aspect-ratio: 4/3;
            border-radius: 8px; overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.08);
        }
        .hero-video-wrap iframe { border: 0; position: absolute; top: 0; height: 100%; width: 100%; }
        .hero-video-wrap::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0;
            height: 4px; background: linear-gradient(90deg, var(--brand-red), #e74c3c);
            z-index: 2; pointer-events: none;
        }
        @media screen and (max-width: 63.9375em) {
            .hero-inner { grid-template-columns: 1fr; }
            .hero-content { text-align: center; }
            .hero-video-wrap { max-width: 560px; margin: 0 auto; }
        }

        /* Sections */
        .section { padding: 5rem 0; }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-eyebrow { color: #8c1c18; margin-bottom: 1rem; }
        .section-title { margin-bottom: 1.5rem; color: var(--text-primary); }
        .section-subtitle { color: var(--text-secondary); max-width: 700px; margin: 0 auto; }

        /* Featured Grid */
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem; margin: 3rem 0;
        }
        .featured-item {
            overflow: hidden; transition: transform 0.3s ease;
            border: 1px solid var(--border-light);
            display: flex; flex-direction: column;
            text-decoration: none; color: inherit;
        }
        .featured-item:hover, .featured-item:focus {
            transform: translateY(-3px);
            outline: 2px solid var(--brand-red); outline-offset: 2px;
        }
        .featured-image {
            width: 100%; aspect-ratio: 4/5;
            object-fit: cover; display: block; flex-shrink: 0;
            background: linear-gradient(135deg, #d0d0d0, #b8b8b8);
        }
        .featured-overlay {
            background: #1a1a1a; color: #ffffff;
            padding: 1.5rem 2rem; transition: background 0.3s ease;
        }
        .featured-item:hover .featured-overlay,
        .featured-item:focus .featured-overlay { background: var(--brand-red); }
        .featured-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; color: #ffffff; }
        .featured-desc { font-size: 0.9rem; color: #ffffff; }
        @media screen and (max-width: 63.9375em) { .featured-grid { grid-template-columns: 1fr 1fr; } }
        @media screen and (max-width: 39.9375em) { .featured-grid { grid-template-columns: 1fr; } }

        /* CTA Section */
        .cta-section { background: var(--bg-cream); text-align: center; padding: 4rem 0; }
        .cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
        .btn {
            display: inline-flex; align-items: center; gap: 0.75rem;
            padding: 1rem 2rem; text-decoration: none; font-weight: 700;
            text-transform: uppercase; letter-spacing: 1px;
            transition: all 0.3s ease; border: 2px solid; font-size: 0.9rem;
        }
        .btn-primary { background: var(--brand-red); color: #ffffff; border-color: var(--brand-red); }
        .btn-primary:hover, .btn-primary:focus { background: #ffffff; color: var(--brand-red); border-color: var(--brand-red); }
        .btn-secondary { background: #ffffff; color: #1a1a1a; border-color: #1a1a1a; }
        .btn-secondary:hover, .btn-secondary:focus { background: #1a1a1a; color: #ffffff; }

        /* Ad Section */
        .ad-section {
            text-align: center; padding: 3rem 0;
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
            background: var(--bg-cream);
        }
        .ad-label { color: #4a4a4a; margin-bottom: 1rem; font-weight: 600; }


        .ad-banner img {
        width:100%;
        }

        /* Collections / Subscription */
        .collections-showcase { background: var(--bg-white); }
        .collection-card {
            background: linear-gradient(135deg, #ffffff 0%, #faf9f7 50%, #ffffff 100%);
            border: 1px solid var(--border-light); padding: 3rem;
            max-width: 1000px; margin: 0 auto; position: relative;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-radius: 8px;
        }
        .collection-card::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 6px;
            background: linear-gradient(90deg, var(--brand-red) 0%, #e74c3c 50%, var(--brand-red) 100%);
            border-radius: 8px 8px 0 0;
        }
        .collection-card::after {
            content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
            background: linear-gradient(135deg, var(--brand-red), var(--accent-gold), var(--brand-red));
            border-radius: 10px; z-index: -1; opacity: 0.1;
        }
        .collection-header { text-align: center; margin-bottom: 3rem; }
        .collection-title { color: #8c1c18; margin-bottom: 1rem; }
        .collection-tagline { color: #4a4a4a; font-weight: 500; }
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin: 2rem 0; }
        .stat-item { text-align: center; padding: 1.5rem; background: #f0ece3; border-radius: 4px; }
        .stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #8c1c18; margin-bottom: 0.5rem; }
        .stat-label { color: #3a3a3a; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; }
        .collection-desc {
            text-align: center; color: #4a4a4a;
            margin-top: 2rem; padding-top: 2rem;
            border-top: 1px solid var(--border-light); margin-bottom: 2.5rem;
        }
        .collection-cta { text-align: center; }
        .btn-purchase {
            display: inline-flex; align-items: center; gap: 0.75rem;
            background: linear-gradient(135deg, var(--brand-red) 0%, #c0392b 100%);
            color: #ffffff; padding: 1.25rem 3rem; text-decoration: none;
            font-weight: 700; font-size: 1.1rem; text-transform: uppercase;
            letter-spacing: 1px; border: none; border-radius: 6px;
            transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(176,42,38,0.3);
            position: relative; overflow: hidden;
        }
        .btn-purchase::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        .btn-purchase:hover::before { left: 100%; }
        .btn-purchase:hover, .btn-purchase:focus {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(176,42,38,0.4);
            background: linear-gradient(135deg, #8c1c18 0%, #b02a26 100%);
        }

        /* =============================================
           FEATURED GALLERY SECTION
        ============================================= */
        .feature-strip { background: var(--bg-white); padding: 5rem 0; }
        .feature-strip-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem; margin-top: 3rem;
        }
        .feature-strip-grid .featured-item .featured-image {
            aspect-ratio: 16/9; /* 16:9 — standard widescreen, consistent on all screen sizes */
        }
        @media screen and (max-width: 63.9375em) { .feature-strip-grid { grid-template-columns: 1fr; } }
        @media screen and (max-width: 39.9375em) { .feature-strip-grid { grid-template-columns: 1fr; } }

        /* Footer */
        .footer {
            background: var(--brand-dark); color: #ffffff; padding: 3rem 0;
            width: 100vw; position: relative; left: 50%; margin-left: -50vw;
        }
        .footer-container { max-width: 75rem; margin: 0 auto; padding: 0 1rem; }
        @media screen and (min-width: 40em) { .footer-container { padding: 0 2rem; } }
        .footer-content {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem; justify-content: center; max-width: 1000px; margin: 0 auto;
        }
        .footer-section h3 { color: #ffffff; font-size: 1rem; font-weight: 700; letter-spacing: 1px; margin-bottom: 1rem; }
        .footer-section p, .footer-section a { color: #cccccc; text-decoration: none; line-height: 1.8; transition: color 0.3s ease; }
        .footer-section a:hover, .footer-section a:focus { color: #ffffff; text-decoration: underline; }
        .social-links { display: flex; gap: 1rem; margin-top: 1rem; }
        .social-link {
            display: inline-flex; align-items: center; justify-content: center;
            width: 40px; height: 40px; background: #4a4a4a;
            color: #ffffff; text-decoration: none; border-radius: 6px;
            transition: all 0.3s ease; font-size: 1.2rem;
        }
        .social-link:hover, .social-link:focus { background: var(--brand-red); transform: translateY(-2px); }

        .legal-section {
            background: var(--bg-white); color: #4a4a4a;
            padding: 2rem 0; text-align: center;
            border-top: 1px solid var(--border-light);
        }
        .copyright { margin: 0 0 1rem 0; font-weight: 600; font-size: 0.95rem; color: #4a4a4a; }
        .legal-links { display: flex; justify-content: center; align-items: center; gap: 2rem; flex-wrap: wrap; list-style: none; }
        .legal-links a { color: #4a4a4a; text-decoration: none; transition: color 0.3s ease; font-size: 0.9rem; font-weight: 600; }
        .legal-links a:hover, .legal-links a:focus { color: var(--brand-red); text-decoration: underline; }
        .separator { color: #4a4a4a; user-select: none; }

        *:focus { outline: 2px solid var(--brand-red); outline-offset: 2px; }

        @media screen and (max-width: 63.9375em) { .masthead { position: relative; } .section { padding: 3rem 0; } }
        @media screen and (max-width: 39.9375em) {
            .brand-logo { width: 220px; min-height: 116px; }
            .cta-buttons { flex-direction: column; align-items: center; }
            .btn { width: 100%; max-width: 300px; justify-content: center; }
            .collection-card { padding: 2rem 1.5rem; }
            .legal-section { padding: 1.5rem 0; }
            .legal-links { flex-direction: column; gap: 1rem; }
            .separator { display: none; }
        }