/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --bg:          #0a0e17;
    --bg-light:    #111827;
    --text:        #f0f0f0;
    --text-muted:  #6b7280;
    --accent:      #7dd3fc;
    --accent-dim:  rgba(125, 211, 252, 0.15);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse 70% 40% at 80% -5%, rgba(9, 37, 55, 0.9) 0%, transparent 55%),
        radial-gradient(ellipse 65% 55% at 10% 110%, rgba(6, 17, 29, 0.95) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(11, 23, 33, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 40% 20% at 6% 47%, rgba(9, 32, 48, 0.49) 0%, transparent 65%),
        radial-gradient(ellipse 40% 20% at 85% 64%, rgba(9, 32, 48, 0.46) 0%, transparent 60%);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.12;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    animation: grainMove 0.18s steps(1) infinite;
}

@keyframes grainMove {
    0%   { transform: translate(0,    0);    }
    14%  { transform: translate(-4%,  3%);   }
    28%  { transform: translate(3%,  -5%);   }
    42%  { transform: translate(-6%,  1%);   }
    57%  { transform: translate(2%,   6%);   }
    71%  { transform: translate(-3%, -2%);   }
    85%  { transform: translate(5%,   4%);   }
    100% { transform: translate(-1%, -4%);   }
}


/* ============================================
   SIDE NAVIGATION
   ============================================ */
.side-nav {
    position: fixed;
    left: clamp(1.25rem, 2.5vw, 2.5rem);
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.side-nav.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.side-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0.4rem 0;
}

.side-nav-list::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.side-nav-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.65rem 0;
    text-decoration: none;
    position: relative;
}

.side-nav-link::before {
    content: '';
    display: block;
    width: 1.2rem;
    height: 1px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
    transition: width 0.35s ease, background 0.3s ease;
    position: relative;
    left: -0.5px;
}

.side-nav-link::after {
    content: attr(data-label);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    white-space: nowrap;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(-4px);
    transition: color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.side-nav-link--sub::before {
    width: 0.6rem;
    background: rgba(255,255,255,0.12);
    margin-left: 0.6rem;
}

.side-nav-link--sub::after {
    font-size: 0.57rem;
}

.side-nav-link:hover::before,
.side-nav-link.is-active::before {
    width: 2.2rem;
    background: var(--accent);
}

.side-nav-link:hover::after {
    color: var(--accent);
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .production-quotes {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .side-nav { display: none; }

    .category-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .about-photo-wrap {
        display: none;
    }
}


/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 3rem;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 14, 23, 0.88);
    backdrop-filter: blur(14px);
    padding: 1.25rem 3rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 1.8vw, 2.2rem);
    letter-spacing: 0.12em;
    color: var(--accent);
    text-decoration: none;
}

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

.nav-links a {
    font-size: clamp(0.7rem, 0.8vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-cta {
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    padding: 0.45rem 1.1rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    color: var(--bg) !important;
}


/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to right,
        rgba(10, 14, 23, 0.95) 0%,
        rgba(10, 14, 23, 0.80) 35%,
        rgba(10, 14, 23, 0.45) 65%,
        rgba(10, 14, 23, 0.25) 100%
    );
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 256px 256px;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 clamp(2rem, 5vw, 7rem);
    max-width: 900px;
    animation: heroFadeIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-ing {
    display: block;
    font-size: clamp(0.9rem, 1.1vw, 1.3rem);
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.hero-name {
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 13vw, 16rem);
    line-height: 0.88;
    letter-spacing: 0.015em;
    color: var(--text);
    margin-bottom: 1.75rem;
}

.hero-divider {
    width: clamp(2rem, 3vw, 4rem);
    height: 2px;
    background: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(0.72rem, 0.85vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-subtitle .accent {
    color: var(--accent);
}

.hero-tagline {
    font-size: clamp(0.95rem, 1.4vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    color: rgba(240, 240, 240, 0.65);
    border-left: 2px solid var(--accent);
    padding-left: 1.25rem;
    min-height: 2lh;
}

.typing-cursor {
    display: inline;
    font-style: normal;
    font-weight: 200;
    color: var(--accent);
    animation: cursorBlink 0.8s step-end infinite;
}

.typing-cursor.is-done {
    animation: cursorFade 0.6s ease forwards;
}

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

@keyframes cursorFade {
    to { opacity: 0; }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.scroll-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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


/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: clamp(5rem, 10vw, 9rem) 0 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 7rem);
}

.section-tag {
    display: inline-block;
    font-size: clamp(0.65rem, 0.75vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2.5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
    position: relative;
}


.about-text {
    display: flex;
    flex-direction: column;
}

.about-bio {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240, 240, 240, 0.75);
    margin-bottom: 1.5rem;
}

.about-bio strong {
    color: var(--text);
    font-weight: 500;
}

.about-stats {
    display: flex;
    margin-top: 1rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    line-height: 1;
    color: var(--accent);
    letter-spacing: 0.02em;
}

.stat-label {
    font-size: clamp(0.65rem, 0.75vw, 0.8rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Photo */
.about-photo-wrap {
    position: relative;
}

.about-glow {
    position: absolute;
    top: 70%;
    left: 22%;
    transform: translate(-50%, -50%);
    width: clamp(350px, 45vw, 650px);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(125, 211, 252, 0.5) 0%, rgba(125, 211, 252, 0.15) 45%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    pointer-events: none;
    transition: left 0.5s ease-out, top 0.5s ease-out;
    will-change: left, top;
}



.about-photo {
    width: 100%;
    max-width: 520px;
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1;
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 35%, black 30%, rgba(0,0,0,0.7) 50%, transparent 72%);
    mask-image: radial-gradient(ellipse 70% 80% at 50% 35%, black 30%, rgba(0,0,0,0.7) 50%, transparent 72%);
}

/* Clients ticker */
.clients {
    margin-top: clamp(4rem, 7vw, 7rem);
    padding-bottom: clamp(4rem, 7vw, 7rem);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.clients-label {
    font-size: clamp(0.65rem, 0.75vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    padding: clamp(1.5rem, 2.5vw, 2.5rem) 0;
}

.ticker-wrap {
    position: relative;
    overflow: hidden;
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 12%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker 35s linear infinite;
}

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

.ticker-item {
    padding: 0 clamp(2rem, 3.5vw, 4rem);
    display: flex;
    align-items: center;
}

.ticker-item img {
    height: clamp(1.8rem, 2.5vw, 3rem);
    width: auto;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.ticker-item img:hover {
    opacity: 1;
}


/* ============================================
   WORK SECTION
   ============================================ */
.work {
    padding: clamp(5rem, 10vw, 9rem) 0;
}

.work-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 7rem);
}

.work-section-tag {
    display: block;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.work-category {
    margin-bottom: clamp(5rem, 8vw, 8rem);
    padding-top: clamp(3rem, 5vw, 5rem);
    border-top: 1px solid rgba(255,255,255,0.07);
}

.work-category:first-child {
    border-top: none;
    padding-top: 0;
}

.category-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 5rem);
    align-items: start;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.category-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    color: var(--text);
    letter-spacing: 0.02em;
}

.category-intro {
    font-size: clamp(0.85rem, 1vw, 1rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240,240,240,0.6);
    padding-top: 0.5rem;
}

/* Work grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
}

/* Work card */
.work-card {
    cursor: pointer;
    position: relative;
}

.work-card--placeholder {
    cursor: default;
    opacity: 0.5;
}

.work-card-visual {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.33), 0 8px 32px rgba(0, 0, 0, 0.23);
    transition: box-shadow 0.4s ease;
}

.work-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.work-card-visual--dark {
    background: #0f1520;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-card-placeholder {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 2rem);
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.15);
    text-align: center;
    padding: 1rem;
}

.work-card-hover {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.work-card:not(.work-card--placeholder):not(.work-card--photo) .work-card-hover,
.work-card--photo .work-card-hover {
    opacity: 0;
}

.work-card:not(.work-card--placeholder):hover .work-card-visual img {
    transform: scale(1.04);
}

.work-card:not(.work-card--placeholder):hover .work-card-visual {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.42), 0 12px 40px rgba(0, 0, 0, 0.29);
}

.work-card:not(.work-card--placeholder):hover .work-card-hover {
    opacity: 1;
}

.play-btn {
    width: clamp(3rem, 5vw, 4.5rem);
    height: clamp(3rem, 5vw, 4.5rem);
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--accent);
    transition: background 0.2s, color 0.2s;
}

.work-card:hover .play-btn {
    background: var(--accent);
    color: var(--bg);
}

.work-card-meta {
    padding: 1rem 0 0;
}

.work-card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem);
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.work-card-sub {
    font-size: clamp(0.75rem, 0.9vw, 0.9rem);
    font-weight: 300;
    color: rgba(240,240,240,0.5);
    margin-bottom: 0.6rem;
}

.work-card-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
}

.tag-pixbo  { background: rgba(125,211,252,0.1); color: var(--accent); }
.tag-solo   { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }
.tag-soon   { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.25); }

/* Eventy — featured layout */
.eventy-layout {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    grid-template-rows: clamp(280px, 38vw, 520px) auto;
    gap: clamp(1rem, 1.5vw, 1.5rem);
}

/* Vizuály — řádek 1 */
.eventy-main-visual {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #0f1520;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.33), 0 8px 32px rgba(0, 0, 0, 0.23);
    transition: opacity 0.3s ease, box-shadow 0.4s ease;
}

.eventy-main-visual:hover {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.42), 0 12px 40px rgba(0, 0, 0, 0.29);
}

.eventy-main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.eventy-main-visual:hover img { transform: scale(1.03); }

.eventy-main-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 3rem);
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.15);
}

.eventy-thumbs {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1.5vw, 1.5rem);
}

.eventy-thumb {
    cursor: pointer;
    flex: 1;
    min-height: 0;
}

.eventy-thumb-visual {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
    background: #0f1520;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.33), 0 8px 32px rgba(0, 0, 0, 0.23);
    transition: opacity 0.3s ease, box-shadow 0.4s ease;
}

.eventy-thumb:hover .eventy-thumb-visual {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.42), 0 12px 40px rgba(0, 0, 0, 0.29);
}

.eventy-thumb-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.65);
}

.eventy-thumb:hover .eventy-thumb-visual img {
    transform: scale(1.04);
    filter: brightness(1);
}

.eventy-thumb-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 15, 0.6);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.eventy-thumb:hover .eventy-thumb-overlay {
    opacity: 0;
}

.eventy-thumb-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    padding: 1rem;
}

.eventy-thumb-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 2.2rem);
    letter-spacing: 0.06em;
    color: var(--text);
    line-height: 1.1;
}

.eventy-thumb-sub {
    font-size: clamp(0.7rem, 0.85vw, 0.9rem);
    font-weight: 300;
    color: rgba(240,240,240,0.65);
}

/* Meta — řádek 2 */
.eventy-main-meta {
    grid-column: 1;
    grid-row: 2;
    padding-top: 1rem;
    transition: opacity 0.3s ease;
}

/* Switching animations */
.eventy-main-visual.is-switching,
.eventy-main-meta.is-switching,
.eventy-thumb-visual.is-switching {
    opacity: 0;
}

@media (max-width: 768px) {
    .eventy-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }
    .eventy-main-visual { grid-column: 1; grid-row: 1; aspect-ratio: 16/9; }
    .eventy-thumbs      { grid-column: 1; grid-row: 3; flex-direction: row; }
    .eventy-main-meta   { grid-column: 1; grid-row: 2; }
    .eventy-thumb-visual { height: 120px; }
}

/* Production section */
.work-category--production .category-header {
    grid-template-columns: 1fr;
}

.production-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: end;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.production-headline {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 12rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--text);
}

.production-lead {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 0.5rem;
}

.production-lead p {
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240,240,240,0.65);
}

.production-claims {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 clamp(3rem, 5vw, 6rem);
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.claim-item {
    padding: clamp(1.5rem, 2.5vw, 2.5rem) 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.claim-num {
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 0.9vw, 1rem);
    letter-spacing: 0.15em;
    color: var(--accent);
}

.claim-text {
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    font-weight: 500;
    font-style: italic;
    color: var(--text);
    line-height: 1.4;
}

.claim-desc {
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    font-weight: 300;
    color: rgba(240,240,240,0.45);
    line-height: 1.7;
}

.production-text {
    max-width: 800px;
}

.production-text p {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240,240,240,0.7);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .production-hero {
        grid-template-columns: 1fr;
    }
    .production-claims {
        grid-template-columns: 1fr;
    }
}

.production-text {
    max-width: 800px;
}

.production-text p {
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 300;
    line-height: 1.85;
    color: rgba(240,240,240,0.7);
    margin-bottom: 1rem;
}

/* Photo placeholder */
.photo-gallery-placeholder {
    aspect-ratio: 21/6;
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-gallery-placeholder p {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: clamp(6rem, 12vw, 11rem) 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.contact-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 0 clamp(2rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-heading {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 10rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.contact-sub {
    font-size: clamp(0.9rem, 1.05vw, 1.05rem);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(240,240,240,0.55);
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
    max-width: 44ch;
}

/* Form */
.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    text-align: left;
}

.form-field label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-field input,
.form-field textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    font-weight: 300;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    resize: vertical;
    width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--accent);
    background: rgba(125,211,252,0.04);
}

.form-submit {
    align-self: center;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--accent);
    color: var(--bg);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-field input[aria-invalid="true"],
.form-field textarea[aria-invalid="true"] {
    border-color: #f87171;
}

.form-field-error {
    font-size: 0.72rem;
    color: #fca5a5;
    font-weight: 400;
    min-height: 1em;
}

.form-error-global {
    color: #fca5a5;
    font-size: 0.85rem;
    font-weight: 400;
    min-height: 1em;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    background: rgba(125,211,252,0.08);
    border: 1px solid rgba(125,211,252,0.35);
    border-radius: 4px;
    margin-bottom: 2rem;
    width: 100%;
}

.form-success p {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.03em;
}

/* Contact links */
.contact-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 2rem;
    width: 100%;
    gap: 2rem;
}

.contact-link-email {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-decoration: none;
}

.contact-link-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-link-value {
    font-size: clamp(0.85rem, 0.95vw, 0.95rem);
    font-weight: 300;
    color: rgba(240,240,240,0.7);
    transition: color 0.2s;
}

.contact-link-email:hover .contact-link-value {
    color: var(--accent);
}

.contact-socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(240,240,240,0.5);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.social-icon-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-links { flex-direction: column; align-items: center; }
}


/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 15, 0.92);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.lightbox-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 960px;
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
    line-height: 1;
}

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

.lightbox-video-wrap {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.lightbox-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.lightbox-caption {
    padding: 1.25rem 0 0;
}

.lightbox-caption h3 {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    letter-spacing: 0.04em;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.lightbox-caption p {
    font-size: clamp(0.8rem, 0.9vw, 0.9rem);
    font-weight: 300;
    line-height: 1.7;
    color: rgba(240,240,240,0.55);
    margin-bottom: 0.4rem;
}

.lightbox-caption span {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(125,211,252,0.5);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.anim-fade {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.25; }
    50%       { opacity: 1; }
}

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