:root {
    --blue: #06182f;
    --blue-2: #0b2748;
    --gold: #c9963c;
    --gold-2: #e2bd67;
    --cream: #fff4dc;
    --paper: #f4e5c7;
    --paper-2: #fff8ed;
    --brown: #553014;
    --ink: #182235;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: var(--ink);
    background: var(--blue);
}

a { text-decoration: none; }

.gaudi-nav {
    padding: 14px 0;
    background: rgba(6, 24, 47, .78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 189, 103, .22);
}

.navbar-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(226,189,103,.45);
}

.navbar-brand span {
    font-family: "Cinzel", serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: .05em;
}

.nav-link {
    color: rgba(255,255,255,.82);
    font-weight: 600;
    font-size: .9rem;
}

.nav-link:hover { color: var(--gold-2); }

.navbar-toggler {
    border-color: rgba(226,189,103,.4);
    background: rgba(255,255,255,.08);
}

.navbar-toggler-icon { filter: invert(1); }

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .03em;
    padding: .8rem 1.35rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1d1607;
    border: 0;
    box-shadow: 0 14px 35px rgba(201,150,60,.35);
}

.btn-gold:hover {
    color: #1d1607;
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(201,150,60,.48);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,.38);
    background: rgba(255,255,255,.08);
}

.btn-ghost:hover {
    color: #fff;
    background: rgba(255,255,255,.16);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    align-items: center;
    padding: 120px 0 82px;
    background:
        linear-gradient(180deg, rgba(6,24,47,.75), rgba(6,24,47,.88)),
        radial-gradient(circle at 15% 20%, rgba(226,189,103,.45), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(201,150,60,.38), transparent 24%),
        url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 38%, rgba(255,211,104,.22), transparent 22%),
        linear-gradient(90deg, rgba(0,0,0,.55), transparent 28%, transparent 72%, rgba(0,0,0,.55));
    z-index: -2;
}

.hero-lights {
    position: absolute;
    inset: -10%;
    background-image:
        radial-gradient(circle, rgba(255,232,163,.85) 0 3px, transparent 4px),
        radial-gradient(circle, rgba(255,255,255,.5) 0 2px, transparent 3px);
    background-size: 140px 90px, 190px 110px;
    opacity: .22;
    animation: floatLights 14s ease-in-out infinite alternate;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(226,189,103,.25), transparent 60%);
    filter: blur(12px);
    z-index: -1;
}

@keyframes floatLights {
    from { transform: translate3d(-1%, -1%, 0) scale(1); }
    to { transform: translate3d(1%, 1%, 0) scale(1.03); }
}

.hero-content { position: relative; z-index: 2; }

.hero-logo {
    width: min(230px, 44vw);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(255,255,255,.06), 0 0 60px rgba(226,189,103,.35);
    margin-bottom: 22px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .18em;
    font-size: .78rem;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: "Cinzel", serif;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: .92;
    font-size: clamp(3.2rem, 8vw, 7.3rem);
    text-shadow: 0 18px 55px rgba(0,0,0,.55);
    margin: 0;
}

.hero-subline {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    color: var(--cream);
    margin: 20px 0 0;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 34px auto 0;
}

.countdown div {
    min-width: 116px;
    padding: 17px 18px 15px;
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(226,189,103,.45);
    box-shadow: inset 0 0 35px rgba(226,189,103,.08), 0 18px 35px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
}

.countdown span {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.1rem);
    line-height: 1;
    color: #fff;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
}

.countdown small {
    display: block;
    color: var(--gold-2);
    margin-top: 7px;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .67rem;
    font-weight: 800;
}

.hero-actions { margin-top: 30px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.quickfacts {
    margin: 28px auto 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.quickfacts span {
    color: rgba(255,255,255,.88);
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    padding: 9px 13px;
    font-size: .84rem;
    backdrop-filter: blur(8px);
}

.artist-ticker {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold));
    color: #111827;
    border-top: 1px solid rgba(255,255,255,.4);
    z-index: 4;
    box-shadow: 0 -10px 35px rgba(0,0,0,.22);
}

.ticker-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    animation: ticker 38s linear infinite;
    font-family: "Cinzel", serif;
    font-weight: 800;
    letter-spacing: .08em;
}

.ticker-track span {
    display: block;
    padding: 14px 0;
    flex-shrink: 0;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.section {
    padding: 92px 0;
    position: relative;
}

.section-dark {
    background:
        radial-gradient(circle at 20% 15%, rgba(226,189,103,.12), transparent 28%),
        linear-gradient(180deg, var(--blue), #041020);
    color: #fff;
}

.section-paper {
    background:
        radial-gradient(circle at 15% 10%, rgba(201,150,60,.13), transparent 24%),
        linear-gradient(180deg, var(--paper-2), var(--paper));
}

.section-royal {
    background:
        radial-gradient(circle at 85% 15%, rgba(226,189,103,.18), transparent 26%),
        linear-gradient(135deg, #102844, #06182f);
    color: #fff;
}

.section-head {
    max-width: 770px;
    margin: 0 auto 46px;
}

.section h2 {
    font-family: "Cinzel", serif;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: .98;
    margin-bottom: 16px;
}

.section-head p,
.section .lead {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    color: inherit;
    opacity: .86;
}

.day-card {
    min-height: 250px;
    border-radius: 30px;
    padding: 34px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226,189,103,.32);
    background:
        linear-gradient(180deg, rgba(6,24,47,.6), rgba(6,24,47,.9)),
        radial-gradient(circle at 15% 12%, rgba(226,189,103,.3), transparent 30%);
    box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.day-card span {
    color: var(--gold-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .78rem;
}

.day-card h3 {
    font-family: "Cinzel", serif;
    color: #fff;
    margin: 15px 0 10px;
    font-weight: 800;
}

.day-card p { color: rgba(255,255,255,.78); }

.artist-card {
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(226,189,103,.28);
    box-shadow: 0 24px 50px rgba(0,0,0,.22);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(226,189,103,.7);
    box-shadow: 0 34px 70px rgba(0,0,0,.35), 0 0 40px rgba(226,189,103,.12);
}

.artist-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: #050d18;
    display: block;
    padding: 0;
}

.artist-card.featured img { aspect-ratio: 4 / 4.65; }

.artist-card div {
    padding: 18px 18px 20px;
    background: linear-gradient(180deg, rgba(6,24,47,.92), rgba(4,16,32,.98));
}

.artist-card small {
    color: var(--gold-2);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .67rem;
}

.artist-card h3 {
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    margin: 6px 0 0;
    font-weight: 800;
}

.program-panel,
.ticket-day,
.price-card,
.location-card {
    border-radius: 28px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(85,48,20,.12);
    box-shadow: 0 24px 65px rgba(85,48,20,.14);
}

.program-panel {
    padding: 34px;
}

.program-panel h3,
.ticket-day h3 {
    font-family: "Cinzel", serif;
    font-weight: 800;
    color: var(--blue);
}

.program-panel ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.program-panel li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(85,48,20,.13);
    padding: 17px 0;
}

.program-panel li strong { color: var(--blue); }
.program-panel li span { color: #7a5c36; text-align: right; }

.royal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 26px 0;
}

.royal-grid div {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(226,189,103,.28);
}

.royal-grid small {
    display: block;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
}

.royal-grid strong {
    display: block;
    color: #fff;
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
}

.royal-grid span { color: rgba(255,255,255,.74); }

.royal-poster {
    border-radius: 34px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(226,189,103,.6), rgba(255,255,255,.12), rgba(226,189,103,.45));
    box-shadow: 0 40px 100px rgba(0,0,0,.34);
}

.royal-poster img {
    width: 100%;
    border-radius: 26px;
    display: block;
    background: var(--paper);
}

.ticket-day {
    padding: 34px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ticket-day .btn { margin-top: auto; }

.price-card {
    height: 100%;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.price-card::before,
.price-card::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--paper);
    top: 50%;
    transform: translateY(-50%);
}

.price-card::before { left: -17px; }
.price-card::after { right: -17px; }

.price-card.highlight {
    background: linear-gradient(180deg, #fffaf0, #f8df9e);
    border-color: rgba(201,150,60,.5);
}

.price-card span {
    color: var(--brown);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
}

.price-card h3 {
    color: var(--blue);
    font-size: 2.65rem;
    font-weight: 800;
    margin: 7px 0 4px;
}

.price-card ul {
    margin: 18px 0 0;
    padding-left: 19px;
}

.price-card li { margin: 6px 0; }

.ticket-note {
    padding: 22px 26px;
    border-radius: 22px;
    background: rgba(6,24,47,.08);
    border: 1px solid rgba(6,24,47,.12);
    color: #5d4b34;
}

.location-card {
    padding: 30px;
    background: rgba(255,255,255,.08);
    border-color: rgba(226,189,103,.28);
    color: #fff;
}

.location-card strong,
.location-card span {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.location-card span:last-child { border-bottom: 0; }

.footer {
    background: #030a14;
    color: rgba(255,255,255,.72);
    padding: 28px 0;
}

.footer a { color: var(--gold-2); }

@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 12px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(6,24,47,.96);
    }

    .hero { padding-top: 110px; }

    .program-panel li {
        display: block;
    }

    .program-panel li span {
        display: block;
        text-align: left;
        margin-top: 4px;
    }
}

@media (max-width: 575px) {
    .countdown div { min-width: calc(50% - 8px); }
    .hero-logo { width: 170px; }
    .quickfacts span { width: 100%; }
    .section { padding: 70px 0; }
}
