/* ============================================================
   SPORSHIA.COM — Premium Cinematic Dark Portfolio
   Design: Luxury dark mode, face-safe, gold accents
   ============================================================ */

:root {
    --bg: #0A0A0A;
    --bg2: #0D0D0C;
    --bg3: #161615;
    --bg4: #1A1A1A;
    --bg5: #111111;
    --accent: #E5C158;
    --accent-hover: #F3E5AB;
    --accent-glow: rgba(229, 193, 88, .15);
    --white: #ffffff;
    --text-primary: #E0E0E0;
    --text-secondary: #D0D0D0;
    --text-muted: #8A8A8A;
    --text-dim: rgba(255, 255, 255, .3);
    --border-subtle: rgba(255, 255, 255, .05);
    --border-light: rgba(255, 255, 255, .08);
    --body-font: 'Josefin Sans', sans-serif;
    --heading-font: 'Playfair Display', serif;
    --label-font: 'Barlow Condensed', sans-serif;
    --container: 1340px;
    --radius: 4px;
    --radius-lg: 8px;
    --transition: .4s ease-in-out;
    --section-py: 96px;
    --section-py-lg: 112px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased
}

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

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition)
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 400;
    line-height: 1.15;
    margin: 0
}

::selection {
    background: var(--accent);
    color: var(--bg)
}

/* === UTILITIES === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%
}

.stitle {
    margin-bottom: 56px
}

.stitle h6 {
    color: var(--accent);
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-family: var(--label-font)
}

.stitle h3 {
    color: var(--text-primary);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
    letter-spacing: -.5px
}

.stitle.center {
    text-align: center
}

.stitle.light h3 {
    color: var(--text-primary)
}

.stitle p.desc {
    color: var(--text-muted);
    max-width: 560px;
    margin: 16px auto 0;
    font-size: 15px;
    line-height: 1.8
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 80px);
    max-width: var(--container);
    height: 60px;
    background: rgba(10, 10, 10, .5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    transition: all var(--transition)
}

.site-header.scrolled {
    background: rgba(10, 10, 10, .92);
    top: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.header-inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.site-logo a {
    color: var(--white);
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 3px
}

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

.site-nav a {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition)
}

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

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width var(--transition)
}

.site-nav a:hover::after {
    width: 100%
}

.header-social {
    display: flex;
    gap: 16px;
    margin-left: 24px
}

.header-social a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--transition)
}

.header-social a:hover {
    color: var(--accent)
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    margin: 5px 0;
    transition: all .3s
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    transform: scale(1.08);
    animation: heroZoom 25s ease-in-out infinite alternate
}

@keyframes heroZoom {
    from {
        transform: scale(1.08)
    }

    to {
        transform: scale(1.18)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, .4) 40%, rgba(10, 10, 10, .9) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 1000px
}

.hero-label {
    font-family: var(--label-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp .8s .3s forwards
}

.hero-name {
    font-family: var(--heading-font);
    font-size: clamp(42px, 8vw, 120px);
    color: var(--white);
    line-height: .95;
    margin-bottom: 24px;
    font-weight: 300;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeUp 1s .5s forwards
}

.hero-tagline {
    font-family: var(--label-font);
    font-size: 18px;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp .8s .8s forwards;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .6)
}

.hero-awards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .8s 1.1s forwards
}

.hero-award {
    padding: 16px 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    text-align: center;
    transition: border-color var(--transition)
}

.hero-award:hover {
    border-color: var(--accent)
}

.hero-award .yr {
    font-family: var(--label-font);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 3px;
    display: block;
    font-weight: 700
}

.hero-award .nm {
    font-family: var(--heading-font);
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin-top: 6px;
    display: block
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-dim);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: var(--label-font);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: fadeUp .8s 1.4s forwards;
    opacity: 0
}

.hero-scroll i {
    animation: bounceDown 2s infinite;
    font-size: 16px
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(8px)
    }
}

/* ============================================================
   2. SYNOPSIS
   ============================================================ */
.synopsis {
    background: var(--bg2);
    padding: var(--section-py) 0
}

.synopsis h3 {
    color: var(--text-primary);
    text-transform: uppercase;
    font-family: var(--heading-font);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 300;
    letter-spacing: 6px;
    text-align: right
}

.synopsis-text {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 2;
    padding: 12px 0 0;
    font-weight: 300
}

/* ============================================================
   3. VIDEO CAROUSEL
   ============================================================ */
.video-section {
    background: var(--bg);
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden
}

.video-section .stitle {
    text-align: center;
    position: relative;
    z-index: 10
}

.lic-holder {
    position: relative;
    margin-top: 48px
}

.lic-slider {
    overflow: hidden;
    width: 100%
}

.lic-item {
    width: 680px;
    max-width: 80vw;
    opacity: .35;
    transition: opacity .7s ease
}

.lic-item.swiper-slide-active {
    opacity: 1;
    z-index: 5
}

.lic-item.swiper-slide-next,
.lic-item.swiper-slide-prev {
    opacity: .6;
    z-index: 3
}

.lic-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer
}

.lic-link img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform .6s ease
}

.lic-link:hover img {
    transform: scale(1.05)
}

.lic-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .4s ease
}

.lic-link:hover .lic-overlay {
    background: rgba(0, 0, 0, .45)
}

.lic-play {
    width: 68px;
    height: 68px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    position: relative
}

.lic-play::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    animation: licPulse 2.5s ease-out infinite
}

.lic-play i {
    color: #fff;
    font-size: 20px;
    margin-left: 3px
}

.lic-link:hover .lic-play {
    border-color: var(--accent);
    background: var(--accent);
    transform: scale(1.1)
}

.lic-link:hover .lic-play i {
    color: var(--bg)
}

@keyframes licPulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    100% {
        transform: scale(1.6);
        opacity: 0
    }
}

.lic-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px
}

.lic-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-light);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0
}

.lic-nav button:hover {
    border-color: var(--accent);
    background: var(--accent)
}

.lic-nav button:hover svg polyline {
    stroke: var(--bg)
}

/* ============================================================
   4. TESTIMONIALS
   ============================================================ */
.testimonials {
    padding: var(--section-py) 0;
    background: var(--bg5)
}

.testimonials .stitle {
    text-align: center
}

.testimonial-item {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px
}

.testimonial-quote {
    font-size: 48px;
    color: var(--accent);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 24px;
    opacity: .4
}

.testimonial-text {
    font-family: var(--heading-font);
    font-size: clamp(22px, 3vw, 30px);
    color: var(--text-primary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 300
}

.testimonial-author {
    font-family: var(--label-font);
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600
}

.test-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px
}

.test-nav button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%
}

.test-nav button:hover {
    border-color: var(--accent);
    color: var(--accent)
}

/* ============================================================
   5. PARALLAX GALLERY
   ============================================================ */
.trailers-section {
    position: relative;
    padding: var(--section-py-lg) 0;
    overflow: hidden
}

.trailers-bg {
    position: absolute;
    inset: -4px 0;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed
}

.trailers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .4), rgba(10, 10, 10, .88))
}

.trailers-content {
    position: relative;
    z-index: 2
}

.portfolio-grid {
    columns: 3;
    column-gap: 20px;
    margin-top: 56px
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: var(--radius);
    margin-bottom: 20px;
    break-inside: avoid;
    display: inline-block;
    width: 100%
}

.portfolio-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transition: transform .8s ease-in-out, filter .6s;
    filter: brightness(.85)
}

.portfolio-item:hover img {
    transform: scale(1.08);
    filter: brightness(.5)
}

.portfolio-title {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    opacity: 0;
    transform: translateY(16px);
    transition: all var(--transition)
}

.portfolio-item:hover .portfolio-title {
    opacity: 1;
    transform: translateY(0)
}

.portfolio-title h4 {
    color: var(--white);
    font-size: 20px;
    font-weight: 400
}

.portfolio-title span {
    color: var(--accent);
    font-family: var(--label-font);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase
}

/* ============================================================
   6. PRODUCTION STATS
   ============================================================ */
.production {
    padding: var(--section-py) 0;
    background: var(--bg)
}

.production .stitle {
    text-align: center
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 56px
}

.prod-item {
    text-align: center;
    padding: 32px 16px;
    transition: all var(--transition)
}

.prod-item:hover {
    transform: translateY(-4px)
}

.prod-icon {
    margin-bottom: 16px
}

.prod-icon i {
    font-size: 28px;
    color: var(--accent);
    opacity: .6
}

.prod-item .prod-number {
    font-family: var(--heading-font);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px
}

.prod-item h5 {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-family: var(--label-font)
}

.prod-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8
}

/* ============================================================
   7. PARALLAX ACCORDION
   ============================================================ */
.accordion-section {
    position: relative;
    overflow: hidden
}

.accordion-bg {
    position: absolute;
    inset: -4px 0;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed
}

.accordion-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10, 10, 10, .88) 0%, rgba(10, 10, 10, .55) 60%, rgba(10, 10, 10, .3) 100%)
}

.accordion-content {
    position: relative;
    z-index: 2;
    padding: var(--section-py-lg) 0
}

.accordion {
    border: none
}

.acc-item {
    border-bottom: 1px solid var(--border-light)
}

.acc-header {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    font-family: var(--heading-font);
    font-size: 22px;
    transition: color var(--transition)
}

.acc-header:hover {
    color: var(--accent)
}

.acc-header i {
    transition: transform var(--transition);
    font-size: 12px;
    color: var(--text-muted)
}

.acc-header.active i {
    transform: rotate(180deg);
    color: var(--accent)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease
}

.acc-body-inner {
    padding: 0 0 24px;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 16px
}

.acc-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    max-height: 600px
}

.acc-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center top;
    transition: transform .8s
}

.acc-image:hover img {
    transform: scale(1.03)
}

/* ============================================================
   8. HORIZONTAL TIMELINE — Premium
   ============================================================ */
.tl-section {
    padding: 0;
    background: var(--bg5)
}

/* Navigation Rail */
.tl-rail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px 15% 0;
    position: relative
}

.tl-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-light);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all var(--transition);
    font-size: 12px
}

.tl-arrow:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.tl-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    flex: 1
}

.tl-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, .1);
    transform: translateY(-50%)
}

.tl-year {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 clamp(12px, 2vw, 28px);
    text-decoration: none;
    transition: all var(--transition)
}

.tl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    margin-bottom: 14px;
    transition: all var(--transition)
}

.tl-year.active .tl-dot {
    background: var(--accent);
    width: 12px;
    height: 12px;
    box-shadow: 0 0 16px var(--accent-glow)
}

.tl-num {
    font-family: var(--label-font);
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 400;
    transition: all var(--transition)
}

.tl-year.active .tl-num {
    color: var(--accent);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 3px
}

.tl-year:hover .tl-num {
    color: var(--text-primary)
}

.tl-year:hover .tl-dot {
    background: rgba(255, 255, 255, .4)
}

/* Content Area */
.tl-content {
    padding: 56px 15% 80px
}

.tl-item {
    display: none;
    gap: clamp(32px, 4vw, 64px);
    align-items: flex-start
}

.tl-item.active {
    display: flex;
    animation: fadeUp .5s ease forwards
}

/* Left Column — Image */
.tl-item-image {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.tl-item-image img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: center top;
    display: block
}

/* Right Column — Typography */
.tl-item-text {
    flex: 1;
    min-width: 0;
    padding-top: 8px
}

.tl-tag {
    display: inline-block;
    font-family: var(--label-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.tl-title {
    font-family: var(--heading-font);
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -.5px
}

.tl-desc {
    font-family: var(--heading-font);
    font-size: clamp(14px, 1.4vw, 17px);
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 300
}

/* Footer Badges */
.tl-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-family: var(--label-font);
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all var(--transition)
}

.tl-badge i {
    color: var(--accent);
    font-size: 10px
}

.tl-badge:hover {
    border-color: var(--accent);
    color: var(--accent)
}

/* ============================================================
   9. TEAM INTRO
   ============================================================ */
.team-intro {
    position: relative;
    padding: var(--section-py) 0 64px;
    overflow: hidden
}

.team-intro-bg {
    position: absolute;
    inset: -4px 0;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed
}

.team-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, .3), rgba(10, 10, 10, .85))
}

.team-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20%;
    max-width: 1000px;
    margin: 0 auto
}

.team-intro-content h6 {
    color: var(--accent);
    margin-bottom: 16px;
    font-size: 13px;
    letter-spacing: 4px
}

.team-intro-content h3 {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300
}

.team-intro-content p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 16px
}

/* ============================================================
   10. FILMOGRAPHY
   ============================================================ */
.team-section {
    background: var(--bg);
    padding: 64px 0 var(--section-py);
    position: relative;
    z-index: 2
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.team-card {
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-lg);
    background: transparent
}

.team-card img {
    width: 100%;
    aspect-ratio: auto;
    min-height: 280px;
    object-fit: contain;
    object-position: center top;
    transition: transform .8s ease-in-out
}

.team-card:hover img {
    transform: scale(1.05)
}

.team-card .team-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, .8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition)
}

.team-card:hover .team-hover-overlay {
    opacity: 1
}

.team-hover-overlay .team-social {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px
}

.team-hover-overlay .team-social a {
    color: var(--white);
    font-size: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

.team-hover-overlay .team-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg)
}

.team-info {
    padding: 20px 4px
}

.team-info h5 {
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 400
}

.team-info p {
    color: var(--accent);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--label-font);
    font-weight: 600
}

/* ============================================================
   11. BLOG
   ============================================================ */
.blog-section {
    background: var(--bg2);
    padding: var(--section-py) 0
}

.blog-section .stitle h3 {
    color: var(--text-primary)
}

.blog-section .stitle h6 {
    color: var(--accent)
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px
}

.blog-card {
    background: transparent;
    overflow: hidden;
    transition: all var(--transition);
    border-radius: var(--radius-lg)
}

.blog-card:hover {
    transform: translateY(-6px)
}

.blog-card .blog-img {
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: var(--radius)
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s ease-in-out
}

.blog-card:hover .blog-img img {
    transform: scale(1.05)
}

.blog-card-body {
    padding: 20px 0
}

.blog-meta {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 12px;
    font-family: var(--label-font);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600
}

.blog-card h4 {
    margin-bottom: 12px;
    color: var(--text-primary);
    font-size: 20px;
    line-height: 1.3
}

.blog-card h4 a:hover {
    color: var(--accent)
}

.blog-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8
}

/* ============================================================
   12. CLIENTS
   ============================================================ */
.clients-section {
    background: var(--bg3);
    padding: var(--section-py) 0
}

.clients-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    opacity: .65;
    transition: opacity var(--transition)
}

.clients-carousel .swiper-slide:hover {
    opacity: 1
}

.client-name {
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--text-muted);
    letter-spacing: 3px;
    white-space: nowrap;
    transition: color var(--transition)
}

.clients-carousel .swiper-slide:hover .client-name {
    color: var(--accent)
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    background: var(--bg2);
    padding: var(--section-py-lg) 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: start
}

.contact-tag {
    display: inline-block;
    font-family: var(--label-font);
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px
}

.contact-heading {
    font-family: var(--heading-font);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--text-primary);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px
}

.contact-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px
}

.contact-detail {
    margin-bottom: 40px
}

.contact-label {
    display: block;
    font-family: var(--label-font);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px
}

.contact-email-small {
    font-family: var(--heading-font);
    font-size: 20px;
    color: var(--text-primary);
    transition: color var(--transition)
}

.contact-email-small:hover {
    color: var(--accent)
}

.contact-social {
    display: flex;
    gap: 12px
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 15px;
    transition: all var(--transition)
}

.contact-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    transform: translateY(-3px)
}

/* Form */
.contact-form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 20px
}

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

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 300;
    transition: all var(--transition);
    outline: none
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: .6
}

.form-input:focus {
    border-color: var(--accent);
    background: rgba(229, 193, 88, .03)
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.contact-btn {
    align-self: flex-start;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    font-family: var(--label-font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: var(--radius)
}

.contact-btn i {
    margin-left: 8px;
    font-size: 11px;
    transition: transform var(--transition)
}

.contact-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow)
}

.contact-btn:hover i {
    transform: translateX(4px)
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border-subtle)
}

.footer-top {
    padding: 72px 0
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px
}

.footer-col h6 {
    color: var(--accent);
    margin-bottom: 24px;
    font-size: 12px;
    font-family: var(--label-font);
    letter-spacing: 3px;
    font-weight: 600
}

.footer-col p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8
}

.footer-col p a {
    color: var(--accent)
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 14px;
    transition: color var(--transition)
}

.footer-col ul li a:hover {
    color: var(--accent)
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px
}

.footer-social a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color var(--transition)
}

.footer-social a:hover {
    color: var(--accent)
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 28px 0;
    text-align: center
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px
}

/* ============================================================
   BIOGRAPHY PAGE
   ============================================================ */
.bio-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.bio-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat
}

.bio-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 10, .3) 0%, rgba(10, 10, 10, .85) 100%)
}

.bio-hero-content {
    position: relative;
    z-index: 2;
    text-align: center
}

.bio-label {
    color: var(--accent);
    font-family: var(--label-font);
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600
}

.bio-title {
    font-family: var(--heading-font);
    font-size: clamp(48px, 10vw, 140px);
    color: var(--white);
    line-height: .9;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 24px
}

.bio-title-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, .3);
    color: transparent
}

.bio-subtitle {
    font-family: var(--label-font);
    font-size: 16px;
    color: var(--text-muted);
    letter-spacing: 6px;
    text-transform: uppercase
}

.bio-intro {
    background: var(--bg2);
    padding: 80px 0;
    text-align: center
}

.bio-intro-text p {
    font-family: var(--heading-font);
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-primary);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    font-style: italic
}

.bio-split {
    padding: var(--section-py-lg) 0;
    background: var(--bg)
}

.bio-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.bio-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden
}

.bio-img-frame img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    object-position: center top;
    transition: transform .8s
}

.bio-img-frame:hover img {
    transform: scale(1.03)
}

.bio-split-text h6,
.bio-cinema-text h6,
.bio-present-inner h6 {
    color: var(--accent);
    font-family: var(--label-font);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600
}

.bio-split-text h3,
.bio-cinema-text h3,
.bio-present-inner h3 {
    color: var(--text-primary);
    font-family: var(--heading-font);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    margin-bottom: 24px;
    line-height: 1.1
}

.bio-split-text p,
.bio-cinema-text p,
.bio-present-inner p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px
}

.bio-cinema {
    padding: var(--section-py-lg) 0;
    background: var(--bg2)
}

.bio-cinema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.bio-identity-card {
    background: var(--bg3);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px
}

.bio-identity-card h6 {
    color: var(--accent);
    font-family: var(--label-font);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 32px;
    font-weight: 600
}

.bio-id-item {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-subtle)
}

.bio-id-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none
}

.bio-id-label {
    display: block;
    font-family: var(--label-font);
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-weight: 600
}

.bio-id-value {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    line-height: 1.6
}

.bio-skills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.bio-skill {
    padding: 8px 20px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 13px;
    color: var(--text-secondary);
    font-family: var(--label-font);
    letter-spacing: 1px;
    transition: all var(--transition)
}

.bio-skill:hover {
    border-color: var(--accent);
    color: var(--accent)
}

.bio-present {
    position: relative;
    overflow: hidden;
    min-height: 85vh
}

.bio-present-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed
}

.bio-present-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, .78) 0%, rgba(10, 10, 10, .35) 40%, transparent 70%)
}

.bio-present-content {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    display: flex;
    align-items: center
}

.bio-present-inner {
    max-width: 560px
}

.bio-accent {
    color: var(--accent)
}

@media(max-width:1024px) {

    .bio-split-grid,
    .bio-cinema-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:768px) {
    .bio-hero {
        height: 60vh;
        min-height: 400px
    }

    .bio-present-bg {
        background-attachment: scroll
    }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 16px;
    transition: all var(--transition);
    border-radius: 50%
}

.back-to-top.visible {
    display: flex
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(229, 193, 88, .3)
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:1024px) {
    .portfolio-grid {
        columns: 2
    }

    .production-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .tl-content {
        padding: 40px 8% 64px
    }

    .tl-item.active {
        gap: 32px
    }

    .tl-rail {
        padding: 40px 8% 0
    }

    .team-intro-content {
        padding: 0 10%
    }
}

@media(max-width:768px) {
    :root {
        --section-py: 72px;
        --section-py-lg: 80px
    }

    .container {
        padding: 0 24px
    }

    .site-nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 16px;
        right: 16px;
        background: rgba(10, 10, 10, .98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px;
        gap: 20px;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light)
    }

    .site-nav.open {
        display: flex
    }

    .menu-toggle {
        display: block
    }

    .header-social {
        display: none
    }

    .portfolio-grid {
        columns: 1
    }

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

    .blog-grid {
        grid-template-columns: 1fr
    }

    .team-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .synopsis-text {
        padding-right: 0
    }

    .hero-awards {
        gap: 12px
    }

    .hero-award {
        padding: 12px 20px
    }

    .team-intro-content {
        padding: 0 5%
    }

    .timeline-nav a {
        padding: 14px 18px;
        font-size: 13px
    }

    .testimonial-text {
        font-size: 20px
    }

    .lic-link img {
        aspect-ratio: 16/10
    }

    /* Disable parallax on mobile — use scroll instead */
    .trailers-bg,
    .accordion-bg,
    .team-intro-bg {
        background-attachment: scroll;
        background-position: center top
    }

    /* Synopsis flex stack */
    .synopsis [style*="display:flex"] {
        flex-direction: column
    }

    .synopsis [style*="width:30%"],
    .synopsis [style*="width:70%"] {
        width: 100%;
        padding-right: 0
    }

    /* Accordion flex stack */
    .accordion-content [style*="display:flex"] {
        flex-direction: column
    }

    /* Contact form stack */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    /* Timeline gap */
    .timeline-item.active {
        gap: 32px
    }
}
