/* ============================================================
   The Secret Gathering — Global Stylesheet
   Colours: #000000 (void black), #050505 (bg), #c9a84c (gold),
            #d4be7a (champagne), #8b6914 (deep bronze),
            #e8d5a3 (cream), #0a0804 (panel)
   ============================================================ */

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

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

body {
    background-color: #000000;
    color: #b8a070;
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Candlelight atmospheric glow — very subtle */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse 60% 40% at 50% 15%, rgba(201,168,76,0.04) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 20% 80%, rgba(139,105,20,0.03) 0%, transparent 60%),
        radial-gradient(ellipse 40% 25% at 80% 70%, rgba(180,140,50,0.02) 0%, transparent 55%);
    pointer-events: none;
}

/* Grain / film texture */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23grain)' opacity='0.06'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 400px 400px;
    mix-blend-mode: overlay;
    pointer-events: none;
}

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

a {
    color: #c9a84c;
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: #e8d5a3;
}

ul {
    list-style: none;
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: normal;
    line-height: 1.3;
    color: #c9a84c;
    letter-spacing: 0.05em;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.2rem; }

p {
    color: #a09070;
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

.text-gold    { color: #c9a84c; }
.text-cream   { color: #e8d5a3; }
.text-muted   { color: #6a5a4a; }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.2em; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section--dark {
    background-color: rgba(5,4,2,0.95);
}

.section--panel {
    background-color: rgba(8,6,3,0.9);
}

/* ── Dividers ─────────────────────────────────────────────── */
.divider {
    width: 60px;
    height: 1px;
    background: #c9a84c;
    margin: 20px auto;
}

.divider--left {
    margin-left: 0;
}

.divider--full {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a84c30, transparent);
    margin: 0;
}

.divider--ornament {
    width: 200px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a84c, transparent);
    margin: 30px auto;
    position: relative;
}

.divider--ornament::after {
    content: '\2726';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c9a84c;
    font-size: 0.9rem;
    background: #000000;
    padding: 0 12px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: 'Georgia', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn--gold {
    background-color: #c9a84c;
    color: #0a0a0a;
}

.btn--gold:hover {
    background-color: #e8d5a3;
    color: #0a0a0a;
    box-shadow: 0 0 30px rgba(201,168,76,0.3);
}

.btn--outline {
    background-color: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c;
}

.btn--outline:hover {
    background-color: #c9a84c;
    color: #0a0a0a;
}

.btn--ghost {
    background: transparent;
    color: #c9a84c;
    border: 1px solid #c9a84c33;
}

.btn--ghost:hover {
    border-color: #c9a84c;
    background: rgba(201,168,76,0.08);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.72rem;
}

.btn--lg {
    padding: 18px 48px;
    font-size: 0.85rem;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header__label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8b6914;
    margin-bottom: 12px;
    display: block;
}

.section-header__title {
    font-size: 2.4rem;
    color: #c9a84c;
    margin-bottom: 16px;
}

.section-header__sub {
    color: #7a6a5a;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Header / Navigation ──────────────────────────────────── */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: 0 24px;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#site-header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 40px rgba(0,0,0,0.8);
    border-bottom-color: rgba(201,168,76,0.12);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.header__logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(201,168,76,0.1));
}

.header__logo-text {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    font-family: 'Georgia', serif;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: 48px;
}

.header__nav a {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #8a7a6a;
    transition: color 0.3s ease;
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.3s ease;
}

.header__nav a:hover,
.header__nav a.active {
    color: #c9a84c;
}

.header__nav a:hover::after,
.header__nav a.active::after {
    width: 100%;
}

.header__social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid #c9a84c15;
}

.header__social a {
    color: #5a4a3a;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.header__social a:hover {
    color: #c9a84c;
}

.header__social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.header__cta {
    margin-left: 20px;
}

/* Hamburger */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.header__burger span {
    display: block;
    width: 24px;
    height: 1px;
    background: #c9a84c;
    transition: all 0.3s ease;
}

/* Mobile nav */
.header__mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #000000;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    padding: 20px 24px;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.header__mobile-nav.open {
    display: block;
}

.header__mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8a7a6a;
    border-bottom: 1px solid #151510;
}

.header__mobile-nav a:hover {
    color: #c9a84c;
}

/* ── Hero Section ─────────────────────────────────────────── */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-bg.jpg');
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    filter: brightness(0.35) saturate(0.6);
    transform: scale(1.05);
    transition: transform 12s ease;
}

#hero.loaded .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 25%,
        rgba(0,0,0,0.15) 45%,
        rgba(0,0,0,0.4) 70%,
        rgba(0,0,0,0.98) 100%
    );
}

/* Vignette — deep black edges */
.hero__vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 300px rgba(0,0,0,0.9);
    pointer-events: none;
}

/* Gold ring glow behind logo — matches the circular logo */
.hero__logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero__logo-img {
    width: 280px;
    height: auto;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeIn 1.5s ease 0.3s forwards;
    filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
}

.hero__tagline {
    font-size: 0.7rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: #8b6914;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 1s ease 1s forwards;
}

.hero__label {
    font-size: 0.7rem;
    letter-spacing: 0.6em;
    text-transform: uppercase;
    color: #8b6914;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
}

.hero__title {
    font-size: clamp(2.5rem, 7vw, 5rem);
    color: #c9a84c;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
    text-shadow: 0 0 60px rgba(201,168,76,0.15);
}

.hero__title em {
    font-style: italic;
    color: #d4be7a;
    text-transform: none;
    letter-spacing: 0.03em;
}

.hero__sub {
    font-size: 1rem;
    color: #7a6a50;
    letter-spacing: 0.15em;
    max-width: 460px;
    margin: 0 auto 50px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease 1.2s forwards;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #3a3020;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    animation: bounce 2.5s infinite;
}

.hero__scroll svg {
    width: 16px;
    height: 16px;
    fill: #c9a84c;
    opacity: 0.3;
}

/* ── Countdown Timer ──────────────────────────────────────── */
#countdown {
    padding: 70px 0;
    text-align: center;
    background: #000000;
    border-top: 1px solid rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.08);
    position: relative;
}

#countdown::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.03) 0%, transparent 60%);
    pointer-events: none;
}

.countdown__label {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: #8b6914;
    margin-bottom: 30px;
}

.countdown__timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.countdown__unit {
    text-align: center;
}

.countdown__number {
    display: block;
    font-size: 3.5rem;
    color: #c9a84c;
    font-family: 'Georgia', serif;
    line-height: 1;
    min-width: 80px;
}

.countdown__word {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5a4a3a;
    margin-top: 8px;
}

.countdown__location {
    font-size: 1rem;
    color: #6a5a4a;
    font-style: italic;
    letter-spacing: 0.1em;
}

.countdown__location svg {
    width: 16px;
    height: 16px;
    fill: #c9a84c;
    vertical-align: middle;
    margin-right: 6px;
}

/* ── Email Signup ─────────────────────────────────────────── */
#signup {
    padding: 100px 0;
    text-align: center;
    background: #000000;
    position: relative;
}

#signup::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.signup__title {
    font-size: 2rem;
    color: #c9a84c;
    margin-bottom: 12px;
}

.signup__sub {
    color: #6a5a4a;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.signup__form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.signup__input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
    border-right: none;
    color: #e8d5a3;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.signup__input::placeholder {
    color: #3a3020;
}

.signup__input:focus {
    border-color: #c9a84c;
}

.signup__btn {
    padding: 16px 32px;
    background: #c9a84c;
    color: #0a0a0a;
    border: none;
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup__btn:hover {
    background: #e8d5a3;
    box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.signup__privacy {
    margin-top: 16px;
    font-size: 0.72rem;
    color: #3a3020;
    letter-spacing: 0.1em;
}

/* ── Experience Cards ─────────────────────────────────────── */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.experience-card {
    background: rgba(201,168,76,0.03);
    border: 1px solid rgba(201,168,76,0.08);
    padding: 40px 30px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.experience-card:hover {
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-4px);
}

.experience-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.experience-card__icon svg {
    width: 36px;
    height: 36px;
    fill: #c9a84c;
}

.experience-card__title {
    font-size: 1.1rem;
    color: #c9a84c;
    margin-bottom: 12px;
    letter-spacing: 0.1em;
}

.experience-card__text {
    font-size: 0.88rem;
    color: #6a5a4a;
    line-height: 1.8;
}

/* ── Event Cards ──────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.event-card {
    background: #0f0d08;
    border: 1px solid #c9a84c15;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
    border-color: #c9a84c40;
    transform: translateY(-4px);
}

.event-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #080604;
}

.event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.9);
    transition: all 0.5s ease;
}

.event-card:hover .event-card__image img {
    filter: brightness(0.8) saturate(1);
    transform: scale(1.05);
}

.event-card__body {
    padding: 30px;
}

.event-card__season {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #8b6914;
    margin-bottom: 8px;
}

.event-card__title {
    font-size: 1.3rem;
    color: #c9a84c;
    margin-bottom: 10px;
}

.event-card__location {
    font-size: 0.9rem;
    color: #6a5a4a;
    font-style: italic;
    margin-bottom: 16px;
}

.event-card__location svg {
    width: 14px;
    height: 14px;
    fill: #c9a84c;
    vertical-align: middle;
    margin-right: 4px;
}

/* ── Tickets ──────────────────────────────────────────────── */
.tickets-remaining {
    text-align: center;
    padding: 40px 0;
}

.tickets-remaining__bar {
    max-width: 400px;
    margin: 0 auto 16px;
    height: 4px;
    background: #1a1510;
    position: relative;
    overflow: hidden;
}

.tickets-remaining__fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a84c, #8b6914);
    transition: width 1s ease;
}

.tickets-remaining__count {
    font-size: 2.5rem;
    color: #c9a84c;
    font-family: 'Georgia', serif;
    display: block;
    margin-bottom: 8px;
}

.tickets-remaining__label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5a4a3a;
}

.ticket-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ticket-card {
    background: #0f0d08;
    border: 1px solid #c9a84c15;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.ticket-card:hover {
    border-color: #c9a84c40;
}

.ticket-card--featured {
    border-color: #c9a84c40;
    transform: scale(1.02);
}

.ticket-card--featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a84c;
    color: #0a0a0a;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 4px 16px;
}

.ticket-card__name {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #8b6914;
    margin-bottom: 16px;
}

.ticket-card__price {
    font-size: 2.8rem;
    color: #c9a84c;
    font-family: 'Georgia', serif;
    margin-bottom: 20px;
}

.ticket-card__price span {
    font-size: 1rem;
    color: #5a4a3a;
}

.ticket-card__features {
    margin-bottom: 30px;
}

.ticket-card__features li {
    padding: 8px 0;
    font-size: 0.85rem;
    color: #7a6a5a;
    border-bottom: 1px solid #c9a84c10;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
    transition: all 0.5s ease;
}

.gallery-item:hover img {
    filter: brightness(0.9) saturate(1);
    transform: scale(1.08);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.3);
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 0;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #c9a84c15;
}

.faq-item__question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: 'Georgia', serif;
    font-size: 1.05rem;
    color: #c9a84c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.faq-item__question:hover {
    color: #e8d5a3;
}

.faq-item__question::after {
    content: '+';
    font-size: 1.3rem;
    color: #5a4a3a;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-item__question::after {
    content: '\2212';
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-item__answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-item__answer p {
    color: #7a6a5a;
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ── Location Reveal Section ──────────────────────────────── */
.reveal-section {
    text-align: center;
    padding: 100px 0;
    background: #000000;
    position: relative;
}

.reveal-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.reveal-section__icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.reveal-section__title {
    font-size: 2.2rem;
    color: #c9a84c;
    margin-bottom: 16px;
}

.reveal-section__text {
    max-width: 550px;
    margin: 0 auto 20px;
    color: #6a5a4a;
    line-height: 1.9;
    font-size: 0.95rem;
}

.reveal-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.reveal-step {
    text-align: center;
    max-width: 200px;
}

.reveal-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid #c9a84c30;
    color: #c9a84c;
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}

.reveal-step__title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 8px;
}

.reveal-step__text {
    font-size: 0.82rem;
    color: #5a4a3a;
    line-height: 1.7;
}

/* ── What to Expect Grid ──────────────────────────────────── */
.expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
}

.expect-grid__image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.expect-grid__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.expect-grid__content {
    padding: 40px;
}

/* ── Page Hero (interior pages) ───────────────────────────── */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: #000000;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9a84c20, transparent);
}

.page-hero__title {
    font-size: 2.8rem;
    color: #c9a84c;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.page-hero__sub {
    color: #5a4a3a;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── Footer ───────────────────────────────────────────────── */
#site-footer {
    background: #000000;
    border-top: 1px solid #c9a84c15;
    padding: 60px 0 30px;
}

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

.footer__brand-name {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 10px;
}

.footer__slogan {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5a4a3a;
    margin-bottom: 16px;
    font-style: italic;
}

.footer__tagline {
    font-size: 0.82rem;
    color: #4a3a2a;
    line-height: 1.7;
}

.footer__heading {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}

.footer__links li {
    margin-bottom: 8px;
}

.footer__links a {
    font-size: 0.82rem;
    color: #5a4a3a;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #c9a84c;
}

.footer__social {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__social a {
    color: #4a3a2a;
    transition: color 0.2s ease;
    display: flex;
}

.footer__social a:hover {
    color: #c9a84c;
}

.footer__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer__bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copy {
    font-size: 0.7rem;
    color: #3a2a1a;
    letter-spacing: 0.1em;
}

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

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.1); }
    50%       { box-shadow: 0 0 40px rgba(201,168,76,0.2); }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(201,168,76,0.1)); }
    50%      { filter: drop-shadow(0 0 50px rgba(201,168,76,0.2)); }
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .experience-grid   { grid-template-columns: repeat(2, 1fr); }
    .events-grid       { grid-template-columns: 1fr; }
    .ticket-tiers      { grid-template-columns: repeat(2, 1fr); }
    .footer__grid      { grid-template-columns: 1fr 1fr; }
    .gallery-grid      { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .header__nav    { display: none; }
    .header__social { display: none; }
    .header__cta    { display: none; }
    .header__burger { display: flex; }

    .hero__title    { font-size: clamp(1.8rem, 8vw, 2.5rem); }
    .hero__sub      { font-size: 0.88rem; }

    .countdown__timer { gap: 20px; }
    .countdown__number { font-size: 2.2rem; min-width: 50px; }

    .experience-grid  { grid-template-columns: 1fr; }
    .ticket-tiers     { grid-template-columns: 1fr; }
    .gallery-grid     { grid-template-columns: repeat(2, 1fr); }
    .footer__grid     { grid-template-columns: 1fr 1fr; gap: 28px; }
    .expect-grid      { grid-template-columns: 1fr; }

    .reveal-steps     { gap: 30px; }

    .signup__form   { flex-direction: column; }
    .signup__input  { border-right: 1px solid #c9a84c30; border-bottom: none; }
    .signup__btn    { width: 100%; }

    .container { padding: 0 16px; }
    .section   { padding: 60px 0; }

    .page-hero { padding: 120px 0 60px; }
    .page-hero__title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .footer__grid     { grid-template-columns: 1fr; }
    .gallery-grid     { grid-template-columns: 1fr; }
    .hero__buttons    { flex-direction: column; align-items: center; }
    .hero__buttons .btn { width: 100%; max-width: 280px; text-align: center; }
    .countdown__timer { gap: 12px; }
    .countdown__number { font-size: 1.8rem; }

    .section-header__title { font-size: 1.4rem; }
    .page-hero__title { font-size: 1.6rem; }
}
