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

:root {
    --bg: #0a0a0a;
    --bg-card: #111111;
    --text: #e8e4df;
    --text-dim: #807d78;
    --accent: #c0242b;
    --accent-2: #e02a33;
    --accent-glow: rgba(192, 36, 43, 0.4);
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --font-display: "Bebas Neue", sans-serif;
    --font-body: "Outfit", sans-serif;
    --ease-cine: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-slow: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: var(--bg);
    color: var(--text);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg);
}

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

/* ============================================================
CINEMATIC IMAGE BASE — shared film look
============================================================ */
.cine-frame {
    position: relative;
    overflow: hidden;
}

/* Film color grading: warm shadows, cool highlights, crushed blacks */
.cine-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, filter;
    /* Cinematic color grade */
    filter: contrast(1.15) saturate(0.7) brightness(0.85) sepia(0.08);
    transition:
        transform 2.5s var(--ease-slow),
        filter 3s var(--ease-slow);
}

/* Heavy vignette overlay */
.cine-frame .cine-vignette {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(
        ellipse at 50% 50%,
        transparent 30%,
        rgba(0, 0, 0, 0.25) 60%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

/* Anamorphic light leak — warm horizontal streak */
.cine-frame .cine-leak {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease 1s;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(192, 36, 43, 0.06) 15%,
        rgba(255, 140, 50, 0.08) 30%,
        rgba(255, 200, 100, 0.04) 50%,
        rgba(192, 36, 43, 0.06) 70%,
        transparent 100%
    );
    mix-blend-mode: screen;
}
.cine-frame.visible .cine-leak {
    opacity: 1;
}

/* Film grain per image */
.cine-frame .cine-grain {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
}

/* Atmospheric haze — subtle fog at bottom */
.cine-frame .cine-haze {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

/* Red accent atmosphere from edge */
.cine-frame .cine-accent-light {
    position: absolute;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2.5s ease 1.2s;
}
.cine-frame.visible .cine-accent-light {
    opacity: 1;
}

/* On hover — shift to warmer, brighter, slight chromatic feel */
.cine-frame:hover img {
    filter: contrast(1.2) saturate(0.85) brightness(0.95) sepia(0.04);
}

/* ============================================================
NAV
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    transition:
        background 0.4s ease,
        padding 0.4s ease;
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    padding: 16px 48px;
    border-bottom: 1px solid var(--border);
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo-img {
    height: 48px;
    width: auto;
    transition:
        opacity 0.3s,
        transform 0.3s;
    filter: drop-shadow(0 0 8px rgba(192, 36, 43, 0.2));
}
.nav.scrolled .nav-logo-img {
    height: 38px;
}
.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 12px rgba(192, 36, 43, 0.4));
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s;
    font-weight: 400;
}
.nav-links a:hover {
    color: var(--accent);
}
.lang-toggle {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 6px 14px;
    cursor: pointer;
    transition:
        color 0.3s,
        border-color 0.3s;
    margin-left: 12px;
}
.lang-toggle:hover {
    color: var(--white);
    border-color: var(--accent);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

/* ============================================================
HERO — full cinematic with parallax + Ken Burns
============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.08) saturate(0.85) brightness(1.1) sepia(0.05);
}
@keyframes heroKenBurns {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    33% {
        transform: scale(1.16) translate(-1.2%, -0.6%);
    }
    66% {
        transform: scale(1.12) translate(0.8%, 0.4%);
    }
    100% {
        transform: scale(1.14) translate(-0.5%, 0.8%);
    }
}

/* Hero cinematic overlays */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}
/* Vignette */
.hero-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        transparent 25%,
        rgba(0, 0, 0, 0.15) 55%,
        rgba(0, 0, 0, 0.4) 100%
    );
}
/* Gradient fades + red accent + haze */
.hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.2) 0%,
            transparent 25%,
            transparent 45%,
            rgba(10, 10, 10, 0.4) 75%,
            var(--bg) 100%
        ),
        radial-gradient(
            ellipse at 8% 85%,
            var(--accent-glow) 0%,
            transparent 45%
        ),
        radial-gradient(
            ellipse at 92% 15%,
            rgba(255, 180, 80, 0.06) 0%,
            transparent 40%
        );
}

/* Anamorphic horizontal light streak across hero */
.hero-streak {
    position: absolute;
    top: 42%;
    left: -10%;
    right: -10%;
    height: 1px;
    z-index: 2;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 200, 120, 0.03) 20%,
        rgba(255, 255, 255, 0.06) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        rgba(255, 200, 120, 0.03) 80%,
        transparent 100%
    );
    box-shadow:
        0 0 60px 30px rgba(255, 200, 120, 0.03),
        0 0 120px 60px rgba(255, 200, 120, 0.02);
    opacity: 0;
    animation: streakFade 3s ease forwards 1.5s;
}
@keyframes streakFade {
    to {
        opacity: 1;
    }
}

/* Hero film grain */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 80px 48px;
    max-width: 900px;
}
.hero-label {
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-cine) forwards 0.4s;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 120px);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-cine) forwards 0.6s;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-sub {
    font-size: 18px;
    font-weight: 200;
    color: var(--text);
    max-width: 540px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-cine) forwards 0.8s;
}
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-cine) forwards 1.2s;
}
.scroll-indicator span {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: var(--accent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.6);
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
SECTION COMMONS
============================================================ */
section {
    padding: 120px 48px;
}
.section-label {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 32px;
}
.section-text {
    font-size: 17px;
    font-weight: 200;
    color: var(--text-dim);
    max-width: 640px;
    line-height: 1.8;
}

/* ============================================================
REVEAL SYSTEM
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 1s var(--ease-cine),
        transform 1s var(--ease-cine);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bottom-to-top curtain wipe for about image */
.reveal-image {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 1.8s var(--ease-cine);
}
.reveal-image.visible {
    clip-path: inset(0 0 0% 0);
}
.reveal-image img {
    transform: scale(1.22);
    filter: contrast(1.15) saturate(0.1) brightness(0.55) sepia(0.15);
}
.reveal-image.visible img {
    transform: scale(1);
    filter: contrast(1.15) saturate(0.7) brightness(0.85) sepia(0.08);
}

/* Left-to-right curtain for studio image */
.reveal-curtain {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 2s var(--ease-cine);
}
.reveal-curtain.visible {
    clip-path: inset(0 0% 0 0);
}
.reveal-curtain img {
    transform: scale(1.18);
    filter: contrast(1.15) saturate(0.05) brightness(0.5) sepia(0.15);
}
.reveal-curtain.visible img {
    transform: scale(1);
    filter: contrast(1.15) saturate(0.7) brightness(0.85) sepia(0.08);
}

/* ============================================================
ABOUT — cinematic portrait with all layers
============================================================ */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    border-top: 1px solid var(--border);
}
.about-visual {
    aspect-ratio: 4/5;
}
.about-visual .cine-accent-light {
    bottom: -10%;
    left: -15%;
    width: 80%;
    height: 60%;
    background: radial-gradient(
        ellipse,
        var(--accent-glow) 0%,
        transparent 65%
    );
}
.about-visual .cine-haze {
    height: 45%;
    background: linear-gradient(transparent, var(--bg));
}

.about-stat-row {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.stat-item {
    flex: 1;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
}

/* ============================================================
STUDIO — cinematic widescreen with letterbox bars
============================================================ */
.studio-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}
.studio-image-wrap {
    aspect-ratio: 2.4/1;
    margin-top: 48px;
}
.studio-image-wrap img {
    animation: studioDrift 25s ease-in-out infinite alternate paused;
}
.studio-image-wrap.visible img {
    animation-play-state: running;
}
@keyframes studioDrift {
    0% {
        transform: scale(1) translate(0, 0);
    }
    33% {
        transform: scale(1.04) translate(-0.6%, 0.2%);
    }
    66% {
        transform: scale(1.03) translate(0.3%, -0.3%);
    }
    100% {
        transform: scale(1.05) translate(-0.2%, 0.4%);
    }
}

/* Letterbox bars for cinematic ratio */
.studio-letterbox {
    position: absolute;
    left: 0;
    right: 0;
    height: 6%;
    background: var(--bg-card);
    z-index: 8;
    pointer-events: none;
}
.studio-letterbox.top {
    top: 0;
}
.studio-letterbox.bottom {
    bottom: 0;
}

.studio-image-wrap .cine-accent-light {
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: radial-gradient(
        ellipse at 50% 100%,
        var(--accent-glow) 0%,
        transparent 55%
    );
}
.studio-image-wrap .cine-haze {
    height: 55%;
    background: linear-gradient(transparent, var(--bg-card));
}

.studio-video-wrap {
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}
.studio-video-wrap video {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Thin anamorphic streak across studio image */
.studio-streak {
    position: absolute;
    top: 48%;
    left: -5%;
    right: -5%;
    height: 1px;
    z-index: 7;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(192, 36, 43, 0.04) 20%,
        rgba(255, 255, 255, 0.07) 48%,
        rgba(255, 255, 255, 0.09) 50%,
        rgba(255, 255, 255, 0.07) 52%,
        rgba(192, 36, 43, 0.04) 80%,
        transparent 100%
    );
    box-shadow:
        0 0 40px 15px rgba(255, 200, 120, 0.025),
        0 0 80px 40px rgba(255, 200, 120, 0.015);
    opacity: 0;
    transition: opacity 2s ease 1.5s;
}
.studio-image-wrap.visible .studio-streak {
    opacity: 1;
}

/* ============================================================
MARQUEE
============================================================ */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 90px);
    color: transparent;
    -webkit-text-stroke: 1px var(--text-dim);
    white-space: nowrap;
    padding: 0 40px;
    letter-spacing: 4px;
    opacity: 0.4;
}
.marquee-item.filled {
    color: var(--accent);
    -webkit-text-stroke: none;
    opacity: 0.7;
}
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================================================
SERVICES
============================================================ */
.features {
    border-top: 1px solid var(--border);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 64px;
}
.feature-item {
    padding: 48px 32px;
    border-left: 1px solid var(--border);
    transition:
        background 0.4s,
        box-shadow 0.4s;
    position: relative;
}
.feature-item:first-child {
    border-left: none;
}
.feature-item:hover {
    background: var(--bg-card);
    box-shadow: inset 0 -2px 0 var(--accent);
}
.feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 18px;
    transition:
        background 0.3s,
        color 0.3s,
        box-shadow 0.3s;
}
.feature-item:hover .feature-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 24px var(--accent-glow);
}
.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 12px;
}
.feature-desc {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 200;
}

/* ============================================================
GEAR SLIDESHOW
============================================================ */
.gear-section {
    border-top: 1px solid var(--border);
    padding-bottom: 80px;
}
/* ============================================================
PRICING
============================================================ */
.pricing-section {
    border-top: 1px solid var(--border);
    padding: 80px 48px;
}
.pricing-grid {
    max-width: 900px;
    margin: 48px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 48px 32px;
    text-align: center;
    transition:
        border-color 0.4s ease,
        transform 0.4s var(--ease-cine);
}
.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}
.pricing-service {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 12px;
}
.pricing-detail {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 1px;
    margin-bottom: 32px;
    font-weight: 300;
}
.pricing-amount {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.pricing-unit {
    font-size: 13px;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    .pricing-section {
        padding: 60px 20px;
    }
}

.gear-list-section {
    border-top: 1px solid var(--border);
    padding: 80px 48px;
}
.gear-list {
    max-width: 800px;
    margin: 48px auto 0;
}
.gear-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.gear-list-item:first-child {
    border-top: 1px solid var(--border);
}
.gear-list-name {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
}
.gear-list-type {
    font-size: 13px;
    color: var(--text-dim);
    text-align: right;
    max-width: 50%;
}
.gear-slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    margin-top: 48px;
}

/* Each slide */
.gear-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    pointer-events: none;
}
.gear-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Image with cinematic treatment */
.gear-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.15) saturate(0.7) brightness(0.8) sepia(0.08);
    transform: scale(1.08);
    transition: transform 8s ease-out;
    will-change: transform;
}
.gear-slide.active img {
    transform: scale(1);
}

/* Cinematic overlays per slide */
.gear-slide-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 50%,
        transparent 25%,
        rgba(0, 0, 0, 0.3) 55%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
    pointer-events: none;
}
.gear-slide-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(10, 10, 10, 0.5) 0%,
            transparent 25%,
            transparent 50%,
            rgba(10, 10, 10, 0.85) 100%
        ),
        linear-gradient(
            90deg,
            rgba(10, 10, 10, 0.6) 0%,
            transparent 30%,
            transparent 70%,
            rgba(10, 10, 10, 0.6) 100%
        );
    z-index: 3;
    pointer-events: none;
}
.gear-slide-grain {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    mix-blend-mode: overlay;
}
.gear-slide-glow {
    position: absolute;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50%;
    background: radial-gradient(
        ellipse,
        var(--accent-glow) 0%,
        transparent 65%
    );
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease 0.3s;
}
.gear-slide.active .gear-slide-glow {
    opacity: 1;
}

/* Gear text overlay */
.gear-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 48px 56px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gear-name {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.8s ease 0.3s,
        transform 0.8s var(--ease-cine) 0.3s;
}
.gear-slide.active .gear-name {
    opacity: 1;
    transform: translateY(0);
}
.gear-type {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.8s ease 0.5s,
        transform 0.8s var(--ease-cine) 0.5s;
}
.gear-slide.active .gear-type {
    opacity: 1;
    transform: translateY(0);
}
.gear-desc {
    font-size: 14px;
    font-weight: 200;
    color: var(--text);
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(15px);
    transition:
        opacity 0.8s ease 0.7s,
        transform 0.8s var(--ease-cine) 0.7s;
    margin-top: 4px;
}
.gear-slide.active .gear-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Counter: 01 / 07 */
.gear-counter {
    position: absolute;
    top: 32px;
    right: 48px;
    z-index: 6;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--text-dim);
}
.gear-counter .current-num {
    color: var(--white);
    font-size: 24px;
}

/* Navigation arrows */
.gear-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        border-color 0.3s,
        background 0.3s,
        box-shadow 0.3s;
    font-size: 20px;
}
.gear-nav:hover {
    border-color: var(--accent);
    background: rgba(192, 36, 43, 0.15);
    box-shadow: 0 0 20px var(--accent-glow);
}
.gear-nav.prev {
    left: 24px;
}
.gear-nav.next {
    right: 24px;
}

/* Progress dots */
.gear-dots {
    position: absolute;
    bottom: 24px;
    right: 56px;
    z-index: 6;
    display: flex;
    gap: 8px;
    align-items: center;
}
.gear-dot {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition:
        background 0.4s,
        width 0.4s;
    border: none;
    padding: 0;
}
.gear-dot.active {
    background: var(--accent);
    width: 40px;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* Progress bar under slideshow */
.gear-progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}
.gear-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.1s linear;
}

@media (max-width: 1024px) {
    .gear-slideshow {
        aspect-ratio: 16/9;
    }
    .gear-info {
        padding: 32px;
    }
}
@media (max-width: 768px) {
    .gear-slideshow {
        aspect-ratio: 4/3;
    }
    .gear-info {
        padding: 24px;
    }
    .gear-name {
        font-size: clamp(24px, 6vw, 36px);
    }
    .gear-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .gear-nav.prev {
        left: 12px;
    }
    .gear-nav.next {
        right: 12px;
    }
    .gear-dots {
        right: 24px;
        bottom: 16px;
    }
    .gear-counter {
        top: 20px;
        right: 24px;
    }
    .gear-desc {
        display: none;
    }
}

/* ============================================================
CONTACT
============================================================ */
.contact {
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info-row {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-info-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}
.contact-info-value {
    font-size: 16px;
    color: var(--text);
    font-weight: 300;
}
.contact-info-value a {
    transition: color 0.3s;
}
.contact-info-value a:hover {
    color: var(--accent);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    outline: none;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(192, 36, 43, 0.15);
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-dim);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--accent);
    cursor: pointer;
    transition:
        background 0.3s,
        color 0.3s,
        box-shadow 0.3s;
    align-self: flex-start;
}
.btn:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* ============================================================
FOOTER
============================================================ */
.footer {
    padding: 40px 48px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-logo-img {
    height: 36px;
    width: auto;
    opacity: 0.7;
    filter: drop-shadow(0 0 6px rgba(192, 36, 43, 0.15));
}
.footer-copy {
    font-size: 12px;
    color: var(--text-dim);
    letter-spacing: 1px;
}
.footer-socials {
    display: flex;
    gap: 24px;
}
.footer-socials a {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.3s;
}
.footer-socials a:hover {
    color: var(--accent);
}

/* ============================================================
GLOBAL NOISE
============================================================ */
.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
    mix-blend-mode: overlay;
}

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
    section {
        padding: 80px 32px;
    }
    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .feature-item {
        border-top: 1px solid var(--border);
    }
    .contact {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 16px 24px;
    }
    .nav.scrolled {
        padding: 12px 24px;
    }
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }
    section {
        padding: 64px 20px;
    }
    .hero-content {
        padding: 48px 20px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .about-stat-row {
        flex-direction: column;
        gap: 24px;
    }
    .footer {
        padding: 32px 20px;
        flex-direction: column;
        text-align: center;
    }
    .studio-image-wrap {
        aspect-ratio: 16/9;
    }
    .studio-letterbox {
        height: 4%;
    }
}

/* ============================================================
MOBILE — 480px and below
============================================================ */
@media (max-width: 480px) {
    section {
        padding: 56px 16px;
    }

    /* NAV */
    .nav {
        padding: 14px 16px;
    }
    .nav.scrolled {
        padding: 10px 16px;
    }
    .logo img {
        height: 32px;
    }

    /* HERO */
    .hero {
        min-height: 100svh;
    }
    .hero-content {
        padding: 36px 16px 48px;
    }
    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 3px;
    }
    .hero-title {
        font-size: clamp(42px, 13vw, 72px);
        line-height: 0.9;
    }
    .hero-sub {
        font-size: 14px;
        max-width: 100%;
    }
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .btn {
        font-size: 11px;
        padding: 14px 24px;
    }

    /* ABOUT */
    .about {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-visual {
        aspect-ratio: 3/2;
    }
    .about-stat-row {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-number {
        font-size: 32px;
    }

    /* MARQUEE */
    .marquee-item {
        font-size: clamp(36px, 10vw, 56px);
        padding: 0 24px;
    }

    /* SERVICES */
    .features-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .feature-item {
        padding: 28px 20px;
    }
    .feature-icon {
        width: 40px;
        height: 40px;
    }

    /* STUDIO */
    .studio-image-wrap {
        aspect-ratio: 3/2;
        margin-top: 32px;
    }

    /* GEAR */
    .gear-slideshow {
        aspect-ratio: 4/3;
    }
    .gear-info {
        padding: 20px 16px;
    }
    .gear-name {
        font-size: clamp(20px, 6vw, 32px);
    }

    /* PORTFOLIO */
    .track-item {
        grid-template-columns: 40px 1fr;
        gap: 12px;
        padding: 14px 12px;
    }
    .track-play {
        width: 40px;
        height: 40px;
    }
    .track-title {
        font-size: 15px;
    }
    .track-artist {
        font-size: 11px;
    }
    .track-tag {
        display: none;
    }
    .track-eq {
        display: none;
    }
    .track-num {
        display: none;
    }

    /* CONTACT */
    .contact {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .contact-info-row {
        flex-direction: column;
        gap: 16px;
    }

    /* SECTION TITLES */
    .section-title {
        font-size: clamp(32px, 10vw, 56px);
    }
    .section-label {
        font-size: 10px;
    }
    .section-text {
        font-size: 15px;
    }

    /* FOOTER */
    .footer {
        padding: 24px 16px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/* Prevent horizontal scroll on all screens */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}
