/* 
  ═══════════════════════════════════════════════════════
  LUX RESTAURANT — PREMIUM DESIGN SYSTEM v2.0
  ═══════════════════════════════════════════════════════
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── COLOR PALETTE ── */
:root {
    --bg-primary: #faf8f5;
    --bg-secondary: #f0ebe4;
    --bg-dark: #1a1510;
    --text-primary: #1a1510;
    --text-secondary: #5c5347;
    --text-light: #8a8077;
    --accent: #b8860b;
    --accent-light: #d4a843;
    --accent-glow: rgba(184, 134, 11, 0.35);
    --accent-soft: rgba(184, 134, 11, 0.08);
    --white: #ffffff;
    --glass-bg: rgba(250, 248, 245, 0.75);
    --glass-border: rgba(184, 134, 11, 0.15);
    --shadow-sm: 0 2px 15px rgba(26, 21, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 21, 16, 0.1);
    --shadow-lg: 0 15px 50px rgba(26, 21, 16, 0.12);
    --shadow-gold: 0 8px 30px rgba(184, 134, 11, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --bg-primary: #0d0b09;
    --bg-secondary: #1a1510;
    --text-primary: #f0ebe4;
    --text-secondary: #b8a99a;
    --text-light: #8a7a6a;
    --glass-bg: rgba(26, 21, 16, 0.8);
    --glass-border: rgba(184, 134, 11, 0.2);
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    transition: background-color 0.6s ease, color 0.6s ease;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

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

ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ── GLASS UTILITY ── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* ── PRELOADER ── */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    gap: 1.5rem;
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    letter-spacing: clamp(6px, 2vw, 15px);
    color: var(--accent);
    animation: loader-pulse 1.5s infinite alternate;
}

.loader-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    animation: loader-expand 1.5s infinite alternate;
}

@keyframes loader-pulse { from { opacity: 0.3; } to { opacity: 1; } }
@keyframes loader-expand { from { width: 30px; } to { width: 80px; } }

/* ── NAVIGATION ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.8rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 1rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links li a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 6px;
    color: var(--text-primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

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

.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
}

/* ── HERO SECTION ── */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.55) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 11, 9, 0.3) 0%,
        rgba(13, 11, 9, 0.15) 40%,
        rgba(13, 11, 9, 0.6) 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 950px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 span {
    color: var(--accent-light);
    font-style: italic;
}

.hero-desc {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    color: rgba(255,255,255,0.85);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
}

.hero-scroll .scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
}

/* ── BUTTONS ── */
.btn {
    padding: 1rem 2.8rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-light {
    background: var(--white);
    color: var(--bg-dark);
    border: none;
}

.btn-light:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--bg-dark);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-gold {
    background: var(--accent);
    color: var(--white);
    border: none;
}

.btn-gold:hover {
    background: var(--accent-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--bg-dark);
    color: var(--white);
    border: none;
}

.btn-dark:hover {
    background: var(--accent);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

/* ── SECTIONS ── */
section {
    padding: clamp(60px, 10vw, 120px) 5%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 6rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1.5rem;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 1px;
    background: var(--accent);
}
.section-label::before { left: -15px; }
.section-label::after { right: -15px; }

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-title span {
    color: var(--accent);
    font-style: italic;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ── CARD GRID ── */
.card-grid {
    display: grid;
    gap: 2.5rem;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── GLASS CARDS ── */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.glass-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-size: 1.3rem;
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ── STATS BAR ── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 4rem 5%;
    background: var(--bg-dark);
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent-light);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ── SPLIT SECTION ── */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.split-text h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.split-text h2 span {
    color: var(--accent);
    font-style: italic;
}

.split-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.split-text .btn {
    margin-top: 1rem;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 3rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}

.testimonial-name {
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* ── MENU ITEMS ── */
.menu-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    height: 280px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}

.menu-card-body {
    padding: 2rem;
}

.menu-card-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.menu-card-name {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.menu-card-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.menu-card-tag {
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--accent-soft);
    color: var(--accent);
    font-weight: 600;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    min-height: 300px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,11,9,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* ── CONTACT FORM ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

textarea.form-control {
    min-height: 160px;
    resize: none;
}

.contact-info-card {
    background: var(--bg-dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 3rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(184, 134, 11, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-info-item p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* ── CTA BANNER ── */
.cta-banner {
    background: var(--bg-dark);
    padding: 100px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.3;
}

.cta-banner h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-banner h2 span {
    color: var(--accent-light);
    font-style: italic;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .btn { position: relative; }

/* ── TIMELINE ── */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent), var(--glass-border));
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.35rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-soft);
}

.timeline-year {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.timeline-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ── FOOTER ── */
footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-col h4 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col li a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ── DIVIDER ── */
.divider {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 2rem 0;
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.8s cubic-bezier(0.85, 0, 0.15, 1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav::before {
    content: 'RAINBOW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    z-index: -1;
    letter-spacing: 2vw;
    pointer-events: none;
}

.mobile-nav .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    padding: 0;
}

.mobile-nav .nav-links li a {
    font-size: 2.5rem;
    color: var(--white);
    letter-spacing: 5px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    opacity: 0.9;
    transition: 0.4s ease;
}

.mobile-nav .nav-links li a:hover {
    color: var(--accent);
    letter-spacing: 10px;
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--white);
    transition: 0.4s ease;
}

.mobile-close:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: 0.6s ease;
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1200px) {
    .container { max-width: 100%; padding: 0 6%; }
}

@media (max-width: 1024px) {
    .card-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .card-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .split { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
    .split-text .divider { margin: 2rem auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 768px) {
    nav { padding: 1.2rem 6%; }
    nav.scrolled { padding: 0.8rem 6%; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; font-size: 1.4rem; color: var(--accent); }
    
    .hero-content { padding: 0 1rem; }
    .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
    .hero-desc { font-size: 1.05rem; padding: 0 5%; }
    
    .section-title { font-size: 2.8rem; }
    
    .card-grid-2,
    .card-grid-3,
    .card-grid-4 { grid-template-columns: 1fr; gap: 2rem; }

    .gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
    .gallery-item img { min-height: 250px; }

    .stats-bar { grid-template-columns: 1fr 1fr; padding: 4rem 6%; }
    .stat-item h3 { font-size: 2.8rem; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-social { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; }

    .timeline { padding-left: 2.5rem; }
    .timeline-item::before { left: -2.15rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-badge { letter-spacing: 2px; font-size: 0.7rem; }
    .btn { padding: 1rem 2rem; }
    
    .section-title { font-size: 2.2rem; }
    .stats-bar { grid-template-columns: 1fr; gap: 2.5rem; }
}
