/* =========================================================
   CONCERT GALA 2026 — RHYTHM OF HOPES
   Skrillex-Inspired Cinematic Dark Theme
   Developed by DewX
   ========================================================= */

/* --- TOKENS -------------------------------------------- */
:root {
    --c-black:  #060608;
    --c-dark:   #0d0d12;
    --c-dark2:  #121218;
    --c-card:   rgba(20, 20, 28, 0.85);
    --c-glass:  rgba(255,255,255,0.04);

    --c-white:  #f4f5fa;
    --c-grey:   #7c8096;
    --c-muted:  #4a4e5e;

    --c-gold:   #d4a017;
    --c-gold2:  #f0c040;
    --c-purple: #6c17d4;
    --c-blue:   #1a6ef5;

    --font-display: 'Bebas Neue', 'Barlow Condensed', sans-serif;
    --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

    --max-w: 1200px;
    --hh: 76px;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in:  cubic-bezier(0.4, 0, 1, 1);
    --trans: all 0.35s var(--ease-out);
}

/* --- RESET --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--c-black);
    color: var(--c-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* --- GLOBAL TYPOGRAPHY -------------------------------- */
.display-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.display-heading em { font-style: italic; color: var(--c-gold); }
.eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 12px;
}
.body-lg { font-size: 1.1rem; color: var(--c-grey); line-height: 1.7; margin-bottom: 16px; }
.body-md { font-size: 0.95rem; color: var(--c-grey); line-height: 1.65; }

/* --- BUTTONS ------------------------------------------ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--c-gold);
    color: #000;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 3px;
    transition: var(--trans);
}
.btn-primary:hover { background: var(--c-gold2); transform: translateY(-2px); }
.btn-ghost {
    display: inline-flex; align-items: center;
    background: transparent;
    color: var(--c-white);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 26px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 3px;
    transition: var(--trans);
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: 0.78rem; }
.mt-auto { margin-top: auto; }

/* --- SECTION DEFAULTS --------------------------------- */
.section { padding: 100px 0; }
.section-header { margin-bottom: 56px; }

/* --- SCROLL REVEAL ------------------------------------ */
.scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.scroll-reveal.revealed { opacity: 1; transform: none; }

/* ========================================================
   HEADER / NAV
   ======================================================== */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: var(--hh);
    z-index: 900;
    display: flex; align-items: center;
    transition: var(--trans);
}
.site-header.scrolled {
    background: rgba(6,6,8,0.92);
    backdrop-filter: blur(16px);
}
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--c-purple), var(--c-gold), var(--c-blue), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.4s;
    animation: borderFlow 4s linear infinite;
}
.site-header.scrolled::after { opacity: 1; }

@keyframes borderFlow {
    0% { background-position: 100% 0; }
    100% { background-position: -100% 0; }
}
.nav-inner {
    width: 100%; max-width: var(--max-w);
    margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; gap: 32px;
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    display: flex; gap: 8px; align-items: center;
    flex-shrink: 0;
}
.nav-logo .accent { color: var(--c-gold); }

.nav-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    margin-right: 8px;
    animation: logoSpin 10s linear infinite;
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex; align-items: center; gap: 32px;
    margin: 0 auto;
}
.nav-item {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    position: relative;
    transition: color 0.2s;
}
.nav-item::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--c-gold);
    transition: width 0.3s var(--ease-out);
}
.nav-item:hover { color: #fff; }
.nav-item:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-cta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    background: var(--c-gold);
    padding: 9px 20px;
    border-radius: 30px;
    transition: var(--trans);
}
.nav-cta:hover { background: var(--c-gold2); transform: translateY(-1px); }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    width: 22px; height: 2px;
    background: var(--c-white);
    border-radius: 2px;
    transition: var(--trans);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 85vw);
    height: 100vh;
    background: var(--c-dark);
    z-index: 1000;
    display: flex; flex-direction: column;
    padding: 80px 32px 40px;
    gap: 24px;
    transition: right 0.45s var(--ease-out);
    border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-drawer.open { right: 0; }
.drawer-tickets-btn {
    margin-top: 24px;
}
.drawer-close {
    position: absolute; top: 28px; right: 28px;
    color: var(--c-grey); font-size: 1.2rem;
}
.drawer-nav { display: flex; flex-direction: column; gap: 20px; }
.drawer-nav a {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.drawer-nav a:hover { color: var(--c-gold); }

.drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
    display: none;
    backdrop-filter: blur(4px);
}
.drawer-overlay.open { display: block; }

/* ========================================================
   HERO
   ======================================================== */
.hero {
    position: relative;
    width: 100%; height: 100vh; min-height: 650px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    overflow: hidden;
    padding-top: var(--hh);
}

/* Background */
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
}
.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-tint {
    position: absolute; inset: 0;
    background:
        linear-gradient(to bottom, rgba(6,6,8,0.55) 0%, rgba(6,6,8,0.3) 40%, rgba(6,6,8,0.6) 70%, rgba(6,6,8,0.98) 100%);
}

/* DJ Concert Lighting Effects */
.stage-lights.dj-mode {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Strobe */
.strobe-overlay {
    position: absolute;
    inset: 0;
    background: white;
    opacity: 0;
    animation: strobeFlash 4s infinite;
}

@keyframes strobeFlash {
    0%, 4%, 8%, 100% { opacity: 0; }
    2%, 6% { opacity: 0.7; }
}

/* Smoke Overlay */
.smoke-overlay {
    position: absolute;
    inset: -50%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.15;
    animation: smokeDrift 30s linear infinite;
    mix-blend-mode: overlay;
}

@keyframes smokeDrift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-2%, 5%) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Intense Fast Lasers */
.laser-beam {
    position: absolute;
    bottom: -10%;
    width: 60px; height: 150%;
    transform-origin: bottom center;
    filter: blur(4px);
    opacity: 0.7;
}

.laser-1 { left: 10%; background: linear-gradient(to top, rgba(255, 0, 255, 0.4), transparent); animation: djLaser1 1.2s ease-in-out infinite alternate; }
.laser-2 { left: 30%; background: linear-gradient(to top, rgba(0, 255, 255, 0.4), transparent); animation: djLaser2 0.8s ease-in-out infinite alternate 0.3s; }
.laser-3 { left: 50%; margin-left: -30px; background: linear-gradient(to top, rgba(255, 255, 0, 0.4), transparent); animation: djLaser3 1.5s ease-in-out infinite alternate; }
.laser-4 { right: 30%; background: linear-gradient(to top, rgba(255, 0, 255, 0.4), transparent); animation: djLaser4 0.9s ease-in-out infinite alternate 0.2s; }
.laser-5 { right: 10%; background: linear-gradient(to top, rgba(0, 255, 255, 0.4), transparent); animation: djLaser5 1.4s ease-in-out infinite alternate 0.5s; }

@keyframes djLaser1 { 0% { transform: rotate(10deg) scaleX(0.5); } 100% { transform: rotate(50deg) scaleX(1.5); } }
@keyframes djLaser2 { 0% { transform: rotate(-20deg) scaleX(1.5); } 100% { transform: rotate(30deg) scaleX(0.5); } }
@keyframes djLaser3 { 0% { transform: rotate(-40deg) scaleX(0.8); } 100% { transform: rotate(40deg) scaleX(2); } }
@keyframes djLaser4 { 0% { transform: rotate(-30deg) scaleX(1.5); } 100% { transform: rotate(20deg) scaleX(0.5); } }
@keyframes djLaser5 { 0% { transform: rotate(-50deg) scaleX(0.5); } 100% { transform: rotate(-10deg) scaleX(1.5); } }

/* Intense Ambient Glow */
.dj-ambient-glow {
    position: absolute;
    bottom: -30%; left: 50%;
    transform: translateX(-50%);
    width: 100%; height: 80%;
    background: radial-gradient(ellipse at bottom, rgba(108,23,212,0.6) 0%, rgba(26,110,245,0.3) 40%, transparent 70%);
    filter: blur(50px);
    animation: djGlowPulse 2s ease-in-out infinite alternate;
}

@keyframes djGlowPulse {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); filter: hue-rotate(0deg) blur(50px); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.1); filter: hue-rotate(45deg) blur(50px); }
}

/* Floating Particles Container */
.particles-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

/* Base style for JS injected particles */
.dust-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px 2px rgba(255,255,255,0.6);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(10vh) scale(0.5); opacity: 0; }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Sidebar Label */
.hero-sidebar {
    position: absolute;
    left: 28px; top: 50%;
    transform: translateY(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    z-index: 10;
}
.sidebar-label {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.sidebar-line {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Center Content */
.hero-center {
    position: relative; z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    padding: 0 24px;
    width: 100%;
    /* Ensure all children fit within the hero height */
    max-height: calc(100vh - var(--hh) - 60px);
    justify-content: center;
    gap: 0;
    transform: translateY(-50px);
}

.hero-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    margin-bottom: 32px; /* Increased to push tag upwards */
    animation: fadeUp 1s var(--ease-out) 0.2s both;
}

/* ── GIANT CUTOUT TITLE ── */
.hero-giant-title {
    width: 100%;
    line-height: 0.85;
    margin-bottom: 16px;
    animation: fadeUp 1s var(--ease-out) 0.35s both;
}

.giant-line {
    display: block;
    font-family: var(--font-display);
    /* Shrunk max-size slightly since CONCERT GALA is now 12 chars wide */
    font-size: clamp(2.5rem, 8vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    position: relative;

    /* Animated Multi-color DJ Gradient Setup */
    background: linear-gradient(
        90deg, 
        rgba(255,255,255,1) 0%, 
        rgba(0,255,255,1) 25%, 
        rgba(255,0,255,1) 50%, 
        rgba(255,215,0,1) 75%, 
        rgba(255,255,255,1) 100%
    );
    background-size: 400% auto;
    color: #fff; /* fallback */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Mix in the fade up with the infinite color flow */
    animation: textGradientFlow 8s linear infinite;
}

@keyframes textGradientFlow {
    0%   { background-position: 0% center; }
    100% { background-position: 400% center; }
}

/* First line is most opaque (bold presence) */
.line-1 {
    opacity: 1;
    text-shadow: 0 0 80px rgba(255,0,255,0.4);
    animation: fadeUp 1s var(--ease-out) 0.35s both, textGradientFlow 8s linear infinite;
}

/* Second line — glowing outline-like */
.line-2 {
    opacity: 0.45;
    letter-spacing: 0.05em;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    animation: fadeUp 1s var(--ease-out) 0.4s both, textGradientFlow 8s linear infinite 1s;
}

/* "Rhythm of Hopes" subtitle folded into line-2 area */
.hero-subtitle-inline {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    letter-spacing: 0.4em;
    color: var(--c-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    animation: fadeUp 1s var(--ease-out) 0.5s both;
}

.hero-next-show {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    animation: fadeUp 1s var(--ease-out) 0.5s both;
    flex-wrap: wrap;
    justify-content: center;
}
.show-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-grey);
}
.show-date {
    font-family: var(--font-display);
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    letter-spacing: 0.06em;
    color: var(--c-gold2);
    text-transform: uppercase;
}

/* ── HERO INLINE COUNTDOWN ── */
.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    animation: fadeUp 1s var(--ease-out) 0.55s both;

    /* Glassmorphism band */
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px 32px;
    width: fit-content;
    max-width: 100%;

    /* Subtle gold glow border */
    box-shadow:
        0 0 0 1px rgba(212, 160, 23, 0.12),
        0 8px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hcd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    position: relative;
}

/* Glowing card behind each number */
.hcd-block::before {
    content: '';
    position: absolute;
    inset: -6px -4px;
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 10px;
    z-index: -1;
}

.hcd-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    color: var(--c-white);
    letter-spacing: 0.04em;
    text-shadow: 0 0 24px rgba(212, 160, 23, 0.25);

    /* Flip animation on change */
    transition: opacity 0.15s;
}

.hcd-num.flip {
    animation: numFlip 0.25s ease-in-out;
}

@keyframes numFlip {
    0%   { opacity: 1; transform: translateY(0); }
    40%  { opacity: 0; transform: translateY(-6px); }
    60%  { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hcd-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-top: 6px;
}

.hcd-colon {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--c-gold);
    line-height: 1;
    align-self: flex-start;
    padding-top: 2px;
    animation: colonBlink 1s step-end infinite;
    opacity: 0.8;
}

@keyframes colonBlink {
    0%, 100% { opacity: 0.8; }
    50%       { opacity: 0.2; }
}

/* ── Responsive: tablet ── */
@media (max-width: 768px) {
    .hero-countdown {
        gap: 8px;
        padding: 16px 20px;
        border-radius: 12px;
    }
    .hcd-block { min-width: 56px; }
    .hcd-num   { font-size: clamp(2rem, 10vw, 2.8rem); }
    .hcd-colon { font-size: clamp(1.6rem, 8vw, 2.4rem); }
}

/* ── Responsive: mobile ── */
@media (max-width: 480px) {
    .hero-countdown {
        gap: 6px;
        padding: 14px 16px;
        border-radius: 10px;
        width: calc(100% - 32px);
    }
    .hcd-block { min-width: 0; flex: 1; }
    .hcd-num   { font-size: clamp(1.8rem, 12vw, 2.4rem); }
    .hcd-label { font-size: 0.55rem; letter-spacing: 0.15em; }
    .hcd-colon { font-size: 1.6rem; }
}

.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    animation: fadeUp 1s var(--ease-out) 0.65s both;
}

/* Ticker Strip */
.hero-ticker-wrap {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    z-index: 10;
    background: rgba(6,6,8,0.75);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}
.ticker-track {
    display: inline-flex;
    gap: 24px;
    animation: ticker 28s linear infinite;
}
.tick-item {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.tick-sep {
    color: var(--c-gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}
@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Scroll Cue */
.scroll-cue {
    position: absolute; bottom: 56px; left: 50%;
    transform: translateX(-50%);
    z-index: 10; animation: fadeUp 1s var(--ease-out) 1s both;
}
.scroll-mouse {
    width: 24px; height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px; position: relative;
}
.scroll-wheel {
    width: 4px; height: 7px;
    background: var(--c-gold);
    border-radius: 2px;
    position: absolute; top: 7px; left: 50%;
    transform: translateX(-50%);
    animation: scrollBob 1.8s infinite;
}
@keyframes scrollBob {
    0%,100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

/* ── Animation ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ========================================================
   HERO INLINE COUNTDOWN
   ======================================================== */

/* ── Wrapper ── */
.hero-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    animation: fadeUp 1s var(--ease-out) 0.55s both;

    /* Glassmorphism pill */
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px 36px;
    width: fit-content;
    max-width: 92%;
    box-shadow:
        0 0 0 1px rgba(212, 160, 23, 0.14),
        0 12px 48px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* ── Each time block ── */
.hcd-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
    position: relative;
    padding: 8px 4px;
}

/* Gold-tinted card behind each number */
.hcd-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(212, 160, 23, 0.05);
    border: 1px solid rgba(212, 160, 23, 0.14);
    border-radius: 10px;
    z-index: 0;
}

/* ── Number ── */
.hcd-num {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
    color: var(--c-white);
    letter-spacing: 0.04em;
    text-shadow: 0 0 28px rgba(212, 160, 23, 0.3);
}

/* Flip animation when digit changes */
.hcd-num.flip {
    animation: numFlip 0.28s ease-in-out;
}

@keyframes numFlip {
    0%   { opacity: 1;  transform: translateY(0); }
    40%  { opacity: 0;  transform: translateY(-8px); }
    60%  { opacity: 0;  transform: translateY(8px); }
    100% { opacity: 1;  transform: translateY(0); }
}

/* ── Label below number ── */
.hcd-label {
    position: relative;
    z-index: 1;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-top: 7px;
}

/* ── Colon separator ── */
.hcd-colon {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--c-gold);
    line-height: 1;
    align-self: flex-start;
    padding-top: 10px;
    animation: colonBlink 1s step-end infinite;
}

@keyframes colonBlink {
    0%, 100% { opacity: 0.9; }
    50%       { opacity: 0.2; }
}

/* ── Responsive: Tablet (≤ 768px) ── */
@media (max-width: 768px) {
    .hero-countdown {
        gap: 8px;
        padding: 16px 20px;
        border-radius: 12px;
        max-width: 96%;
    }
    .hcd-block  { min-width: 56px; padding: 6px 2px; }
    .hcd-num    { font-size: clamp(1.9rem, 10vw, 2.6rem); }
    .hcd-colon  { font-size: clamp(1.5rem, 8vw, 2.2rem); padding-top: 8px; }
    .hcd-label  { font-size: 0.55rem; }
}

/* ── Responsive: Mobile (≤ 480px) ── */
@media (max-width: 480px) {
    .hero-countdown {
        gap: 4px;
        padding: 14px 10px;
        border-radius: 10px;
        width: calc(100% - 24px);
        max-width: unset;
    }
    .hcd-block  { min-width: 0; flex: 1; padding: 6px 2px; }
    .hcd-num    { font-size: clamp(1.6rem, 14vw, 2.2rem); }
    .hcd-colon  { font-size: 1.5rem; padding-top: 6px; }
    .hcd-label  { font-size: 0.5rem; letter-spacing: 0.14em; }
}

/* ========================================================
   ABOUT SECTION
   ======================================================== */
.about-section { background: var(--c-dark); }

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-left { display: flex; flex-direction: column; gap: 18px; }

.charity-badge {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(212,160,23,0.07);
    border: 1px solid rgba(212,160,23,0.2);
    padding: 20px;
    border-radius: 8px;
    margin-top: 8px;
}
.badge-icon { font-size: 1.3rem; color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.badge-text { display: flex; flex-direction: column; gap: 4px; }
.badge-text strong { font-size: 0.9rem; color: var(--c-white); }
.badge-text span { font-size: 0.85rem; color: var(--c-grey); }

.stats-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.stat-tile {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: var(--trans);
}
.stat-tile:hover {
    border-color: rgba(212,160,23,0.3);
    transform: translateY(-4px);
}
.accent-tile {
    background: rgba(212,160,23,0.08);
    border-color: rgba(212,160,23,0.25);
}
.stat-val {
    font-family: var(--font-display);
    font-size: 3rem; line-height: 1;
    color: var(--c-white);
    margin-bottom: 8px;
}
.accent-tile .stat-val { color: var(--c-gold); }
.stat-lbl {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--c-grey);
}

/* ========================================================
   LINE UP SECTION
   ======================================================== */
.lineup-section { background: var(--c-black); }

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

.artist-card {
    border-radius: 8px;
    overflow: hidden;
    background: var(--c-dark2);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--trans);
    cursor: pointer;
}
.artist-card:hover { transform: translateY(-6px); border-color: rgba(212,160,23,0.3); }

.card-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.card-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
    filter: grayscale(30%) brightness(0.85);
}
.artist-card:hover .card-img { transform: scale(1.06); filter: none; }
.card-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,13,18,0.98) 0%, transparent 60%);
    z-index: 1;
}

.card-body {
    padding: 20px;
    position: relative;
    z-index: 2;
}
.card-tag {
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 6px;
}
.card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    color: var(--c-white);
    margin-bottom: 4px;
}
.card-sub { font-size: 0.82rem; color: var(--c-grey); }

.special-guest-card { border-color: rgba(212,160,23,0.2); }
.tbc-pill {
    position: absolute;
    top: 14px; right: 14px; z-index: 10;
    background: var(--c-gold);
    color: #000;
    font-size: 0.65rem; font-weight: 800;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 3px;
}

/* ========================================================
   SCHEDULE SECTION
   ======================================================== */
.schedule-section { background: var(--c-dark); }

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
}
.schedule-grid::before {
    content: '';
    position: absolute; left: 116px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, var(--c-gold) 0%, var(--c-purple) 50%, var(--c-gold) 100%);
    opacity: 0.2;
}

.sched-item {
    display: grid;
    grid-template-columns: 90px 28px 1fr;
    gap: 0 24px;
    align-items: start;
    padding: 20px 0;
    transition: var(--trans);
}
.sched-item:hover .sched-info { transform: translateX(4px); }

.sched-time {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--c-gold);
    text-align: right;
    padding-top: 3px;
}

.sched-dot {
    width: 12px; height: 12px;
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    background: var(--c-dark);
    margin-top: 4px;
    position: relative; z-index: 1;
    justify-self: center;
}
.dot-glow {
    border-color: var(--c-gold2);
    box-shadow: 0 0 12px var(--c-gold);
    background: var(--c-gold);
}

.sched-info { transition: transform 0.3s var(--ease-out); }
.sched-info h4 {
    font-family: var(--font-body);
    font-size: 1rem; font-weight: 700;
    color: var(--c-white);
    margin-bottom: 4px;
}
.sched-info p { font-size: 0.82rem; color: var(--c-grey); }

.highlight-item .sched-info h4 { color: var(--c-gold2); }

/* ========================================================
   CHARITY SECTION
   ======================================================== */
.charity-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.charity-bg-img {
    position: absolute; inset: 0; z-index: 0;
}
.charity-photo {
    width: 100%; height: 100%; object-fit: cover;
    filter: saturate(0.7) brightness(0.5);
}
.charity-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6,6,8,0.95) 0%, rgba(108,23,212,0.35) 100%);
}

.charity-content {
    position: relative; z-index: 10;
    max-width: 680px;
    display: flex; flex-direction: column; gap: 24px;
}

.eyebrow-light { color: var(--c-gold2); }
.light-heading { color: var(--c-white); }
.light-text { color: rgba(255,255,255,0.65); }

.progress-wrap {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 8px;
}
.progress-top { display: flex; justify-content: space-between; margin-bottom: 10px; }
.prog-lbl {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.prog-pct {
    font-family: var(--font-display);
    font-size: 1.3rem; color: var(--c-gold);
}
.prog-bar-bg {
    width: 100%; height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 5px; overflow: hidden;
}
.prog-bar-fill {
    height: 100%; border-radius: 5px;
    background: linear-gradient(90deg, var(--c-purple), var(--c-gold));
    box-shadow: 0 0 12px rgba(212,160,23,0.4);
    transition: width 1.8s var(--ease-out);
}
.progress-bottom {
    display: flex; justify-content: space-between;
    margin-top: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.35);
}

.charity-stats-row {
    display: flex; gap: 24px; flex-wrap: wrap;
}
.charity-stat {
    display: flex; flex-direction: column; gap: 4px;
}
.cs-val {
    font-family: var(--font-display);
    font-size: 1.8rem; color: var(--c-white);
}
.cs-lbl {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ========================================================
   GALLERY SECTION
   ======================================================== */
.gallery-section { background: var(--c-black); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}
.g-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.05);
}
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out), filter 0.4s;
    filter: brightness(0.85);
}
.g-item:hover img { transform: scale(1.05); filter: brightness(1); }
.g-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.g-overlay span {
    font-size: 2rem; color: transparent;
    transition: all 0.3s;
    transform: scale(0.6);
}
.g-item:hover .g-overlay { background: rgba(212,160,23,0.15); }
.g-item:hover .g-overlay span { color: rgba(255,255,255,0.8); transform: scale(1); }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(6,6,8,0.97);
    align-items: center; justify-content: center;
    animation: fadeIn 0.25s;
}
.lightbox.open { display: flex; }
.lb-img-wrap { max-width: 85vw; max-height: 85vh; }
.lb-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lb-close { position: absolute; top: 24px; right: 28px; color: #fff; font-size: 1.5rem; z-index: 10; transition: color 0.2s; }
.lb-close:hover { color: var(--c-gold); }
.lb-prev, .lb-next {
    position: absolute; top: 50%; transform: translateY(-50%);
    color: rgba(255,255,255,0.6); font-size: 2.5rem;
    transition: color 0.2s; z-index: 10;
}
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { color: var(--c-gold); }

/* ========================================================
   TICKETS SECTION
   ======================================================== */
.ticket-section { background: var(--c-dark); }

.ticket-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.ticket-left { display: flex; flex-direction: column; gap: 20px; }

.coming-soon-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(212,160,23,0.08);
    border: 1px solid rgba(212,160,23,0.25);
    padding: 10px 18px; border-radius: 4px;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--c-gold); width: fit-content;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--c-gold); border-radius: 50%;
    animation: blink 1.6s infinite;
}
@keyframes blink {
    0%,100% { opacity: 1; } 50% { opacity: 0.3; }
}

.ticket-details { display: flex; flex-direction: column; gap: 12px; }
.td-row {
    display: flex; align-items: center; gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
}
.td-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--c-gold); min-width: 60px;
}

/* Waitlist Card */
.waitlist-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 10px;
}
.waitlist-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem; letter-spacing: 0.05em;
    margin-bottom: 8px;
}
.waitlist-card p { font-size: 0.85rem; color: var(--c-grey); margin-bottom: 28px; }

.wl-form { display: flex; flex-direction: column; gap: 16px; }
.field-wrap { display: flex; flex-direction: column; gap: 6px; }
.field-wrap label {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--c-grey);
}
.field-wrap input,
.field-wrap select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    padding: 12px 14px;
    color: var(--c-white);
    font-family: inherit;
    font-size: 0.92rem;
    transition: border-color 0.2s;
}
.field-wrap input:focus,
.field-wrap select:focus {
    outline: none;
    border-color: var(--c-gold);
}
.field-wrap select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4a017'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 22px;
    cursor: pointer;
}
.field-wrap select option { background: var(--c-dark); }

.wl-success {
    display: none;
    flex-direction: column; align-items: center;
    text-align: center; padding: 24px 0;
    animation: fadeIn 0.4s;
}
.success-icon {
    width: 56px; height: 56px;
    background: rgba(212,160,23,0.15);
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--c-gold);
    margin: 0 auto 16px;
}
.wl-success h4 { font-size: 1.2rem; margin-bottom: 8px; }
.wl-success p { font-size: 0.85rem; color: var(--c-grey); }

/* ========================================================
   FAQ SECTION
   ======================================================== */
.faq-section { background: var(--c-black); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(212,160,23,0.25); }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 22px 26px;
    font-size: 1rem; font-weight: 600;
    color: var(--c-white); text-align: left;
    gap: 16px;
}
.faq-arrow {
    font-size: 1.2rem; color: var(--c-gold);
    transition: transform 0.35s var(--ease-out);
    flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.faq-a p { padding: 0 26px 22px; color: var(--c-grey); font-size: 0.9rem; line-height: 1.65; }

/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-section { background: var(--c-dark); }

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

.contact-info { display: flex; flex-direction: column; gap: 32px; }
.ci-block { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
    width: 42px; height: 42px;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.ci-block h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 4px; }
.ci-block p, .ci-block a { font-size: 0.9rem; color: var(--c-grey); transition: color 0.2s; }
.ci-block a:hover { color: var(--c-white); }

.social-row { display: flex; gap: 12px; }
.soc-btn {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: var(--trans);
}
.soc-btn svg { width: 16px; height: 16px; fill: var(--c-grey); transition: fill 0.2s; }
.soc-btn:hover { border-color: var(--c-gold); transform: translateY(-3px); }
.soc-btn:hover svg { fill: var(--c-gold); }

/* Map Visual */
.map-visual {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; overflow: hidden;
}
.map-canvas {
    background: #0c0e14;
    height: 280px; position: relative; overflow: hidden;
}
.map-road {
    position: absolute;
    background: rgba(255,255,255,0.04);
}
.r-v1 { width: 14px; height: 100%; left: 28%; transform: rotate(12deg); }
.r-v2 { width: 18px; height: 100%; left: 66%; transform: rotate(-8deg); }
.r-h1 { height: 14px; width: 120%; top: 36%; left: -10%; transform: rotate(-4deg); }
.r-h2 { height: 10px; width: 120%; top: 72%; left: -10%; transform: rotate(6deg); }

.map-place {
    position: absolute;
    font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.1);
    padding: 5px 10px; border-radius: 3px;
}
.kl-sentral-lbl { top: 12%; left: 8%; }
.brickfields-lbl { bottom: 14%; right: 12%; }

.map-pin {
    position: absolute; top: 50%; left: 46%;
    transform: translate(-50%, -50%);
    z-index: 10; cursor: pointer;
}
.pin-ring {
    width: 40px; height: 40px;
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    position: absolute; top: -20px; left: -20px;
    animation: pinPulse 2s infinite;
}
@keyframes pinPulse {
    0%,100% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.2; }
}
.pin-core {
    width: 10px; height: 10px;
    background: var(--c-white);
    border: 2px solid var(--c-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-gold);
}
.pin-label {
    position: absolute; bottom: 18px; left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid var(--c-gold);
    color: #fff;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.05em; text-align: center;
    white-space: nowrap;
    padding: 5px 10px; border-radius: 3px;
    pointer-events: none;
}

.map-footer {
    padding: 20px;
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid rgba(255,255,255,0.06);
    gap: 16px;
    flex-wrap: wrap;
}
.map-footer span { font-size: 0.8rem; color: var(--c-grey); }

/* ========================================================
   FOOTER
   ======================================================== */
.site-footer { background: var(--c-dark2); border-top: 1px solid rgba(255,255,255,0.06); }

.footer-ticker-wrap {
    overflow: hidden; white-space: nowrap;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-ticker-wrap .ticker-track {
    animation: ticker 20s linear infinite;
}

.footer-main { padding: 56px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem; letter-spacing: 0.05em;
    color: var(--c-white); margin-bottom: 12px;
}
.fg-brand p { font-size: 0.85rem; color: var(--c-grey); max-width: 320px; }

.fg-lbl {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--c-muted); margin-bottom: 6px;
}
.fg-val { font-size: 0.9rem; color: var(--c-grey); }
.fg-dev-link {
    font-size: 1rem; font-weight: 700;
    color: var(--c-gold); transition: color 0.2s;
}
.fg-dev-link:hover { color: var(--c-gold2); text-decoration: underline; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.78rem; color: var(--c-muted);
}
.fb-links { display: flex; gap: 12px; align-items: center; }
.fb-links a:hover { color: var(--c-grey); }
.fb-links span { color: rgba(255,255,255,0.1); }

/* ========================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ======================================================== */
@media (max-width: 1024px) {
    .hero-sidebar {
        display: flex;
        left: 16px;
    }

    .about-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .ticket-layout { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .fg-brand { grid-column: 1 / -1; }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

/* ========================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ======================================================== */
@media (max-width: 768px) {
    :root { --hh: 64px; }
    .section { padding: 72px 0; }

    /* Nav */
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-right { margin-left: auto; }
    .hamburger { display: flex; }
    
    .hero-sidebar {
        left: 8px;
        transform: translateY(-50%) scale(0.72);
        transform-origin: left center;
    }
    
    .hero-center {
        transform: translateY(-65px);
    }

    /* Hero */
    .giant-line {
        /* On tablet: 2 lines × ~4rem = ~160px — comfortable */
        font-size: clamp(2rem, 10vw, 4.5rem);
    }
    .hero-next-show { flex-wrap: wrap; gap: 6px; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 12px; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { flex: 1 1 140px; justify-content: center; }

    /* Schedule */
    .schedule-grid::before { left: 88px; }
    .sched-item { grid-template-columns: 70px 24px 1fr; gap: 0 16px; }
    .sched-time { font-size: 0.82rem; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .g-item.tall { grid-row: span 1; }
    .g-item.wide { grid-column: span 2; }

    /* Waitlist */
    .waitlist-card { padding: 24px 20px; }

    /* Countdown */
    .cd-num { font-size: 2.2rem; }

    /* Contact layout */
    .contact-layout { gap: 40px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}

/* ========================================================
   RESPONSIVE — SMALL (≤ 480px)
   ======================================================== */
@media (max-width: 480px) {
    /* On small phones: 2 lines */
    .giant-line { font-size: clamp(1.8rem, 12vw, 3.2rem); }
    .display-heading { font-size: 2rem; }
    
    .hero-sidebar {
        left: 4px;
        transform: translateY(-50%) scale(0.62);
    }

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

    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .g-item.wide { grid-column: span 1; }

    .charity-stats-row { flex-direction: column; }

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