/* ==========================================================================
   COLLABS PHOTOGRAPHY — MASTER LUXURY STYLESHEET
   Visual Director: Dave Groennesby
   Brand Identity: Electric Acid Yellow (#faed25) & Deep Obsidian Black (#040404)
   Haute Couture Editorial Typography & Ultra-Realistic 3D CRT Television Wall
   ========================================================================== */

/* --- RESET & COLOR SYSTEM --- */
:root {
    --bg-primary: #040404;
    --bg-secondary: #080808;
    --bg-surface: #0f0e0d;
    --brand-yellow: #faed25;
    --brand-yellow-bright: #fff33b;
    --brand-yellow-glow: rgba(250, 237, 37, 0.45);
    --brand-yellow-subtle: rgba(250, 237, 37, 0.08);
    --brand-yellow-border: rgba(250, 237, 37, 0.38);
    --crt-green: #39ff14;
    --crt-red: #ff2a2a;
    --text-main: #f5f5f5;
    --text-muted: #9e9a93;
    --font-haute: 'Prata', 'Playfair Display', 'Marcellus', serif;
    --font-elle: 'Prata', 'Playfair Display', serif;
    --font-elle-modern: 'Syne', 'Tenor Sans', sans-serif;
    --font-vogue: 'Italiana', 'Tenor Sans', 'Cormorant Garamond', serif;
    --font-heading: 'Playfair Display', serif;
    --font-title: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --font-fashion-sans: 'Tenor Sans', 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar in Electric Yellow */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #060606;
}
::-webkit-scrollbar-thumb {
    background: #252420;
    border-radius: 4px;
    border: 1px solid rgba(250, 237, 37, 0.25);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-yellow);
    box-shadow: 0 0 10px var(--brand-yellow-glow);
}

/* ==========================================================================
   FULLSCREEN INTRO SCREEN WITH RETRO SCANLINES
   ========================================================================== */
#intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #020202;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease;
}

.intro-studio-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.studio-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    max-width: 950px;
    height: 65vh;
    background: radial-gradient(circle at center, rgba(250, 237, 37, 0.08) 0%, rgba(20, 20, 20, 0.4) 50%, transparent 80%);
    filter: blur(40px);
    pointer-events: none;
}

.studio-top-metadata {
    padding: 24px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.studio-meta-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.intro-mini-logo {
    height: 24px;
    width: auto;
    filter: drop-shadow(0 0 8px var(--brand-yellow-glow));
}

.meta-brand-title {
    color: var(--brand-yellow);
    text-shadow: 0 0 10px var(--brand-yellow-glow);
}

.studio-meta-center .meta-tag {
    background: rgba(18, 17, 16, 0.85);
    border: 1px solid rgba(250, 237, 37, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    color: #e5e5e5;
    letter-spacing: 2.5px;
}

.studio-meta-right {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--crt-red);
    text-shadow: 0 0 8px var(--crt-red);
}

.studio-meta-right .rec-dot {
    font-size: 0.9rem;
    animation: recBlink 1.4s infinite;
}

@keyframes recBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(0.9); }
}

/* Central Stage & Sony Trinitron Chassis */
.intro-stage-center {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 920px;
    padding: 10px 20px;
    box-sizing: border-box;
}

.intro-trinitron-chassis {
    position: relative;
    width: 100%;
    max-width: 820px;
    aspect-ratio: 1200 / 896;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 35px rgba(250, 237, 37, 0.12));
    transition: transform 0.4s ease, filter 0.4s ease;
    animation: trinitronFloat 6s ease-in-out infinite alternate;
}

@keyframes trinitronFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

.trinitron-backlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 75%;
    background: radial-gradient(ellipse at center, rgba(250, 237, 37, 0.15) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

/* Sony Trinitron Front Frame Overlay (z-index: 10 - IN FRONT with user reflection) */
.intro-trinitron-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 10;
}

/* Active Glowing Green Tally / Power Indicator on Trinitron Faceplate */
.trinitron-active-power-led {
    position: absolute;
    bottom: 12.8%;
    left: 20.8%;
    width: 7px;
    height: 7px;
    background: #39ff14;
    border-radius: 50%;
    box-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
    z-index: 12;
    pointer-events: none;
    animation: ledPulse 2s ease-in-out infinite alternate;
}

@keyframes ledPulse {
    0% { opacity: 0.8; filter: brightness(1); }
    100% { opacity: 1; filter: brightness(1.4); }
}

/* Recessed Sony Trinitron Screen Socket (z-index: 2 - BEHIND PNG) */
.intro-tv-screen-socket {
    position: absolute;
    left: 27.25%;
    top: 17.52%;
    width: 47.83%;
    height: 51.67%;
    border-radius: 34px / 22px;
    overflow: hidden;
    background: #000;
    z-index: 2;
}

.intro-tv-bulb-dome {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.98);
}

.intro-tv-bulb-dome video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.18) brightness(1.02) saturate(1.1);
    transform: scale(1.05);
    transition: filter 0.3s ease;
}

/* Phosphor Green OSD on Intro Screen */
.intro-tv-osd {
    position: absolute;
    top: 12px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--crt-green);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.9);
    z-index: 8;
    pointer-events: none;
}

.intro-tv-osd .osd-live {
    animation: osdBlink 1.6s infinite;
}

/* CRT Power-Off Collapse Animation */
.intro-tv-bulb-dome.crt-powering-off {
    animation: crtPowerOff 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) forwards !important;
}

@keyframes crtPowerOff {
    0% {
        transform: scale(1);
        filter: brightness(1) contrast(1);
    }
    40% {
        transform: scaleY(0.012) scaleX(1.05);
        filter: brightness(3) contrast(2);
        background: #fff;
    }
    80% {
        transform: scaleY(0.012) scaleX(0.08);
        filter: brightness(6);
        background: #fff;
    }
    100% {
        transform: scale(0);
        opacity: 0;
        filter: brightness(10);
    }
}

/* Studio Control Dock Underneath Sony Trinitron */
.intro-dock-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
    z-index: 20;
}

.intro-btn {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(250, 237, 37, 0.4);
    color: #fff;
    padding: 12px 26px;
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.35s ease;
}

.intro-btn:hover {
    background: rgba(250, 237, 37, 0.25);
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
    box-shadow: 0 0 25px var(--brand-yellow-glow);
    transform: translateY(-2px);
}

.intro-btn.sound-active {
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
    background: rgba(250, 237, 37, 0.18);
    box-shadow: 0 0 15px var(--brand-yellow-glow);
}

.intro-btn.primary-glow {
    background: var(--brand-yellow);
    color: #040404;
    font-weight: 800;
    border: 1px solid var(--brand-yellow-bright);
    box-shadow: 0 0 25px rgba(250, 237, 37, 0.6), 0 4px 15px rgba(0, 0, 0, 0.6);
}

.intro-btn.primary-glow:hover {
    background: var(--brand-yellow-bright);
    color: #000;
    box-shadow: 0 0 40px rgba(250, 237, 37, 0.9), 0 6px 22px rgba(0, 0, 0, 0.8);
    transform: translateY(-2px) scale(1.03);
}

.intro-footer-hints {
    margin-top: 12px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    text-align: center;
}

/* Fade Out State */
.intro-fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(8, 8, 8, 0.16); /* Vederlicht, subtiel glas identiek aan de centrale balk */
    backdrop-filter: blur(8px) saturate(135%);
    -webkit-backdrop-filter: blur(8px) saturate(135%);
    border-bottom: 1px solid rgba(250, 237, 37, 0.16);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hoofd-logo {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.hoofd-logo:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 16px var(--brand-yellow-glow));
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    padding: 6px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-yellow);
    box-shadow: 0 0 8px var(--brand-yellow-glow);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--brand-yellow);
}

.nav a:hover::after {
    width: 100%;
}

.lang-selector {
    background: rgba(18, 17, 16, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(250, 237, 37, 0.28);
    color: #f5f5f5;
    padding: 7px 14px;
    border-radius: 20px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.lang-selector:hover, .lang-selector:focus {
    background: rgba(28, 26, 24, 0.6);
    border-color: var(--brand-yellow);
    box-shadow: 0 0 14px var(--brand-yellow-glow);
}

.lang-selector option {
    background: #121110;
    color: #fff;
}

/* ==========================================================================
   🏛️ HAUTE COUTURE GRAPHIC DESIGNER HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(4, 4, 4, 0.12) 0%, rgba(4, 4, 4, 0.48) 75%, rgba(4, 4, 4, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 0 24px;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Editorial Metadata Header Badge (Subtiel, zacht glas effect) */
.hero-editorial-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 44px; /* Verhoogde spatie: exact in balans met de totale spatie onder het logo */
    padding: 6px 20px;
    background: rgba(8, 8, 8, 0.16); /* Vederlicht, subtiel glas */
    border: 1px solid rgba(250, 237, 37, 0.25);
    border-radius: 40px;
    backdrop-filter: blur(8px) saturate(135%);
    -webkit-backdrop-filter: blur(8px) saturate(135%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.35s ease;
}

.hero-editorial-badge .meta-line {
    width: 20px;
    height: 1px;
    background: var(--brand-yellow);
    opacity: 0.6;
}

.hero-editorial-badge .meta-txt {
    font-family: 'Tenor Sans', 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 3.5px;
    color: #ede8df;
    text-transform: uppercase;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Floating Brand Logo */
.hero-brand-logo-wrap {
    margin-bottom: 24px;
}

.hero-brand-logo {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 0 25px rgba(250, 237, 37, 0.45));
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    0% { transform: translateY(0px); filter: drop-shadow(0 0 18px rgba(250, 237, 37, 0.35)); }
    100% { transform: translateY(-5px); filter: drop-shadow(0 0 32px rgba(250, 237, 37, 0.65)); }
}

/* ==========================================================================
   ELLE MAGAZINE EDITORIAL HERO TYPOGRAPHY & CHIC COMPOSITION
   ========================================================================== */
.hero-headline-wrap {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hero-kicker-tag {
    font-family: 'Tenor Sans', 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--brand-yellow);
    text-transform: uppercase;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(250, 237, 37, 0.35);
}

.kicker-bullet {
    display: inline-block;
    width: 3px;
    height: 3px;
    background: var(--brand-yellow);
    border-radius: 50%;
    margin: 0 7px;
    vertical-align: middle;
    box-shadow: 0 0 4px var(--brand-yellow);
}

/* Iconic ELLE Magazine Masthead Title (Prata + Playfair Italic, Perfectly Proportioned) */
.hero-editorial-title {
    font-family: 'Prata', 'Playfair Display', serif;
    margin-bottom: 12px;
    line-height: 0.88;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-editorial-title .title-line-1 {
    display: block;
    font-family: 'Prata', 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    font-weight: 400;
    letter-spacing: clamp(6px, 1.2vw, 12px);
    color: #ffffff;
    text-transform: uppercase;
    line-height: 0.95;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95);
}

.hero-editorial-title .title-line-2 {
    display: block;
    margin-top: -0.06em; /* Tight, harmonious ELLE editorial leading */
    line-height: 0.92;
}

.hero-editorial-title .title-line-2 em {
    display: block;
    font-family: 'Playfair Display', 'Prata', serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(2.5rem, 5.2vw, 4.2rem);
    letter-spacing: clamp(2px, 0.5vw, 6px);
    color: var(--brand-yellow);
    line-height: 0.95;
    text-shadow: 0 0 25px var(--brand-yellow-glow), 0 3px 18px rgba(0, 0, 0, 0.9);
}

/* Hairline Graphic Divider with Subtle Diamond Accent */
.hero-divider-graphic {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 220px;
    margin: 10px auto 0;
}

.hero-divider-graphic .hairline {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(250, 237, 37, 0.45), transparent);
}

.hero-divider-graphic .dia-dot {
    color: var(--brand-yellow);
    font-size: 0.6rem;
    text-shadow: 0 0 6px var(--brand-yellow);
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.0rem;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 30px;
    color: rgba(245, 243, 238, 0.85);
    line-height: 1.65;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-cta-btn {
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    padding: 15px 34px;
    border-radius: 30px;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-transform: uppercase;
}

.hero-cta-btn.primary {
    background: var(--brand-yellow);
    color: #040404;
    font-weight: 800;
    letter-spacing: 3px;
    box-shadow: 0 0 25px rgba(250, 237, 37, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid #faed25;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-cta-btn.primary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);

    box-shadow: 0 4px 25px rgba(250, 237, 37, 0.45);
}

.hero-cta-btn.primary:hover {
    background: var(--brand-yellow-bright);
    box-shadow: 0 8px 38px rgba(250, 237, 37, 0.75);
    transform: translateY(-3px);
}

.hero-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(250, 237, 37, 0.4);
    color: #fff;
    backdrop-filter: blur(8px);
}

.hero-cta-btn.secondary:hover {
    border-color: var(--brand-yellow);
    color: var(--brand-yellow);
    box-shadow: 0 0 25px var(--brand-yellow-glow);
    transform: translateY(-3px);
}

/* Technical Studio Coordinates Footer */
.hero-coords-footer {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    flex-wrap: wrap;
}

/* ==========================================================================
   PORTFOLIO SECTION HEADERS
   ========================================================================== */
.portfolio-section {
    padding: 130px 30px 100px;
    text-align: center;
    position: relative;
}

.portfolio-container {
    max-width: 1650px;
    margin: 0 auto;
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--brand-yellow);
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 18px;
    border: 1px solid var(--brand-yellow-border);
    border-radius: 20px;
    background: var(--brand-yellow-subtle);
    box-shadow: 0 0 12px rgba(250, 237, 37, 0.12);
}

.section-title-wrap h2 {
    font-family: var(--font-haute);
    font-size: 2.9rem;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.section-title-wrap h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--brand-yellow);
}

.section-desc {
    font-size: 0.98rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto;
}

/* ==========================================================================
   📺 ULTRA-REALISTIC 3D CRT TELEVISION WALL
   ========================================================================== */
.tv-studio-section {
    background: #030303;
    border-top: 1px solid #141414;
    border-bottom: 1px solid #141414;
    position: relative;
}

.ultra-3d-tv-wall {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 55px 40px;
    padding: 30px 10px 50px;
    perspective: 1200px;
}

@media (min-width: 1400px) {
    .ultra-3d-tv-wall {
        grid-template-columns: repeat(3, 1fr);
    }
    .tv-size-large {
        grid-column: span 2;
    }
}

@media (max-width: 850px) {
    .ultra-3d-tv-wall {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- THE 3D TV CARD CONTAINER --- */
.ultra-3d-tv-card {
    position: relative;
    cursor: pointer;
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), z-index 0.3s ease, filter 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Staggered Non-Linear Angles & Elevation */
.ultra-3d-tv-card.rot-neg-2 { transform: rotate(-2.4deg) translateY(-8px); }
.ultra-3d-tv-card.rot-pos-2 { transform: rotate(2.6deg) translateY(14px); }
.ultra-3d-tv-card.rot-neg-1 { transform: rotate(-1.4deg) translateY(6px); }
.ultra-3d-tv-card.rot-pos-1 { transform: rotate(1.8deg) translateY(-10px); }

.ultra-3d-tv-card:hover {
    transform: rotate(0deg) scale(1.05) translateY(-14px) !important;
    z-index: 50;
    filter: drop-shadow(0 25px 50px rgba(250, 237, 37, 0.4));
}

.tv-3d-chassis {
    position: relative;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1200 / 896;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95));
    transition: filter 0.35s ease;
}

/* 3D PNG Overlay Frame (Sits in FRONT at z-index: 10 with custom reflection layer & bottom shadows) */
.tv-3d-png-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    z-index: 10;
}

/* ==========================================================================
   📐 MATHEMATICALLY EXACT SCREEN SOCKETS (LOCKED TO USER-CUT BEZEL HOLES)
   ========================================================================== */
.tv-screen-socket {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    background: #000;
}

/* Model 1: 1972 Wood Console (cutout: X=[209, 805], Y=[170, 648]) */
.tv-wood-3d .tv-screen-socket {
    left: 17.42%;
    top: 18.97%;
    width: 49.67%;
    height: 53.35%;
    border-radius: 40px / 28px;
}

/* Model 2: Sony Trinitron (cutout: X=[328, 901], Y=[158, 620]) */
.tv-trinitron-3d .tv-screen-socket {
    left: 27.33%;
    top: 17.63%;
    width: 47.75%;
    height: 51.56%;
    border-radius: 34px / 22px;
}

/* Model 3: Space-Age White Bubble (cutout: X=[402, 802], Y=[309, 626]) */
.tv-bubble-3d .tv-screen-socket {
    left: 33.50%;
    top: 34.49%;
    width: 33.33%;
    height: 35.38%;
    border-radius: 50%;
}

/* Model 4: Acid Yellow Portable (cutout: X=[235, 785], Y=[295, 725]) */
.tv-yellow-3d .tv-screen-socket {
    left: 19.58%;
    top: 32.92%;
    width: 45.83%;
    height: 47.99%;
    border-radius: 48px / 32px;
}

/* Model 5: Pop-Art Red Portable (cutout: X=[366, 807], Y=[285, 655]) */
.tv-red-3d .tv-screen-socket {
    left: 30.50%;
    top: 31.81%;
    width: 36.75%;
    height: 41.29%;
    border-radius: 38px / 24px;
}

/* ==========================================================================
   🔮 REAL CONVEX CRT BULB DOME (BEHIND USER'S REFLECTION LAYER)
   ========================================================================== */
.tv-screen-bulb-dome {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.95);
}

.tv-screen-bulb-dome video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
    transform: scale(1.06);
    filter: contrast(1.18) brightness(0.98) saturate(1.08);
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.ultra-3d-tv-card:hover .tv-screen-bulb-dome video {
    opacity: 1;
    transform: scale(1.1);
    filter: contrast(1.22) brightness(1.06) saturate(1.14);
}

/* CRT Optical FX Layers */
.crt-fx-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    border-radius: inherit;
}

/* 1. Deep Spherical Barrel Vignette */
.crt-bulb-barrel-shadow {
    box-shadow: 
        inset 0 0 35px rgba(0, 0, 0, 0.95),
        inset 0 0 10px rgba(0, 0, 0, 0.9);
    z-index: 4;
}

/* 2. Phosphor Mesh */
.crt-rgb-phosphor-mesh {
    background: 
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.04), rgba(0, 255, 0, 0.03), rgba(0, 0, 255, 0.04));
    background-size: 100% 3px, 3px 100%;
    z-index: 3;
}

/* 3. Scanlines */
.crt-scanlines {
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.35) 50%);
    background-size: 100% 4px;
    z-index: 2;
}


    10% {
        opacity: 0.9;
    }
    90% {
        opacity: 0.9;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Phosphor Green OSD Badge */
.tv-osd {
    position: absolute;
    top: 8px;
    left: 10px;
    display: flex;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--crt-green);
    text-shadow: 0 0 6px rgba(57, 255, 20, 0.85);
    z-index: 8;
    pointer-events: none;
}

.osd-status {
    animation: osdBlink 1.8s infinite;
}

@keyframes osdBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Video Caption at Bottom of CRT Screen */
.tv-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 10px 8px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
    z-index: 8;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* Top Tag Overlay on 3D Frame */
.tv-top-tag {
    position: absolute;
    top: 8px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-yellow);
    background: rgba(0, 0, 0, 0.88);
    border: 1px solid var(--brand-yellow-border);
    padding: 3px 12px;
    border-radius: 12px;
    z-index: 15;
    text-shadow: 0 0 6px var(--brand-yellow-glow);
    box-shadow: 0 2px 8px rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
}

/* ==========================================================================
   📸 CANON EOS-1D X DIGITAL FULL-FRAME GALLERY (64 PHOTOS)
   ========================================================================== */
.dslr-archive-section, .film-archive-section {
    background: radial-gradient(circle at 50% 10%, #0d0c0a 0%, #040404 100%);
}

.portfolio-grid {
    column-count: 4;
    column-gap: 26px;
    padding: 10px 0;
    text-align: left;
}

@media (max-width: 1400px) {
    .portfolio-grid {
        column-count: 3;
        column-gap: 20px;
    }
}

@media (max-width: 900px) {
    .portfolio-grid {
        column-count: 2;
        column-gap: 14px;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        column-count: 2;
        column-gap: 8px;
        padding: 5px 0;
    }
}

/* ==========================================================================
   📸 CANON EOS-1D X PRO DSLR VIEW FINDER & DIGITAL MASTER ARCHIVE
   ========================================================================== */
.canon-red-dot {
    color: #e50914;
    font-size: 0.75rem;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.8));
    animation: ledPulse 2s infinite ease-in-out;
}

.portfolio-item.dslr-frame {
    break-inside: avoid;
    margin-bottom: 28px;
    background: #0a0a09;
    border: 1px solid #23221f;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dslr-hud {
    background: #040404;
    padding: 7px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 1.2px;
    user-select: none;
}

.dslr-top {
    border-bottom: 1px solid #1a1917;
}

.dslr-bottom {
    border-top: 1px solid #1a1917;
    background: #060605;
}

.canon-brand {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sensor-badge {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 2px 7px;
    border-radius: 3px;
}

.dslr-shot-num {
    color: var(--brand-yellow);
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 1px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.lens-tag {
    color: #dedede;
    font-weight: 700;
    font-size: 0.64rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.canon-l-ring {
    color: #fff;
    background: #e50914;
    font-weight: 900;
    font-size: 0.58rem;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 2px;
    box-shadow: 0 0 6px rgba(229, 9, 20, 0.6);
}

.exif-readout {
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 0.62rem;
    letter-spacing: 0.8px;
}

.format-tag {
    color: #888884;
    font-size: 0.58rem;
    font-weight: 600;
}

.dslr-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.dslr-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.98) contrast(1.04) saturate(1.05);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
}

/* Intelligent Viewfinder AF Reticle Overlay */
.viewfinder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.af-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    transition: all 0.35s ease;
}

.af-top-left { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.af-top-right { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.af-bottom-left { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.af-bottom-right { bottom: 12px; right: 12px; border-left: none; border-top: none; }

.af-center-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.18);
    transition: all 0.3s ease;
    pointer-events: none;
}

.af-crosshair {
    font-size: 1.1rem;
    line-height: 0.8;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.af-bracket {
    font-size: 0.65rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lens-glare-fx {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(229, 9, 20, 0.18), transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(250, 237, 37, 0.15), transparent 45%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    mix-blend-mode: screen;
}

/* Hover Interactions */
.portfolio-item.dslr-frame:hover {
    transform: translateY(-6px) scale(1.015);
    border-color: rgba(250, 237, 37, 0.75);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.98), 0 0 30px rgba(250, 237, 37, 0.25), 0 0 15px rgba(229, 9, 20, 0.3);
    z-index: 5;
}

.portfolio-item.dslr-frame:hover .dslr-media img {
    transform: scale(1.035);
    filter: brightness(1.08) contrast(1.06) saturate(1.08);
}

.portfolio-item.dslr-frame:hover .af-corner {
    border-color: #e50914;
    width: 22px;
    height: 22px;
    box-shadow: 0 0 8px rgba(229, 9, 20, 0.6);
}

.portfolio-item.dslr-frame:hover .af-center-point {
    color: #e50914;
    text-shadow: 0 0 12px #e50914;
    transform: translate(-50%, -50%) scale(1.2);
}

.portfolio-item.dslr-frame:hover .af-crosshair {
    opacity: 1;
    color: #e50914;
}

.portfolio-item.dslr-frame:hover .lens-glare-fx {
    opacity: 1;
}

.portfolio-item.dslr-frame:hover .dslr-shot-num {
    color: #ffffff;
    text-shadow: 0 0 12px var(--brand-yellow);
}

/* ==========================================================================
   ARTIST BIO SECTION
   ========================================================================== */
.bio-section {
    background: #050505;
    padding: 130px 24px;
    border-top: 1px solid #141414;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

.bio-kicker {
    font-family: var(--font-haute);
    font-style: italic;
    font-size: 1.8rem;
    color: var(--brand-yellow);
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: center;
    text-shadow: 0 0 20px var(--brand-yellow-glow);
}

.bio-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #c9c5bd;
    margin-bottom: 24px;
    font-weight: 300;
}

.bio-agency-cta {
    margin-top: 40px;
    text-align: center;
}

.agency-portal-btn {
    display: inline-block;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #fff;
    background: rgba(250, 237, 37, 0.1);
    border: 1px solid var(--brand-yellow);
    padding: 14px 32px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(250, 237, 37, 0.15);
}

.agency-portal-btn:hover {
    background: var(--brand-yellow);
    color: #040404;
    box-shadow: 0 0 30px var(--brand-yellow-glow);
    transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background: #040404;
    padding: 120px 24px;
    border-top: 1px solid #141414;
}

.contact-card {
    background: #0c0c0a;
    border: 1px solid rgba(250, 237, 37, 0.25);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: center;
}

.info-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-yellow);
    margin-bottom: 8px;
}

.info-val {
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-val:hover {
    color: var(--brand-yellow);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 20px 45px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 8px;
    transition: opacity 0.3s, transform 0.3s;
    filter: drop-shadow(0 0 10px rgba(250, 237, 37, 0.3));
}

.footer-logo:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 0 20px var(--brand-yellow-glow));
}

.footer-credit {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.footer-credit strong {
    color: var(--brand-yellow);
    font-weight: 700;
}

.footer-legal {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: rgba(250, 237, 37, 0.85);
    font-weight: 600;
    padding: 3px 12px;
    background: rgba(250, 237, 37, 0.05);
    border: 1px solid rgba(250, 237, 37, 0.15);
    border-radius: 4px;
}

.footer-sub {
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    line-height: 1.6;
}

/* ==========================================================================
   LIGHTBOX MODALS
   ========================================================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
    padding: 20px;
}

.lightbox-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 92vw;
    max-height: 92vh;
}

.lightbox-dslr-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: rgba(8, 8, 8, 0.85);
    border: 1px solid rgba(250, 237, 37, 0.25);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    backdrop-filter: blur(10px);
}

.lightbox-badge {
    color: #fff;
    font-weight: 800;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lightbox-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.62rem;
    letter-spacing: 1px;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 0 0 6px 6px;
    border: 1px solid rgba(250, 237, 37, 0.25);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 40px var(--brand-yellow-glow);
    animation: zoomIn 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: var(--brand-yellow);
}

@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Retro Master Reference Monitor Video Lightbox */
.video-lightbox-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.video-lightbox-container.retro-master-monitor {
    width: 100%;
    max-width: 1050px;
    position: relative;
    background: #0f0e0d;
    border: 3px solid #332f2b;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98), inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 0 40px rgba(250, 237, 37, 0.15);
    overflow: hidden;
    animation: zoomIn 0.25s ease-out;
}

.monitor-top-bezel {
    background: #161514;
    border-bottom: 1px solid #282522;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monitor-brand {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-yellow);
    text-transform: uppercase;
}

.monitor-tally-light {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--crt-red);
    text-shadow: 0 0 8px var(--crt-red);
    letter-spacing: 1.5px;
}

.monitor-screen-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.monitor-screen-frame video {
    width: 100%;
    height: 100%;
    display: block;
}

.monitor-crt-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 4;
}

.monitor-info-bar {
    background: #121110;
    border-top: 1px solid #282522;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.monitor-titles h3 {
    font-family: var(--font-haute);
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 6px;
}

.monitor-titles p {
    font-size: 0.95rem;
    color: #c0b8ac;
    font-weight: 300;
}

.monitor-controls-badge {
    display: flex;
    gap: 12px;
}

.studio-status, .studio-freq {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    background: #080808;
    border: 1px solid #282522;
    color: var(--brand-yellow);
    text-shadow: 0 0 6px var(--brand-yellow-glow);
}

.close-video {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10005;
    transition: color 0.3s ease, transform 0.2s ease;
}

.close-video:hover {
    color: var(--brand-yellow);
    transform: scale(1.15);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 768px) {
    .header {
        padding: 10px 16px 10px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 8px 10px;
        background: rgba(8, 8, 8, 0.16); /* Vederlicht, subtiel glas identiek aan de centrale balk */
        backdrop-filter: blur(8px) saturate(135%);
        -webkit-backdrop-filter: blur(8px) saturate(135%);
        border-bottom: 1px solid rgba(250, 237, 37, 0.18);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    .logo-container {
        order: 1;
        flex: 0 0 auto;
    }
    .hoofd-logo {
        height: 30px;
    }
    .header-tools {
        order: 2;
        flex: 0 0 auto;
    }
    .lang-selector {
        padding: 4px 10px;
        font-size: 0.7rem;
        background: rgba(18, 17, 16, 0.35);
        border: 1px solid rgba(250, 237, 37, 0.25);
    }
    .nav {
        order: 3;
        width: 100%;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 2px;
    }
    .nav a {
        font-size: 0.62rem;
        letter-spacing: 1.2px;
        padding: 4px 9px;
        color: rgba(255, 255, 255, 0.92);
        background: rgba(255, 255, 255, 0.05); /* Subtiele doorschijnende glazen pill */
        border: 1px solid rgba(250, 237, 37, 0.18);
        border-radius: 20px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        white-space: nowrap;
        transition: all 0.25s ease;
    }
    .nav a::after {
        display: none;
    }
    .nav a:hover, .nav a:active {
        color: #040404;
        background: var(--brand-yellow);
        border-color: var(--brand-yellow);
        box-shadow: 0 0 12px var(--brand-yellow-glow);
    }

    /* 🎬 HERO SECTION OP MOBIEL (Vrij zicht op gezichten/ogen van de modellen) */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        min-height: 100dvh;
        height: 100vh;
        height: 100svh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end; /* Plaatst alle tekstelementen netjes onderaan */
        padding-top: 90px;
        padding-bottom: 24px;
    }

    .hero-bg-video {
        object-position: center 25%; /* Positioneert het gezicht/ogen van het model in de heldere bovenzone */
    }

    .hero-overlay {
        /* Bovenste zone is 100% kristalhelder voor het model; onderkant loopt over in een zachte schaduw voor tekstleesbaarheid */
        background: linear-gradient(to bottom, rgba(4, 4, 4, 0) 0%, rgba(4, 4, 4, 0) 45%, rgba(4, 4, 4, 0.6) 75%, rgba(4, 4, 4, 0.92) 100%);
    }

    .hero-content {
        margin-top: auto; /* Duwt de content omlaag */
        margin-bottom: 0;
        padding: 0 16px;
        width: 100%;
        max-width: 520px;
        position: relative;
        z-index: 3;
    }

    .hero-editorial-badge {
        margin-bottom: 68px; /* Subtiel iets hoger geplaatst boven het logo */
        padding: 4px 14px;
        gap: 8px;
    }
    .hero-editorial-badge .meta-txt {
        font-size: 0.52rem;
        letter-spacing: 1.5px;
    }

    .hero-brand-logo-wrap {
        margin-bottom: 52px; /* Plaatst het logo en de editorial badge exact 2 vingers hoger */
    }
    .hero-brand-logo {
        height: 50px;
    }

    .hero-headline-wrap {
        margin-bottom: 44px; /* Exact ~2 vingers (~44px) spatiëring boven de subtitel en knoppen */
    }
    .hero-kicker-tag {
        font-size: 0.56rem;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }
    .hero-editorial-title {
        line-height: 0.90;
        margin-bottom: 6px;
    }
    .hero-editorial-title .title-line-1 {
        font-size: clamp(1.35rem, 5.2vw, 1.8rem);
        letter-spacing: 3px;
        line-height: 0.98;
    }
    .hero-editorial-title .title-line-2 {
        margin-top: -0.05em;
    }
    .hero-editorial-title .title-line-2 em {
        font-size: clamp(1.55rem, 6.2vw, 2.1rem);
        letter-spacing: 1.5px;
        line-height: 0.96;
    }
    .hero-subtitle {
        font-size: 0.78rem;
        line-height: 1.4;
        margin-bottom: 14px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        gap: 8px;
        margin-bottom: 12px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero-cta-btn {
        padding: 9px 18px;
        font-size: 0.68rem;
        letter-spacing: 1.5px;
    }
    .hero-coords-footer {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px 8px;
        font-size: 0.54rem;
        letter-spacing: 1px;
    }

    .section-title-wrap h2 {
        font-size: 2rem;
    }
    .monitor-info-bar { padding: 18px 20px; }
    .monitor-titles h3 { font-size: 1.3rem; }
    .monitor-controls-badge { width: 100%; justify-content: flex-start; }
    .ultra-3d-tv-card.rot-neg-2, 
    .ultra-3d-tv-card.rot-pos-2, 
    .ultra-3d-tv-card.rot-neg-1, 
    .ultra-3d-tv-card.rot-pos-1 {
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 12px 8px;
        gap: 6px 6px;
    }
    .hoofd-logo {
        height: 26px;
    }
    .lang-selector {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    .nav {
        gap: 4px 5px;
    }
    .nav a {
        font-size: 0.55rem;
        letter-spacing: 0.8px;
        padding: 3px 7px;
    }
    .hero {
        padding-top: 80px;
        padding-bottom: 16px;
    }
    .hero-editorial-badge {
        margin-bottom: 60px; /* Subtiel iets hoger geplaatst op kleine schermen */
        padding: 3px 10px;
    }
    .hero-editorial-badge .meta-txt {
        font-size: 0.46rem;
        letter-spacing: 1px;
    }
    .hero-brand-logo-wrap {
        margin-bottom: 46px; /* 2 vingers omhoog getild op kleine schermen */
    }
    .hero-brand-logo {
        height: 42px;
    }
    .hero-headline-wrap {
        margin-bottom: 38px; /* 2 vingers ruimte op kleinere iPhone schermen */
    }
    .hero-editorial-title .title-line-1 {
        font-size: clamp(1.2rem, 4.8vw, 1.5rem);
    }
    .hero-editorial-title .title-line-2 em {
        font-size: clamp(1.4rem, 5.8vw, 1.75rem);
    }
    .hero-subtitle {
        font-size: 0.72rem;
        margin-bottom: 10px;
    }
    .hero-cta-btn {
        padding: 8px 14px;
        font-size: 0.62rem;
    }
    .hero-coords-footer {
        font-size: 0.50rem;
        gap: 2px 6px;
    }
    .dslr-archive-section, .film-archive-section {
        padding: 70px 10px 50px;
    }
    .tv-studio-section {
        padding: 75px 10px 55px;
    }
    .dslr-hud {
        padding: 4px 6px;
        font-size: 0.52rem;
    }
    .canon-brand {
        font-size: 0.52rem;
    }
    .lens-tag {
        font-size: 0.50rem;
    }
    .exif-readout {
        font-size: 0.48rem;
    }
}


/* ==========================================================================
   TV CARD HOVER AUDIO & ACTIVE BROADCAST STATE
   ========================================================================== */
.ultra-3d-tv-card {
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
    cursor: pointer;
}

.ultra-3d-tv-card:hover,
.ultra-3d-tv-card.tv-audio-active {
    transform: scale(1.035) translateY(-6px) !important;
    z-index: 25 !important;
}

.ultra-3d-tv-card.tv-audio-active .tv-screen-bulb-dome {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.4), inset 0 0 15px rgba(57, 255, 20, 0.25);
}

.ultra-3d-tv-card.tv-audio-active .tv-top-tag {
    background: rgba(57, 255, 20, 0.95);
    color: #000;
    font-weight: 900;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.8);
}

.ultra-3d-tv-card.tv-audio-active .osd-status {
    color: #39ff14 !important;
    text-shadow: 0 0 10px #39ff14, 0 0 20px #39ff14;
    animation: osdAudioPulse 0.8s infinite alternate !important;
}

@keyframes osdAudioPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.06); text-shadow: 0 0 15px #39ff14; }
}

.osd-audio-wave {
    display: inline-block;
    margin-left: 4px;
    font-size: 0.75rem;
    animation: audioWaveBounce 0.6s infinite alternate;
}

@keyframes audioWaveBounce {
    0% { transform: scaleY(0.7); }
    100% { transform: scaleY(1.3); }
}

/* 4. Active Scan Beam for TV Wall - Pure Silver-White & Warm Gold (NO GREEN) */
.crt-scan-beam {
    position: absolute;
    top: -100px; 
    left: 0; 
    width: 100%; 
    height: 80px;
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 20%, 
        rgba(255, 255, 255, 0.45) 50%, 
        rgba(250, 237, 37, 0.12) 75%, 
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: crtScanBeamLoop 3.6s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 5;
}

@keyframes crtScanBeamLoop {
    0% {
        top: -100px;
        opacity: 0;
    }
    6% {
        opacity: 0.85;
    }
    92% {
        opacity: 0.85;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* ==========================================================================
   RETRO MASTER MONITOR LIGHTBOX & ADAPTIVE VERTICAL/HORIZONTAL VIDEO ENGINE
   ========================================================================== */
.video-lightbox-modal {
    display: none;
    position: fixed;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    padding: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow-y: auto;
}

.video-lightbox-container.retro-master-monitor {
    width: 100%;
    max-width: 1050px;
    position: relative;
    background: #0f0e0d;
    border: 3px solid #332f2b;
    border-radius: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98), inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 0 40px rgba(250, 237, 37, 0.12);
    overflow: hidden;
    animation: zoomIn 0.25s ease-out;
    transition: max-width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), width 0.35s ease;
    margin: auto;
}

/* Vertical (Portrait / 9:16) Monitor Chassis */
.video-lightbox-container.retro-master-monitor.is-vertical-video {
    max-width: 480px;
    width: 90vw;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98), 0 0 50px rgba(250, 237, 37, 0.18);
}

.monitor-top-bezel {
    background: #161514;
    border-bottom: 1px solid #282522;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monitor-brand {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--brand-yellow);
    text-transform: uppercase;
}

.monitor-tally-light {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--crt-red);
    text-shadow: 0 0 8px var(--crt-red);
    letter-spacing: 1.5px;
}

/* Master Screen Frame: Adaptive Aspect Ratio */
.monitor-screen-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
    transition: aspect-ratio 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), max-height 0.35s ease;
}

/* Vertical / Portrait Mode Aspect Ratio (fills screen vertically without squishing) */
.monitor-screen-frame.is-vertical-video {
    aspect-ratio: 9 / 16;
    max-height: 72vh;
    margin: 0 auto;
}

.monitor-screen-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000;
}

/* Master Monitor CRT Overlay Layers */
.monitor-crt-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

/* 1. Fine High-Density CRT Interlace Raster */
.modal-crt-raster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.38) 0px,
        rgba(0, 0, 0, 0.38) 1px,
        transparent 1px,
        transparent 3px
    );
    pointer-events: none;
    z-index: 2;
}

/* 2. Neutral Monochrome Subpixel Grid (NO GREEN) */
.modal-crt-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    background-size: 3px 100%;
    pointer-events: none;
    z-index: 3;
}

/* 3. Sweeping Top-to-Bottom Traveling Light Beam (Pure Silver-White & Subtle Warm Gold - ZERO GREEN) */
.modal-interlace-beam {
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 20%,
        rgba(255, 255, 255, 0.52) 50%,
        rgba(250, 237, 37, 0.12) 75%,
        transparent 100%
    );
    box-shadow: 0 0 28px rgba(255, 255, 255, 0.35);
    animation: modalScanBeamSweep 3.4s linear infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 4;
}

@keyframes modalScanBeamSweep {
    0% {
        top: -140px;
        opacity: 0;
    }
    6% {
        opacity: 0.95;
    }
    94% {
        opacity: 0.95;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* 4. Glass Reflection & Tube Corner Vignette */
.modal-crt-glass-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 5;
}

.modal-crt-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.92);
    pointer-events: none;
    z-index: 6;
}

.monitor-info-bar {
    background: #121110;
    border-top: 1px solid #282522;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.monitor-titles h3 {
    font-family: var(--font-haute);
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.monitor-titles p {
    font-size: 0.9rem;
    color: #c0b8ac;
    font-weight: 300;
}

.monitor-controls-badge {
    display: flex;
    gap: 10px;
}

.studio-status, .studio-freq {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    background: #080808;
    border: 1px solid #282522;
    color: var(--brand-yellow);
    text-shadow: 0 0 6px var(--brand-yellow-glow);
}

.close-video {
    position: absolute;
    top: 8px;
    right: 18px;
    color: #fff;
    font-size: 2.2rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 10005;
    transition: color 0.3s ease, transform 0.2s ease;
}

.close-video:hover {
    color: var(--brand-yellow);
    transform: scale(1.15);
}

/* ==========================================================================
   MOBILE (GSM) RESPONSIVENESS - FULL HEIGHT VERTICAL VIDEO OPTIMIZATION
   ========================================================================== */
@media (max-width: 768px) {
    .video-lightbox-modal {
        padding: 6px;
        align-items: center;
    }

    .video-lightbox-container.retro-master-monitor {
        max-width: 100%;
        width: 96vw;
        border-width: 2px;
        border-radius: 10px;
    }

    /* Vertical videos on mobile: EXPAND to fill maximum vertical screen space */
    .video-lightbox-container.retro-master-monitor.is-vertical-video {
        width: 95vw;
        max-width: 440px;
        max-height: 94vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .monitor-screen-frame.is-vertical-video {
        aspect-ratio: 9 / 16;
        width: 100%;
        max-height: 72vh;
        flex: 1 1 auto;
    }

    .monitor-screen-frame.is-vertical-video video {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }

    .monitor-top-bezel {
        padding: 8px 14px;
    }

    .monitor-brand {
        font-size: 0.62rem;
        letter-spacing: 1px;
    }

    .monitor-info-bar {
        padding: 10px 14px;
        gap: 8px;
    }

    .monitor-titles h3 {
        font-size: 1.15rem;
    }

    .monitor-titles p {
        font-size: 0.78rem;
    }

    .studio-status, .studio-freq {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}
