        :root {
            --brand-red: #b02a26;
            --brand-dark: #252525;
            --accent-gold: #d4af37;
            --text-primary: #1a1a1a;
            --text-secondary: #4a4a4a;
            --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; line-height: 1.7; }
        .body { font-size: 1rem; line-height: 1.6; }
        .caption { font-size: 0.875rem; font-weight: 600; 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 */
        .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 */
        .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; }

        /* Header */
        .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 */
        .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; }
        }

        /* Page Header */
        .page-header {
            position: relative;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d1a1a 100%);
            padding: 3rem 0; overflow: hidden;
        }
        .page-header::before {
            content: ''; 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="40" height="40" viewBox="0 0 40 40"%3E%3Ccircle cx="1" cy="1" r="1.2" fill="%23ffffff" fill-opacity="0.08"/%3E%3Ccircle cx="21" cy="1" r="1.2" fill="%23ffffff" fill-opacity="0.05"/%3E%3Ccircle cx="1" cy="21" r="1.2" fill="%23ffffff" fill-opacity="0.06"/%3E%3Ccircle cx="21" cy="21" r="1.2" fill="%23ffffff" fill-opacity="0.04"/%3E%3C/svg%3E') center/40px 40px;
            z-index: 1;
        }
        .page-header-inner { position: relative; z-index: 2; text-align: center; }
        .page-header h1 { color: #ffffff; font-weight: 300; margin-bottom: 0.5rem; }
        .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; list-style: none; margin-top: 0.75rem; flex-wrap: wrap; }
        .breadcrumb li { font-size: 0.875rem; color: #cccccc; }
        .breadcrumb li a { color: #cccccc; text-decoration: none; transition: color 0.2s; }
        .breadcrumb li a:hover, .breadcrumb li a:focus { color: #ffffff; text-decoration: underline; }
        .breadcrumb li + li::before { content: '/'; margin-right: 0.5rem; color: #888; }

        /* =============================================
           LAYOUT WRAPPERS
           Two layout types share the same .page-layout
           padding so background is seamless top to bottom.
        ============================================= */
        .page-layout { padding: 3rem 0 5rem; background: var(--bg-white); }

        /* Two-column grid (content + sidebar) */
        .page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
        @media screen and (max-width: 63.9375em) { .page-grid { grid-template-columns: 1fr; } }

        /* Full-width single column — sits inside .page-layout, no background change */
        .full-col-wrap { margin-top: 4rem; padding-top: 4rem; border-top: 3px solid var(--border-light); }

        /* =============================================
           SHARED CONTENT SECTION STYLES
           Used in both two-col and full-col layouts
        ============================================= */
        .content-section { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border-light); }
        .content-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
        .content-section > h2 {
            color: var(--text-primary); margin-bottom: 1.5rem;
            padding-bottom: 0.75rem; border-bottom: 3px solid var(--brand-red); display: inline-block;
        }
        .content-section h3 { color: var(--text-primary); margin-bottom: 1rem; }
        .content-section p { color: #3a3a3a; margin-bottom: 1rem; }
        .content-section p:last-child { margin-bottom: 0; }

        /* =============================================
           STAGGERED IMAGE + TEXT  (two-col sidebar layout)
        ============================================= */
        .stagger-block { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; margin-bottom: 2.5rem; }
        .stagger-block.reverse { direction: rtl; }
        .stagger-block.reverse > * { direction: ltr; }
        .stagger-block img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; display: block; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .stagger-text h3 { color: var(--text-primary); margin-bottom: 0.75rem; }
        .stagger-text p { color: #3a3a3a; }
        @media screen and (max-width: 39.9375em) {
            .stagger-block, .stagger-block.reverse { grid-template-columns: 1fr; direction: ltr; }
        }

        /* =============================================
           STAGGERED IMAGE + TEXT  (full-width, wider images)
        ============================================= */
        .fw-stagger-block { display: grid; grid-template-columns: 2fr 3fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
        .fw-stagger-block.reverse { direction: rtl; }
        .fw-stagger-block.reverse > * { direction: ltr; }
        .fw-stagger-block img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 6px; display: block; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .fw-stagger-text h3 { color: var(--text-primary); margin-bottom: 0.75rem; }
        .fw-stagger-text p { color: #3a3a3a; margin-bottom: 1rem; }
        @media screen and (max-width: 63.9375em) {
            .fw-stagger-block, .fw-stagger-block.reverse { grid-template-columns: 1fr; direction: ltr; }
        }

        /* =============================================
           ACCORDION
        ============================================= */
        .accordion { border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; margin-bottom: 1rem; }
        .accordion-item { border-bottom: 1px solid var(--border-light); }
        .accordion-item:last-child { border-bottom: none; }
        .accordion-trigger {
            width: 100%; background: var(--bg-cream); border: none; padding: 1.25rem 1.5rem;
            text-align: left; font-family: inherit; font-size: 1rem; font-weight: 600;
            color: var(--text-primary); cursor: pointer;
            display: flex; justify-content: space-between; align-items: center;
            gap: 1rem; transition: background 0.2s ease;
        }
        .accordion-trigger:hover, .accordion-trigger:focus { background: #f0ece3; }
        .accordion-trigger[aria-expanded="true"] { background: #f0ece3; color: #8c1c18; }
        .accordion-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--brand-red); color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; transition: transform 0.3s ease; }
        .accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
        .accordion-panel { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
        .accordion-panel.open { max-height: 500px; padding: 1.25rem 1.5rem; }
        .accordion-panel p { color: #3a3a3a; margin-bottom: 0.75rem; }
        .accordion-panel p:last-child { margin-bottom: 0; }

        /* =============================================
           TABLE
        ============================================= */
        .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-bottom: 1rem; }
        .table-wrap table { width: 100%; border-collapse: collapse; font-size: 0.95rem; min-width: 500px; }
        .table-wrap caption { text-align: left; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; color: #3a3a3a; margin-bottom: 0.5rem; caption-side: top; }
        .table-wrap th { background: #1a1a1a; color: #ffffff; padding: 0.875rem 1rem; text-align: left; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; }
        .table-wrap td { padding: 0.875rem 1rem; color: #3a3a3a; border-bottom: 1px solid var(--border-light); }
        .table-wrap tr:nth-child(even) td { background: var(--bg-cream); }
        .table-wrap tr:hover td { background: #f0ece3; }
        .table-scroll-hint { font-size: 0.8rem; color: #595959; margin-bottom: 0.5rem; display: none; }
        @media screen and (max-width: 39.9375em) { .table-scroll-hint { display: block; } }

        /* =============================================
           BUTTONS
        ============================================= */
        .btn-group { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
        .btn { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1.75rem; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; border: 2px solid; font-size: 0.875rem; border-radius: 4px; cursor: pointer; font-family: inherit; }
        .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); }
        .btn-secondary { background: #ffffff; color: #1a1a1a; border-color: #1a1a1a; }
        .btn-secondary:hover, .btn-secondary:focus { background: #1a1a1a; color: #ffffff; }
        .btn-outline-red { background: transparent; color: var(--brand-red); border-color: var(--brand-red); }
        .btn-outline-red:hover, .btn-outline-red:focus { background: var(--brand-red); color: #ffffff; }
        .btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
        .btn-lg { padding: 1.125rem 2.5rem; font-size: 1rem; }

        /* =============================================
           LISTS
        ============================================= */
        .styled-list { list-style: none; margin-bottom: 1rem; }
        .styled-list li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: #3a3a3a; border-bottom: 1px solid var(--border-light); }
        .styled-list li:last-child { border-bottom: none; }
        .styled-list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--brand-red); }
        .styled-list-check { list-style: none; margin-bottom: 1rem; }
        .styled-list-check li { padding: 0.4rem 0 0.4rem 2rem; position: relative; color: #3a3a3a; }
        .styled-list-check li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--brand-red); font-size: 0.875rem; top: 0.5rem; }

        /* =============================================
           PHOTO GRIDS — SIDEBAR WIDTH (2-col)
        ============================================= */
        .photo-grid-lightbox { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
        .photo-grid-lightbox a { display: block; position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; border: 1px solid var(--border-light); }
        .photo-grid-lightbox img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .photo-grid-lightbox a:hover img, .photo-grid-lightbox a:focus img { transform: scale(1.03); }
        .photo-grid-lightbox a::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; bottom: 0.75rem; right: 0.75rem; background: rgba(26,26,26,0.85); color: #ffffff; width: 32px; height: 32px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; opacity: 0; transition: opacity 0.3s ease; }
        .photo-grid-lightbox a:hover::after, .photo-grid-lightbox a:focus::after { opacity: 1; }
        @media screen and (max-width: 39.9375em) { .photo-grid-lightbox { grid-template-columns: 1fr; } }

        .photo-grid-caption { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1rem; }
        .photo-caption-item { display: flex; flex-direction: column; }
        .photo-caption-item a { display: block; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px 4px 0 0; border: 1px solid var(--border-light); border-bottom: none; }
        .photo-caption-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .photo-caption-item a:hover img, .photo-caption-item a:focus img { transform: scale(1.03); }
        .photo-caption-text { background: #1a1a1a; color: #ffffff; padding: 0.875rem 1rem; border-radius: 0 0 4px 4px; }
        .photo-caption-text strong { display: block; font-size: 0.95rem; margin-bottom: 0.25rem; color: #ffffff; }
        .photo-caption-text span { font-size: 0.85rem; color: #cccccc; }
        @media screen and (max-width: 39.9375em) { .photo-grid-caption { grid-template-columns: 1fr; } }

        /* =============================================
           PHOTO GRIDS — FULL WIDTH (4-col)
        ============================================= */
        .fw-photo-grid-lightbox { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1rem; }
        .fw-photo-grid-lightbox a { display: block; position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 4px; border: 1px solid var(--border-light); }
        .fw-photo-grid-lightbox img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s ease; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .fw-photo-grid-lightbox a:hover img, .fw-photo-grid-lightbox a:focus img { transform: scale(1.03); }
        .fw-photo-grid-lightbox a::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; bottom: 0.75rem; right: 0.75rem; background: rgba(26,26,26,0.85); color: #ffffff; width: 32px; height: 32px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; opacity: 0; transition: opacity 0.3s ease; }
        .fw-photo-grid-lightbox a:hover::after, .fw-photo-grid-lightbox a:focus::after { opacity: 1; }
        @media screen and (max-width: 63.9375em) { .fw-photo-grid-lightbox { grid-template-columns: repeat(2, 1fr); } }
        @media screen and (max-width: 39.9375em) { .fw-photo-grid-lightbox { grid-template-columns: 1fr 1fr; } }

        .fw-photo-grid-caption { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 1rem; }
        .fw-photo-grid-caption .photo-caption-item a { aspect-ratio: 4/5; }
        @media screen and (max-width: 63.9375em) { .fw-photo-grid-caption { grid-template-columns: repeat(2, 1fr); } }
        @media screen and (max-width: 39.9375em) { .fw-photo-grid-caption { grid-template-columns: 1fr 1fr; } }

        /* =============================================
           SUBSCRIPTION PLANS
        ============================================= */
        .plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
        @media screen and (max-width: 39.9375em) { .plans-grid { grid-template-columns: 1fr; } }
        .plan-card { border: 2px solid var(--border-light); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.3s ease; }
        .plan-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .plan-card.featured-plan { border-color: #8c1c18; }
        .plan-header { background: #1a1a1a; color: #ffffff; padding: 1.5rem; text-align: center; }
        .plan-card.featured-plan .plan-header { background: #8c1c18; }
        .plan-badge { display: inline-block; background: var(--accent-gold); color: #1a1a1a; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.2rem 0.6rem; border-radius: 3px; margin-bottom: 0.75rem; }
        .plan-name { font-size: 1.1rem; font-weight: 700; color: #ffffff !important; margin-bottom: 0.5rem; }
        .plan-price { font-size: 2.5rem; font-weight: 700; color: #ffffff !important; line-height: 1; margin-bottom: 0.25rem; }
        .plan-period { font-size: 0.875rem; font-weight: 600; color: #f0f0f0 !important; }
        .plan-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; background: var(--bg-white); }
        .plan-savings { background: #f0ece3; color: #8c1c18; font-size: 0.8rem; font-weight: 700; padding: 0.4rem 0.75rem; border-radius: 4px; text-align: center; margin-bottom: 1rem; }
        .plan-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
        .plan-features li { padding: 0.4rem 0 0.4rem 1.75rem; position: relative; font-size: 0.875rem; color: #3a3a3a; border-bottom: 1px solid var(--border-light); }
        .plan-features li:last-child { border-bottom: none; }
        .plan-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--brand-red); font-size: 0.8rem; top: 0.5rem; }
        .plan-cta { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 0.875rem; text-decoration: none; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.3s ease; border: 2px solid #8c1c18; background: #8c1c18; color: #ffffff; }
        .plan-cta:hover, .plan-cta:focus { background: #ffffff; color: #8c1c18; }

        /* =============================================
           FEATURED PRINT
        ============================================= */
        .print-card { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
        @media screen and (max-width: 39.9375em) { .print-card { grid-template-columns: 1fr; } }
        .print-img-wrap { position: relative; }
        .print-img { width: 100%; aspect-ratio: 12/18; object-fit: cover; display: block; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .print-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--brand-red); color: #ffffff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.3rem 0.6rem; border-radius: 3px; }
        .print-details { padding: 1.5rem 1.5rem 1.5rem 0; }
        @media screen and (max-width: 39.9375em) { .print-details { padding: 1.5rem; } }
        .print-title { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
        .print-meta { font-size: 0.8rem; color: #595959; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 1rem; }
        .print-desc { font-size: 0.9rem; color: #3a3a3a; margin-bottom: 1.25rem; line-height: 1.6; }
        .print-specs { list-style: none; margin-bottom: 1.25rem; }
        .print-specs li { font-size: 0.85rem; color: #3a3a3a; padding: 0.3rem 0; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; }
        .print-specs li:last-child { border-bottom: none; }
        .print-specs li span { font-weight: 700; color: var(--text-primary); }
        .print-price { font-size: 1.75rem; font-weight: 700; color: #8c1c18; margin-bottom: 1rem; }
        .print-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--brand-red); color: #ffffff; padding: 0.875rem 1.75rem; text-decoration: none; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.3s ease; border: 2px solid var(--brand-red); }
        .print-cta:hover, .print-cta:focus { background: #ffffff; color: var(--brand-red); }

        /* =============================================
           CALLOUT BOX & PULL QUOTE
        ============================================= */
        .callout-box { background: #f0ece3; border-left: 5px solid var(--brand-red); padding: 1.5rem 2rem; border-radius: 0 6px 6px 0; margin-bottom: 1.5rem; }
        .callout-box p { color: #3a3a3a; margin: 0; font-size: 1.05rem; }
        .callout-box.callout-dark { background: #1a1a1a; border-color: #8c1c18; }
        .callout-box.callout-dark p { color: #f0f0f0; }

        .pull-quote { border-top: 3px solid var(--brand-red); border-bottom: 3px solid var(--brand-red); padding: 1.5rem 2rem; margin: 2rem 0; text-align: center; }
        .pull-quote p { font-size: 1.35rem; font-weight: 300; color: #1a1a1a; font-style: italic; margin: 0; line-height: 1.6; }
        .pull-quote cite { display: block; margin-top: 0.75rem; font-size: 0.875rem; font-weight: 700; color: #8c1c18; font-style: normal; text-transform: uppercase; letter-spacing: 1px; }

        /* =============================================
           VIDEO EMBED
        ============================================= */
        .video-embed-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.15); margin-bottom: 1rem; }
        .video-embed-wrap iframe { border: 0; position: absolute; top: 0; height: 100%; width: 100%; }

        /* =============================================
           FULL-WIDTH AD BANNER
        ============================================= */
        .fw-ad-wrap { text-align: center; margin-bottom: 2rem; }
        .fw-ad-label { font-size: 0.75rem; font-weight: 700; color: #595959; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.4rem; }
        .fw-ad-banner { width: 100%; max-width: 1170px; aspect-ratio: 1170/200; background: #f0ece3; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; margin: 0 auto; border-radius: 4px; color: #595959; flex-direction: column; gap: 0.25rem; }
        .fw-ad-banner strong { font-weight: 700; color: #3a3a3a; }
        .fw-ad-banner span { font-size: 0.75rem; color: #595959; }

        /* =============================================
           PROFILE / TEAM CARDS
        ============================================= */
        .profile-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 1rem; }
        .profile-card { border: 1px solid var(--border-light); border-radius: 8px; overflow: hidden; text-align: center; transition: box-shadow 0.3s; }
        .profile-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
        .profile-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .profile-card-body { padding: 1.25rem; background: var(--bg-white); }
        .profile-name { font-weight: 700; font-size: 1rem; color: var(--text-primary); margin-bottom: 0.25rem; }
        .profile-role { font-size: 0.8rem; color: #8c1c18; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.75rem; }
        .profile-bio { font-size: 0.875rem; color: #3a3a3a; margin-bottom: 1rem; }
        .profile-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--brand-red); text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .profile-link:hover, .profile-link:focus { text-decoration: underline; }

        /* =============================================
           TWO-COLUMN TEXT SPLIT
        ============================================= */
        .two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 1rem; }
        .two-col-text p { color: #3a3a3a; margin-bottom: 1rem; }
        @media screen and (max-width: 39.9375em) { .two-col-text { grid-template-columns: 1fr; gap: 0; } }

        /* =============================================
           SECTION INTRO WITH EYEBROW
        ============================================= */
        .section-intro { text-align: center; max-width: 800px; margin: 0 auto 3rem; }
        .section-intro .eyebrow { color: #8c1c18; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.75rem; }
        .section-intro h2 { color: var(--text-primary); margin-bottom: 1rem; }
        .section-intro p { color: #3a3a3a; font-size: 1.05rem; }

        /* =============================================
           STAT / NUMBER HIGHLIGHT BLOCKS
        ============================================= */
        .stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.5rem; margin-bottom: 1rem; }
        .stat-block { text-align: center; padding: 1.5rem 1rem; border: 1px solid var(--border-light); border-radius: 8px; background: var(--bg-cream); }
        .stat-number { font-size: 2.5rem; font-weight: 700; color: #8c1c18; line-height: 1; margin-bottom: 0.25rem; }
        .stat-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #595959; }

        /* =============================================
           ICON FEATURE BLOCKS
        ============================================= */
        .icon-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 1rem; }
        .icon-feature { text-align: center; padding: 2rem 1.5rem; border: 1px solid var(--border-light); border-radius: 8px; transition: box-shadow 0.3s ease; }
        .icon-feature:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
        .icon-feature-icon { width: 56px; height: 56px; border-radius: 50%; background: #1a1a1a; color: #ffffff; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin: 0 auto 1rem; }
        .icon-feature h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
        .icon-feature p { font-size: 0.875rem; color: #3a3a3a; margin: 0; }

        /* =============================================
           TIMELINE
        ============================================= */
        .timeline { list-style: none; position: relative; padding-left: 2rem; margin-bottom: 1rem; }
        .timeline::before { content: ''; position: absolute; left: 7px; top: 0; bottom: 0; width: 2px; background: var(--border-light); }
        .timeline-item { position: relative; padding-bottom: 2rem; }
        .timeline-item:last-child { padding-bottom: 0; }
        .timeline-item::before { content: ''; position: absolute; left: -2rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-red); border: 2px solid #ffffff; box-shadow: 0 0 0 2px var(--brand-red); }
        .timeline-date { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #8c1c18; margin-bottom: 0.25rem; }
        .timeline-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.4rem; }
        .timeline-body { font-size: 0.9rem; color: #3a3a3a; }

        /* =============================================
           TESTIMONIAL / QUOTE CARDS
        ============================================= */
        .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 1rem; }
        .testimonial-card { border: 1px solid var(--border-light); border-radius: 8px; padding: 1.5rem; background: var(--bg-cream); position: relative; }
        .testimonial-card::before { content: '\201C'; font-size: 4rem; line-height: 1; color: var(--brand-red); opacity: 0.25; position: absolute; top: 0.5rem; left: 1rem; font-family: Georgia, serif; }
        .testimonial-text { font-size: 0.95rem; color: #3a3a3a; font-style: italic; margin-bottom: 1rem; line-height: 1.7; position: relative; z-index: 1; }
        .testimonial-author { font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
        .testimonial-role { font-size: 0.8rem; color: #595959; }

        /* =============================================
           LIGHTBOX
        ============================================= */
        .lightbox-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9000; align-items: center; justify-content: center; padding: 1rem; }
        .lightbox-overlay.active { display: flex; }
        .lightbox-inner { position: relative; max-width: 900px; width: 100%; }
        .lightbox-inner img { width: 100%; height: auto; max-height: 85vh; object-fit: contain; display: block; border-radius: 4px; background: #1a1a1a; }
        .lightbox-caption { color: #ffffff; text-align: center; padding: 0.75rem 0 0; font-size: 0.95rem; }
        .lightbox-close { position: absolute; top: -2.5rem; right: 0; background: none; border: none; color: #ffffff; font-size: 1.75rem; cursor: pointer; padding: 0.25rem 0.5rem; line-height: 1; transition: color 0.2s; }
        .lightbox-close:hover, .lightbox-close:focus { color: #e8736f; }

        /* =============================================
           SIDEBAR WIDGETS
        ============================================= */
        .sidebar { display: flex; flex-direction: column; gap: 2rem; }
        .sidebar-widget { border: 1px solid var(--border-light); border-radius: 6px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
        .widget-header { background: #1a1a1a; color: #ffffff; padding: 0.875rem 1.25rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
        .widget-body { padding: 1.25rem; background: var(--bg-white); }

        .featured-model-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .featured-model-info { padding: 1rem 1.25rem 1.25rem; background: var(--bg-white); }
        .featured-model-name { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.25rem; }
        .featured-model-desc { font-size: 0.875rem; color: #3a3a3a; margin-bottom: 1rem; }
        .featured-model-link { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-red); color: #ffffff; padding: 0.625rem 1.25rem; text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.3s ease; border: 2px solid var(--brand-red); }
        .featured-model-link:hover, .featured-model-link:focus { background: #ffffff; color: var(--brand-red); }

        .featured-gallery-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; background: linear-gradient(135deg, #d0d0d0, #b8b8b8); }
        .featured-gallery-info { padding: 1rem 1.25rem 1.25rem; background: var(--bg-white); }
        .featured-gallery-name { font-weight: 700; font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.25rem; }
        .featured-gallery-desc { font-size: 0.875rem; color: #3a3a3a; margin-bottom: 1rem; }
        .featured-gallery-link { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--brand-red); color: #ffffff; padding: 0.625rem 1.25rem; text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.3s ease; border: 2px solid var(--brand-red); }
        .featured-gallery-link:hover, .featured-gallery-link:focus { background: #ffffff; color: var(--brand-red); }

        .ad-label-bar { font-size: 0.75rem; font-weight: 700; color: #595959; text-transform: uppercase; letter-spacing: 1px; padding: 0.4rem 0; text-align: center; border-top: 1px solid var(--border-light); }
        .tile-ad { aspect-ratio: 1/1; background: none; border: 1px solid #CCCCCC; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; color: #595959; font-size: 0.875rem; text-align: center; padding: 0; border-radius: 6px; overflow: hidden; }
        .tile-ad strong { display: block; font-weight: 700; color: #3a3a3a; }
        .tile-ad span { font-size: 0.75rem; color: #595959; }
        .tile-ad img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .subscribe-box { text-align: center; }
        .subscribe-box .price { font-size: 2rem; font-weight: 700; color: #8c1c18; margin-bottom: 0.25rem; display: block; }
        .subscribe-box .price-note { font-size: 0.8rem; color: #595959; display: block; margin-bottom: 1.25rem; }
        .subscribe-features { list-style: none; text-align: left; margin-bottom: 1.25rem; }
        .subscribe-features li { padding: 0.35rem 0 0.35rem 1.75rem; position: relative; font-size: 0.875rem; color: #3a3a3a; }
        .subscribe-features li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; color: var(--brand-red); font-size: 0.8rem; top: 0.45rem; }
        .btn-subscribe { display: flex; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; background: var(--brand-red); color: #ffffff; padding: 1rem; text-decoration: none; font-weight: 700; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; border-radius: 4px; transition: all 0.3s ease; border: 2px solid var(--brand-red); }
        .btn-subscribe:hover, .btn-subscribe:focus { background: #ffffff; color: var(--brand-red); }

        .song-cover { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: linear-gradient(135deg, #252525, #4a4a4a); }
        .song-info { padding: 1rem 1.25rem 1.25rem; }
        .song-title { font-weight: 700; font-size: 1rem; color: var(--text-primary); margin-bottom: 0.2rem; }
        .song-artist { font-size: 0.875rem; color: #595959; margin-bottom: 1rem; }
        .song-player { width: 100%; height: 54px; border-radius: 4px; background: #f0ece3; border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0 1rem; }
        .song-play-btn { width: 36px; height: 36px; border-radius: 50%; background: var(--brand-red); border: none; color: #ffffff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; transition: all 0.2s ease; flex-shrink: 0; }
        .song-play-btn:hover, .song-play-btn:focus { background: #8c1c18; }
        .song-progress { flex: 1; height: 4px; background: var(--border-light); border-radius: 2px; overflow: hidden; }
        .song-progress-fill { width: 0%; height: 100%; background: var(--brand-red); border-radius: 2px; }
        .song-time { font-size: 0.75rem; color: #595959; white-space: nowrap; }
        .song-links { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.75rem; }
        .song-stream-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--brand-red); text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
        .song-stream-link:hover, .song-stream-link:focus { text-decoration: underline; }

        /* =============================================
           FOOTER
        ============================================= */
        .footer { background: #1a1a1a; 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; } }
        @media screen and (max-width: 39.9375em) {
            .brand-logo { width: 220px; min-height: 116px; }
            .legal-links { flex-direction: column; gap: 1rem; }
            .separator { display: none; }
            .btn-group { flex-direction: column; }
            .btn { justify-content: center; }
        }