:root {
    --black-main: #050505;
    --black-soft: #0D0D0D;
    --gold-main: #C9A84C;
    --gold-light: #E8C97A;
    --cyan-accent: #00E5FF;
    --white-main: #F5F1EA;
    --gray-soft: #8E8A83;
    
    --f-h1: 'Fraunces', serif;
    --f-h2: 'Fraunces', serif;
    --f-h3: 'Inter', sans-serif;
    --f-body: 'Inter', sans-serif;
    --f-label: 'JetBrains Mono', monospace;
    --f-numbers: 'Fraunces', serif;

    /* Legacy mapping */
    --c-obsidian: var(--black-main);
    --c-deep-dark: var(--black-soft);
    --c-gold: var(--gold-main);
    --c-gold-light: var(--gold-light);
    --c-cyan: var(--cyan-accent);
    --c-white: var(--white-main);
    --c-muted: var(--gray-soft);

    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0; padding: 0; box-sizing: border-box;
    cursor: none; /* Custom cursor — overridden on touch below */
}

/* On touch screens: restore normal cursor & tap behaviour */
@media (hover: none) and (pointer: coarse) {
    * { cursor: auto !important; }
    a, button { cursor: pointer !important; -webkit-tap-highlight-color: rgba(201,168,76,0.15); }
    #cursor-dot, #cursor-ring { display: none !important; }
}

body {
    font-family: var(--f-subtext);
    background-color: var(--c-obsidian);
    color: var(--c-white);
    overflow-x: hidden;
    overscroll-behavior: none;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { display: none; }

/* TYPOGRAPHY UTILS */
h1 { font-family: var(--f-h1); font-size: 120px; font-weight: 400; letter-spacing: 0; line-height: 1.1; }
h2 { font-family: var(--f-h2); font-size: 56px; font-weight: 400; letter-spacing: 0; line-height: 1.2; }
h3 { font-family: var(--f-h3); font-size: 28px; font-weight: 700; }
body { font-family: var(--f-body); font-size: 16px; font-weight: 400; line-height: 1.5; }
.label, .marquee-dot { font-family: var(--f-label); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.numbers { font-family: var(--f-numbers); font-size: 72px; }

.headline { font-family: var(--f-h1); font-weight: 400; }
.syne { font-family: var(--f-body); }
.grotesk { font-family: var(--f-body); }
.editorial-font { font-family: var(--f-h2); font-style: italic; font-weight: 400; }
.glow-text {
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
}

/* FILM GRAIN */
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9997; opacity: 0.15;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    mix-blend-mode: overlay;
}

/* ══════════════════════════════════
   CINEMATIC LOADER — Film Leader
══════════════════════════════════ */
#loader {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Film grain texture */
.loader-grain {
    position: absolute; inset: 0;
    opacity: 0.12;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    animation: grainAnim 0.12s steps(1) infinite;
}
@keyframes grainAnim {
    0%   { background-position: 0 0; }
    20%  { background-position: -60px 40px; }
    40%  { background-position: 80px -30px; }
    60%  { background-position: -40px -80px; }
    80%  { background-position: 60px 60px; }
    100% { background-position: 20px -20px; }
}

/* Exit curtain panels */
.loader-curtain {
    position: absolute;
    left: 0; width: 100%;
    height: 50%;
    background: #000;
    z-index: 2;
    transform: translateY(0);
    will-change: transform;
}
.loader-curtain-top    { top: 0; }
.loader-curtain-bottom { bottom: 0; }

/* Center stage */
.loader-stage {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Film circle */
.loader-circle-wrap {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: loaderSpin 8s linear infinite;
}
@keyframes loaderSpin {
    to { transform: rotate(360deg); }
}

/* Gold progress arc */
.loader-arc {
    transition: stroke-dashoffset 0.1s linear;
}

/* Countdown number in center */
.loader-count-num {
    font-family: var(--f-h1);
    font-size: 6rem;
    font-weight: 900;
    color: var(--white-main);
    line-height: 1;
    letter-spacing: -0.04em;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* DM✌H logo (hidden until end) */
.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transform: scale(0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    text-align: center;
}

.loader-logo-mark {
    font-family: var(--f-h1);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white-main);
    display: flex;
    align-items: center;
    text-shadow:
        2px 2px 0 rgba(201,168,76,0.5),
        4px 4px 0 rgba(201,168,76,0.3),
        6px 6px 10px rgba(0,0,0,0.8);
}

.loader-peace {
    color: var(--gold-main);
    display: inline-block;
}

.loader-logo-sub {
    font-family: var(--f-label);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold-main);
    text-transform: uppercase;
}

/* Bottom row */
.loader-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

.loader-label {
    font-family: var(--f-label);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.3);
}

.loader-percent {
    font-family: var(--f-label);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold-main);
}

/* ══════════════════════════════════
   CINEMATIC SKIP TRANSITION
══════════════════════════════════ */
#skip-transition {
    position: fixed;
    inset: 0;
    z-index: 9500;
    pointer-events: none;
    overflow: hidden;
}

/* Two curtain panels — start off-screen, slam to center on skip */
.skip-curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
    will-change: transform;
}
.skip-curtain-left  { left: 0;   transform: translateX(-101%); }
.skip-curtain-right { right: 0;  transform: translateX(101%); }

/* DM✌H stamp — shown center when curtains are closed */
.skip-center-stamp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    text-align: center;
    opacity: 0;
    z-index: 2;
}

.skip-stamp-logo {
    font-family: var(--f-h1);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--white-main);
    text-shadow:
        2px 2px 0 rgba(201,168,76,0.6),
        4px 4px 0 rgba(201,168,76,0.35),
        6px 6px 12px rgba(0,0,0,0.9);
}
.skip-stamp-logo span { color: var(--gold-main); }

.skip-stamp-sub {
    font-family: var(--f-label);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--gold-main);
    margin-top: 0.6rem;
    text-transform: uppercase;
}


/* CURSOR */
#cursor-dot {
    position: fixed; top: 0; left: 0; width: 8px; height: 8px;
    background: var(--c-white); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: background 0.2s, width 0.2s, height 0.2s;
}
#cursor-ring {
    position: fixed; top: 0; left: 0; width: 40px; height: 40px;
    border: 1px solid rgba(248,248,255,0.4); border-radius: 50%;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%, -50%);
    display: flex; justify-content: center; align-items: center;
    transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}
.cursor-text {
    font-family: var(--f-subtext); font-size: 0.6rem;
    font-weight: 700; color: var(--c-obsidian);
    opacity: 0; transition: opacity 0.2s; text-transform: uppercase;
}
body.hover-cta #cursor-ring {
    width: 80px; height: 80px; background: var(--c-gold); border-color: var(--c-gold);
}
body.hover-cta .cursor-text { opacity: 1; }
body.hover-video #cursor-ring {
    width: 56px; height: 56px; background: transparent; border-color: var(--c-white);
    backdrop-filter: blur(4px);
}

/* SCROLL PROGRESS */
#scroll-progress {
    position: fixed; top: 0; right: 0; width: 2px; height: 0vh;
    background: var(--c-gold); z-index: 9000;
    box-shadow: 0 0 8px var(--c-gold);
}
#scroll-label {
    position: fixed; right: 10px; top: 50%; transform: translateY(-50%);
    font-family: var(--f-subtext); font-size: 0.7rem; color: var(--c-muted);
    text-transform: uppercase; writing-mode: vertical-rl;
    z-index: 9000; letter-spacing: 0.2em; opacity: 0; transition: opacity 0.3s;
}

/* SECTION TRANSITION WIPE */
#section-wipe {
    position: fixed; top: 0; left: 0; width: 100vw; height: 1px;
    background: var(--c-gold); z-index: 9990;
    transform: translateY(-100vh); opacity: 0; pointer-events: none;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

/* Scrolled state — activated via JS */
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    box-shadow: 0 1px 0 rgba(201, 168, 76, 0.15);
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white-main);
}

.nav-logo-lockup {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}

.nav-logo-mark-text {
    font-family: var(--f-h1);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--white-main);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-peace {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.4s ease;
}

.nav-logo:hover .nav-peace {
    transform: rotate(-15deg) scale(1.2);
}

.nav-logo-sub {
    font-family: var(--f-label);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--gray-soft);
    text-transform: uppercase;
    padding-left: 2px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a {
    color: var(--white-main);
    text-decoration: none;
    font-family: var(--f-label);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: color 0.3s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-main);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-main); }
.nav-links a:hover::after { width: 100%; }

/* CTA PILL */
.nav-cta {
    background: transparent !important;
    border: 1px solid rgba(201, 168, 76, 0.5) !important;
    color: var(--gold-main) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    transition: all 0.3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-main) !important;
    color: var(--black-main) !important;
    border-color: var(--gold-main) !important;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}



/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 1.2rem 2.5rem; border-radius: 100px;
    text-transform: uppercase; font-size: 0.85rem; font-weight: 500;
    letter-spacing: 0.1em; text-decoration: none; position: relative;
    overflow: hidden; transition: all 0.4s var(--ease-smooth);
}
.btn.primary {
    background: var(--gold-main); color: var(--black-main);
    border: 1px solid var(--gold-main);
}
.btn.primary:hover {
    background: var(--gold-light); color: var(--black-main);
    border-color: var(--gold-light);
    box-shadow: 0 0 30px rgba(201, 168, 76, 0.4); transform: scale(1.05);
}
.btn.secondary {
    background: transparent; color: var(--white-main);
    border: 1px solid rgba(255,255,255,0.15);
}
.btn.secondary:hover {
    border-color: var(--gold-main); color: var(--gold-main);
}

/* ── Hero Video Controls ── */
#hero-video-controls {
    position: absolute;
    bottom: 5.5rem;     /* sits just above the ticker strip */
    right: 2.5rem;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: opacity 0.5s ease;
}

.hero-ctrl-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: var(--white-main);
    cursor: pointer;
    font-family: var(--f-label);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    padding: 0.65rem 1.1rem;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.hero-ctrl-btn:hover {
    background: rgba(201,168,76, 0.15);
    border-color: rgba(201,168,76, 0.5);
    color: var(--gold-main);
}

/* Audio btn — icon only (square-ish pill) */
#hero-audio-btn {
    padding: 0.65rem;
    min-width: 42px;
    justify-content: center;
}
#hero-audio-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}
/* Active audio state */
#hero-audio-btn.audio-on {
    border-color: rgba(201,168,76, 0.6);
    color: var(--gold-main);
}

/* Skip button */
.hero-skip {
    text-transform: uppercase;
}
.skip-arrow {
    font-size: 0.7rem;
    letter-spacing: -0.05em;
    opacity: 0.7;
}

/* Replay button */
#hero-replay-btn {
    padding: 0.65rem;
    min-width: 42px;
    justify-content: center;
}
#hero-replay-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    transition: transform 0.5s ease;
}
#hero-replay-btn:hover svg {
    transform: rotate(-180deg);
}
#hero-replay-btn.replaying svg {
    animation: replaySpin 0.5s ease forwards;
}
@keyframes replaySpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(-360deg); }
}

/* 3D Screen Replay Button — visible during image-sequence phase */
.hero-3d-replay-btn {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(201,168,76, 0.3);
    border-radius: 50px;
    color: var(--gold-main);
    cursor: pointer;
    font-family: var(--f-label);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    padding: 0.65rem 1.2rem 0.65rem 0.9rem;
    transition: background 0.3s, border-color 0.3s, transform 0.25s;
}
.hero-3d-replay-btn:hover {
    background: rgba(201,168,76, 0.12);
    border-color: rgba(201,168,76, 0.65);
    transform: scale(1.05);
}
.hero-3d-replay-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.45s ease;
}
.hero-3d-replay-btn:hover svg {
    transform: rotate(-180deg);
}
.hero-3d-replay-btn.spinning svg {
    animation: replaySpin 0.5s ease forwards;
}
/* Hidden once video phase starts */
.hero-3d-replay-btn.hidden {
    opacity: 0;
    pointer-events: none;
}

/* 1. HERO */
.hero {
    height: 100vh; position: relative; display: flex;
    align-items: center; justify-content: center; overflow: hidden;
    padding-top: 80px;
    max-height: 100vh;
}
/* 3D Hero Background Canvas */
#hero-3d-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    display: block;
}
#hero-video {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 1; opacity: 0; visibility: hidden;
}
#lens-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 2; pointer-events: none;
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;
}
.title-wrapper {
    position: relative;
    text-align: center;
}
.hero-title {
    font-size: 8vw; line-height: 0.9; margin-bottom: 3rem;
}
/* Hero ticker strip — scrolls across the bottom when video plays */
#hero-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 4;
    overflow: hidden;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(201,168,76,0.25);
    pointer-events: none;
    padding: 1rem 0;
}

.hero-ticker-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: max-content;
    animation: heroTick 18s linear infinite;
}

.hero-ticker-track span {
    font-family: var(--f-h1);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white-main);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.ticker-dot {
    color: var(--gold-main) !important;
    font-style: normal !important;
    font-size: 0.8rem !important;
}

/* DM✌H logo inside ticker */
.ticker-logo {
    font-family: var(--f-h1) !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-size: 1.4rem !important;
    letter-spacing: -0.02em !important;
    color: var(--white-main) !important;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.ticker-peace {
    color: var(--gold-main);
    font-style: normal;
    font-size: 1.2rem;
    display: inline-block;
}

@keyframes heroTick {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.hero-title .line { overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(100%); }
.hero-ctas {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* MARQUEE SECTION - FILM STRIP */
.marquee-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
    margin-bottom: 0;
}
.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 18px;
    background-image: repeating-linear-gradient(
        90deg,
        #fff 0,
        #fff 24px,
        #000 24px,
        #000 40px
    );
    z-index: 2;
}
.marquee-section::before { top: 10px; }
.marquee-section::after { bottom: 10px; }

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: scrollMarquee 25s linear infinite;
    width: max-content;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-numbers);
    font-size: 4.5rem;
    color: #000;
    background: #fff;
    padding: 1.2rem 4rem;
    margin-right: 2.5rem;
    border-radius: 8px;
    text-transform: uppercase;
    min-width: 450px;
}
.marquee-dot {
    display: none;
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 2. EDITORIAL ABOUT & STATS */
.editorial-about {
    background: #000000;
    color: #f0f0f0;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Full-section background canvas for 3D animation */
#about-bg-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.22;
    pointer-events: none;
    object-fit: cover;
}
/* Dark vignette over the background for legibility */
.editorial-about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
    pointer-events: none;
}
.section-label {
    font-family: var(--f-label);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 2.5rem;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}
.label-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-main, #C9A84C);
    border-radius: 50%;
    margin-right: 1rem;
}
.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 2;
    flex: 1;
}
.editorial-left {
    flex: 1;
    max-width: 50%;
}
.editorial-headline {
    font-family: var(--f-h1);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.0;
    font-weight: 500;
    margin-bottom: 1.8rem;
    letter-spacing: -0.03em;
    color: #ffffff;
}
.editorial-headline .italic {
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
}
.editorial-headline .highlight {
    background: linear-gradient(135deg, #C9A84C, #FFD97D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}
.editorial-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.editorial-columns p {
    font-family: var(--f-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255,255,255,0.55);
}
.editorial-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 2rem;
}
.editorial-stats {
    display: flex;
    justify-content: flex-start;
    gap: 3rem;
    padding-right: 0;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-item .stat-num {
    font-family: var(--f-h1);
    font-style: italic;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #ffffff;
}
.stat-item .stat-label {
    font-family: var(--f-label);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}
.editorial-right {
    flex: 0 0 auto;
    width: 42%;
    max-width: 420px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.image-card-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    max-height: 65vh;
    max-width: 380px;
}
.image-card-bg {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C9A84C, #a07c28);
    border-radius: 20px;
    z-index: 0;
    opacity: 0.7;
}
.image-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505;
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}
.image-pill {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: rgba(10,10,15,0.8);
    backdrop-filter: blur(12px);
    color: rgba(255,255,255,0.9);
    font-family: var(--f-label);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(201,168,76,0.4);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.1);
}
.pill-dot {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #C9A84C 30%, rgba(201,168,76,0.2) 80%);
    border-radius: 50%;
    margin-right: 0.8rem;
    animation: pillPulse 2s ease-in-out infinite;
}
@keyframes pillPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.6); }
    50%      { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}
.image-vertical-label {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center right;
    font-family: var(--f-label);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    white-space: nowrap;
    mix-blend-mode: overlay;
}
.side-tab {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201,168,76,0.15);
    backdrop-filter: blur(10px);
    color: #C9A84C;
    padding: 15px 10px;
    border-radius: 8px 0 0 8px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border: 1px solid rgba(201,168,76,0.3);
    box-shadow: -5px 0 20px rgba(201,168,76,0.08);
}

/* ── 3D Cube card — dark glass aesthetic ── */
.lootbox-card-bg {
    background: linear-gradient(135deg, rgba(201,168,76,0.3) 0%, rgba(0,229,255,0.08) 100%) !important;
    box-shadow: 0 0 80px rgba(201,168,76,0.2);
}
.lootbox-card-wrap {
    background: #000000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}
#lootbox-canvas {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 2;
    pointer-events: none;
    /* frames are black bg — blend with multiply so card bg shows */
    mix-blend-mode: normal;
}
/* Pulsing ambient glow ring */
.lootbox-glow-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, rgba(0,229,255,0.04) 50%, transparent 70%);
    animation: lootRingPulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}
@keyframes lootRingPulse {
    0%,100% { transform: translate(-50%,-50%) scale(1);    opacity: 0.5; }
    50%      { transform: translate(-50%,-50%) scale(1.3);  opacity: 0.9; }
}

/* 4. SERVICES */
.services {
    padding: 10rem 4rem; 
    background: var(--white-main); 
    color: var(--black-main);
}
.services-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    margin-bottom: 6rem;
}
.services-headline {
    font-family: var(--f-h1);
    font-size: 6rem;
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 600; 
}
.services-headline .italic {
    font-style: italic;
    font-weight: 400; 
}
.services-headline .highlight {
    background-color: var(--gold-main); 
    padding: 0 0.1em;
    display: inline-block;
}
.services-header-text {
    max-width: 350px;
    font-family: var(--f-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black-main);
    padding-bottom: 1rem;
}
.services-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0,0,0,0.2);
}
.service-row {
    display: grid;
    grid-template-columns: 120px 450px 1fr auto;
    align-items: center;
    padding: 3rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    transition: background-color 0.4s ease;
}
.service-row:hover {
    background-color: var(--gold-main); 
}
.s-num {
    font-family: var(--f-label);
    font-size: 0.9rem;
    color: var(--black-main);
}
.s-title {
    font-family: var(--f-h1);
    font-size: 3rem;
    color: var(--black-main);
}
.s-title strong {
    font-weight: 700;
}
.s-title .italic {
    font-style: italic;
    font-weight: 400;
}
.s-desc {
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--black-main);
    padding-right: 4rem;
    line-height: 1.5;
}
.s-tags {
    display: flex;
    gap: 0.5rem;
}
.s-tag {
    font-family: var(--f-label);
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--black-main);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* 5. SHOWREEL / PROJECTS */
.showreel {
    background: #000;
    padding: 8rem 0 0;
    overflow: hidden;
}

.showreel-header {
    text-align: center;
    padding: 0 4rem 4rem;
}

.showreel-headline {
    font-family: var(--f-h1);
    font-size: 5rem;
    font-weight: 700;
    margin: 1rem 0 1.2rem;
    letter-spacing: -0.02em;
}

.showreel-sub {
    font-family: var(--f-label);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--gray-soft);
}

.gold-text { color: var(--gold-main); }

/* ── Drag Track ── */
.projects-track-wrap {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    padding: 0 0 6rem;
}
.projects-track-wrap:active { cursor: grabbing; }

.projects-track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    padding: 0 4rem;
    width: max-content;
    animation: projectsAutoScroll 40s linear infinite; 
}
.projects-track-wrap:hover .projects-track {
    animation-play-state: paused;
}

@keyframes projectsAutoScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ── Project Cards ── */
.project-card {
    width: 360px;
    height: 480px;          /* tall video-block ratio */
    border-radius: 20px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    border-color: rgba(201,168,76, 0.3);
}

/* Centered play button */
.project-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white-main);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    padding-left: 4px; /* optical centering of ▶ */
    z-index: 2;
}

.project-card:hover .project-play {
    background: var(--gold-main);
    border-color: var(--gold-main);
    color: var(--black-main);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Bottom info overlay */
.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.8rem 1.8rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    z-index: 2;
}

.project-category {
    font-family: var(--f-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold-main);
    text-transform: uppercase;
}

.project-title {
    font-family: var(--f-h1);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white-main);
    line-height: 1.2;
}


/* 6. RESULTS */
.results { padding: 10rem 0; position: relative; }
.results-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; opacity: 0.4; z-index: 0;
}
.mission-control {
    position: relative; z-index: 1; display: flex; justify-content: center; gap: 6rem;
}
.metric-plate {
    text-align: center; padding: 4rem; background: rgba(17, 17, 22, 0.7);
    backdrop-filter: blur(10px); border-radius: 16px;
    border-top: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 20px 50px rgba(0, 229, 255, 0.05);
}
.plate-number { font-size: 6rem; color: var(--c-white); text-shadow: 0 10px 20px rgba(0,0,0,0.5); margin-bottom: 1rem; }
.plate-label { font-size: 1.2rem; color: var(--c-cyan); text-transform: uppercase; letter-spacing: 0.2em; }

/* 7. WHY DAKSH */
.why-daksh { 
    padding: 10rem 4rem;
    background: var(--black-main);
    color: var(--white-main);
}
.why-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.why-header {
    text-align: center;
    margin-bottom: 5rem;
}
.why-headline {
    font-family: var(--f-h1);
    font-size: 5.5rem;
    font-weight: 700;
}
.why-headline .highlight-text {
    color: var(--gold-main);
}

.comparison-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-numbers);
    font-size: 1.5rem;
    color: var(--gray-soft);
    z-index: 10;
    opacity: 0.5;
}

.compare-card {
    flex: 1;
    background: #0B0B0C;
    border-radius: 12px;
    padding: 4rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.compare-title {
    font-family: var(--f-label);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--gray-soft);
    margin-bottom: 3rem;
}

.daksh-title {
    color: var(--gold-main);
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compare-list li {
    font-family: var(--f-body);
    font-size: 1.1rem;
    color: var(--gray-soft);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cross-icon {
    font-family: var(--f-label);
    color: #444;
}

.check-icon {
    font-family: var(--f-label);
    color: var(--gold-main);
}

.daksh-card {
    border-color: rgba(201,168,76, 0.2);
    box-shadow: 0 0 50px rgba(201,168,76, 0.05);
}
.daksh-card .compare-list li {
    color: var(--white-main);
}

.compare-card:hover {
    transform: translateY(-5px);
}

/* 8. PERFORMANCE */
.performance { padding: 12rem 0; display: flex; justify-content: center; perspective: 1200px; }
.dash-3d-wrapper { position: relative; transform: rotateX(15deg); transition: transform 0.5s; transform-style: preserve-3d; }
.dash-3d-wrapper:hover { transform: rotateX(5deg) translateY(-20px); }
.dash-img { width: 900px; border-radius: 12px; box-shadow: 0 40px 80px rgba(0,0,0,0.9), 0 0 40px rgba(0, 229, 255, 0.2); }
.ai-nodes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; }
.node {
    position: absolute; width: 20px; height: 20px; background: var(--c-cyan); border-radius: 50%;
    box-shadow: 0 0 30px var(--c-cyan); animation: pulseNode 2s infinite alternate;
}
.node:nth-child(1) { top: 20%; left: 20%; }
.node:nth-child(2) { top: 50%; left: 80%; animation-delay: 0.5s; }
.node:nth-child(3) { top: 80%; left: 40%; animation-delay: 1s; }
@keyframes pulseNode { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.5); opacity: 1; } }

/* 9. TESTIMONIALS */
.testimonials {
    background: #0A0A0A;
    padding: 8rem 0 0;
    overflow: hidden;
}

.testi-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5rem;
}

/* Header */
.testi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.testi-headline {
    font-family: var(--f-h1);
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white-main);
}

.testi-cta {
    font-family: var(--f-label);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--gold-main);
    text-decoration: none;
    margin-top: 0.5rem;
    white-space: nowrap;
    transition: opacity 0.3s;
}
.testi-cta:hover { opacity: 0.7; }

/* Cards grid */
.testi-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 0;
}

.testi-card {
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: transform 0.4s ease;
}
.testi-card:hover { transform: translateY(-6px); }

/* Dark cards */
.testi-dark {
    background: #161616;
    border: 1px solid rgba(255,255,255,0.06);
}

/* Gold featured card */
.testi-featured {
    background: #C9A84C;
}
.testi-featured .testi-quote-mark,
.testi-featured .testi-quote,
.testi-featured .testi-author strong,
.testi-featured .testi-author span,
.testi-featured .testi-num {
    color: #000 !important;
}

/* Quote mark */
.testi-quote-mark {
    font-family: var(--f-h1);
    font-size: 4rem;
    line-height: 0.8;
    color: var(--gold-main);
    margin-bottom: 1.5rem;
    display: block;
}

/* Quote text */
.testi-quote {
    font-family: var(--f-h1);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white-main);
    flex-grow: 1;
    margin-bottom: 2.5rem;
    font-style: italic;
}

/* Footer row */
.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}
.testi-featured .testi-footer {
    border-top-color: rgba(0,0,0,0.2);
}

.testi-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.testi-author strong {
    font-family: var(--f-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white-main);
    letter-spacing: 0;
}
.testi-author span {
    font-family: var(--f-label);
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--gray-soft);
    text-transform: uppercase;
}

.testi-num {
    font-family: var(--f-label);
    font-size: 0.65rem;
    color: var(--gray-soft);
    letter-spacing: 0.1em;
}

/* Brand Ticker */
.brand-ticker {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2.5rem 0;
    margin-top: 5rem;
}

.brand-ticker-track {
    display: flex;
    align-items: center;
    gap: 5rem;
    width: max-content;
    animation: brandScroll 20s linear infinite;
}

.brand-ticker-track span {
    font-family: var(--f-h1);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white-main);
    letter-spacing: 0.05em;
    white-space: nowrap;
    opacity: 0.4;
    transition: opacity 0.3s;
    cursor: default;
}
.brand-ticker-track span:hover { opacity: 1; color: var(--gold-main); }

@keyframes brandScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}



/* 10. CINEMATIC JOURNEY / PROCESS — ivress.co.jp style */
.journey-section {
    position: relative;
    background: #000;
    /* tall enough to allow scroll-based step changes */
    height: 600vh;
}

/* ── Pin wrapper — sticks to viewport ── */
.journey-pin-wrap {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Full-viewport frame canvas — matte desaturated + darkened ── */
#journey-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /*
     * brightness(0.72)  → ~28% brightness reduction on the raw canvas
     * saturate(0.68)    → further desaturated matte look
     * contrast(0.90)    → pulled-back contrast, softer midtones
     */
    filter: saturate(0.68) contrast(0.90) brightness(0.72);
}

/* ── Matte finishing overlay — warm neutral film coating ── */
.journey-matte {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Warm halation layer — emulates matte print / film stock */
    background:
        linear-gradient(
            135deg,
            rgba(30, 22, 10, 0.30) 0%,
            rgba(18, 14, 8,  0.22) 35%,
            rgba(8,  10, 14, 0.20) 65%,
            rgba(20, 18, 12, 0.28) 100%
        );
    mix-blend-mode: multiply;
}

/* Secondary matte sheen — flat desaturated bloom across the frame */
.journey-matte::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 238, 220, 0.045);
    mix-blend-mode: screen;
}

/* ── Grain overlay (film texture) ── */
.journey-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px 180px;
    opacity: 0.055;
    mix-blend-mode: overlay;
    animation: grainShift 0.08s steps(1) infinite;
}
@keyframes grainShift {
    0%  { background-position: 0 0; }
    10% { background-position: -5% -10%; }
    20% { background-position: -15% 5%; }
    30% { background-position: 7% -25%; }
    40% { background-position: -5% 25%; }
    50% { background-position: -15% 10%; }
    60% { background-position: 15% 0%; }
    70% { background-position: 0% 15%; }
    80% { background-position: 3% 35%; }
    90% { background-position: -10% 10%; }
}

/* ── Flat uniform dark overlay — 28% brightness reduction across entire frame ── */
.journey-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    /*
     * Pure semi-transparent black — the "black film layer" requested.
     * Stacks multiplicatively with the canvas filter for a ~25-35%
     * total brightness reduction at the center of the frame.
     */
    background: rgba(0, 0, 0, 0.12);
}

/* ── Cinematic feathered vignette — edges 60–85% black, center clear ── */
.journey-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        /* 1 · Radial — keep center much clearer */
        radial-gradient(
            ellipse 110% 105% at 50% 50%,
            rgba(0,0,0,0.00)  0%,
            rgba(0,0,0,0.02) 30%,
            rgba(0,0,0,0.10) 52%,  /* ← was 0.18 */
            rgba(0,0,0,0.40) 72%,  /* ← was 0.52 */
            rgba(0,0,0,0.70) 100%  /* ← was 0.82 */
        ),
        /* 2 · Top edge */
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.65)  0%,  /* ← was 0.78 */
            rgba(0,0,0,0.35)  6%,
            rgba(0,0,0,0.12) 14%,
            rgba(0,0,0,0.00) 28%
        ),
        /* 3 · Bottom edge */
        linear-gradient(
            to top,
            rgba(0,0,0,0.70)  0%,  /* ← was 0.85 */
            rgba(0,0,0,0.40)  7%,
            rgba(0,0,0,0.15) 16%,
            rgba(0,0,0,0.00) 30%
        ),
        /* 4 · Left edge */
        linear-gradient(
            to right,
            rgba(0,0,0,0.55)  0%,  /* ← was 0.72 */
            rgba(0,0,0,0.25)  6%,
            rgba(0,0,0,0.06) 13%,
            rgba(0,0,0,0.00) 22%
        ),
        /* 5 · Right edge */
        linear-gradient(
            to left,
            rgba(0,0,0,0.50)  0%,  /* ← was 0.65 */
            rgba(0,0,0,0.22)  6%,
            rgba(0,0,0,0.05) 13%,
            rgba(0,0,0,0.00) 22%
        );
}

/* ── Blue viewport border glow (ivress) ── */
.journey-pin-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    /* Gold spotlight centered where the figure walks */
    background: radial-gradient(
        ellipse 40% 50% at 52% 60%,
        rgba(201, 168, 76, 0.07) 0%,
        transparent 70%
    );
    box-shadow: inset 0 0 0 1.5px rgba(0, 180, 255, 0.08);
}

/* ── TOP-LEFT: Chapter label ── */
.journey-chapter-label {
    position: absolute;
    top: clamp(1.5rem, 4vh, 3rem);
    left: clamp(1.5rem, 4vw, 4rem);
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.journey-chapter-label.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.jcl-num {
    font-family: var(--f-h1);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    font-weight: 900;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.9);
}
.jcl-slash {
    font-family: var(--f-label);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.3);
}
.jcl-title {
    font-family: var(--f-label);
    font-size: clamp(0.55rem, 0.9vw, 0.7rem);
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
}

/* ── CENTER: Step display (large cinematic typography) ── */
.journey-center {
    position: absolute;
    left: clamp(1.5rem, 6vw, 7rem);
    bottom: clamp(4rem, 10vh, 8rem);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 560px;
}

.jc-step-num {
    font-family: var(--f-h1);
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    /* Gold with clear visibility — outlined style for cinematic feel */
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(201, 168, 76, 0.65);
    text-stroke: 1.5px rgba(201, 168, 76, 0.65);
    letter-spacing: -0.04em;
    user-select: none;
    /* Subtle gold fill glow behind the number */
    text-shadow:
        0 0 60px rgba(201, 168, 76, 0.18),
        0 0 120px rgba(201, 168, 76, 0.08);
    transition: -webkit-text-stroke-color 0.6s ease, text-shadow 0.6s ease;
}

.jc-step-title {
    font-family: var(--f-h1);
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 40px rgba(0,0,0,0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.jc-step-desc {
    font-family: var(--f-body);
    font-size: clamp(0.85rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
    max-width: 400px;
    transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

/* Ivress horizontal rule */
.jc-step-divider {
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.25);
    margin: 0.4rem 0;
}

/* Section identifier text */
.jc-section-title {
    font-family: var(--f-h1);
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
}
.jc-section-title em {
    font-style: italic;
    color: rgba(201,168,76,0.7);
}

/* Text transition helpers */
.jc-step-title.is-switching,
.jc-step-desc.is-switching {
    opacity: 0;
    transform: translateY(10px);
}

/* ── BOTTOM CENTER: Scroll hint ── */
.journey-scroll-hint {
    position: absolute;
    bottom: clamp(1.5rem, 3vh, 2.5rem);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    transition: opacity 0.8s ease 0.4s;
}
.journey-pin-wrap.is-ready .journey-scroll-hint { opacity: 1; }
.jsh-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 100%);
    animation: jshPulse 2s ease-in-out infinite;
}
@keyframes jshPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8) translateY(-4px); }
    50%       { opacity: 1;   transform: scaleY(1)   translateY(0); }
}
.jsh-text {
    font-family: var(--f-label);
    font-size: 0.5rem;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
}

/* ── RIGHT SIDE: Vertical chapter nav (ivress style) ── */
.journey-chapter-nav {
    position: absolute;
    right: clamp(1.5rem, 3.5vw, 4rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.8rem;
    opacity: 0;
    transition: opacity 0.8s ease 0.2s;
}
.journey-pin-wrap.is-ready .journey-chapter-nav { opacity: 1; }

.jcn-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-direction: row-reverse; /* dot left, label right → reversed = dot right */
    transition: opacity 0.3s;
    opacity: 0.35;
}
.jcn-item:hover { opacity: 0.7; }
.jcn-item.active { opacity: 1; }

.jcn-dot {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.5);
    transition: background 0.35s, transform 0.35s, box-shadow 0.35s;
    flex-shrink: 0;
}
.jcn-item.active .jcn-dot {
    background: #fff;
    transform: scale(1.5);
    box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.jcn-label {
    font-family: var(--f-h1);
   
    letter-spacing: 0.22em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.35s, letter-spacing 0.35s;
    user-select: none;
    font-size: 1rem;
}
.jcn-item.active .jcn-label {
    color: #fff;
    letter-spacing: 0.28em;
}

/* ── BOTTOM-LEFT: Progress ── */
.journey-progress-wrap {
    position: absolute;
    bottom: clamp(1.8rem, 4vh, 3.5rem);
    left: clamp(1.5rem, 4vw, 4rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}
.journey-pin-wrap.is-ready .journey-progress-wrap { opacity: 1; }

.journey-progress-bar {
    width: 80px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: visible;
}
.journey-progress-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: var(--jbar-w, 20%);
    background: rgba(255,255,255,0.7);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.journey-progress-label {
    font-family: var(--f-label);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
}

/* ── Transition animation for center text ── */
@keyframes jTextIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* 11. SOCIAL FEED */
.social {
    padding: 10rem 4rem; 
    background: var(--gold-main); 
    color: var(--black-main);
}
.social-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.social-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; 
    margin-bottom: 4rem;
}
.social-headline {
    font-family: var(--f-h1);
    font-size: 6rem;
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 700;
}
.social-headline .italic {
    font-style: italic;
    font-weight: 400; 
}
.social-headline .arrow-icon {
    display: inline-block;
    font-style: normal;
    font-weight: 700;
}
.social-header-text {
    max-width: 350px;
    font-family: var(--f-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black-main);
    padding-bottom: 1rem;
}

/* 6-Column CSS Grid */
.feed-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 350px; /* Base row height */
    gap: 1.5rem;
}
.feed-card {
    background-color: #111;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Card Sizes */
.feed-large {
    grid-column: span 2;
    grid-row: span 2;
}
.feed-small {
    grid-column: span 1;
    grid-row: span 1;
}
.feed-medium {
    grid-column: span 2;
    grid-row: span 1;
}

/* Content Overlay */
.feed-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white-main);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.feed-overlay h4 {
    font-family: var(--f-h1);
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: auto;
}
.feed-overlay span {
    font-family: var(--f-label);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    opacity: 0.8;
}

/* 12. CINEMATIC CTA / CONTACT */
.cinematic-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    overflow: hidden;
    padding: 6rem 2rem;
}

/* ── Particle canvas ── */
#cta-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

/* ── Ambient glows ── */
.cta-ambient-top {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 50vh;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.cta-ambient-bottom {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 40vh;
    background: radial-gradient(ellipse at center, rgba(0,229,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.cta-spotlight {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 100%;
    background: linear-gradient(180deg, rgba(201,168,76,0.035) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* ── Reel strips container ── */
.cta-reels-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 0;
    overflow: hidden;
    z-index: 0;
}

.reel-strip {
    overflow: hidden;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.reel-track {
    display: flex;
    gap: 1.2rem;
    padding: 0.6rem 0;
    width: max-content;
    will-change: transform;
}

/* Animations */
@keyframes reelLTR {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes reelRTL {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

.reel-ltr          { animation: reelLTR 40s linear infinite; }
.reel-rtl          { animation: reelRTL 48s linear infinite; }
.reel-ltr-slow     { animation-duration: 56s; }

/* Pause on hover of the whole section */
.cinematic-cta:hover .reel-ltr,
.cinematic-cta:hover .reel-ltr-slow { animation-play-state: running; }

/* ── Individual reel card ── */
.reel-card {
    flex-shrink: 0;
    width: 280px;
    height: 160px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}
.reel-card:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
    border-color: rgba(201,168,76,0.25);
}

/* Background image fill */
.reel-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.reel-card:hover .reel-img { transform: scale(1.08); }

/* Glass reflection shimmer */
.reel-card::before {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 40%; height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
    transform: skewX(-15deg);
    z-index: 3;
    transition: left 0.6s ease;
}
.reel-card:hover::before { left: 130%; }

/* Overlay with tag + duration + play */
.reel-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    gap: 0.5rem;
    z-index: 2;
}
.reel-tag {
    font-family: var(--f-label);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    color: var(--gold-main);
    text-transform: uppercase;
    flex: 1;
}
.reel-dur {
    font-family: var(--f-label);
    font-size: 0.55rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}
.reel-play {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
    color: var(--white-main);
    padding-left: 2px;
    transition: background 0.3s, border-color 0.3s;
}
.reel-card:hover .reel-play {
    background: var(--gold-main);
    border-color: var(--gold-main);
    color: #000;
}

/* ── Dark scrim over reels ── */
.cta-scrim {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 50%, rgba(5,5,5,0.78) 0%, rgba(5,5,5,0.55) 60%, transparent 100%),
        linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, transparent 20%, transparent 80%, rgba(5,5,5,0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

/* ── Form wrap (floating over reels) ── */
.cta-form-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 860px;
    background: rgba(8, 8, 10, 0.72);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-radius: 28px;
    border: 1px solid rgba(201,168,76,0.18);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04) inset,
        0 40px 100px rgba(0,0,0,0.7),
        0 0 60px rgba(201,168,76,0.04);
    padding: 3.5rem;
    /* Section reveal */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.cta-form-wrap.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top gradient line */
.cta-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), rgba(0,229,255,0.3), transparent);
    border-radius: 1px;
}

/* ── Form header ── */
.cta-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--f-label);
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    color: var(--gold-main);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding: 0.45rem 1.2rem;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50px;
    background: rgba(201,168,76,0.06);
}
.cta-eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold-main);
    animation: eyebrowPulse 2s ease-in-out infinite;
}
@keyframes eyebrowPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--gold-main); }
    50%       { opacity: 0.4; box-shadow: none; }
}

.cta-main-heading {
    font-family: var(--f-h1);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white-main);
    margin-bottom: 1rem;
}
.cta-heading-gold {
    background: linear-gradient(135deg, var(--gold-main), var(--gold-light), var(--gold-main));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-sub {
    font-family: var(--f-body);
    font-size: 1rem;
    color: rgba(245,241,234,0.55);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Glass Form ── */
.cta-glass-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.cta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

/* Field */
.cta-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}
.cta-field-full {
    grid-column: 1 / -1;
}

.cta-field label {
    font-family: var(--f-label);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s;
}
.cta-field:focus-within label {
    color: var(--gold-main);
}

.cta-field input,
.cta-field textarea,
.cta-field select {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--white-main);
    font-family: var(--f-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
}
.cta-field input::placeholder,
.cta-field textarea::placeholder {
    color: rgba(255,255,255,0.2);
}
.cta-field input:focus,
.cta-field textarea:focus,
.cta-field select:focus {
    border-color: rgba(201,168,76,0.45);
    background: rgba(201,168,76,0.04);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08), 0 0 20px rgba(201,168,76,0.06);
}
.cta-field textarea {
    resize: none;
    line-height: 1.6;
}

/* Field glow line */
.field-glow {
    position: absolute;
    bottom: 0; left: 12px; right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-main), transparent);
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.3s, transform 0.4s ease;
    pointer-events: none;
    border-radius: 1px;
}
.cta-field:focus-within .field-glow {
    opacity: 0.7;
    transform: scaleX(1);
}

/* Select wrapper */
.select-wrap {
    position: relative;
}
.select-wrap select {
    cursor: pointer;
    padding-right: 2.5rem;
}
.select-wrap select option {
    background: #111;
    color: var(--white-main);
}
.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    pointer-events: none;
    transition: color 0.3s;
}
.cta-field:focus-within .select-arrow { color: var(--gold-main); }

/* ── Submit button ── */
.cta-submit-btn {
    position: relative;
    margin-top: 0.6rem;
    width: 100%;
    padding: 1.15rem 2rem;
    border-radius: 14px;
    border: 1px solid rgba(201,168,76,0.3);
    background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
    color: var(--gold-main);
    font-family: var(--f-label);
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    overflow: hidden;
    transition: background 0.4s, border-color 0.4s, color 0.4s, box-shadow 0.4s, transform 0.3s;
}
.cta-submit-btn:hover {
    background: var(--gold-main);
    border-color: var(--gold-main);
    color: #000;
    box-shadow: 0 0 40px rgba(201,168,76,0.35), 0 10px 40px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}
.cta-submit-btn:active { transform: translateY(0); }

.submit-text { font-weight: 700; }
.submit-icon {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
}
.cta-submit-btn:hover .submit-icon { transform: rotate(72deg) scale(1.2); }

/* Shimmer sweep */
.submit-shimmer {
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}
.cta-submit-btn:hover .submit-shimmer { left: 160%; }

/* ── Trust row ── */
.cta-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.trust-item {
    font-family: var(--f-label);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
}
.trust-icon { font-size: 0.85rem; }
.trust-divider {
    color: rgba(255,255,255,0.12);
    font-size: 1.2rem;
}

/* NEW UI ADDITIONS */
.card-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(8,8,12,0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
    opacity: 0; transition: opacity 0.4s;
}
.carousel-card:hover .card-overlay { opacity: 1; }
.play-btn {
    width: 60px; height: 60px; border-radius: 50%; background: var(--c-gold);
    color: var(--c-obsidian); display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 1rem; box-shadow: 0 0 20px var(--c-gold);
}
.card-meta .category { color: var(--c-gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; }
.card-meta h3 { font-size: 1.5rem; margin-top: 0.5rem; }

.vs-circle {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60px; height: 60px; border-radius: 50%; background: var(--c-obsidian);
    border: 2px solid var(--c-gold); color: var(--c-gold); display: flex;
    align-items: center; justify-content: center; font-size: 1.5rem; z-index: 10;
    box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

/* MAIN CONTENT WRAPPER */
.main-content {
    position: relative;
    z-index: 1;
    background: var(--black-main);
}

/* 13. FOOTER */
.footer-section { 
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000; 
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 6rem 6rem 3rem;
    overflow: hidden;
    border-top: 1px solid rgba(201,168,76,0.15);
}

#footer-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.footer-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.footer-top { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 4rem; 
    max-width: 1000px; 
    width: 100%;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-label { 
    font-family: var(--f-label);
    font-size: 0.8rem;
    color: var(--gold-main); 
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-col a { 
    font-family: var(--f-body);
    display: block; 
    color: var(--white-main); 
    text-decoration: none; 
    font-size: 1.5rem;
    margin-bottom: 1rem; 
    transition: color 0.4s;
    width: fit-content;
}

.footer-col a:hover { 
    color: var(--gold-main); 
}

.footer-massive-text {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.footer-logo3d-wrap {
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    cursor: default;
    position: relative;
}

.footer-3d-mark {
    font-family: var(--f-h1);
    font-size: clamp(5rem, 18vw, 20rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--white-main);
    /* Multi-layer 3D depth shadow */
    text-shadow:
        2px  2px  0px rgba(201,168,76, 0.6),
        4px  4px  0px rgba(201,168,76, 0.45),
        6px  6px  0px rgba(201,168,76, 0.3),
        8px  8px  0px rgba(201,168,76, 0.2),
        10px 10px 0px rgba(201,168,76, 0.12),
        12px 12px 20px rgba(0,0,0, 0.8),
        0 0 80px rgba(201,168,76, 0.08);
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.footer-peace {
    display: inline-block;
    font-size: 0.85em;
    color: var(--gold-main);
    text-shadow:
        2px  2px  0px rgba(201,168,76, 0.4),
        4px  4px  0px rgba(140, 100, 20, 0.3),
        6px  6px 10px rgba(0,0,0, 0.6);
    transition: transform 0.5s ease;
    transform-origin: center;
}

.footer-logo3d-wrap:hover .footer-peace {
    transform: rotate(-20deg) scale(1.1);
}

.footer-3d-sub {
    font-family: var(--f-label);
    font-size: clamp(0.7rem, 1.5vw, 1.2rem);
    letter-spacing: 0.5em;
    color: var(--gold-main);
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0.7;
    text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.footer-bottom { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    color: var(--gray-soft); 
    font-family: var(--f-label);
    font-size: 0.8rem; 
    text-transform: uppercase;
}

.back-to-top {
    color: var(--white-main);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}
.back-to-top:hover {
    color: var(--gold-main);
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO MODAL
═══════════════════════════════════════════════════════════════ */
.video-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 2;
    /* Let it shrink for portrait videos */
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-wrapper {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(201,168,76,0.15);
    border: 1px solid rgba(255,255,255,0.1);

    /* Fit within viewport: cap height at 85vh, cap width at 90vw */
    max-height: 85vh;
    max-width: 90vw;

    /* Default 16/9 */
    aspect-ratio: 16 / 9;
    width: 90vw;
}

/* Portrait (9:16) — shrink width to keep it within 85vh height */
.video-wrapper[style*="9/16"],
.video-wrapper[style*="9 / 16"] {
    width: calc(85vh * 9 / 16);
    max-width: 90vw;
}

/* Ultrawide (21:9) — let full width, height auto */
.video-wrapper[style*="21/9"],
.video-wrapper[style*="21 / 9"] {
    width: 90vw;
}

#popup-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-modal-close-btn {
    position: absolute;
    top: -3.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white-main);
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s, transform 0.3s;
}

.video-modal-close-btn:hover {
    opacity: 1;
    color: var(--gold-main);
    transform: rotate(90deg);
}

.video-modal-close-btn svg {
    width: 32px;
    height: 32px;
}




/* ═══════════════════════════════════════════════════════════════
   DAKSH MEDIA — COMPLETE MOBILE RESPONSIVE CSS
   Paste this at the very BOTTOM of your style.css
═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────
   HAMBURGER MENU — works on all screen sizes, hidden on desktop
───────────────────────────────────────────────────────────────*/
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer !important;
    padding: 0.5rem;
    z-index: 1100;
    position: relative;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white-main);
    transition: all 0.35s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4.5px);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4.5px);
}

/* Mobile full-screen nav drawer */
.nav-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 1099;
    transform: translateY(-100%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.nav-mobile-menu.open {
    transform: translateY(0);
    pointer-events: auto;
}
.nav-mobile-menu a {
    font-family: var(--f-h1);
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 700;
    color: var(--white-main);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: color 0.3s, opacity 0.4s ease, transform 0.4s ease;
}
.nav-mobile-menu.open a {
    opacity: 1;
    transform: translateY(0);
}
.nav-mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.nav-mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.nav-mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.nav-mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.nav-mobile-menu a:hover {
    color: var(--gold-main);
}
.nav-mobile-menu a:last-child {
    color: var(--gold-main);
    border: 1px solid rgba(201, 168, 76, 0.4);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: clamp(1rem, 4vw, 1.4rem);
    margin-top: 1rem;
}


/* ─────────────────────────────────────────────────────────────
   TABLET — max-width: 1024px
───────────────────────────────────────────────────────────────*/
@media (max-width: 1024px) {

    /* NAVBAR */
    .navbar { padding: 1.2rem 2rem; }
    .navbar.scrolled { padding: 0.8rem 2rem; }
    .nav-links { gap: 1.5rem; }

    /* HERO */
    .hero-title { font-size: 10vw; }

    /* ABOUT */
    .editorial-container {
        flex-direction: column;
        padding: 0 2rem;
        gap: 3rem;
        align-items: flex-start;
    }
    .editorial-left { max-width: 100%; }
    .editorial-right {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
    }
    .section-label { padding: 0 2rem; }

    /* SERVICES */
    .services { padding: 6rem 2rem; }
    .services-headline { font-size: 4rem; }
    .service-row {
        grid-template-columns: 80px 1fr auto;
        gap: 1rem;
        padding: 2rem 0.5rem;
    }
    .s-desc { display: none; }
    .s-title { font-size: 2rem; }

    /* SHOWREEL */
    .showreel-header { padding: 0 2rem 3rem; }
    .showreel-headline { font-size: 3.5rem; }
    .projects-track { padding: 0 2rem; }

    /* WHY DAKSH */
    .why-daksh { padding: 6rem 2rem; }
    .why-headline { font-size: 4rem; }

    /* TESTIMONIALS */
    .testi-inner { padding: 0 2rem; }
    .testi-cards { grid-template-columns: 1fr 1fr; }
    .testi-card:last-child { grid-column: 1 / -1; }

    /* SOCIAL */
    .social { padding: 6rem 2rem; }
    .social-headline { font-size: 4rem; }
    .feed-grid { grid-template-columns: repeat(3, 1fr); }
    .feed-large { grid-column: span 2; grid-row: span 1; }

    /* CONTACT */
    .cta-form-wrap { padding: 2.5rem; margin: 1.5rem auto; }

    /* FOOTER */
    .footer-section { padding: 5rem 2.5rem 2.5rem; }
    .footer-top { gap: 2.5rem; }
}


/* ─────────────────────────────────────────────────────────────
   MOBILE — max-width: 768px
───────────────────────────────────────────────────────────────*/
@media (max-width: 768px) {

    /* ── DISABLE CUSTOM CURSOR ── */
    #cursor-dot,
    #cursor-ring,
    #scroll-label { display: none !important; }
    * { cursor: auto !important; }

    /* ── NAVBAR ── */
    .navbar { padding: 1rem 1.5rem; }
    .navbar.scrolled { padding: 0.7rem 1.5rem; }
    .nav-links { display: none !important; }
    .nav-hamburger { display: flex; }
    .nav-logo-mark-text { font-size: 1.4rem; }
    .nav-logo-sub { font-size: 0.5rem; letter-spacing: 0.2em; }

    /* ── HERO ── */
   .hero { 
    padding-top: 65px;
    height: 100svh;
}

#hero-3d-bg {
    transform: scale(0.8);
    transform-origin: center center;
}
    #lens-canvas {
    width: 100% !important;
    height: 100% !important;
    transform: scale(0.85);
    transform-origin: center center;
}
    .hero-title {
        font-size: 13vw !important;
        text-align: center;
        padding: 0 1rem;
        width: 100%;
        line-height: 1;
    }
    .title-wrapper {
        width: 100%;
        padding: 0 0.5rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
        justify-content: center;
    }
    .hero-ctas {
        bottom: 18%;
        width: 85%;
        text-align: center;
    }
    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.75rem;
    }
    #hero-video-controls {
        bottom: 5rem;
        right: 0.8rem;
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 200px;
    }
    .hero-ctrl-btn {
        padding: 0.45rem 0.75rem;
        font-size: 0.55rem;
        border-radius: 40px;
    }
    #hero-audio-btn,
    #hero-replay-btn {
        min-width: 34px;
        padding: 0.45rem;
    }
    #hero-audio-btn svg,
    #hero-replay-btn svg {
        width: 14px;
        height: 14px;
    }
    .hero-3d-replay-btn {
        bottom: 1.5rem;
        right: 1rem;
        font-size: 0.55rem;
        padding: 0.5rem 1rem 0.5rem 0.75rem;
    }
    #hero-ticker { bottom: -1rem; }
    .hero-ticker-track span { font-size: 0.9rem; }
    .hero-ticker-track { gap: 1.2rem; }

    /* ── MARQUEE (mobile) ── */
    .marquee-item {
        font-size: 2.8rem;
        padding: 1rem 2.5rem;
        min-width: 280px;
        margin-right: 1.5rem;
    }

    /* ── ABOUT ── */
    .editorial-about {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    .editorial-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }
    .section-label {
        padding: 0 1.5rem;
        margin-bottom: 1.5rem;
    }
    .editorial-headline {
        font-size: clamp(2rem, 9vw, 3rem);
        margin-bottom: 1.2rem;
    }
    .editorial-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .editorial-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    .stat-item .stat-num { font-size: 2.5rem; }
    .editorial-right { display: none; }
    .side-tab { display: none; }

    /* ── SERVICES ── */
    .services { padding: 4rem 1.5rem; }
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .services-headline { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .services-header-text { max-width: 100%; font-size: 0.95rem; }
    .service-row {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        padding: 1.5rem 0;
    }
    .s-num { font-size: 0.7rem; color: var(--gold-main); }
    .s-title { font-size: 1.8rem; }
    .s-desc {
        display: block;
        font-size: 0.85rem;
        padding-right: 0;
        color: rgba(0,0,0,0.6);
    }
    .s-tags { flex-wrap: wrap; gap: 0.4rem; }
    .s-tag { font-size: 0.65rem; padding: 0.3rem 0.8rem; }

    /* ── SHOWREEL ── */
    .showreel { padding: 4rem 0 0; }
    .showreel-header {
        padding: 0 1.5rem 2rem;
        text-align: left;
    }
    .showreel-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); margin: 0.8rem 0 1rem; }
    .project-card {
        width: 260px;
        height: 350px;
        border-radius: 14px;
    }
    .projects-track { padding: 0 1.5rem; gap: 1rem; }
    .projects-track-wrap { padding-bottom: 3.5rem; }
    .project-title { font-size: 1.05rem; }
    .project-play { width: 50px; height: 50px; font-size: 0.9rem; }

    /* ── WHY DAKSH ── */
    .why-daksh { padding: 4rem 1.5rem; }
    .why-headline { font-size: clamp(2rem, 10vw, 3.5rem); }
    .why-header { margin-bottom: 3rem; }
    .comparison-container {
        flex-direction: column;
        gap: 1.5rem;
    }
.vs-badge {
    position: relative;
    top: auto; left: auto;
    transform: none;
    text-align: center;
    padding: 1.5rem 0;
    opacity: 0.6;
    order: 2;
}

.comparison-container .compare-card:first-child { order: 1; }
.comparison-container .compare-card:last-child  { order: 3; }



.vs-badge {
    order: 2;
}

.comparison-container .compare-card:last-child {
    order: 3;
}
    .compare-card { padding: 2rem 1.5rem; width: 100%; }
    .compare-title { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .compare-list { gap: 1.2rem; }
    .compare-list li { font-size: 0.95rem; gap: 1rem; }

    /* ── TESTIMONIALS ── */
    .testimonials { padding: 4rem 0 0; }
    .testi-inner { padding: 0 1.5rem; }
    .testi-header {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        align-items: flex-start;
    }
    .testi-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .testi-cards { grid-template-columns: 1fr; gap: 1rem; }
    .testi-card {
        padding: 2rem 1.5rem;
        min-height: auto;
        grid-column: auto !important;
    }
    .testi-quote { font-size: 1rem; margin-bottom: 1.5rem; }
    .testi-quote-mark { font-size: 3rem; margin-bottom: 1rem; }
    .brand-ticker { margin-top: 3rem; }
    .brand-ticker-track span { font-size: 1.1rem; }

    /* ── JOURNEY / PROCESS ── */
    .journey-section { height: 300vh; }
    .journey-pin-wrap {
        height: 100vh;
        position: sticky;
        top: 0;
    }
    #journey-canvas {
        width: 100% !important;
        height: 100% !important;
    }
    .journey-center {
        left: 1.5rem;
        bottom: 4rem;
        max-width: 80%;
        gap: 0.4rem;
    }
    .jc-step-num { font-size: clamp(3rem, 14vw, 6rem); }
    .jc-step-title { font-size: clamp(1.8rem, 7vw, 3rem); }
    .jc-step-desc { font-size: 0.82rem; max-width: 100%; }
    .jc-section-title { font-size: 0.58rem; }
    .journey-chapter-nav { right: 0.8rem; gap: 1.2rem; }
    .jcn-label { display: none; font-size: 0.7rem;}
    .journey-chapter-label { top: 1rem; left: 1.5rem; }
    .journey-progress-wrap { left: 1.5rem; bottom: 1.5rem; }
    .journey-scroll-hint { bottom: 1rem; }
    .jsh-line { height: 25px; }

    /* ── SOCIAL FEED ── */
    .social {
        padding: 4rem 1.5rem !important;
        background: var(--gold-main) !important;
    }
    .social-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        align-items: flex-start;
    }
    .social-headline { font-size: clamp(2.2rem, 9vw, 3rem); }
    .social-header-text { max-width: 100%; }
    .feed-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }
    .feed-card {
        width: 100% !important;
        border-radius: 12px !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }
    .feed-large { height: 230px !important; }
    .feed-small { height: 180px !important; }
    .feed-medium { height: 180px !important; }

    /* ── CINEMATIC CTA / CONTACT ── */
    .cinematic-cta {
        padding: 3rem 0;
        min-height: auto;
        background: #050505 !important;
    }
    .cta-reels-bg { display: none; }
    .cta-scrim { display: none; }
    .cta-ambient-top,
    .cta-ambient-bottom,
    .cta-spotlight { display: none; }
    .cta-form-wrap {
        width: calc(100% - 2rem);
        margin: 1rem auto;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        box-sizing: border-box;
    }
    .cta-form-header { margin-bottom: 2rem; }
    .cta-eyebrow { font-size: 0.58rem; }
    .cta-main-heading {
        font-size: clamp(1.8rem, 8vw, 2.8rem);
        margin: 0.8rem 0 0.8rem;
    }
    .cta-sub { font-size: 0.88rem; margin-bottom: 0; }
    .cta-glass-form { gap: 0; }
    .cta-form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    .cta-field {
        width: 100% !important;
        margin-bottom: 1.2rem;
    }
    .cta-field label {
        font-size: 0.6rem;
        letter-spacing: 0.15em;
    }
    .cta-field input,
    .cta-field textarea,
    .cta-field select {
        width: 100% !important;
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
        border-radius: 10px;
    }
    .select-wrap { width: 100%; }
    .cta-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 0.75rem;
        border-radius: 12px;
        margin-top: 0.4rem;
    }
    .cta-trust-row {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        text-align: center;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
    .trust-divider { display: none; }
    .trust-item { font-size: 0.65rem; }

    /* ── REEL STRIPS ── */
    .reel-strip { height: 130px; }
    .reel-card { min-width: 170px; height: 115px; border-radius: 8px; }

    /* ── FOOTER ── */
    .footer-section {
        padding: 3rem 1.5rem 2rem;
        min-height: auto;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 2.5rem;
    }
    .footer-col a { font-size: 1rem; margin-bottom: 0.7rem; }
    .footer-label { font-size: 0.65rem; margin-bottom: 1rem; }
    .footer-3d-mark { font-size: clamp(3rem, 18vw, 7rem); }
    .footer-3d-sub { font-size: 0.65rem; letter-spacing: 0.3em; }
    .footer-massive-text { margin: 2rem 0; }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1.5rem;
    }
    .footer-bottom p { font-size: 0.65rem; }

    /* ── VIDEO MODAL ── */
    .video-wrapper {
        width: 95vw !important;
        max-height: 80vh;
    }
    .video-wrapper[style*="9/16"],
    .video-wrapper[style*="9 / 16"] {
        width: calc(80vh * 9 / 16) !important;
        max-width: 95vw !important;
    }
    .video-modal-close-btn { top: -2.5rem; }
    .video-modal-close-btn svg { width: 24px; height: 24px; }
}


/* ─────────────────────────────────────────────────────────────
   SMALL PHONES — max-width: 480px
───────────────────────────────────────────────────────────────*/
@media (max-width: 480px) {

    /* HERO */
    .hero-title { font-size: 16vw !important; }
    .hero-ctas { bottom: 20%; }
    .btn { padding: 0.8rem 1.6rem; font-size: 0.7rem; }
    #hero-video-controls {
        bottom: 4.5rem;
        right: 0.5rem;
        max-width: 170px;
    }

    /* ABOUT */
    .editorial-headline { font-size: clamp(1.8rem, 10vw, 2.5rem); }
    .editorial-stats { gap: 1.5rem; }
    .stat-item .stat-num { font-size: 2rem; }

    /* SERVICES */
    .services-headline { font-size: clamp(2rem, 12vw, 3rem); }
    .s-title { font-size: 1.5rem; }

    /* SHOWREEL */
    .showreel-headline { font-size: clamp(2rem, 12vw, 3rem); }
    .project-card { width: 230px; height: 310px; }
    .project-title { font-size: 0.95rem; }

    /* WHY */
    .why-headline { font-size: clamp(1.8rem, 12vw, 3rem); }
    .compare-list li { font-size: 0.85rem; }
    .compare-card { padding: 1.5rem 1.2rem; }

    /* TESTIMONIALS */
    .testi-headline { font-size: clamp(1.8rem, 10vw, 2.5rem); }
    .testi-card { padding: 1.5rem 1.2rem; }
    .testi-quote { font-size: 0.95rem; }

    /* JOURNEY */
    .journey-section { height: 280vh; }
    .jc-step-num { font-size: clamp(2.5rem, 16vw, 5rem); }
    .jc-step-title { font-size: clamp(1.5rem, 8vw, 2.5rem); }
    .jc-step-desc { font-size: 0.78rem; }
    .journey-center { left: 1.2rem; bottom: 3.5rem; max-width: 85%; }

    /* SOCIAL */
    .social-headline { font-size: clamp(1.8rem, 10vw, 2.5rem); }
    .feed-large { height: 200px !important; }
    .feed-small,
    .feed-medium { height: 160px !important; }

    /* CONTACT */
    .cta-main-heading { font-size: clamp(1.6rem, 10vw, 2.2rem); }
    .cta-form-wrap {
        width: calc(100% - 1rem);
        margin: 0.5rem auto;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    /* FOOTER */
    .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
    .footer-3d-mark { font-size: clamp(2.8rem, 20vw, 5rem); }
}