/* ============================================
   MAYHEM BALL — Studio-Grade Stylesheet
   ============================================ */

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

:root {
    --bg: #050505;
    --bg-elevated: #0a0a0a;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    --gold: #c8a44e;
    --gold-light: #dfc06e;
    --gold-dim: rgba(200, 164, 78, 0.4);
    --gold-glow: rgba(200, 164, 78, 0.12);
    --gold-border: rgba(200, 164, 78, 0.2);

    --red: #a81e2e;
    --red-light: #c93545;
    --red-deep: #7a1520;
    --red-dim: rgba(168, 30, 46, 0.4);
    --red-glow: rgba(168, 30, 46, 0.12);
    --red-border: rgba(168, 30, 46, 0.25);

    --green: #2d5a3f;
    --green-deep: #1a3d2a;
    --burgundy: #6b1d2a;

    --text: #e0e0e0;
    --text-secondary: #888;
    --text-dim: #555;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
}

html { scroll-behavior: auto; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--red);
    color: #fff;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* ── Splash Screen ── */
.splash {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #020202;
    overflow: hidden;
}
.splash.exiting {
    pointer-events: none;
    clip-path: inset(0 0 0% 0);
}
#splash-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.splash-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.splash-grain::after {
    content: '';
    position: absolute;
    inset: -200%;
    width: 500%;
    height: 500%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.06;
    animation: grain 8s steps(10) infinite;
    mix-blend-mode: overlay;
}
.splash-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
}
.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}
.splash-line {
    line-height: 1;
}
.splash-line span {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: splashFadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.splash-line-1 span {
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    padding-bottom: 0.8rem;
    animation-delay: 0.6s;
}
.splash-line-2 span {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    background: linear-gradient(
        135deg,
        #c8a44e 0%,
        #f0d68a 25%,
        #c8a44e 50%,
        #a07c30 75%,
        #dfc06e 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 60px rgba(200, 164, 78, 0.15));
    animation: splashFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               shimmerGold 3s ease-in-out 2s infinite;
    animation-delay: 1.2s, 2.5s;
}
.splash-line-3 span {
    font-family: var(--font-display);
    font-size: clamp(5rem, 18vw, 14rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    font-style: italic;
    background: linear-gradient(
        135deg,
        #c8a44e 0%,
        #f0d68a 25%,
        #c8a44e 50%,
        #a07c30 75%,
        #dfc06e 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 60px rgba(200, 164, 78, 0.15));
    animation: splashFadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               shimmerGold 3s ease-in-out 2s infinite;
    animation-delay: 1.8s, 3s;
}
@keyframes splashFadeUp {
    0% { opacity: 0; transform: translateY(50px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerGold {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.splash-divider {
    margin: 1.5rem auto;
    height: 1px;
    overflow: hidden;
    width: 0;
    animation: splashDividerExpand 1s cubic-bezier(0.16, 1, 0.3, 1) 2.6s forwards;
}
@keyframes splashDividerExpand {
    0% { width: 0; }
    100% { width: 120px; }
}
.splash-divider-inner {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.splash-tagline span {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(0.65rem, 1.5vw, 0.8rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: splashFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 3s forwards;
}
@keyframes splashFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ── Film Grain ── */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
}
.grain::after {
    content: '';
    position: fixed;
    inset: -200%;
    width: 500%;
    height: 500%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    opacity: 0.028;
    animation: grain 8s steps(10) infinite;
}
@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* ── Fade-in initial states (GSAP animates these in) ── */
[data-reveal] { opacity: 0; transform: translateY(40px); }
.nav { opacity: 0; }
.footer-mark, footer p { opacity: 0; transform: translateY(20px); }
.scroll-hint { opacity: 0; }
.hero-cta { opacity: 0; }
.divider { opacity: 0; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
    transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1), border 0.4s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
    padding: 1rem 2.5rem;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.nav-mark {
    display: flex;
    align-items: center;
}
.nav-logo {
    height: 44px;
    width: auto;
    transition: opacity 0.3s ease;
}
.nav-logo:hover {
    opacity: 0.8;
}
.nav.scrolled .nav-logo {
    height: 36px;
}
.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-link {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
    position: relative;
    padding: 0.6rem 1.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--red-border);
    color: var(--red-light);
    overflow: hidden;
    transition: color 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-cta:hover { color: #fff; }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta span, .nav-cta { position: relative; z-index: 1; }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.1);
    filter: brightness(0.3) saturate(0.6);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.85) 70%),
        radial-gradient(ellipse at 20% 80%, rgba(168, 30, 46, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 164, 78, 0.06) 0%, transparent 50%);
}
#particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
}

.hero-logo {
    width: clamp(180px, 30vw, 320px);
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: scale(0.85);
    filter: drop-shadow(0 0 40px rgba(200, 164, 78, 0.15));
}

.badge {
    display: inline-block;
    padding: 0.45rem 2rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-border);
    background: rgba(200, 164, 78, 0.06);
    margin-bottom: 2rem;
    opacity: 0;
}

.hero-title {
    margin-bottom: 1.5rem;
}
.title-mask {
    display: block;
    overflow: hidden;
    line-height: 1;
}
.hero-title-line {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(4rem, 14vw, 10rem);
    font-weight: 300;
    color: var(--gold);
    letter-spacing: -0.02em;
    transform: translateY(110%);
}

.hero-sub {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    opacity: 0;
}

.hero-info {
    margin-bottom: 3rem;
    opacity: 0;
}
.hero-honor {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text);
    margin-bottom: 0.3rem;
}
.hero-date {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-age-badge {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.3rem 1.2rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border-hover);
}

/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    opacity: 0;
}
.cd-item { text-align: center; min-width: 60px; }
.cd-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}
.cd-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 400;
}
.cd-sep {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-dim);
    margin-top: -1rem;
}

/* Hero CTA */
.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    border: none;
    transition: transform 0.15s ease, box-shadow 0.3s ease, background 0.3s ease;
    opacity: 0;
}
.btn-primary:hover {
    background: var(--red-light);
    box-shadow: 0 0 50px rgba(168, 30, 46, 0.3), 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    z-index: 2;
}
.scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 400;
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--red-dim), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Sections ── */
.section {
    padding: 8rem 2rem;
    position: relative;
}

.divider {
    text-align: center;
    margin-bottom: 3rem;
}
.divider span {
    color: var(--red);
    display: inline-block;
    position: relative;
    color: var(--gold-dim);
    font-size: 0.55rem;
    padding: 0 2rem;
}
.divider span::before,
.divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
}
.divider span::before {
    right: 100%;
    background: linear-gradient(to left, var(--gold-dim), transparent);
}
.divider span::after {
    left: 100%;
    background: linear-gradient(to right, var(--gold-dim), transparent);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

/* ── About ── */
.about {
    background: url('bg/about.jpg') center/cover no-repeat fixed;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.7);
    pointer-events: none;
}
.about-text {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.9;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ── Gallery ── */
.gallery {
    padding: 0;
    overflow: hidden;
}
.gallery-track {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-item {
    flex: 0 0 clamp(280px, 35vw, 420px);
    scroll-snap-align: start;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.7) saturate(0.7);
}
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.85) saturate(0.9);
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.6) 0%, transparent 50%);
    pointer-events: none;
}

/* ── Details ── */
.details {
    background: url('bg/details.jpg') center/cover no-repeat fixed;
    position: relative;
}
.details::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.75);
    pointer-events: none;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.detail-card {
    padding: 3rem 2rem;
    text-align: center;
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}
.detail-card:hover {
    background: var(--bg-elevated);
}
.detail-num {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}
.detail-card h3 {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-weight: 500;
}
.detail-card p {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
}

/* ── Video Section ── */
.video-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}
.video-bg {
    position: absolute;
    inset: 0;
}
.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.25) saturate(0.5);
}
.video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.8) 70%),
        linear-gradient(to bottom, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%);
}
.video-content {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem;
}
.video-content .section-heading {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.video-content p {
    font-size: clamp(0.85rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 300;
}

/* ── Tickets ── */
.tickets {
    background: url('bg/tickets.jpg') center/cover no-repeat fixed;
    position: relative;
}
.tickets::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.72);
    pointer-events: none;
}
.ticket-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}
.ticket-card {
    position: relative;
    padding: 2.5rem 1.8rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}
.ticket-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.ticket-tier {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.025);
    line-height: 1;
    pointer-events: none;
}
.ticket-badge-label {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.featured .ticket-badge-label {
    background: rgba(168, 30, 46, 0.15);
    color: var(--red-light);
    border: 1px solid var(--red-border);
}
.vip .ticket-badge-label {
    background: rgba(200, 164, 78, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}
.ticket-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
}
.ticket-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1;
}
.price-dollar {
    font-size: 1.4rem;
    font-weight: 300;
    vertical-align: super;
    margin-right: 2px;
}
.ticket-card ul {
    margin-bottom: 2rem;
}
.ticket-card li {
    padding: 0.6rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 1.2rem;
}
.ticket-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold-dim);
    border-radius: 50%;
}
.ticket-card li:last-child { border-bottom: none; }

.btn-ticket {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--border-hover);
    color: var(--text-secondary);
    background: transparent;
    transition: all 0.3s ease;
}
.btn-ticket:hover {
    border-color: var(--gold-border);
    color: var(--gold);
    background: rgba(200, 164, 78, 0.05);
}

/* Featured card */
.ticket-card.featured {
    border-color: var(--red-border);
}
.ticket-card.featured:hover {
    border-color: rgba(168, 30, 46, 0.5);
    box-shadow: 0 20px 60px rgba(168, 30, 46, 0.15);
}

/* VIP card */
.ticket-card.vip {
    background: rgba(200, 164, 78, 0.03);
    border-color: var(--gold-border);
    box-shadow: 0 0 80px rgba(200, 164, 78, 0.05), inset 0 1px 0 rgba(200, 164, 78, 0.08);
}
.ticket-card.vip:hover {
    border-color: rgba(200, 164, 78, 0.4);
    box-shadow: 0 0 100px rgba(200, 164, 78, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4);
}
.btn-vip {
    border-color: var(--gold-border) !important;
    color: var(--gold) !important;
}
.btn-vip:hover {
    background: var(--gold) !important;
    color: var(--bg) !important;
}

/* ── VIP Booths & Sections ── */
.booths-divider {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 5rem auto 0;
    max-width: 600px;
}
.booths-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-border), transparent);
}
.booths-divider-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--gold);
    white-space: nowrap;
    letter-spacing: 0.1em;
}
.booths-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin: 1rem auto 0;
    max-width: 500px;
}
.booth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 3rem auto 0;
}
.booth-card {
    position: relative;
    padding: 2rem 2rem 1.8rem;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.booth-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.booth-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.booth-tier-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    flex-shrink: 0;
}
.booth-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
}
.booth-guests {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}
.booth-price {
    margin-left: auto;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}
.booth-perks {
    margin-bottom: 1.5rem;
    columns: 1;
}
.booth-perks li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    padding-left: 1.2rem;
    position: relative;
}
.booth-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold-dim);
    border-radius: 50%;
}
.booth-perks li:last-child { border-bottom: none; }
.btn-booth {
    margin-top: 0.5rem;
}
.booth-badge {
    display: inline-block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.8rem;
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(168, 30, 46, 0.15);
    color: var(--red-light);
    border: 1px solid var(--red-border);
}
.booth-badge-gold {
    background: rgba(200, 164, 78, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

/* Featured booth */
.booth-featured {
    border-color: var(--red-border);
}
.booth-featured:hover {
    border-color: rgba(168, 30, 46, 0.4);
    box-shadow: 0 16px 48px rgba(168, 30, 46, 0.1);
}

/* Elite booth */
.booth-elite {
    background: rgba(200, 164, 78, 0.03);
    border-color: var(--gold-border);
    box-shadow: 0 0 60px rgba(200, 164, 78, 0.04), inset 0 1px 0 rgba(200, 164, 78, 0.08);
}
.booth-elite:hover {
    border-color: rgba(200, 164, 78, 0.4);
    box-shadow: 0 0 80px rgba(200, 164, 78, 0.08), 0 16px 48px rgba(0, 0, 0, 0.3);
}
.btn-elite {
    border-color: var(--gold-border) !important;
    color: var(--gold) !important;
    background: rgba(200, 164, 78, 0.06) !important;
}
.btn-elite:hover {
    background: var(--gold) !important;
    color: var(--bg) !important;
}

@media (min-width: 640px) {
    .booth-perks { columns: 2; column-gap: 2rem; }
}
@media (max-width: 768px) {
    .booth-header { flex-wrap: wrap; }
    .booth-price { margin-left: 0; margin-top: 0.5rem; width: 100%; }
    .booth-tier-num { display: none; }
}

/* ── RSVP Section ── */
.rsvp-section {
    background: url('bg/footer.jpg') center/cover no-repeat fixed;
    position: relative;
}
.rsvp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(168, 30, 46, 0.08) 0%, transparent 60%),
        rgba(5, 5, 5, 0.82);
    pointer-events: none;
}
.rsvp-intro {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}
.rsvp-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px) saturate(140%);
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
}
.rsvp-ticket-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    background: rgba(200, 164, 78, 0.06);
    border: 1px solid var(--gold-border);
    margin-bottom: 2rem;
}
.rsvp-ticket-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.rsvp-ticket-info strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 400;
}
.rsvp-ticket-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.rsvp-ticket-change {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    padding: 0.4rem 1rem;
    border: 1px solid var(--border);
    transition: all 0.2s;
}
.rsvp-ticket-change:hover {
    color: var(--text);
    border-color: var(--border-hover);
}
.rsvp-fields {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.rsvp-field label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.rsvp-field input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}
.rsvp-field input::placeholder {
    color: var(--text-dim);
}
.rsvp-field input:focus {
    border-color: var(--gold-border);
    background: rgba(200, 164, 78, 0.03);
}
.rsvp-qty-row {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.rsvp-qty-row label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 500;
}
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    width: fit-content;
}
.qty-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    background: var(--surface);
    transition: background 0.2s;
}
.qty-btn:hover { background: var(--surface-hover); color: var(--text); }
#qty-input {
    width: 50px;
    height: 42px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    -moz-appearance: textfield;
}
#qty-input::-webkit-outer-spin-button,
#qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rsvp-total {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: auto;
}
.rsvp-total span:first-child {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}
.rsvp-total span:last-child {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
}
.btn-rsvp {
    width: 100%;
    margin-top: 2rem;
    opacity: 1;
    position: relative;
}
.rsvp-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 1.2rem;
    font-weight: 300;
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast.show { bottom: 2rem; }
.toast-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    background: var(--bg-elevated);
    border: 1px solid var(--gold-border);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}
.toast-check {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--bg);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50%;
    flex-shrink: 0;
}
.toast-inner strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}
.toast-inner p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.15rem;
}

/* ── Footer ── */
footer {
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    background: url('bg/footer.jpg') center/cover no-repeat fixed;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.8);
    pointer-events: none;
}
.footer-mark {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}
footer .container { position: relative; z-index: 1; }
footer p {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 300;
    margin-bottom: 0.4rem;
}
footer a {
    color: var(--gold);
    transition: color 0.2s;
}
footer a:hover { color: var(--text); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ticket-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .details-grid { grid-template-columns: repeat(2, 1fr); }
    .ticket-grid { grid-template-columns: 1fr; max-width: 400px; }
    .section { padding: 5rem 1.5rem; }
    .nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .rsvp-form-wrapper { padding: 2rem 1.5rem; }
    .rsvp-qty-row { flex-direction: column; align-items: flex-start; }
    .rsvp-total { margin-left: 0; }
    .hero-inner { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .details-grid { grid-template-columns: 1fr; }
    .countdown { gap: 0.3rem; }
    .cd-sep { font-size: 1.5rem; }
}

/* ── Mobile: fixed bg not supported on iOS ── */
@supports (-webkit-touch-callout: none) {
    .about, .details, .tickets, .rsvp-section, footer {
        background-attachment: scroll;
    }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
    .grain::after { animation: none; }
    .splash-grain::after { animation: none; }
    .scroll-line { animation: none; }
}
