/* CONFIGURATION GLOBALE */
:root {
    --bg-dark: #0a0a0a;
    --border-color: #1a1a1a;
    --text-main: #F5F5F0;
    --text-muted: #888880;
    --accent-lime: #DEFF9A;
    --sidebar-width: 72px;
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(222,255,154,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(222,255,154,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* SÉLECTEUR DE LANGUE MINIMALISTE */
.lang-switcher {
    position: fixed; top: 40px; right: 40px; z-index: 100;
    display: flex; gap: 15px; font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 600; letter-spacing: 0.2em;
}
.lang-switcher a { color: var(--text-muted); text-decoration: none; transition: color 0.3s ease; }
.lang-switcher a:hover { color: var(--text-main); }
.lang-switcher a.active { color: var(--accent-lime); border-bottom: 1px solid var(--accent-lime); padding-bottom: 2px; }

/* LE MENU LATÉRAL PREMIUM (SCROLLSPY) */
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: var(--sidebar-width);
    background-color: var(--bg-dark); border-right: 1px solid var(--border-color);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 100; gap: 4px;
}
.sidebar-logo {
    position: absolute; top: 28px; font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600; color: var(--accent-lime); letter-spacing: -0.02em;
}
.nav-link {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--text-muted); text-decoration: none;
    font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
    padding: 12px 6px; width: 100%; transition: color 0.25s ease; position: relative;
}
.nav-link svg { width: 18px; height: 18px; stroke-width: 1.5; margin-bottom: 2px; transition: stroke 0.3s ease; }
.nav-link:hover { color: var(--text-main); }
.nav-link.active { color: var(--accent-lime); }
.nav-link.active::before {
    content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
    height: 32px; width: 2px; background-color: var(--accent-lime); border-radius: 0 2px 2px 0;
}

/* LES CROCHETS DE CADRAGE FIXES */
.corner-tl { position: fixed; top: 40px; left: calc(var(--sidebar-width) + 40px); width: 40px; height: 40px; border-top: 1px solid rgba(222,255,154,0.25); border-left: 1px solid rgba(222,255,154,0.25); z-index: 50; pointer-events: none;}
.corner-br { position: fixed; bottom: 40px; right: 40px; width: 40px; height: 40px; border-bottom: 1px solid rgba(222,255,154,0.25); border-right: 1px solid rgba(222,255,154,0.25); z-index: 50; pointer-events: none;}

/* STRUCTURE DES SECTIONS */
.main-content { margin-left: var(--sidebar-width); }
section { min-height: 100vh; padding: clamp(60px, 8vw, 100px) clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; position: relative; }

/* ANIMATIONS APPARITION AU SCROLL */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; }

/* ACCUEIL / HUB */
#hub { align-items: center; text-align: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: url('medias/fond-accueil.jpg') center/cover no-repeat; opacity: 0.15; filter: grayscale(100%) contrast(120%); }
.hero-bg-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, var(--bg-dark) 0%, transparent 40%, var(--bg-dark) 100%); }
.hero-content { position: relative; z-index: 2; }
.hero-pre { font-size: 10px; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(222,255,154,0.6); margin-bottom: 32px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(4rem, 12vw, 9rem); font-weight: 300; letter-spacing: 0.18em; line-height: 0.9; text-transform: uppercase; }
.hero-title span { font-weight: 600; }
.lime-rule { width: 100%; max-width: 320px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent-lime), transparent); margin: 2rem auto; }
.hero-subtitle { font-size: clamp(11px, 1.8vw, 13px); font-weight: 600; letter-spacing: 0.5em; color: var(--accent-lime); text-transform: uppercase; margin-bottom: 1rem; }
.hero-desc { font-family: 'Cormorant Garamond', serif; font-size: clamp(14px, 2vw, 17px); font-style: italic; font-weight: 300; color: rgba(245,245,240,0.45); letter-spacing: 0.06em; max-width: 600px; margin: 0 auto; line-height: 1.6; }
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.5; z-index: 2;}
.scroll-indicator span { font-size: 8px; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-indicator .line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--text-main), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top; opacity: 0; } 50% { transform: scaleY(1); transform-origin: top; opacity: 1; } 50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 1; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; } }

/* TITRES DE SECTIONS */
.section-pre { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(222,255,154,0.5); margin-bottom: 16px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 300; color: var(--text-main); letter-spacing: 0.04em; line-height: 1.05; margin-bottom: 40px; }

/* BISTRO STATS */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 20px 0 40px 0; max-width: 600px; }
.stat-box { border-left: 2px solid var(--accent-lime); padding-left: 20px; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 4rem; color: var(--text-main); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-lime); font-weight: 600; }

/* ========================================================================= */
/* CARTES INTERACTIVES (BISTRO & GASTRO) + MOBILE HOVER LOGIC                 */
/* ========================================================================= */
.dish-grid { display: grid; gap: 20px; margin-top: 40px; width: 100%; max-width: 1200px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.dish-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border: 1px solid var(--border-color); cursor: zoom-in; }

.dish-card img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) contrast(110%); transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease; }
/* Hover Ordinateur ET Hover Mobile (Centré) */
.dish-card:hover img, .dish-card.mobile-hover img { transform: scale(1.05); filter: grayscale(0%) contrast(100%); }

.dish-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transform: translateY(20px); transition: all 0.4s ease; pointer-events: none; }
/* Hover Ordinateur ET Hover Mobile (Centré) */
.dish-card:hover .dish-overlay, .dish-card.mobile-hover .dish-overlay { opacity: 1; transform: translateY(0); }

.dish-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent-lime); margin-bottom: 8px; }
.dish-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--text-main); margin-bottom: 12px; line-height: 1.1; }
.dish-desc { font-size: 11px; color: var(--text-muted); line-height: 1.6; border-top: 1px solid rgba(222,255,154,0.2); padding-top: 12px; }

/* AVANT-GARDE CARDS + MOBILE HOVER LOGIC */
.tech-grid { display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 1100px; border: 1px solid var(--border-color); background: #0a0a0a; padding: 8px; }
.tech-card { background: #0f0f0f; padding: 35px 50px; position: relative; overflow: hidden; transition: transform 0.4s ease, border-color 0.4s ease; cursor: pointer; display: flex; flex-direction: row; align-items: center; border: 1px solid var(--border-color); min-height: 160px; }

.tech-card:hover, .tech-card.mobile-hover { transform: translateX(8px); border-color: rgba(222,255,154,0.3); z-index: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.8); }

.tech-card-bg, .tech-card-video-bg { position: absolute !important; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; opacity: 0.12; filter: grayscale(100%) contrast(120%) brightness(0.6); transition: opacity 0.5s ease, filter 0.5s ease; z-index: 0; pointer-events: none; }
.tech-card:hover .tech-card-bg, .tech-card:hover .tech-card-video-bg, .tech-card.mobile-hover .tech-card-bg, .tech-card.mobile-hover .tech-card-video-bg { opacity: 0.35; filter: grayscale(50%) contrast(110%) brightness(0.8); }

.tech-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; height: 100%; background: linear-gradient(180deg, var(--accent-lime), transparent); transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease; z-index: 2;}
.tech-card:hover::before, .tech-card.mobile-hover::before { transform: scaleY(1); }

.tech-header { flex: 0 0 250px; display: flex; flex-direction: column; gap: 8px; border-right: 1px solid rgba(255,255,255,0.08); padding-right: 30px; position: relative; z-index: 2; }
.tech-tag { font-family: 'Montserrat', sans-serif; font-size: 8px; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: rgba(222,255,154,0.6); display: flex; align-items: center; gap: 8px; }
.tech-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 300; color: var(--text-main); letter-spacing: 0.02em; line-height: 1.1; margin: 0; }
.tech-body { font-size: 13px; font-weight: 300; color: rgba(245,245,240,0.8); line-height: 1.7; flex: 1; margin: 0; padding-left: 30px; padding-right: 20px; position: relative; z-index: 2; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
.tech-action { flex: 0 0 160px; display: flex; justify-content: flex-end; font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-lime); align-items: center; gap: 8px; opacity: 0.4; transition: all 0.4s ease; position: relative; z-index: 2; transform: translateX(-15px); }
.tech-card:hover .tech-action, .tech-card.mobile-hover .tech-action { opacity: 1; transform: translateX(0); }

/* FENÊTRES POP-UP (MODALES MULTIMÉDIAS AVANT-GARDE) */
.concept-modal {
    position: fixed; inset: 0; background: rgba(5,5,5,0.98); z-index: 10000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.concept-modal.active { opacity: 1; visibility: visible; }
.concept-modal-content {
    background: #0f0f0f; border: 1px solid var(--border-color);
    width: 95%; max-width: 1200px; max-height: 90vh; overflow-y: auto;
    padding: 50px; display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}
.concept-modal-close { position: absolute; top: 24px; right: 24px; color: var(--text-muted); cursor: pointer; transition: color 0.3s, transform 0.3s; z-index: 10; }
.concept-modal-close:hover { color: var(--accent-lime); transform: rotate(90deg); }
.concept-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 42px; color: var(--accent-lime); margin-bottom: 24px; font-weight: 400; line-height: 1; }
.concept-info p { font-size: 14px; color: var(--text-main); line-height: 1.8; font-weight: 300; margin-bottom: 20px; }
.concept-info h4 { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin: 30px 0 10px 0; border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }

.concept-media-box { display: flex; flex-direction: column; gap: 15px; height: 100%; }
.concept-media-box img, .concept-media-box video { width: 100%; object-fit: cover; border: 1px solid var(--border-color); background: #000; display: block; }
.concept-media-box .zoomable { cursor: zoom-in; position: relative; }
.concept-media-box .zoomable img, .concept-media-box .zoomable video { transition: filter 0.4s ease; }
.concept-media-box .zoomable:hover img, .concept-media-box .zoomable:hover video { filter: brightness(1.1); }

/* CREATIONS (GALERIE AUTO-FILL) + MOBILE HOVER LOGIC */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; width: 100%; max-width: 1200px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; border: 1px solid var(--border-color); cursor: zoom-in; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(80%) contrast(120%); transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover img, .gallery-item.mobile-hover img { filter: grayscale(0%) contrast(100%); transform: scale(1.08); }

.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 20px 20px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; font-family: 'Cormorant Garamond', serif; font-size: 18px; font-style: italic; opacity: 0; transform: translateY(10px); transition: all 0.4s ease; pointer-events: none;}
.gallery-item:hover .gallery-caption, .gallery-item.mobile-hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* RUSH ARCHITECTURE */
#rush { padding: 0; display: flex; flex-direction: row; align-items: center; justify-content: flex-start; }
.rush-video-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; filter: grayscale(15%) contrast(110%); }
.mobile-video { display: none; }

.rush-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 50%, transparent 100%); }
.rush-content { position: relative; z-index: 2; margin-left: 60px; max-width: 400px; padding: 40px; background: rgba(10,10,10,0.8); border: 1px solid var(--border-color); border-left: 3px solid var(--accent-lime); text-align: left; }

/* DOSSIER CV */
.cv-box { background: #111111; border: 1px solid var(--border-color); padding: 60px; max-width: 800px; width: 100%; position: relative; overflow: hidden; text-align: center; margin-top: 20px; }
.cv-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent-lime), transparent); }
.cv-icon { width: 48px; height: 48px; color: var(--accent-lime); margin-bottom: 24px; stroke-width: 1; }
.cv-actions { display: flex; justify-content: center; gap: 20px; margin-top: 40px; flex-wrap: wrap; }
.btn { padding: 16px 32px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: flex; align-items: center; gap: 12px; }
.btn-primary { background: var(--accent-lime); color: var(--bg-dark); border: none; }
.btn-primary:hover { background: #eaffb8; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(222,255,154,0.1); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid rgba(255,255,255,0.2); }
.btn-outline:hover { border-color: var(--accent-lime); color: var(--accent-lime); transform: translateY(-2px); }

/* AWARDS GRILLE */
.awards-grid { display: grid; grid-template-columns: 1fr clamp(280px, 38%, 420px); gap: 80px; max-width: 1100px; width: 100%; align-items: start; }
.award-item { padding: 24px 0; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.award-info { flex: 1; }
.award-photo-wrapper { width: 64px; height: 85px; flex-shrink: 0; border: 1px solid var(--border-color); overflow: hidden; cursor: zoom-in; position: relative; background: #0f0f0f; }
.award-photo-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(70%) contrast(110%); transition: all 0.4s ease; }
.award-photo-wrapper:hover img { filter: grayscale(0%) contrast(100%); transform: scale(1.05); }
.contact-box { background: #111111; border: 1px solid var(--border-color); padding: 40px; position: relative; overflow: hidden; }
.contact-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--accent-lime); }

/* ========================================================================= */
/* LIGHTBOX INTERACTIVE (AVEC INJECTION DE TEXTE - CAPTION)                  */
/* ========================================================================= */
.lightbox {
    position: fixed; inset: 0; background: rgba(5, 5, 5, 0.97); z-index: 11000;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
}
.lightbox.active { opacity: 1; visibility: visible; }

.lightbox img, .lightbox video {
    max-width: 85vw; max-height: 80vh; object-fit: contain;
    transform: scale(0.93); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 30px 70px rgba(0,0,0,0.9); border: 1px solid var(--border-color); outline: none;
    z-index: 11001; position: relative;
}
.lightbox.active img, .lightbox.active video { transform: scale(1); }

.lightbox-close {
    position: absolute; top: 40px; right: 40px; color: var(--text-muted); cursor: pointer;
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); z-index: 11003;
}
.lightbox-close:hover { color: var(--accent-lime); transform: rotate(90deg); }

/* Zone de texte extraite dans la Lightbox */
.lightbox-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 60px 30px 30px; text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, transparent 100%);
    color: var(--text-main); opacity: 0; transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.3s; /* Apparaît légèrement après l'image */
    pointer-events: none; z-index: 11002;
}
.lightbox.active .lightbox-caption { opacity: 1; transform: translateY(0); }
.lightbox-caption h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--accent-lime); margin-bottom: 8px; line-height: 1.1; }
.lightbox-caption p { font-size: 14px; font-weight: 300; max-width: 800px; margin: 0 auto; line-height: 1.6; color: rgba(245,245,240,0.9); }

/* ========================================================================= */
/* RESPONSIVITÉ MOBILE OPTIMALE                                              */
/* ========================================================================= */
@media (max-width: 900px) {
    .sidebar {
        top: auto; bottom: 0; left: 0; width: 100%; height: 70px;
        flex-direction: row; justify-content: space-around; border-right: none;
        border-top: 1px solid var(--border-color); background: rgba(10,10,10,0.95);
        backdrop-filter: blur(10px); z-index: 9999;
    }
    .sidebar-logo { display: none; }
    .nav-link { justify-content: center; padding: 0; gap: 4px; }
    .nav-link span { font-size: 7px; margin-top: 0; display: none; } 
    .nav-link.active::before { top: 0; left: 50%; transform: translateX(-50%); width: 32px; height: 2px; border-radius: 0 0 2px 2px; }
    
    .main-content { margin-left: 0; margin-bottom: 70px; }
    .corner-tl, .corner-br { display: none; }
    section { padding: 60px 20px; }
    .lang-switcher { top: 20px; right: 20px; background: rgba(10,10,10,0.8); padding: 5px 10px; border-radius: 4px; }
    
    .dish-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 10px; }
    
    /* Avant-Garde Mobile Hover override */
    .tech-card { flex-direction: column; align-items: flex-start; gap: 20px; padding: 30px; height: auto; min-height: 200px; }
    .tech-card:hover, .tech-card.mobile-hover { transform: translateY(-4px); }
    .tech-header { flex: auto; border-right: none; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; width: 100%; }
    .tech-body { padding-left: 0; padding-right: 0; }
    .tech-action { flex: auto; justify-content: flex-start; opacity: 0.8; transform: none; margin-top: 10px;}
    .tech-card:hover .tech-action, .tech-card.mobile-hover .tech-action { transform: translateX(5px); }

    .concept-modal-content { padding: 30px 20px; grid-template-columns: 1fr; gap: 30px; height: 85vh; max-width: 100%; border-radius: 0; }
    .concept-modal-close { top: 15px; right: 15px; background: var(--bg-dark); border-radius: 50%; padding: 5px; z-index: 100; }
    .concept-info h3 { font-size: 32px; }
    .concept-media-box > div { grid-template-columns: 1fr !important; }

    /* Lightbox Mobile Override */
    .lightbox img, .lightbox video { max-width: 95vw; max-height: 60vh; margin-bottom: 60px; }
    .lightbox-caption { padding: 40px 20px 20px; }
    .lightbox-caption h3 { font-size: 24px; }
    .lightbox-caption p { font-size: 12px; }

    .desktop-video { display: none !important; }
    .mobile-video { display: block !important; }
    
    #rush { flex-direction: column; justify-content: center; }
    .rush-content { margin-left: 0; max-width: 100%; border-left: none; border-top: 3px solid var(--accent-lime); padding: 30px 20px; text-align: center; }
    .rush-content .hero-title { text-align: center !important; }
    .lime-rule { margin: 1.5rem auto !important; }
    .rush-overlay { background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.8) 100%); }

    .awards-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
}