/* ================================================
   MARGÓ CAFÉ CLUB — Design System & Styles
   Inspired by 1920s Speakeasy Elegance
   ================================================ */

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

/* --- CSS Custom Properties --- */
:root {
    /* Brand Colors */
    --burgundy: rgb(60, 0, 20);
    --burgundy-light: rgb(90, 15, 35);
    --burgundy-glow: rgba(60, 0, 20, 0.6);
    --forest: rgb(18, 30, 23);
    --forest-light: rgb(30, 50, 38);
    --gold: #C4A265;
    --gold-light: #D4B87A;
    --gold-dim: rgba(196, 162, 101, 0.3);
    --gold-glow: rgba(196, 162, 101, 0.15);
    --cream: #F5F0E8;
    --cream-soft: rgba(245, 240, 232, 0.9);
    --rich-black: #0A0A0A;
    --charcoal: #1A1A1A;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Cormorant Garamond', Garamond, serif;
    --font-accent: 'Cinzel', serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vh, 140px);
    --container-max: 1200px;

    /* Transitions */
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--rich-black);
    color: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--gold-light);
}

::selection {
    background: var(--burgundy);
    color: var(--gold);
}

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

/* --- Grain Overlay (global) --- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

.section-label {
    font-family: var(--font-accent);
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    color: var(--cream);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: var(--cream-soft);
    max-width: 600px;
    font-weight: 300;
}

/* --- Gold Divider --- */
.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem 0;
}

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

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: background var(--transition-smooth), padding var(--transition-smooth);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gold-dim);
}

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

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 40px;
    width: auto;
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav__links a {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-soft);
    position: relative;
    padding-bottom: 4px;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition-smooth);
}

.nav__links a:hover {
    color: var(--gold);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    font-family: var(--font-accent);
    font-size: 0.65rem !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase;
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem;
    transition: all var(--transition-smooth);
}

.nav__cta:hover {
    background: var(--gold);
    color: var(--rich-black) !important;
}

.nav__cta::after {
    display: none !important;
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

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

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.hero__isotipo {
    width: clamp(60px, 8vw, 100px);
    height: auto;
    margin: 0 auto 2rem;
    opacity: 0.9;
    animation: float 6s ease-in-out infinite;
}

.hero__logo {
    margin-bottom: 2rem;
}

.hero__logo-img {
    max-width: clamp(300px, 60vw, 700px);
    /* Logo más grande */
    height: auto;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
}

.hero__subtitle {
    font-family: var(--font-accent);
    font-size: clamp(0.7rem, 1.2vw, 0.9rem);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--cream-soft);
    margin-bottom: 3rem;
}

/* Countdown */
.countdown {
    margin-bottom: 3rem;
}

.countdown__label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-dim);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.countdown__timer {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.countdown__block {
    text-align: center;
}

.countdown__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--cream);
    line-height: 1;
    display: block;
    font-weight: 400;
}

.countdown__unit {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    display: block;
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero__scroll span {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-8px);
    }

    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* ================================================
   CONCEPT SECTION
   ================================================ */
.concept {
    padding: var(--section-pad) 0;
    text-align: center;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--forest) 50%, var(--rich-black) 100%);
    position: relative;
}

.concept__text {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1.15rem, 1.8vw, 1.4rem);
    line-height: 2;
    font-style: italic;
    color: var(--cream);
}

.concept__text em {
    color: var(--gold);
    font-style: normal;
}

.concept__address {
    margin-top: 2.5rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}

/* ================================================
   EXPERIENCE SECTIONS (Cocktails, Gastronomy)
   ================================================ */
.experience {
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.experience__grid--reverse {
    direction: rtl;
}

.experience__grid--reverse>* {
    direction: ltr;
}

.experience__image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.experience__image-wrapper::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--gold-dim);
    z-index: 1;
    pointer-events: none;
}

.experience__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.experience__content {
    padding: 2rem 0;
}

.experience__list {
    list-style: none;
    margin-top: 2rem;
}

.experience__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: var(--cream-soft);
}

.experience__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.5rem;
    top: 0.45em;
}

/* ================================================
   MUSIC / PROGRAMMING SECTION
   ================================================ */
.music {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--burgundy) 40%, var(--burgundy) 60%, var(--rich-black) 100%);
    position: relative;
}

.music__header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.music__showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.music__card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.music__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.music__card:hover img {
    transform: scale(1.08);
}

.music__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
}

.music__card-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-style: italic;
    color: var(--cream);
    margin-bottom: 0.3rem;
}

.music__card-desc {
    font-size: 0.9rem;
    color: var(--gold);
    opacity: 0.8;
}

/* Schedule */
.schedule {
    max-width: 800px;
    margin: 0 auto;
}

.schedule__title {
    text-align: center;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.schedule__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.schedule__item {
    border: 1px solid var(--gold-dim);
    padding: 1.8rem;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    transition: border-color var(--transition-smooth), background var(--transition-smooth);
}

.schedule__item:hover {
    border-color: var(--gold);
    background: rgba(196, 162, 101, 0.05);
}

.schedule__day {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.schedule__desc {
    font-size: 1rem;
    color: var(--cream-soft);
    margin-bottom: 0.5rem;
}

.schedule__time {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.6;
}

/* ================================================
   MEMBERS CLUB SECTION
   ================================================ */
.members {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--rich-black) 0%, var(--forest) 50%, var(--rich-black) 100%);
    position: relative;
}

.members__header {
    text-align: center;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.members__header .section-subtitle {
    margin: 0 auto;
}

/* Tiers */
.tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: clamp(4rem, 6vw, 6rem);
}

.tier {
    border: 1px solid var(--gold-dim);
    padding: 2rem 1.5rem;
    text-align: center;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(10px);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.tier:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: rgba(196, 162, 101, 0.03);
}

.tier:hover::before {
    opacity: 1;
}

.tier__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.tier__tagline {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.tier__benefits {
    list-style: none;
    text-align: left;
}

.tier__benefits li {
    font-size: 0.9rem;
    color: var(--cream-soft);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(196, 162, 101, 0.08);
    position: relative;
    padding-left: 1.2rem;
}

.tier__benefits li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.5rem;
    top: 0.55em;
}

.tier__benefits li:last-child {
    border-bottom: none;
}

/* Registration Form */
.registration {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.registration__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--cream);
    margin-bottom: 0.8rem;
}

.registration__desc {
    font-size: 1.05rem;
    color: var(--cream-soft);
    margin-bottom: 2.5rem;
}

.form {
    text-align: left;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form__group {
    margin-bottom: 1.2rem;
}

.form__label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--gold-dim);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-smooth);
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--gold);
}

.form__input::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

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

.form__select option {
    background: var(--charcoal);
    color: var(--cream);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

.form__checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.form__checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid var(--gold-dim);
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
}

.form__checkbox:checked {
    border-color: var(--gold);
    background: var(--gold);
}

.form__checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--rich-black);
    font-size: 0.7rem;
    font-weight: bold;
}

.form__checkbox-label {
    font-size: 0.85rem;
    color: var(--cream-soft);
    line-height: 1.5;
}

.form__checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
}

.form__submit {
    width: 100%;
    padding: 1rem 2rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--rich-black);
    background: var(--gold);
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition-smooth);
    margin-top: 1rem;
}

.form__submit:hover {
    background: transparent;
    color: var(--gold);
}

.form__submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form__success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
}

.form__success.visible {
    display: block;
}

.form__success-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.form__success-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 1rem;
}

.form__success-text {
    color: var(--cream-soft);
    font-size: 1.05rem;
}

/* ================================================
   COCKTAIL BAR SECTION
   ================================================ */
.bar-hours {
    padding: var(--section-pad) 0;
    text-align: center;
    position: relative;
}

.bar-hours__content {
    max-width: 600px;
    margin: 0 auto;
}

.bar-hours__hours {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--cream);
    margin: 2rem 0 1rem;
}

.bar-hours__note {
    font-size: 1.05rem;
    color: var(--cream-soft);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: clamp(3rem, 5vw, 5rem) 0 2rem;
    border-top: 1px solid var(--gold-dim);
    background: var(--rich-black);
}

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

.footer__logo {
    margin-bottom: 1.5rem;
}

.footer__logo img {
    height: 65px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.footer__desc {
    font-size: 0.95rem;
    color: var(--cream-soft);
    opacity: 0.7;
    max-width: 350px;
    line-height: 1.8;
}

.footer__heading {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer__contact p {
    font-size: 0.95rem;
    color: var(--cream-soft);
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-dim);
    color: var(--gold);
    font-size: 0.8rem;
    transition: all var(--transition-smooth);
}

.footer__social a:hover {
    background: var(--gold);
    color: var(--rich-black);
    border-color: var(--gold);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 162, 101, 0.08);
}

.footer__bottom p {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-soft);
    opacity: 0.4;
}

/* ================================================
   MOBILE OVERLAY MENU
   ================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__links {
    list-style: none;
    text-align: center;
}

.mobile-menu__links li {
    margin-bottom: 1.5rem;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--cream);
    transition: color 0.3s ease;
}

.mobile-menu__links a:hover {
    color: var(--gold);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .tiers {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .nav__hamburger {
        display: flex;
    }

    .experience__grid,
    .experience__grid--reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .music__showcase {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .tiers {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}