/* ═══════════════════════════════════════════════════════════
   VARDAAN SERVICES — MAIN FRONTEND
   Dark Cinema Aesthetic · Bebas Neue + Outfit
   Obsidian Black · Molten Gold · Cream White
═══════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --bg:              #090909;
    --bg-2:            #111111;
    --bg-3:            #181818;
    --fg:              #f0ead6;
    --fg-dim:          #c8bfa8;
    --gray:            #888070;
    --gold:            #e8b34b;
    --gold-dim:        rgba(232,179,75,0.12);
    --gold-glow:       rgba(232,179,75,0.28);
    --orange:          #ff6b35;
    --white:           #ffffff;
    --border:          rgba(255,255,255,0.06);
    --border-gold:     rgba(232,179,75,0.22);
    --surface:         rgba(255,255,255,0.03);
    --nav-h:           80px;
    --accent:          var(--gold);
    --accent-hover:    #d4a040;
    --accent-light:    var(--gold-dim);
    --accent-glow:     var(--gold-glow);
    --black:           #090909;
    --light:           #111111;
    --radius:          6px;
    --shadow-sm:       0 2px 8px rgba(0,0,0,0.5);
    --shadow-md:       0 8px 32px rgba(0,0,0,0.55);
    --shadow-lg:       0 24px 80px rgba(0,0,0,0.7);
    --ease-expo:       cubic-bezier(0.87, 0, 0.13, 1);
    --ease-back:       cubic-bezier(0.34, 1.56, 0.64, 1);
    --font-display:    'Bebas Neue', sans-serif;
    --font-body:       'Outfit', sans-serif;
}

html { scroll-behavior: auto; font-size: 16px; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
    cursor: default;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

/* ── GRAIN OVERLAY ──────────────────────────────────────── */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9990;
    pointer-events: none;
    opacity: 0.035;
    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-repeat: repeat;
    background-size: 200px 200px;
    animation: grainShift 0.4s steps(1) infinite;
}

@keyframes grainShift {
    0%   { background-position: 0 0; }
    20%  { background-position: -30px 15px; }
    40%  { background-position: 15px -20px; }
    60%  { background-position: -15px 25px; }
    80%  { background-position: 25px -10px; }
    100% { background-position: 0 0; }
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────── */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    z-index: 9999;
    transition: width 0.05s linear;
    box-shadow: 0 0 12px var(--gold-glow);
}

/* ── PRELOADER ──────────────────────────────────────────── */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}

#preloader.done { opacity: 0; visibility: hidden; }

.pre-logo {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fg);
    overflow: hidden;
}

.pre-logo-inner {
    display: block;
    transform: translateY(100%);
    animation: preSlideUp 0.9s 0.2s var(--ease-expo) forwards;
}

.pre-logo span { color: var(--gold); }

.pre-bar {
    width: 160px;
    height: 1px;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}

.pre-bar-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    animation: preLoad 1.8s 0.4s var(--ease-expo) forwards;
    box-shadow: 0 0 8px var(--gold-glow);
}

.pre-count {
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gray);
    animation: fadeIn 0.6s 0.4s forwards;
    opacity: 0;
    font-family: var(--font-body);
}

@keyframes preSlideUp { to { transform: translateY(0); } }
@keyframes preLoad    { to { width: 100%; } }
@keyframes fadeIn     { to { opacity: 1; } }

/* ── NAV (index page duplicate — shared CSS takes over on sub-pages) ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    background: rgba(9,9,9,0.82);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
    font-family: var(--font-body);
}

nav.scrolled {
    background: rgba(9,9,9,0.96);
    border-bottom-color: var(--border-gold);
    box-shadow: 0 1px 0 rgba(232,179,75,0.08), 0 8px 32px rgba(0,0,0,0.6);
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    flex-shrink: 0;
    min-height: 56px;
    color: var(--fg);
}

.nav-logo-text { color: var(--fg); }
.nav-logo-mark { color: var(--gold); }

.nav-logo-img {
    width: 48px; height: 48px;
    display: block;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    background: var(--bg-2);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.nav-logo:hover .nav-logo-img {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.nav-logo-fallback {
    width: 48px; height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    background: var(--surface);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.08em;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 14px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 14px; right: 14px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-expo);
}

.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

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

.theme-toggle {
    width: 36px; height: 36px;
    border: 1px solid var(--border-gold);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--gray);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    border-radius: 4px;
}

.theme-toggle:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--gold);
}

.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: inline-flex; }

.nav-cta {
    background: var(--gold) !important;
    color: var(--bg) !important;
    opacity: 1 !important;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    font-size: 11px !important;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: box-shadow 0.3s, transform 0.2s !important;
    display: block;
}

.nav-cta:hover {
    box-shadow: 0 0 28px var(--gold-glow), 0 4px 16px rgba(0,0,0,0.5) !important;
    transform: translateY(-1px) !important;
}

.nav-cta::after { display: none !important; }

/* hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 44px; height: 44px;
    border: 1px solid var(--border-gold);
    background: var(--surface);
    border-radius: 4px;
    cursor: pointer;
    padding: 12px;
    transition: background 0.2s, border-color 0.2s;
}

.hamburger:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--fg);
    transition: transform 0.35s, opacity 0.25s, width 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* drawer */
.drawer {
    position: fixed;
    inset: 0;
    z-index: 400;
    pointer-events: none;
    display: none;
}

.drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    opacity: 0;
    transition: opacity 0.4s;
    backdrop-filter: blur(6px);
}

.drawer-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 88vw);
    background: var(--bg-2);
    border-left: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    padding: 100px 36px 48px;
    transform: translateX(100%);
    transition: transform 0.44s var(--ease-expo);
    box-shadow: -24px 0 80px rgba(0,0,0,0.8);
}

.drawer.open { pointer-events: all; }
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer.open .drawer-panel { transform: translateX(0); }

.drawer-links {
    list-style: none;
    flex: 1;
}

.drawer-links li {
    border-bottom: 1px solid var(--border);
}

.drawer-links a {
    display: block;
    padding: 20px 0;
    color: var(--gray);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s, padding-left 0.3s;
}

.drawer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.drawer-cta { margin-top: 32px; }

.drawer-cta a {
    display: block;
    background: var(--gold);
    color: var(--bg) !important;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 3px;
    transition: box-shadow 0.3s;
}

.drawer-cta a:hover { box-shadow: 0 0 30px var(--gold-glow); }

/* ── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left {
    opacity: 0;
    transform: translateX(-44px);
    transition: opacity 0.9s var(--ease-expo), transform 0.9s var(--ease-expo);
}
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger > * {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }

.word-reveal .word { display: contents; overflow: hidden; vertical-align: bottom; }
.word-reveal .word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s var(--ease-expo);
}
.word-reveal.visible .word-inner { transform: translateY(0); }
.word-reveal.visible .word:nth-child(1) .word-inner { transition-delay: 0s; }
.word-reveal.visible .word:nth-child(2) .word-inner { transition-delay: 0.08s; }
.word-reveal.visible .word:nth-child(3) .word-inner { transition-delay: 0.16s; }
.word-reveal.visible .word:nth-child(4) .word-inner { transition-delay: 0.24s; }
.word-reveal.visible .word:nth-child(5) .word-inner { transition-delay: 0.32s; }
.word-reveal.visible .word:nth-child(6) .word-inner { transition-delay: 0.40s; }
.word-reveal.visible .word:nth-child(7) .word-inner { transition-delay: 0.48s; }
.word-reveal.visible .word:nth-child(8) .word-inner { transition-delay: 0.56s; }

/* ── SLIDE BASE ─────────────────────────────────────────── */
.slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════
   HERO — SLIDE 1
═══════════════════════════════════════════════════════ */
.slide-1 { background: var(--bg); }

/* Background video */
.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: grayscale(20%) saturate(1.2);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(9,9,9,0.3) 0%, rgba(9,9,9,0.88) 100%),
        linear-gradient(to bottom, rgba(9,9,9,0.6) 0%, rgba(9,9,9,0.1) 50%, rgba(9,9,9,0.75) 100%);
}

/* subtle grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(232,179,75,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,179,75,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}

/* portfolio wall (3D tiles background) */
.stage {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    perspective: 1200px;
    perspective-origin: 50% 40%;
    overflow: hidden;
}

.wall {
    width: 100vw;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    justify-content: center;
    transform: rotateX(13deg) scale(1.05);
}

.row-vp {
    display: flex;
    overflow: visible;
    transform-style: preserve-3d;
}

.row-track { display: flex; gap: 1.2vw; width: max-content; }

.row-vp.r1 { transform: translateZ(-60px) rotateY(-7deg); }
.row-vp.r2 { transform: translateZ(-120px) rotateY(7deg); }
.row-vp.r3 { transform: translateZ(-180px) rotateY(-5deg); }
.row-vp.r4 { transform: translateZ(-240px) rotateY(5deg); }

.go-l .row-track { animation: wl 38s linear infinite; }
.go-r .row-track { animation: wr 42s linear infinite; }

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

.tile {
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(232,179,75,0.1);
    flex-shrink: 0;
    font-size: 14px;
    color: rgba(232,179,75,0.3);
    letter-spacing: 0.05em;
}

.w-sm  { width: clamp(80px,10vw,130px);  height: clamp(55px,7vw,85px);   }
.w-md  { width: clamp(120px,14vw,190px); height: clamp(75px,9vw,115px);  }
.w-lg  { width: clamp(160px,18vw,250px); height: clamp(95px,11vw,145px); }
.w-xl  { width: clamp(200px,22vw,310px); height: clamp(115px,13vw,175px);}
.w-xxl { width: clamp(240px,26vw,380px); height: clamp(135px,15vw,210px);}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 48px;
    max-width: 1160px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

/* hero-badge is an alias used in index.php */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; box-shadow: 0 0 10px var(--gold-glow); }
    50%       { opacity: 0.5; box-shadow: 0 0 20px var(--gold-glow); }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 132px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
}

.hero-headline em {
    font-style: normal;
    color: var(--gold);
    -webkit-text-stroke: 0px;
}

/* outlined text effect on alternate words */
.hero-headline .word-outline .word-inner {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--fg-dim);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 18px);
    color: var(--fg-dim);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 32px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0;
    animation: heroSubFade 0.8s ease-out 0.3s forwards;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-sub:hover {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(232, 179, 75, 0.4);
    transform: translateY(-2px);
}

@keyframes heroSubFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* rotating tagline strip */
.tagline-rotator {
    margin-top: 14px;
    height: 26px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-track {
    display: flex;
    flex-direction: column;
    animation: taglineSpin 6s ease-in-out infinite;
}

.tagline-item {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@keyframes taglineSpin {
    0%  { transform: translateY(0); }
    30% { transform: translateY(0); }
    33% { transform: translateY(-26px); }
    63% { transform: translateY(-26px); }
    66% { transform: translateY(-52px); }
    96% { transform: translateY(-52px); }
    100%{ transform: translateY(0); }
}

/* hero actions */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--gold);
    color: var(--bg);
    text-decoration: none;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.btn-primary:hover {
    box-shadow: 0 0 36px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.5);
    transform: translateY(-2px);
    color: var(--bg);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fg-dim);
    text-decoration: none;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--border-gold);
    border-radius: 3px;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* vinyl badge (now playing) */
.vinyl-badge {
    position: absolute;
    bottom: 100px;
    right: 48px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(9,9,9,0.7);
    border: 1px solid var(--border-gold);
    backdrop-filter: blur(16px);
    padding: 10px 16px 10px 12px;
    opacity: 0;
    animation: fadeIn 1s 2.5s forwards;
    border-radius: 4px;
}

.vinyl-disc {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #2a2018 0deg, #e8b34b 60deg, #4a3820 120deg, #2a2018 180deg, #e8b34b 360deg);
    position: relative;
    animation: vinylSpin 3s linear infinite;
}

.vinyl-disc::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--bg);
    border: 1px solid var(--gold);
}

.vinyl-info { display: flex; flex-direction: column; gap: 3px; }
.vinyl-now  { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); }
.vinyl-track{ font-size: 12px; font-weight: 400; color: var(--fg); font-family: var(--font-body); }

@keyframes vinylSpin { to { transform: rotate(360deg); } }

/* scroll indicator */
.scroll-ind {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-ind span {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite;
}

/* Also handle hero-scroll class */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.hero-scroll span {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-scroll:hover span {
    color: var(--gold);
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: pulse 2s ease-in-out infinite;
}

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

/* Also support .hero-bg class */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.18;
    filter: grayscale(20%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(9,9,9,0.3) 0%, rgba(9,9,9,0.9) 100%),
        linear-gradient(to bottom, rgba(9,9,9,0.5) 0%, rgba(9,9,9,0.1) 50%, rgba(9,9,9,0.75) 100%);
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(232,179,75,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,179,75,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════
   MARQUEE TICKER
═══════════════════════════════════════════════════════ */
.ticker {
    overflow: hidden;
    background: var(--gold);
    padding: 13px 0;
    border-top: 1px solid rgba(232,179,75,0.4);
    border-bottom: 1px solid rgba(232,179,75,0.4);
    position: relative;
    z-index: 2;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 28s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--bg);
    white-space: nowrap;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.ticker-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(9,9,9,0.4);
    flex-shrink: 0;
}

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

/* ═══════════════════════════════════════════════════════
   SLIDE 2 — IDENTITY TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.slide-2 {
    background: var(--bg);
    flex-direction: column;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

/* diagonal gold line decoration */
.slide-2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.25;
}

.id-wrap {
    display: flex;
    flex-direction: column;
    padding: 5vw 5vw;
    width: 100%;
}

.id-line {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    column-gap: 0.22em;
    line-height: 0.88;
    margin-bottom: 0.02em;
}

.id-t {
    font-family: var(--font-display);
    font-size: clamp(72px, 10vw, 136px);
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* outlined alternate words */
.id-t.id-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(240,234,214,0.25);
}

.id-strong { color: var(--gold) !important; }

.vbox {
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: clamp(4px, 0.5vw, 10px);
    height: 0.78em;
    font-size: clamp(32px, 10vw, 136px);
    vertical-align: middle;
    outline: 1px solid var(--border-gold);
}

.vbox video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vb1 { width: 1.8em; }
.vb2 { width: 1.2em; }
.vb3 { width: 1.7em; }
.vb4 { width: 2.6em; }

/* Identity Section - Modern Card Design */
.identity {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.identity::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 179, 75, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.identity-inner {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    align-items: stretch;
}

/* Identity Card */
.identity-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease-back);
    animation: cardFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.identity-card:nth-child(1) { animation-delay: 0.1s; }
.identity-card:nth-child(2) { animation-delay: 0.2s; }
.identity-card:nth-child(3) { animation-delay: 0.3s; }
.identity-card:nth-child(4) { animation-delay: 0.4s; }

.identity-card:hover {
    border-color: var(--border-gold);
    background: var(--bg-3);
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(232, 179, 75, 0.2);
}

/* Card Video */
.card-video {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--bg);
}

.card-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.identity-card:hover .card-video video {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 179, 75, 0.2) 0%, rgba(232, 179, 75, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.identity-card:hover .card-overlay {
    opacity: 1;
}

/* Card Content */
.card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--fg);
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.card-title.accent {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(232, 179, 75, 0.3);
}

.identity-card:hover .card-title {
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(232, 179, 75, 0.4);
}

.card-desc {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.6;
}

/* Animations */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .identity {
        padding: 80px 0;
    }
    
    .identity-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .card-content {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .identity {
        padding: 60px 0;
    }
    
    .identity-inner {
        width: calc(100% - 32px);
    }
    
    .identity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-title {
        font-size: 28px;
    }
    
    .identity-card:hover {
        transform: none;
    }
}

/* Remove old identity styles conflicts */
.identity-wrap,
.identity-container,
.identity-header {
    display: none !important;
}


/* client logo strip */
.logo-strip {
    padding: 32px 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--bg) 0%, rgba(24, 24, 24, 0.5) 50%, var(--bg) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
}

.logo-strip::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.logo-strip::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, var(--bg) 100%);
    z-index: 10;
    pointer-events: none;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
    gap: 0;
}

.logo-item {
    padding: 0 56px;
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
    min-height: 50px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.logo-item:hover {
    transform: scale(1.08);
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.25;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(232, 179, 75, 0.6));
}

.logo-item span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240, 234, 214, 0.25);
    transition: all 0.3s ease;
}

.logo-item:hover span {
    color: var(--gold);
    text-shadow: 0 0 12px rgba(232, 179, 75, 0.5);
}

.logo-item.no-logo {
    border: 1px solid rgba(232, 179, 75, 0.3);
    border-radius: 6px;
    padding: 10px 22px;
    margin: 0 28px;
    background: rgba(24, 24, 24, 0.5);
    transition: all 0.3s ease;
}

.logo-item.no-logo:hover {
    border-color: var(--border-gold);
    background: rgba(24, 24, 24, 0.8);
}

.logo-item.no-logo span {
    color: rgba(240, 234, 214, 0.4);
}

/* ═══════════════════════════════════════════════════════
   SLIDE 3 — WORK / PORTFOLIO
═══════════════════════════════════════════════════════ */
.slide-3 {
    background: var(--bg-2);
    color: var(--fg);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 80px;
    gap: 56px;
}

.sec-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.sec-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
}

.sec-title em {
    font-style: normal;
    color: var(--gold);
}

.sec-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}

.sec-link {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    white-space: nowrap;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border-gold);
    transition: color 0.2s, border-color 0.2s;
}

.sec-link:hover { color: var(--gold); border-color: var(--gold); }

/* work grid */
.work-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    width: 100%;
}

.work-card {
    background: var(--bg-3);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.3s, transform 0.35s ease;
}

.work-card:first-child { grid-row: span 2; aspect-ratio: auto; }

.work-card:hover {
    border-color: var(--border-gold);
    transform: scale(0.985);
}

.wc-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.7s ease;
    background-size: cover;
    background-position: center;
}

.work-card:hover .wc-bg { transform: scale(1.06); }

.wc1 { background: linear-gradient(135deg, #1a1208 0%, #3a2810 100%); }
.wc2 { background: linear-gradient(135deg, #0a1020 0%, #162040 100%); }
.wc3 { background: linear-gradient(135deg, #0a180a 0%, #162816 100%); }
.wc4 { background: linear-gradient(135deg, #1a0a10 0%, #301020 100%); }
.wc5 { background: linear-gradient(135deg, #0e0e0e 0%, #1e1e1e 100%); }

.wc-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.6) 60%, transparent 100%);
    z-index: 2;
}

.wc-client {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}

.wc-title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--fg);
    text-transform: uppercase;
}

.wc-deco {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 48px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.05;
    color: var(--fg);
    white-space: nowrap;
    pointer-events: none;
}

.wc-vid {
    position: absolute;
    inset: 0;
    opacity: 1;
    z-index: 1;
}

.wc-vid video {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* ── PLAY BUTTON overlay ────────────────────────────── */
.work-card .wc-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0.8);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(9,9,9,0.7);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur(8px);
}

.work-card:hover .wc-play {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

/* ═══════════════════════════════════════════════════════
   CASE STUDY OVERLAY
═══════════════════════════════════════════════════════ */
.cs-overlay {
    position: fixed;
    inset: 0;
    z-index: 8000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s var(--ease-expo), visibility 0.5s;
}

.cs-overlay.open { opacity: 1; visibility: visible; }

.cs-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.82);
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.cs-panel {
    position: relative;
    z-index: 1;
    width: min(900px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-2);
    border: 1px solid var(--border-gold);
    padding: 56px;
    transform: translateY(40px) scale(0.97);
    transition: transform 0.5s var(--ease-expo);
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
    border-radius: var(--radius);
    box-shadow: 0 40px 120px rgba(0,0,0,0.9), 0 0 60px var(--gold-glow);
}

.cs-overlay.open .cs-panel { transform: none; }

.cs-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    background: var(--surface);
    border: 1px solid var(--border-gold);
    color: var(--gray);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    border-radius: 4px;
}

.cs-close:hover {
    border-color: var(--gold);
    background: var(--gold-dim);
    color: var(--gold);
}

.cs-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.cs-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 60px);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
    line-height: 0.95;
    margin-bottom: 24px;
}

.cs-img {
    width: 100%;
    height: 260px;
    background: var(--bg-3);
    border: 1px solid var(--border);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.cs-img video { width: 100%; height: 100%; object-fit: cover; display: none; }
.cs-img.has-video { opacity: 1; }
.cs-img.has-video video { display: block; }

.cs-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.85;
    color: var(--gray);
    font-weight: 300;
}

.cs-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border-gold);
    margin: 40px 0;
    border-radius: 4px;
    overflow: hidden;
}

.cs-stat { padding: 28px 20px; background: var(--bg-3); }

.cs-stat-n {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 0.04em;
    color: var(--gold);
}

.cs-stat-l {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES ACCORDION
═══════════════════════════════════════════════════════ */
.slide-services {
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 80px;
    gap: 56px;
    position: relative;
}

/* gold edge accent */
.slide-services::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.2;
}

.services-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.acc-item {
    border-top: 1px solid var(--border);
    overflow: hidden;
}

.acc-item:last-child { border-bottom: 1px solid var(--border); }

.acc-trigger {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    text-align: left;
    gap: 16px;
    transition: padding-left 0.3s;
}

.acc-item.open .acc-trigger { padding-left: 8px; }

.acc-num {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    min-width: 28px;
    letter-spacing: 0.1em;
}

.acc-name {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 28px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fg);
    flex: 1;
    transition: color 0.2s;
}

.acc-item.open .acc-name { color: var(--gold); }

.acc-icon {
    width: 28px; height: 28px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 14px;
    transition: transform 0.35s, border-color 0.2s, color 0.2s, background 0.2s;
    flex-shrink: 0;
    border-radius: 2px;
}

.acc-item.open .acc-icon {
    transform: rotate(45deg);
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-expo);
}

.acc-body-inner {
    padding: 0 0 26px 44px;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.85;
    font-weight: 300;
    color: var(--gray);
}

/* ═══════════════════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════════════════ */
.slide-team {
    background: var(--bg-2);
    color: var(--fg);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 80px;
    gap: 56px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    width: 100%;
}

.team-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-3);
    cursor: pointer;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.team-card:hover { border-color: var(--border-gold); }

.team-photo {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: filter 0.5s, transform 0.6s;
}

.team-card:hover .team-photo {
    filter: grayscale(0%) brightness(0.85);
    transform: scale(1.04);
}

.team-photo-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    opacity: 0.08;
}

.team-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(9,9,9,0.95), transparent);
    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
}

.team-card:hover .team-info { opacity: 1; transform: none; }

.team-role {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.team-name {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg);
}

.team-color-1 { background: linear-gradient(160deg, #1a1208, #2a2010); }
.team-color-2 { background: linear-gradient(160deg, #120a18, #200c28); }
.team-color-3 { background: linear-gradient(160deg, #081210, #102018); }
.team-color-4 { background: linear-gradient(160deg, #121808, #202c10); }

/* ═══════════════════════════════════════════════════════
   BLOG SECTION
═══════════════════════════════════════════════════════ */
.slide-blog {
    padding: 100px 80px;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
    width: 100%;
}

.blog-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s, border-color 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px var(--gold-glow);
}

.blog-card-img {
    width: 100%; height: 200px;
    object-fit: cover;
    background: var(--bg-3);
    display: block;
    filter: brightness(0.8) saturate(0.9);
    transition: filter 0.4s;
}

.blog-card:hover .blog-card-img { filter: brightness(0.9) saturate(1); }

.blog-card-body { padding: 24px; }

.blog-card-cat {
    font-family: var(--font-body);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--fg);
    margin-bottom: 12px;
}

.blog-card-excerpt {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════
   CTA SECTION — SLIDE 4
═══════════════════════════════════════════════════════ */
.slide-4 {
    background: var(--bg-2);
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
}

/* diagonal gold stripe */
.slide-4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--gold-dim) 0%,
        transparent 50%,
        rgba(255,107,53,0.04) 100%);
    pointer-events: none;
}

.cta-block {
    width: 100%;
    padding: 120px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
}

.cta-text em {
    font-style: normal;
    color: var(--gold);
    display: block;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
}

.mag-wrap { display: block; position: relative; }

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--border-gold);
    color: var(--fg-dim);
    text-decoration: none;
    padding: 16px 28px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
    width: 100%;
    border-radius: 3px;
    background: none;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
}

/* ═══════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════ */
.slide-contact {
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
}

.contact-inner {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.contact-left {
    flex: 0 0 42%;
    background: linear-gradient(160deg, #1a1208 0%, #0f0a04 60%, #090909 100%);
    border-right: 1px solid var(--border-gold);
    padding: clamp(90px, 9vw, 120px) clamp(28px, 5.5vw, 76px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* big ghost text */
.contact-left::before {
    content: 'CONTACT';
    position: absolute;
    bottom: -30px; left: -10px;
    font-family: var(--font-display);
    font-size: 160px;
    letter-spacing: 0.1em;
    color: rgba(232,179,75,0.04);
    line-height: 1;
    pointer-events: none;
    white-space: nowrap;
}

/* vertical gold line */
.contact-left::after {
    content: '';
    position: absolute;
    top: 20%; bottom: 20%;
    right: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.contact-ey {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-hl {
    font-family: var(--font-display);
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
}

.contact-hl em {
    font-style: normal;
    display: block;
    color: var(--gold);
}

.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 44px;
}

.c-info-item {
    border-top: 1px solid rgba(232,179,75,0.15);
    padding-top: 18px;
}

.c-info-label {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 7px;
}

.c-info-val {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--fg-dim);
}

.c-info-val a {
    color: var(--fg-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.c-info-val a:hover { color: var(--gold); }

.contact-right {
    flex: 1;
    padding: clamp(82px, 8vw, 120px) clamp(24px, 7vw, 92px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg);
}

#contactForm { width: min(760px, 100%); }

.form-ey {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.form-group {
    margin-bottom: 28px;
    position: relative;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 12px;
    font-weight: 600;
    transition: color 0.2s;
}

.form-group:focus-within label { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: var(--fg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    padding: 12px 0;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23888070' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
}

.form-group select option {
    background: var(--bg-2);
    color: var(--fg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,234,214,0.2); }

.form-group textarea { resize: none; height: 100px; }

.form-line {
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    transition: width 0.4s;
    box-shadow: 0 0 8px var(--gold-glow);
}

.form-group:focus-within .form-line { width: 100%; }

/* checkboxes */
.cb-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}

.cb-label {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 14px;
    font-weight: 600;
    display: block;
}

.cb {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cb input[type="checkbox"] {
    width: 14px; height: 14px;
    border: 1px solid var(--border-gold);
    background: transparent;
    appearance: none;
    cursor: pointer;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
    border-radius: 2px;
    flex-shrink: 0;
}

.cb input:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.cb input:checked::after {
    content: '';
    position: absolute;
    top: 2px; left: 3px;
    width: 4px; height: 7px;
    border: 1.5px solid var(--bg);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.cb span {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    padding: 18px 28px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.2s;
    width: 100%;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.btn-submit:hover {
    box-shadow: 0 0 36px var(--gold-glow), 0 8px 24px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 14px;
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.04em;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.form-success.show { display: block; }

.success-icon {
    width: 60px; height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 22px;
    color: var(--gold);
    box-shadow: 0 0 30px var(--gold-glow);
}

.success-title {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 10px;
}

.success-txt {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════ */
#btt {
    position: fixed;
    bottom: 32px; right: 32px;
    z-index: 600;
    width: 44px; height: 44px;
    border: 1px solid var(--border-gold);
    background: rgba(9,9,9,0.85);
    backdrop-filter: blur(12px);
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.3s, transform 0.3s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
    border-radius: 4px;
}

#btt.visible { opacity: 1; transform: none; }

#btt:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

/* ═══════════════════════════════════════════════════════
   FOOTER (index page — supplemental)
═══════════════════════════════════════════════════════ */
footer {
    background: var(--bg-2);
    padding: 60px 80px;
    border-top: 1px solid var(--border-gold);
    font-family: var(--font-body);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg);
    margin-bottom: 12px;
}

.footer-logo span { color: var(--gold); }

.footer-tagline {
    font-size: 13px;
    color: var(--gray);
    max-width: 240px;
    line-height: 1.7;
}

.footer-nav { display: flex; gap: 64px; }

.footer-col-title {
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    margin-bottom: 10px;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover { color: var(--fg); padding-left: 6px; }

.social-row { display: flex; gap: 8px; margin-top: 6px; }

.social-btn {
    width: 36px; height: 36px;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray);
    font-size: 12px;
    transition: all 0.25s;
    border-radius: 4px;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-dim);
    box-shadow: 0 0 16px var(--gold-glow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: var(--gray);
}

.footer-bottom a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--fg); }
.footer-bottom-links { display: flex; gap: 28px; }

/* ═══════════════════════════════════════════════════════
   VIDEO WALL (TILES) SECTION
═══════════════════════════════════════════════════════ */
.slide-tiles {
    background: var(--bg);
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    --tw-gap: 0px;
    --tw-wall-w: 136%;
    --tw-wall-shift: 12vw;
    --tw-s1: 38s;
    --tw-s2: 44s;
    --tw-s3: 50s;
    --tw-s4: 34s;
    --tw-s5: 42s;
    --tw-s6: 46s;
    --tw-tile-w: clamp(240px, 24vw, 420px);
}

.slide-tiles .tw-overlay-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
        rgba(9,9,9,0.92) 0%,
        rgba(9,9,9,0.5) 40%,
        rgba(9,9,9,0.1) 70%,
        rgba(9,9,9,0.05) 100%);
    pointer-events: none;
    z-index: 20;
}

.slide-tiles .tw-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 50%, transparent 60%, rgba(9,9,9,0.7) 100%);
    pointer-events: none;
    z-index: 21;
}

.slide-tiles .tw-stage {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
    perspective-origin: 50% 50%;
    overflow: hidden;
    position: relative;
}

.slide-tiles .tw-content {
    position: absolute;
    z-index: 30;
    text-align: left;
    padding: 0 80px;
    max-width: 700px;
    left: 0;
}

.slide-tiles .tw-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 700;
}

.slide-tiles .tw-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 96px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--fg);
    line-height: 0.92;
    margin-bottom: 28px;
}

.slide-tiles .tw-title em {
    font-style: normal;
    color: var(--gold);
}

/* generic tw tiles */
.slide-tiles .tw-row {
    display: flex;
    gap: var(--tw-gap);
    width: var(--tw-wall-w);
}

.slide-tiles .tw-tile {
    width: var(--tw-tile-w);
    flex-shrink: 0;
    background: var(--bg-3);
    border: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.slide-tiles .tw-tile video,
.slide-tiles .tw-tile img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(0.8);
    transition: filter 0.4s;
}

.slide-tiles .tw-tile:hover video,
.slide-tiles .tw-tile:hover img { filter: brightness(0.85) saturate(1); }

/* ═══════════════════════════════════════════════════════
   FAMOUS WORKS / FEATURED VIDEOS
═══════════════════════════════════════════════════════ */
.slide-famous {
    background: var(--bg-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 120px 80px;
    gap: 56px;
    position: relative;
}

.famous-row {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 8px;
}

.famous-row::-webkit-scrollbar { display: none; }

.famous-card {
    flex: 0 0 clamp(260px, 22vw, 340px);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-3);
    cursor: pointer;
    transition: border-color 0.3s, transform 0.35s;
    aspect-ratio: 9/16;
    max-height: 520px;
}

.famous-card:hover {
    border-color: var(--border-gold);
    transform: scale(0.97);
}

.famous-card video {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    transition: filter 0.4s;
}

.famous-card:hover video { filter: brightness(0.85); }

.famous-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 28px 20px 20px;
    background: linear-gradient(to top, rgba(9,9,9,0.97) 0%, transparent 100%);
    z-index: 2;
}

.fc-client {
    font-family: var(--font-body);
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 600;
}

.fc-title {
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg);
    line-height: 1.1;
}

.fc-type {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--gray);
    margin-top: 4px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════
   LIGHT THEME OVERRIDES
   (kept for JS compatibility — base is now dark)
═══════════════════════════════════════════════════════ */
[data-theme="light"] {
    --bg:          #090909;
    --bg-2:        #111111;
    --bg-3:        #181818;
    --fg:          #f0ead6;
    --fg-dim:      #c8bfa8;
    --gray:        #888070;
    --gold:        #e8b34b;
    --border:      rgba(255,255,255,0.06);
    --border-gold: rgba(232,179,75,0.22);
    --surface:     rgba(255,255,255,0.03);
}

/* force dark text to stay light (override stale per-element rules) */
[data-theme="light"] .sec-title,
[data-theme="light"] .sec-label,
[data-theme="light"] .wc-client,
[data-theme="light"] .wc-title,
[data-theme="light"] .acc-name,
[data-theme="light"] .acc-num,
[data-theme="light"] .acc-body-inner,
[data-theme="light"] .hero-headline,
[data-theme="light"] .hero-eyebrow,
[data-theme="light"] .hero-sub,
[data-theme="light"] .cta-text,
[data-theme="light"] .contact-hl,
[data-theme="light"] .contact-hl em,
[data-theme="light"] .c-info-val,
[data-theme="light"] .c-info-val a,
[data-theme="light"] .c-info-label,
[data-theme="light"] .cb span,
[data-theme="light"] .form-group label,
[data-theme="light"] .form-note,
[data-theme="light"] .vinyl-now,
[data-theme="light"] .vinyl-track,
[data-theme="light"] .scroll-ind span,
[data-theme="light"] .tagline-item,
[data-theme="light"] .sec-link,
[data-theme="light"] .btn-secondary,
[data-theme="light"] .team-name,
[data-theme="light"] .team-role,
[data-theme="light"] .success-title,
[data-theme="light"] .form-ey,
[data-theme="light"] .contact-ey,
[data-theme="light"] .footer-logo,
[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-col-title,
[data-theme="light"] .footer-nav a,
[data-theme="light"] .footer-bottom { color: var(--fg) !important; }

[data-theme="light"] nav            { background: rgba(9,9,9,0.82); }
[data-theme="light"] nav.scrolled   { background: rgba(9,9,9,0.96); }
[data-theme="light"] .slide-1       { background: var(--bg); }
[data-theme="light"] .slide-3       { background: var(--bg-2); }
[data-theme="light"] .slide-4       { background: var(--bg-2); }
[data-theme="light"] .slide-blog    { background: var(--bg); }
[data-theme="light"] footer         { background: var(--bg-2); border-top-color: var(--border-gold); }
[data-theme="light"] .footer-top    { border-bottom-color: var(--border); }
[data-theme="light"] .footer-col a  { color: var(--gray); }
[data-theme="light"] .footer-col a:hover { color: var(--fg); }
[data-theme="light"] .footer-bottom a { color: var(--gray); }
[data-theme="light"] .cs-panel      { background: var(--bg-2); border-color: var(--border-gold); }
[data-theme="light"] .cs-title,
[data-theme="light"] .cs-label,
[data-theme="light"] .cs-body,
[data-theme="light"] .cs-stat-n,
[data-theme="light"] .cs-stat-l     { color: var(--fg); }
[data-theme="light"] .drawer-panel  { background: var(--bg-2); border-left-color: var(--border-gold); }
[data-theme="light"] .drawer-links a{ color: var(--gray); }
[data-theme="light"] .contact-right { background: var(--bg); }

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    color: var(--fg);
    border-bottom-color: rgba(255,255,255,0.1);
}

[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder { color: rgba(240,234,214,0.2); }

[data-theme="light"] .form-group select option { background: var(--bg-2); color: var(--fg); }

[data-theme="light"] .slide-contact { background: var(--bg); }
[data-theme="light"] .cb input[type="checkbox"] { border-color: var(--border-gold); }
[data-theme="light"] .ticker-item,
[data-theme="light"] .id-t { color: var(--fg) !important; }
[data-theme="light"] .logo-item.no-logo { border-color: var(--border-gold); background: var(--surface); }
[data-theme="light"] .logo-item.no-logo span { color: rgba(240,234,214,0.55); }

[data-theme="light"] .acc-item       { border-color: var(--border); }
[data-theme="light"] .acc-icon       { border-color: var(--border-gold); color: var(--gray); }
[data-theme="light"] .sec-link       { border-bottom-color: var(--border-gold); }
[data-theme="light"] .btn-secondary  { border-color: var(--border-gold); }
[data-theme="light"] .btn-secondary:hover { border-color: var(--gold); }
[data-theme="light"] .vinyl-badge    { background: rgba(9,9,9,0.7); border-color: var(--border-gold); }
[data-theme="light"] #btt            { border-color: var(--border-gold); background: rgba(9,9,9,0.85); color: var(--gray); }
[data-theme="light"] #btt:hover      { border-color: var(--gold); color: var(--gold); }
[data-theme="light"] .social-btn     { border-color: var(--border-gold); color: var(--gray); }
[data-theme="light"] .social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
[data-theme="light"] .blog-card      { background: var(--bg-2); border-color: var(--border); }
[data-theme="light"] .blog-card-title { color: var(--fg); }
[data-theme="light"] .blog-card-excerpt { color: var(--gray); }
[data-theme="light"] .work-card      { background: var(--bg-3); border-color: var(--border); }
[data-theme="light"] .wc-info        { background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, transparent 100%); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .slide-3, .slide-services, .slide-team, .slide-blog,
    .slide-famous, .slide-4, footer { padding-left: 48px; padding-right: 48px; }
    .cta-block { padding: 100px 48px; }
}

@media (max-width: 960px) {
    nav { padding: 0 20px; }
    .nav-links, .nav-right .theme-toggle { display: none; }
    .hamburger { display: flex; }

    .hero-content { padding: 0 24px; }
    .vinyl-badge { display: none; }

    .slide-3, .slide-services, .slide-team, .slide-blog,
    .slide-famous, footer { padding: 80px 32px; }

    .work-grid { grid-template-columns: 1fr 1fr; }
    .work-card:first-child { grid-row: span 1; }

    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr 1fr; }

    .contact-inner { flex-direction: column; }
    .contact-left { flex: none; min-height: auto; padding: 80px 32px; }
    .contact-right { padding: 60px 32px; }

    .cta-block { flex-direction: column; align-items: flex-start; padding: 80px 32px; gap: 40px; }
    .cta-actions { width: 100%; min-width: 0; }

    footer { padding: 48px 32px; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-nav { gap: 32px; }
}

@media (max-width: 640px) {
    .work-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .cs-stats { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-nav { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .famous-card { flex: 0 0 200px; max-height: 340px; }
    .hero-headline { letter-spacing: 0.02em; }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE ALIGNMENT COMPATIBILITY (index.php classes)
═══════════════════════════════════════════════════════ */
.hero,
.identity,
.stats-section,
.work-section,
.services-section,
.cta-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-h);
}

.identity-wrap,
.stats-inner,
.work-inner,
.services-inner,
.cta-inner,
.contact-inner {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.identity {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.identity::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(232, 179, 75, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translateY(-50%);
}

.identity-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.id-accent {
    color: var(--gold);
}

.stats-section,
.work-section,
.services-section,
.cta-section {
    padding: 110px 0;
}

.stats-section {
    background: var(--bg-2);
}

.stats-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: end;
}

.stats-left .stats-desc {
    margin-top: 20px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.75;
    max-width: 520px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.stat-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(38px, 5vw, 56px);
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 0.95;
}

.stat-label {
    margin-top: 8px;
    color: var(--gray);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.work-section {
    background: var(--bg-2);
}

.services-section {
    background: var(--bg);
}

.work-grid .wc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9,9,9,0.95) 0%, rgba(9,9,9,0.42) 50%, transparent 100%);
    z-index: 2;
}

.work-grid .wc-info {
    z-index: 3;
}

.work-grid .wc-type {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.work-grid .wc-arrow {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 4;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold);
    background: rgba(9,9,9,0.65);
}

.cta-section {
    background: var(--bg-2);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

.btn-lg {
    min-width: 250px;
    justify-content: center;
}

.contact-section {
    background: var(--bg);
    padding: 0;
}

.contact-left .contact-label {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-left .contact-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 84px);
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
}

.contact-left .contact-title em {
    font-style: normal;
    color: var(--gold);
}

.contact-info {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-top: 1px solid rgba(232,179,75,0.16);
    padding-top: 14px;
}

.contact-info-icon {
    color: var(--gold);
    width: 18px;
    margin-top: 1px;
}

.contact-info-label {
    color: var(--gray);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-info a,
.contact-info span {
    color: var(--fg-dim);
    font-size: 14px;
}

.contact-form-wrap {
    width: min(760px, 100%);
    margin-left: auto;
}

.form-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg);
}

.form-subtitle {
    margin-top: 10px;
    margin-bottom: 30px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.form-offices {
    margin-bottom: 26px;
}

.form-offices-label {
    display: block;
    font-size: 9px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 10px;
}

.form-offices-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--gray);
    font-size: 13px;
}

.form-check input[type="checkbox"] {
    width: 14px;
    height: 14px;
}

.fab-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: #25d366;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    z-index: 650;
}

@media (max-width: 960px) {
    .identity-wrap,
    .stats-inner,
    .work-inner,
    .services-inner,
    .cta-inner,
    .contact-inner {
        width: min(1240px, calc(100% - 40px));
    }

    .stats-section,
    .work-section,
    .services-section,
    .cta-section {
        padding: 84px 0;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-left .stats-desc {
        margin-inline: auto;
    }

    .sec-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        width: 100%;
    }

    .btn-lg {
        min-width: 0;
        width: 100%;
    }

    .contact-inner {
        width: 100%;
    }

    .contact-form-wrap {
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .identity-wrap,
    .stats-inner,
    .work-inner,
    .services-inner,
    .cta-inner {
        width: calc(100% - 28px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        width: calc(100% - 24px);
        padding: 0;
        margin-inline: auto;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .form-offices-group {
        flex-direction: column;
        gap: 8px;
    }

    .fab-whatsapp {
        right: 14px;
        bottom: 80px;
        width: 48px;
        height: 48px;
        font-size: 22px;
    }
}
