/*
Theme Name: Empire Studio Group V2
Theme URI: https://empirestudiogroup.com
Description: Custom WordPress theme for Empire Studio Group — premium creative studio.
Version: 2.0.0
Author: Empire Studio Group
Text Domain: empire-v2
*/

/* ============================================================
   FONTS
   ============================================================ */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('assets/fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('assets/fonts/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('assets/fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('assets/fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --cinema-black: #0A0A0A;
    --cinema-red: #D30215;
    --pure-white: #FFFFFF;
    --silver-gray: #8A8A8A;
    --luxury-gold: #C9A84C;
    --nav-height: 72px;
    --container-max: 1280px;
    --section-padding: clamp(60px, 8vw, 120px);
    --font-main: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition: 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    font-weight: 400;
    background-color: var(--cinema-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: var(--font-main);
    font-size: inherit;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}


.site-nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 44px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
    position: relative;
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--pure-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--cinema-red);
    color: var(--pure-white) !important;
    padding: 10px 22px;
    border-radius: 2px;
    font-weight: 500;
    letter-spacing: 0.06em;
    transition: background var(--transition), transform var(--transition) !important;
}

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

.nav-cta:hover {
    background: #b0011e !important;
    transform: translateY(-1px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pure-white);
    transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger → X when menu is open */
.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cinema-black);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-mobile-overlay.open {
    display: flex;
}

.nav-mobile-overlay a {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color var(--transition);
}

.nav-mobile-overlay a:hover {
    color: var(--cinema-red);
}

.nav-mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
    background: var(--cinema-red);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: #b0011e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 2, 21, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--pure-white);
    border: 1px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--pure-white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--luxury-gold);
    color: var(--cinema-black);
}

.btn-gold:hover {
    background: #b8943e;
    transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 60px) clamp(20px, 5vw, 80px) 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(211, 2, 21, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
                var(--cinema-black);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cinema-red);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--pure-white) 40%, var(--luxury-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    color: var(--silver-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero with background photo — default (full bleed, centered) */
.hero-has-photo .hero-bg {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-has-photo .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
}

/* Asymmetric hero — desktop only (photo right, text left) */
@media (min-width: 1024px) {
    .hero-split {
        justify-content: flex-start;
        padding-left: clamp(60px, 8vw, 140px);
        text-align: left;
    }

    .hero-split .hero-content {
        text-align: left;
        max-width: 520px;
    }

    .hero-split .hero-actions {
        justify-content: flex-start;
    }

    /* Photo full bleed, remontée de 100px */
    .hero-split .hero-bg {
        background-size: cover;
        background-position: center -200px;
    }

    /* Gradient plus sombre à gauche pour lisibilité du texte */
    .hero-split .hero-bg::after {
        background: none;
    }
}

/* Compact hero for inner pages */
.hero-compact {
    min-height: 40vh;
    padding: calc(var(--nav-height) + 60px) clamp(20px, 5vw, 80px) 60px;
}

.hero-compact .hero-bg {
    background: linear-gradient(to bottom, #4a0010 0%, #280008 30%, #110001 60%, #0a0a0a 80%, #0a0a0a 100%);
}

.hero-compact .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--cinema-red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--silver-gray);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 72px);
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cinema-red);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    font-weight: 300;
    color: var(--silver-gray);
    max-width: 520px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
}

.service-card {
    background: var(--cinema-black);
    padding: 40px 32px;
    transition: background var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card:hover {
    background: rgba(255,255,255,0.03);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--luxury-gold);
    margin-bottom: 8px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--silver-gray);
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cinema-red);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap var(--transition);
    margin-top: 8px;
    width: fit-content;
}

.service-link:hover {
    gap: 14px;
}

.service-link::after {
    content: '→';
}

/* ============================================================
   SERVICES PAGE (detailed)
   ============================================================ */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 480px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block-img {
    overflow: hidden;
}

.service-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-block:hover .service-block-img img {
    transform: scale(1.04);
}

.service-block-content {
    padding: clamp(40px, 5vw, 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.service-block:nth-child(even) .service-block-img {
    order: 2;
}

.service-block:nth-child(even) .service-block-content {
    order: 1;
}

.service-block-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cinema-red);
}

.service-block-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.service-block-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--silver-gray);
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cinema-red);
    flex-shrink: 0;
}

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--silver-gray);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--cinema-red);
    border-color: var(--cinema-red);
    color: var(--pure-white);
}

.portfolio-grid {
    columns: 3;
    column-gap: 12px;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.portfolio-item img {
    width: 100%;
    transition: transform 0.5s ease;
    display: block;
}

.portfolio-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-item-overlay {
    opacity: 1;
}

.portfolio-item-category {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cinema-red);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--pure-white);
    font-size: 1.5rem;
    padding: 16px 20px;
    cursor: pointer;
    transition: background var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================================
   PORTFOLIO PREVIEW (homepage)
   ============================================================ */
.portfolio-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.portfolio-preview-item {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.portfolio-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-preview-item:hover img {
    transform: scale(1.06);
}

/* ============================================================
   BOOKING CTA
   ============================================================ */
.booking-cta {
    background: linear-gradient(135deg, rgba(211, 2, 21, 0.12) 0%, rgba(201, 168, 76, 0.06) 100%);
    border-top: 1px solid rgba(211, 2, 21, 0.2);
    border-bottom: 1px solid rgba(211, 2, 21, 0.2);
    text-align: center;
    padding: var(--section-padding) 0;
}

.booking-cta-has-photo {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
}

.booking-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.72) 0%,
        rgba(10, 10, 10, 0.60) 50%,
        rgba(10, 10, 10, 0.80) 100%
    );
}

.booking-cta-has-photo .booking-cta-title,
.booking-cta-has-photo .booking-cta-desc {
    color: var(--pure-white);
}

.booking-cta-has-photo .booking-cta-desc {
    color: rgba(255, 255, 255, 0.75);
}

.booking-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.booking-cta-desc {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--silver-gray);
    max-width: 480px;
    margin: 0 auto 32px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 36px 32px;
    border-radius: 2px;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--cinema-red);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pure-white);
}

.testimonial-role {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--silver-gray);
    margin-top: 2px;
}

/* ============================================================
   PROMOTIONS
   ============================================================ */
.countdown {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.countdown-unit {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, var(--pure-white), var(--luxury-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--silver-gray);
    margin-top: 6px;
}

.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.promo-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 2px;
    transition: border-color var(--transition);
}

.promo-card:hover {
    border-color: rgba(211, 2, 21, 0.3);
}

.promo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--cinema-red);
    color: var(--pure-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 2px;
}

.promo-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding-right: 48px;
}

.promo-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.promo-price-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxury-gold);
}

.promo-price-original {
    font-size: 1rem;
    font-weight: 300;
    color: var(--silver-gray);
    text-decoration: line-through;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.promo-features li {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.promo-features li::before {
    content: '✓';
    color: var(--cinema-red);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
   ABOUT — TIMELINE
   ============================================================ */
.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

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

.timeline-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cinema-black);
    border: 2px solid var(--cinema-red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cinema-red);
}

.timeline-year {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--cinema-red);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.timeline-event {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--silver-gray);
    line-height: 1.6;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* Single member — cap width and center */
.team-grid:has(> :only-child) {
    grid-template-columns: minmax(260px, 380px);
    justify-content: center;
}

.team-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    border-radius: 2px;
}

.team-card-img {
    aspect-ratio: 4/5;
    overflow: hidden;
}

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

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

.team-card-info {
    padding: 24px;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--cinema-red);
    letter-spacing: 0.06em;
}

.team-bio {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--silver-gray);
    margin-top: 12px;
    line-height: 1.6;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Form panel */
#booking-form {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.07);
    border-top: 2px solid var(--luxury-gold);
    padding: 40px;
    border-radius: 2px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
    position: relative;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    color: var(--pure-white);
    padding: 13px 16px;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 300;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: rgba(255,255,255,0.055);
    border-color: rgba(201,168,76,0.5);
    border-bottom-color: var(--luxury-gold);
    box-shadow: 0 2px 0 rgba(201,168,76,0.2), inset 0 1px 4px rgba(0,0,0,0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
    font-weight: 300;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: #161616;
    color: var(--pure-white);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Submit button full-width gold variant */
#booking-form .btn-primary {
    background: var(--cinema-red);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 16px 32px;
    border: none;
    cursor: pointer;
}

#booking-form .btn-primary:hover {
    background: #b0011e;
    box-shadow: 0 8px 32px rgba(211,2,21,0.4);
}

.form-success {
    display: none;
    background: rgba(0,180,80,0.07);
    border: 1px solid rgba(0,180,80,0.25);
    border-left: 3px solid #4dff91;
    color: #4dff91;
    padding: 16px 20px;
    border-radius: 2px;
    font-size: 0.88rem;
    margin-top: 16px;
    letter-spacing: 0.02em;
}

.form-error {
    display: none;
    background: rgba(211,2,21,0.07);
    border: 1px solid rgba(211,2,21,0.25);
    border-left: 3px solid var(--cinema-red);
    color: #ff4d6a;
    padding: 16px 20px;
    border-radius: 2px;
    font-size: 0.88rem;
    margin-top: 16px;
}

/* Contact info panel */
.contact-info-panel {
    position: sticky;
    top: 100px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px;
    overflow: hidden;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item:hover {
    background: rgba(255,255,255,0.025);
}

.contact-info-icon {
    flex-shrink: 0;
    color: var(--luxury-gold);
    margin-top: 2px;
    opacity: 0.85;
}

.contact-info-icon svg {
    display: block;
}

.contact-info-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    opacity: 0.7;
    margin-bottom: 5px;
}

.contact-info-value {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.55;
}

.contact-info-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-value a:hover {
    color: var(--pure-white);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--cinema-red);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--cinema-red);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--silver-gray);
    line-height: 1.7;
    padding-bottom: 20px;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ============================================================
   FLOATING BOOKING BUTTON
   ============================================================ */
.float-rdv {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    background: var(--cinema-red);
    color: var(--pure-white);
    padding: 14px 24px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(211, 2, 21, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.float-rdv:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(211, 2, 21, 0.5);
}

/* ============================================================
   GDPR BANNER
   ============================================================ */
.gdpr-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px clamp(20px, 5vw, 80px);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.gdpr-banner.hidden {
    display: none;
}

.gdpr-text {
    font-size: 0.825rem;
    font-weight: 300;
    color: var(--silver-gray);
    max-width: 600px;
}

.gdpr-text a {
    color: var(--cinema-red);
    text-decoration: underline;
}

.gdpr-accept {
    background: var(--cinema-red);
    color: var(--pure-white);
    border: none;
    padding: 10px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
    transition: background var(--transition);
}

.gdpr-accept:hover {
    background: #b0011e;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: rgba(255,255,255,0.02);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand-desc {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--silver-gray);
    line-height: 1.7;
    max-width: 280px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: border-color var(--transition), background var(--transition);
}

.footer-social a:hover {
    border-color: var(--cinema-red);
    background: rgba(211, 2, 21, 0.1);
}

.footer-nav-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-links a {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--silver-gray);
    transition: color var(--transition);
}

.footer-nav-links a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--silver-gray);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--silver-gray);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--pure-white);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .service-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-block-img {
        height: 300px;
    }

    .service-block:nth-child(even) .service-block-img {
        order: 0;
    }

    .service-block:nth-child(even) .service-block-content {
        order: 1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

    .nav-hamburger {
        display: flex;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .portfolio-grid {
        columns: 2;
    }

    .portfolio-preview {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .float-rdv span {
        display: none;
    }

    .float-rdv {
        padding: 14px 18px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        columns: 1;
    }

    .portfolio-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .legal-table {
        font-size: 0.8rem;
    }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

.legal-content ul {
    padding-left: 20px;
    margin: 12px 0;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--luxury-gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: border-color 0.2s;
}

.legal-content a:hover {
    border-bottom-color: var(--luxury-gold);
}

.legal-content strong {
    color: var(--pure-white);
    font-weight: 500;
}

.legal-content code {
    font-family: 'Courier New', monospace;
    font-size: 0.82rem;
    background: rgba(255,255,255,0.06);
    padding: 2px 6px;
    border-radius: 2px;
    color: rgba(255,255,255,0.7);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.85rem;
}

.legal-table th {
    background: rgba(201,168,76,0.08);
    color: var(--luxury-gold);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}

.legal-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    vertical-align: top;
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-update {
    margin-top: 56px;
    font-size: 0.78rem !important;
    color: rgba(255,255,255,0.3) !important;
    font-style: italic;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #0f0f0f;
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cookie-banner.is-visible {
    transform: translateY(0);
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--luxury-gold);
    text-decoration: none;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn-accept {
    background: var(--luxury-gold);
    color: #000;
    border: none;
    padding: 10px 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.2s;
}

.cookie-btn-accept:hover {
    background: #b8943e;
}

.cookie-btn-refuse {
    background: transparent;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 10px 22px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-refuse:hover {
    border-color: rgba(255,255,255,0.35);
    color: rgba(255,255,255,0.7);
}

/* Manage cookies link in footer */
.cookie-manage-link {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.cookie-manage-link:hover {
    color: rgba(255,255,255,0.6);
}
