@font-face {
    font-family: "Bodoni Moda";
    src: url("../assets/fonts/bodoni-moda-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}
@font-face {
    font-family: "Space Grotesk";
    src: url("../assets/fonts/space-grotesk-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

:root {
    --club-black: #080808;
    --club-ink: #100909;
    --club-panel: #171010;
    --club-wine: #5f0b16;
    --club-red: #a61120;
    --club-gold: #d4ad55;
    --club-paper: #080808;
    --club-white: #f4f0e8;
    --club-muted: rgba(244, 240, 232, 0.58);
    --club-line: rgba(244, 240, 232, 0.17);
    --club-red-texture: url("../assets/textures/red-velvet.webp");
    --club-gold-texture: url("../assets/textures/gold-leaf.webp");
    --font-display: "Bodoni Moda", Didot, Georgia, serif;
    --font-body: "Space Grotesk", system-ui, sans-serif;
    --pad: clamp(20px, 4vw, 72px);
    --section: clamp(92px, 13vw, 190px);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--club-black); }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--club-black);
    color: var(--club-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p, figure, dl, dd { margin: 0; }
:focus-visible { outline: 2px solid var(--club-gold); outline-offset: 5px; }

.skip-link {
    position: fixed;
    inset: 12px auto auto 12px;
    z-index: 1000;
    transform: translateY(-180%);
    padding: 12px 18px;
    background-image: var(--club-gold-texture);
    background-position: center;
    background-size: cover;
    color: var(--club-black);
    transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.progress { position: fixed; inset: 0 0 auto; z-index: 210; height: 2px; }
.progress span { display: block; width: 0; height: 100%; background-image: var(--club-gold-texture); background-position: center; background-size: cover; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    min-height: 88px;
    display: grid;
    grid-template-columns: 150px auto 1fr auto auto;
    align-items: center;
    gap: clamp(20px, 3vw, 54px);
    padding: 8px var(--pad);
    border-bottom: 1px solid transparent;
    transition: min-height 300ms var(--ease), background 300ms ease, border-color 300ms ease;
}
.site-header.is-scrolled, .site-header--solid {
    min-height: 72px;
    background: rgba(8, 8, 8, 0.92);
    border-color: var(--club-line);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.brand { width: 126px; height: 58px; display: grid; place-items: center start; }
.brand img { width: 118px; height: 54px; object-fit: contain; object-position: left center; }
.local-time { display: flex; align-items: center; gap: 8px; font-size: 0.6rem; letter-spacing: 0.14em; }
.local-time time { color: var(--club-gold); }
.pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--club-gold); opacity: 0.85; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: 0.3; transform: scale(0.7); } }
.desktop-nav { display: none; }
.desktop-nav a, .reserve-link { font-size: 0.61rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.desktop-nav a { position: relative; padding: 12px 0; color: rgba(244,240,232,0.7); transition: color 160ms ease; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 7px; height: 1px; background: var(--club-red); transform: scaleX(0); transform-origin: right; transition: transform 220ms var(--ease); }
.desktop-nav a:hover { color: var(--club-white); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.reserve-link { display: flex; align-items: center; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--club-gold); }
.reserve-link span { color: var(--club-gold); transition: transform 180ms var(--ease); }
.reserve-link:hover span { transform: translate(4px, -4px); }
.menu-toggle { display: grid; width: 48px; height: 48px; place-items: center; border: 0; border-radius: 0; background: transparent; cursor: pointer; }
.menu-toggle span { position: absolute; width: 27px; height: 1px; background: var(--club-white); box-shadow: 0 1px 10px rgba(0,0,0,0.64); transition: transform 240ms var(--ease); }
.menu-toggle span:first-child { transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 190; display: grid; align-content: space-between; padding: 100px 22px 30px; background: var(--club-black); visibility: hidden; transform: translateX(100%); transition: transform 440ms var(--ease), visibility 440ms; }
.mobile-menu.is-open { visibility: visible; transform: translateX(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--club-line); color: var(--club-muted); font-size: 0.58rem; letter-spacing: 0.15em; }
.mobile-menu-top img { width: 86px; height: 50px; object-fit: contain; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { display: flex; align-items: baseline; gap: 18px; padding: 10px 0; border-bottom: 1px solid var(--club-line); font-family: var(--font-display); font-size: clamp(3.3rem, 8vw, 8rem); line-height: 0.9; }
.mobile-menu nav small { color: var(--club-red); font-family: var(--font-body); font-size: 0.58rem; letter-spacing: 0.15em; }

@media (min-width: 1121px) {
    .mobile-menu { padding: 120px var(--pad) 46px; }
    .mobile-menu nav { width: min(72vw, 1280px); }
    .mobile-menu .button { justify-self: end; }
}

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 13px 20px; border: 1px solid transparent; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(0.985); }
.button--light { background-image: var(--club-gold-texture); background-position: center; background-size: cover; color: var(--club-black); }
.button--light:hover { filter: brightness(1.08); }
.button--red { background-color: var(--club-red); background-image: linear-gradient(rgba(82, 0, 9, 0.1), rgba(82, 0, 9, 0.1)), var(--club-red-texture); background-position: center; background-size: cover; color: var(--club-white); }
.button--red:hover { filter: brightness(1.12); }
.kicker, .index { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.19em; text-transform: uppercase; }
.kicker { color: var(--club-gold); }
.index { color: rgba(244,240,232,0.68); }

.hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--club-black); }
.hero-photo, .hero-photo video, .hero-glaze { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo video { object-fit: cover; object-position: 50% 50%; filter: saturate(0.9) contrast(1.05); }
.hero-glaze { background: linear-gradient(90deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.58) 37%, rgba(8,8,8,0.08) 75%), linear-gradient(180deg, rgba(8,8,8,0.54) 0%, transparent 32%, rgba(8,8,8,0.74) 100%); }
.hero-rail { position: absolute; z-index: 2; inset-block: 132px 44px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; color: rgba(244,240,232,0.68); font-size: 0.52rem; letter-spacing: 0.18em; writing-mode: vertical-rl; }
.hero-rail i { flex: 1; width: 1px; background: var(--club-line); }
.hero-rail--left { left: 28px; transform: rotate(180deg); }
.hero-rail--right { right: 28px; }
.hero-content { position: relative; z-index: 3; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(130px, 18vh, 210px) clamp(64px, 7.2vw, 138px) 58px; }
.hero h1 { margin: 18px 0 clamp(40px, 7vh, 82px); font-family: var(--font-display); font-weight: 400; letter-spacing: -0.055em; line-height: 0.68; }
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1px rgba(244,240,232,0.84); font-size: clamp(6rem, 14vw, 13.8rem); }
.hero h1 strong { display: block; padding-inline-start: 7vw; color: var(--club-white); font-size: clamp(6rem, 14vw, 13.8rem); font-weight: 400; }
.hero-foot { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; border-top: 1px solid var(--club-line); padding-top: 22px; }
.hero-foot p { color: rgba(244,240,232,0.7); font-size: 0.7rem; line-height: 1.7; letter-spacing: 0.07em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 4; inset: auto 30px 44px auto; display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--club-muted); font-size: 0.52rem; letter-spacing: 0.17em; }
.scroll-cue i { display: block; width: 1px; height: 38px; background: var(--club-gold); transform-origin: top; animation: scroll-line 1.8s ease-in-out infinite; }
@keyframes scroll-line { 50% { transform: scaleY(0.25); opacity: 0.4; } }

.marquee { overflow: hidden; border-block: 1px solid var(--club-gold); background-color: var(--club-gold); background-image: var(--club-gold-texture); background-position: center; background-size: cover; color: var(--club-black); }
.marquee > div { width: max-content; display: flex; gap: 30px; align-items: center; padding: 12px 0; animation: marquee 28s linear infinite; }
.marquee span { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.2em; }
.marquee i { font-size: 0.55rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.gate { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(50px, 9vw, 150px); align-items: center; padding: var(--section) var(--pad); background: var(--club-black); }
.gate-copy { max-width: 670px; }
.gate-copy .index { margin-bottom: 90px; }
.gate-copy .kicker { margin-bottom: 22px; }
.gate-copy h2, .programme-head h2, .live-head h2, .lineup-head h2, .proof-title h2, .reputation-copy h2, .access h2, .faq-head h2, .collection-head h2, .guide-hero h1, .guide-section h2 {
    font-family: var(--font-display);
    font-size: clamp(4.2rem, 8vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 0.8;
}
.gate-copy h2 em, .programme-head h2 em, .live-head h2 em, .lineup-head h2 em, .proof-title h2 em, .reputation-copy h2 em, .access h2 em, .faq-head h2 em, .collection-head h2 em, .guide-hero h1 em, .guide-section h2 em { color: var(--club-gold); font-weight: 400; }
.gate-copy .lede { max-width: 530px; margin: 42px 0; color: var(--club-muted); font-size: 0.87rem; line-height: 1.9; }
.line-link { display: inline-flex; align-items: center; gap: 70px; padding: 12px 0; border-bottom: 1px solid var(--club-gold); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.gate-visual { position: relative; padding: 1px; background: linear-gradient(135deg, var(--club-gold), transparent 44%, var(--club-line)); }
.gate-visual picture { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--club-panel); }
.gate-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7); transition: transform 900ms var(--ease), filter 500ms ease; }
.gate-visual:hover img { transform: scale(1.035); filter: saturate(0.95); }
.gate-visual figcaption { display: flex; justify-content: space-between; padding-top: 14px; background: var(--club-black); color: var(--club-muted); font-size: 0.56rem; letter-spacing: 0.15em; }

.programme { padding: var(--section) var(--pad); background: var(--club-black); color: var(--club-white); }
.programme-head { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: end; margin-bottom: clamp(72px, 10vw, 150px); }
.programme-head .index { color: rgba(244,240,232,0.68); margin-bottom: 18px; }
.programme-head .kicker { color: var(--club-gold); }
.programme-head h2 { justify-self: end; }
.act { position: relative; min-height: min(84svh, 920px); display: grid; grid-template-columns: 100px minmax(280px, 4fr) 7fr; gap: clamp(25px, 5vw, 80px); align-items: end; padding: clamp(36px, 5vw, 70px) 0; border-top: 1px solid var(--club-line); }
.act:last-child { border-bottom: 1px solid var(--club-line); }
.act-number { align-self: start; font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.act-copy { align-self: center; position: relative; z-index: 2; }
.act-copy .kicker { color: var(--club-gold); }
.act-copy h3 { margin: 18px 0 24px; font-family: var(--font-display); font-size: clamp(3.7rem, 7vw, 8rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.82; }
.act-copy p:last-child { max-width: 430px; color: var(--club-muted); font-size: 0.82rem; line-height: 1.85; }
.act picture { height: min(72svh, 760px); overflow: hidden; }
.act picture img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.act:hover picture img { transform: scale(1.035); }
.act--performance { grid-template-columns: 100px 7fr minmax(280px, 4fr); }
.act--performance .act-copy { grid-column: 3; }
.act--performance picture { grid-column: 2; grid-row: 1; }
.act--performance .act-number { grid-column: 1; grid-row: 1; }
.act--performance h3 { font-size: clamp(3.2rem, 4.8vw, 6.3rem); }
.act--performance picture img { object-position: 50% 35%; }

.live { position: relative; isolation: isolate; padding: var(--section) var(--pad); background-color: var(--club-wine); background-image: linear-gradient(rgba(36, 0, 7, 0.44), rgba(36, 0, 7, 0.44)), var(--club-red-texture); background-position: center; background-size: cover; }
.live-head { display: grid; grid-template-columns: 2fr 4fr 2fr; gap: 40px; align-items: end; margin-bottom: 80px; }
.live-head h2 { font-size: clamp(4.5rem, 9vw, 10rem); }
.live-head > p:last-child { max-width: 280px; color: var(--club-muted); font-size: 0.72rem; line-height: 1.8; }
.video-stage { display: grid; grid-template-columns: repeat(12, 1fr); gap: 8px; align-items: start; }
.video-card { position: relative; }
.video-card--one { grid-column: 1 / span 6; }
.video-card--two { grid-column: 7 / span 5; margin-top: 12vw; }
.video-card video { width: 100%; aspect-ratio: 9/13; object-fit: cover; background: var(--club-black); }
.video-toggle { position: absolute; z-index: 3; inset: auto auto 54px 18px; min-width: 150px; display: flex; justify-content: space-between; gap: 20px; padding: 12px 14px; border: 1px solid rgba(244,240,232,0.48); background: rgba(8,8,8,0.7); backdrop-filter: blur(10px); cursor: pointer; font-size: 0.56rem; letter-spacing: 0.14em; }
.video-toggle:hover { background: var(--club-red); border-color: var(--club-red); }
.video-card figcaption { display: flex; justify-content: space-between; padding-top: 12px; color: var(--club-muted); font-size: 0.55rem; letter-spacing: 0.17em; }

.lineup { padding: var(--section) var(--pad); background: var(--club-black); color: var(--club-white); }
.lineup-head { display: grid; grid-template-columns: minmax(190px, 2fr) minmax(420px, 6fr) minmax(230px, 3fr); gap: clamp(30px, 5vw, 80px); align-items: end; margin-bottom: clamp(76px, 10vw, 150px); }
.lineup-head .index { margin-bottom: 18px; color: rgba(244,240,232,0.64); }
.lineup-head h2 { font-size: clamp(4.5rem, 8.5vw, 9.5rem); }
.lineup-head > p { max-width: 400px; color: var(--club-muted); font-size: 0.72rem; line-height: 1.8; }
.lineup-layout { display: grid; gap: 8px; }
.residents { display: grid; grid-template-columns: minmax(120px, 0.5fr) minmax(260px, 0.9fr) minmax(0, 2.2fr); grid-template-areas: "label feature list" "link feature list"; gap: clamp(24px, 4vw, 64px); align-items: stretch; padding: clamp(24px, 3vw, 42px); background-color: var(--club-wine); background-image: linear-gradient(rgba(36,0,7,0.3), rgba(36,0,7,0.68)), var(--club-red-texture); background-position: center; background-size: cover; }
.lineup-label { grid-area: label; align-self: end; color: var(--club-gold); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; }
.resident-list { grid-area: list; align-self: center; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-inline-start: 1px solid rgba(244,240,232,0.22); }
.resident-list a { min-height: 72px; display: grid; align-content: center; gap: 5px; padding-inline: clamp(12px, 2vw, 26px); border-inline-end: 1px solid rgba(244,240,232,0.2); transition: color 180ms ease, background 180ms ease; }
.resident-list a:hover { color: var(--club-gold); background: rgba(8,8,8,0.18); }
.resident-list span { font-family: var(--font-display); font-size: clamp(1.25rem, 1.8vw, 2rem); line-height: 1; }
.resident-list small { color: rgba(244,240,232,0.58); font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; }
.resident-feature { grid-area: feature; position: relative; display: block; min-height: 390px; margin: 0; overflow: hidden; background: var(--club-panel); }
.resident-feature picture,
.resident-feature img { width: 100%; height: 100%; }
.resident-feature img { object-fit: cover; object-position: center; filter: saturate(0.88) contrast(1.04); transition: transform 800ms var(--ease), filter 300ms ease; }
.resident-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(8,8,8,0.95) 100%); }
.resident-feature > span { position: absolute; z-index: 1; inset: auto 20px 18px; display: grid; gap: 5px; }
.resident-feature strong { font-family: var(--font-display); font-size: clamp(2.6rem, 4vw, 4.6rem); font-weight: 400; line-height: 0.82; }
.resident-feature small { color: var(--club-gold); font-size: 0.5rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.resident-feature:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.residents > .line-link { grid-area: link; align-self: end; }
.headliner-wall { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-flow: dense; gap: 8px; list-style: none; }
.headliner-card { position: relative; min-width: 0; aspect-ratio: 3 / 4; overflow: hidden; background: var(--club-panel); }
.headliner-card--wide { grid-column: span 2; aspect-ratio: 3 / 2; }
.headliner-card picture,
.headliner-card img { width: 100%; height: 100%; }
.headliner-card img { object-fit: cover; filter: saturate(0.86) contrast(1.04); transition: transform 900ms var(--ease), filter 350ms ease; }
.headliner-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0.03) 32%, rgba(8,8,8,0.94) 100%); pointer-events: none; }
.headliner-card:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.02); }
.headliner-caption { position: absolute; z-index: 2; inset: auto clamp(14px, 2vw, 28px) clamp(14px, 2vw, 25px); display: grid; grid-template-columns: 25px minmax(0, 1fr) auto; gap: 10px; align-items: end; }
.headliner-card--identity .headliner-caption { inset: auto 0 0; padding: 16px clamp(14px, 2vw, 22px) 18px; background: rgba(8, 8, 8, 0.92); }
.headliner-caption > span { align-self: start; padding-top: 5px; color: rgba(244,240,232,0.48); font-size: 0.5rem; letter-spacing: 0.14em; }
.headliner-caption > div { min-width: 0; }
.headliner-name { display: inline-block; max-width: 100%; font-family: var(--font-display); font-size: clamp(1.65rem, 2.6vw, 3.5rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.82; transition: filter 180ms ease; }
.headliner-name:hover { filter: brightness(1.24); }
.headliner-caption small { display: block; margin-top: 8px; color: rgba(244,240,232,0.65); font-size: 0.46rem; letter-spacing: 0.13em; text-transform: uppercase; }
.source-link { align-self: end; padding-bottom: 3px; border-bottom: 1px solid rgba(212,173,85,0.5); color: var(--club-gold); font-size: 0.48rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.archive-credits { max-width: 980px; margin: 38px 0 0 auto; color: rgba(244,240,232,0.58); font-size: 0.65rem; line-height: 1.8; }
.archive-credits a { color: var(--club-gold); border-bottom: 1px solid rgba(212,173,85,0.45); }
.lineup-note { max-width: 720px; margin: 34px 0 0 auto; color: rgba(244,240,232,0.48); font-size: 0.62rem; line-height: 1.7; }

.proof { padding: var(--section) var(--pad); background: var(--club-black); }
.proof-title { display: grid; grid-template-columns: 1fr 2fr; align-items: start; gap: 40px; margin-bottom: 70px; }
.proof-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: minmax(140px, 9vw); gap: 8px; }
.proof-item { position: relative; overflow: hidden; }
.proof-item--dj { grid-column: 1 / span 4; grid-row: span 5; }
.proof-item--crowd { grid-column: 5 / span 5; grid-row: 2 / span 6; }
.proof-item--guest { grid-column: 10 / span 3; grid-row: 4 / span 4; }
.proof-item picture, .proof-item img { width: 100%; height: 100%; }
.proof-item img { object-fit: cover; filter: saturate(0.78); transition: transform 800ms var(--ease), filter 400ms ease; }
.proof-item--dj img { object-position: 50% 34%; }
.proof-item--crowd img { object-position: 54% 42%; }
.proof-item--guest img { object-position: 50% 36%; }
.proof-item:hover img { transform: scale(1.04); filter: saturate(1); }
.proof-item figcaption { position: absolute; inset: auto 12px 10px; z-index: 2; padding: 5px 8px; background: rgba(8,8,8,0.72); font-size: 0.53rem; letter-spacing: 0.16em; }

.reputation { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); min-height: 940px; background: var(--club-black); }
.reputation-photo { position: relative; min-height: 940px; overflow: hidden; }
.reputation-photo picture, .reputation-photo img { width: 100%; height: 100%; }
.reputation-photo img { position: absolute; inset: 0; object-fit: cover; object-position: 54% 42%; filter: saturate(0.88) contrast(1.05); }
.reputation-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0.03) 34%, rgba(8,8,8,0.82) 100%); }
.reputation-photo figcaption { position: absolute; z-index: 1; inset: auto 26px 24px; color: rgba(244,240,232,0.74); font-size: 0.55rem; letter-spacing: 0.16em; }
.reputation-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(86px, 8vw, 150px) var(--pad); background-color: var(--club-wine); background-image: linear-gradient(rgba(8,8,8,0.46), rgba(8,8,8,0.74)), var(--club-red-texture); background-position: center; background-size: cover; }
.reputation-copy .kicker { margin: 38px 0 16px; }
.reputation-copy h2 { margin-bottom: 54px; }
.reputation-facts { border-top: 1px solid rgba(244,240,232,0.28); }
.reputation-facts a { min-height: 126px; display: grid; grid-template-columns: minmax(105px, 0.8fr) 2fr; align-items: center; gap: 24px; padding: 24px 0; border-bottom: 1px solid rgba(244,240,232,0.28); transition: color 180ms ease, padding 180ms var(--ease); }
.reputation-facts a:hover { padding-inline-start: 10px; color: var(--club-gold); }
.reputation-facts strong { font-family: var(--font-display); font-size: clamp(3.2rem, 5vw, 5.8rem); font-weight: 400; line-height: 0.76; }
.reputation-facts span { display: grid; gap: 8px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.reputation-facts small { color: rgba(244,240,232,0.6); font-size: 0.52rem; font-weight: 400; line-height: 1.55; letter-spacing: 0.06em; text-transform: none; }
.reputation-note { max-width: 720px; margin-top: 28px; color: rgba(244,240,232,0.72); font-size: 0.72rem; line-height: 1.8; }
.reputation-links { display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 28px; }
.reputation-links a { min-height: 44px; display: inline-flex; align-items: center; border-bottom: 1px solid var(--club-gold); color: var(--club-gold); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }

.access { display: grid; grid-template-columns: 7fr 5fr; min-height: 820px; background-color: var(--club-wine); background-image: linear-gradient(rgba(36, 0, 7, 0.48), rgba(36, 0, 7, 0.48)), var(--club-red-texture); background-position: center; background-size: cover; color: var(--club-white); }
.access-main { display: flex; flex-direction: column; justify-content: center; padding: var(--section) var(--pad); }
.access-main .index { margin-bottom: 70px; color: rgba(244,240,232,0.9); }
.access-main .kicker { color: var(--club-gold); }
.access-main h2 { margin: 18px 0 40px; }
.access-main h2 em { color: var(--club-gold); }
.access-main > p:not(.index):not(.kicker) { max-width: 540px; font-size: 0.85rem; line-height: 1.85; }
.access-main .button { align-self: flex-start; margin-top: 38px; background: var(--club-black); }
.access-main .button:hover { background-color: var(--club-gold); background-image: var(--club-gold-texture); background-position: center; background-size: cover; color: var(--club-black); }
.access-facts { display: grid; align-items: center; padding: var(--section) var(--pad); background: var(--club-black); }
.access-facts dl { border-top: 1px solid var(--club-line); }
.access-facts dl > div { display: grid; grid-template-columns: 1fr 2fr; gap: 25px; padding: 30px 0; border-bottom: 1px solid var(--club-line); }
.access-facts dt { color: var(--club-gold); font-size: 0.57rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.access-facts dd { font-family: var(--font-display); font-size: clamp(1.45rem, 2.2vw, 2.4rem); line-height: 1.1; }
.access-facts dd small { display: block; margin-top: 9px; color: var(--club-muted); font-family: var(--font-body); font-size: 0.65rem; line-height: 1.5; }

.faq { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(50px, 8vw, 130px); padding: var(--section) var(--pad); background: var(--club-ink); }
.faq-head { position: sticky; top: 120px; align-self: start; }
.faq-head .index { margin-bottom: 28px; }
.faq-list { border-top: 1px solid var(--club-line); }
.faq-list details { border-bottom: 1px solid var(--club-line); }
.faq-list summary { min-height: 108px; display: flex; justify-content: space-between; align-items: center; gap: 30px; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 3rem); line-height: 1.05; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: flex; gap: 22px; align-items: baseline; }
.faq-list summary small { color: var(--club-gold); font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 0.15em; }
.faq-list summary i { color: var(--club-gold); font-family: var(--font-body); font-size: 1.2rem; font-style: normal; transition: transform 200ms var(--ease); }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; padding: 0 50px 34px 42px; color: var(--club-muted); font-size: 0.8rem; line-height: 1.85; }

.collection { padding: var(--section) var(--pad); background: var(--club-black); color: var(--club-white); }
.collection-head { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 40px; align-items: end; margin-bottom: 70px; }
.collection-head .kicker { color: var(--club-gold); }
.collection-head > p:last-child { color: var(--club-muted); font-size: 0.7rem; line-height: 1.7; }
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--club-line); }
.venue-card { min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; color: var(--club-white); transition: transform 260ms var(--ease), filter 220ms ease; }
.venue-card > span { margin-bottom: auto; color: rgba(244,240,232,0.86); font-size: 0.54rem; letter-spacing: 0.16em; }
.venue-card strong { font-family: var(--font-display); font-size: clamp(2.9rem, 4.8vw, 5.5rem); font-weight: 400; line-height: 0.82; }
.venue-card small { margin-top: 20px; font-size: 0.55rem; letter-spacing: 0.15em; }
.venue-card--lov, .venue-card--cdf { background-color: var(--club-wine); background-image: linear-gradient(rgba(36, 0, 7, 0.46), rgba(36, 0, 7, 0.46)), var(--club-red-texture); background-position: center; background-size: cover; }
.venue-card--club { background: var(--club-black); }
.venue-card:hover { position: relative; z-index: 2; transform: translateY(-6px); filter: brightness(1.14); }

.page-portals { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); background: var(--club-black); border-top: 1px solid var(--club-line); }
.page-portal { position: relative; min-height: clamp(420px, 48vw, 720px); overflow: hidden; border-right: 1px solid var(--club-line); }
.page-portal:last-child { border-right: 0; }
.page-portal picture,
.page-portal > img,
.page-portal picture img { width: 100%; height: 100%; }
.page-portal > img,
.page-portal picture img { position: absolute; inset: 0; object-fit: cover; filter: saturate(0.78) brightness(0.68); transition: transform 900ms var(--ease), filter 400ms ease; }
.page-portal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,8,0.06) 25%, rgba(8,8,8,0.94) 100%); }
.page-portal > span { position: absolute; z-index: 1; inset: auto 26px 28px; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 8px 20px; }
.page-portal small { grid-column: 1 / -1; color: rgba(244,240,232,0.74); font-size: 0.54rem; font-style: normal; letter-spacing: 0.16em; text-transform: uppercase; }
.page-portal strong { font-family: var(--font-display); font-size: clamp(2.4rem, 4.1vw, 5.2rem); font-weight: 400; letter-spacing: -0.045em; line-height: 0.82; }
.page-portal i { color: var(--club-gold); font-size: 1.3rem; font-style: normal; }
.page-portal:hover > img,
.page-portal:hover picture img { transform: scale(1.035); filter: saturate(1) brightness(0.78); }

.site-footer { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 45px; padding: 80px var(--pad) 28px; border-top: 1px solid var(--club-line); background: var(--club-black); }
.footer-mark img { width: 120px; height: 72px; object-fit: contain; object-position: left; }
.footer-mark p { color: var(--club-muted); font-size: 0.55rem; letter-spacing: 0.16em; }
.footer-links, .footer-social { display: grid; align-content: start; gap: 10px; }
.footer-links a, .footer-social a { width: fit-content; color: var(--club-muted); font-size: 0.7rem; transition: color 160ms ease; }
.footer-links a:hover, .footer-social a:hover { color: var(--club-gold); }
.footer-social a { display: flex; align-items: center; gap: 10px; }
.footer-social img { filter: invert(1); }
.footer-legal { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid var(--club-line); color: rgba(244,240,232,0.68); font-size: 0.58rem; }
.whatsapp { position: fixed; z-index: 220; inset: auto 20px 20px auto; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 11px; padding: 0 22px; border: 1px solid var(--club-gold); border-radius: 999px; background-color: var(--club-gold); background-image: var(--club-gold-texture); background-position: center; background-size: cover; color: var(--club-black); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; transition: transform 180ms var(--ease), opacity 180ms ease; }
.whatsapp:hover { transform: translateY(-3px) scale(1.03); }
.whatsapp img { width: 25px; height: 25px; filter: brightness(0); }
.menu-open .whatsapp { opacity: 0; pointer-events: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity 850ms var(--ease), transform 850ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Agadir nightlife guide */
.guide-page { background: var(--club-black); color: var(--club-white); }
.guide-page .site-header { color: var(--club-white); }
.guide-hero { min-height: 86svh; display: grid; grid-template-columns: 7fr 5fr; padding-top: 88px; background: var(--club-black); color: var(--club-white); }
.guide-hero-copy { display: flex; flex-direction: column; justify-content: flex-end; padding: 100px var(--pad) 75px; }
.guide-hero .index { margin-bottom: auto; }
.guide-hero h1 { margin: 30px 0; }
.guide-hero p:last-child { max-width: 680px; color: var(--club-muted); font-size: 0.8rem; line-height: 1.85; }
.guide-hero picture { min-height: 78svh; overflow: hidden; }
.guide-hero picture img { width: 100%; height: 100%; object-fit: cover; }
.guide-layout { display: grid; grid-template-columns: 3fr 8fr; gap: clamp(50px, 9vw, 150px); padding: var(--section) var(--pad); }
.guide-aside { position: sticky; top: 110px; align-self: start; border-top: 1px solid var(--club-line); }
.guide-aside a { display: block; padding: 15px 0; border-bottom: 1px solid var(--club-line); color: var(--club-muted); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.guide-aside a:hover { color: var(--club-gold); }
.guide-content { max-width: 940px; }
.guide-section { padding: 70px 0; border-top: 1px solid var(--club-line); }
.guide-section:first-child { padding-top: 0; border-top: 0; }
.guide-section .index { margin-bottom: 24px; color: rgba(244,240,232,0.68); }
.guide-section h2 { font-size: clamp(3.7rem, 7vw, 7.4rem); }
.guide-section > p { max-width: 760px; margin-top: 30px; color: var(--club-muted); font-size: 0.86rem; line-height: 1.95; }
.guide-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; background: var(--club-line); }
.guide-option { min-height: 260px; padding: 24px; background: var(--club-ink); }
.guide-option span { color: var(--club-gold); font-size: 0.57rem; letter-spacing: 0.14em; }
.guide-option h3 { margin: 50px 0 16px; font-family: var(--font-display); font-size: 2.4rem; font-weight: 400; line-height: 0.9; }
.guide-option p { color: var(--club-muted); font-size: 0.72rem; line-height: 1.7; }
.guide-checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 40px; background: var(--club-line); }
.guide-checklist div { padding: 25px; background: var(--club-ink); }
.guide-checklist strong { display: block; margin-bottom: 10px; font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; }
.guide-checklist p { color: var(--club-muted); font-size: 0.72rem; line-height: 1.7; }
.guide-disclosure { padding: 24px; border: 1px solid var(--club-gold); background-color: var(--club-wine); background-image: linear-gradient(rgba(36, 0, 7, 0.5), rgba(36, 0, 7, 0.5)), var(--club-red-texture); background-position: center; background-size: cover; }
.guide-disclosure strong { font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase; }
.guide-disclosure p { margin-top: 12px; color: rgba(244,240,232,0.9); font-size: 0.72rem; line-height: 1.75; }
.guide-cta { display: grid; place-content: center; min-height: 620px; padding: var(--section) var(--pad); background-color: var(--club-wine); background-image: linear-gradient(rgba(36, 0, 7, 0.5), rgba(36, 0, 7, 0.5)), var(--club-red-texture); background-position: center; background-size: cover; color: var(--club-white); text-align: center; }
.guide-cta h2 { max-width: 1000px; font-family: var(--font-display); font-size: clamp(4.5rem, 10vw, 11rem); font-weight: 400; letter-spacing: -0.055em; line-height: 0.76; }
.guide-cta p { max-width: 600px; margin: 30px auto; font-size: 0.8rem; }
.guide-cta .button { justify-self: center; background-color: var(--club-gold); background-image: var(--club-gold-texture); background-position: center; background-size: cover; color: var(--club-black); }
.error-page { min-height: 100svh; display: grid; place-content: center; gap: 22px; padding: var(--pad); text-align: center; }
.error-page h1 { font-family: var(--font-display); font-size: clamp(4rem, 10vw, 10rem); font-weight: 400; letter-spacing: -0.05em; line-height: 0.8; }
.error-page p:not(.kicker) { color: var(--club-muted); }
.error-page .button { justify-self: center; }

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hero h1 strong,
    .gate-copy h2 em,
    .programme-head h2 em,
    .live-head h2 em,
    .lineup-head h2 em,
    .proof-title h2 em,
    .reputation-copy h2 em,
    .access h2 em,
    .faq-head h2 em,
    .collection-head h2 em,
    .guide-hero h1 em,
    .guide-section h2 em,
    .headliner-name,
    .page-portal strong {
        background-image: linear-gradient(rgba(212,173,85,0.24), rgba(212,173,85,0.24)), var(--club-gold-texture);
        background-position: center;
        background-size: cover;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }
}

@media (max-width: 1120px) {
    .site-header { grid-template-columns: 135px auto 1fr auto; }
    .desktop-nav { display: none; }
    .reserve-link { justify-self: end; }
    .menu-toggle { display: grid; }
    .gate, .faq { grid-template-columns: 1fr; }
    .gate-copy, .faq-head { max-width: 800px; }
    .faq-head { position: static; }
    .programme-head, .proof-title, .collection-head { grid-template-columns: 1fr 2fr; }
    .collection-head > p { grid-column: 2; }
    .live-head { grid-template-columns: 1fr 3fr; }
    .live-head > p:last-child { grid-column: 2; }
    .lineup-head { grid-template-columns: 1fr 2fr; }
    .lineup-head > p { grid-column: 2; }
    .residents { grid-template-columns: 1fr; grid-template-areas: "label" "feature" "list" "link"; }
    .headliner-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .access { grid-template-columns: 1fr; }
    .access-main { min-height: 750px; }
}

@media (max-width: 760px) {
    :root { --pad: 20px; --section: 88px; }
    body { padding-bottom: calc(80px + env(safe-area-inset-bottom)); }
    .site-header, .site-header.is-scrolled, .site-header--solid { min-height: 72px; padding: 6px 16px; grid-template-columns: 95px 1fr auto; gap: 10px; border-color: transparent; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
    .brand { width: 92px; height: 56px; }
    .brand img { width: 90px; height: 52px; }
    .local-time { display: none; }
    .reserve-link { display: none; }
    .menu-toggle { grid-column: 3; }
    .hero-photo video { object-position: 50% 50%; }
    .hero-glaze { background: linear-gradient(180deg, rgba(8,8,8,0.48) 0%, rgba(8,8,8,0.12) 40%, rgba(8,8,8,0.94) 100%); }
    .hero-rail { display: none; }
    .hero-content { padding: 120px 20px calc(96px + env(safe-area-inset-bottom)); }
    .hero h1 { margin-bottom: 45px; }
    .hero h1 span, .hero h1 strong { font-size: clamp(5rem, 24vw, 8rem); line-height: 0.75; }
    .hero h1 strong { padding-inline-start: 0; }
    .hero-foot { grid-template-columns: 1fr; }
    .hero-foot .button { display: none; }
    .scroll-cue { display: none; }
    .gate-copy .index { margin-bottom: 48px; }
    .gate-visual { margin-inline: -20px; }
    .gate-visual figcaption { padding-inline: 20px; }
    .gate-copy h2, .programme-head h2, .live-head h2, .lineup-head h2, .proof-title h2, .reputation-copy h2, .access h2, .faq-head h2, .collection-head h2, .guide-hero h1, .guide-section h2 { font-size: clamp(4rem, 18vw, 6.4rem); }
    .programme-head, .proof-title, .collection-head, .live-head, .lineup-head { grid-template-columns: 1fr; }
    .programme-head h2 { justify-self: start; }
    .collection-head > p, .live-head > p:last-child, .lineup-head > p { grid-column: 1; }
    .act, .act--performance { min-height: auto; grid-template-columns: 52px minmax(0, 1fr); gap: 20px; padding: 44px 0 64px; }
    .act-number, .act--performance .act-number { grid-column: 1; grid-row: 1; font-size: 2.5rem; }
    .act-copy, .act--performance .act-copy { grid-column: 2; grid-row: 1; min-width: 0; align-self: start; }
    .act picture, .act--performance picture { grid-column: 1 / 3; grid-row: 2; width: 100%; min-width: 0; height: 68svh; }
    .act-copy h3 { font-size: 3.9rem; }
    .act--performance h3 { font-size: 3.2rem; }
    .video-stage { grid-template-columns: 1fr 1fr; }
    .video-card--one, .video-card--two { grid-column: auto; margin-top: 0; }
    .video-card--two { margin-top: 80px; }
    .video-toggle { inset: auto 10px 48px 10px; min-width: 0; }
    .residents { grid-template-columns: 1fr; }
    .resident-list { grid-template-columns: repeat(2, minmax(0, 1fr)); border-block-start: 1px solid rgba(244,240,232,0.22); }
    .resident-list a { border-block-end: 1px solid rgba(244,240,232,0.2); }
    .headliner-wall { grid-template-columns: 1fr; }
    .headliner-card, .headliner-card--wide { grid-column: auto; aspect-ratio: 4 / 5; }
    .headliner-name { font-size: clamp(2.4rem, 11vw, 4rem); }
    .proof-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
    .proof-item--dj, .proof-item--crowd, .proof-item--guest { grid-column: auto; grid-row: auto; }
    .proof-item--crowd { grid-row: span 2; }
    .proof-item--guest { grid-column: 1; margin-top: -140px; }
    .reputation { grid-template-columns: 1fr; min-height: 0; }
    .reputation-photo { min-height: 70svh; }
    .reputation-photo img { object-position: 54% 40%; }
    .reputation-copy { padding: 88px 20px; }
    .reputation-copy .kicker { margin-top: 32px; }
    .reputation-copy h2 { margin-bottom: 40px; }
    .reputation-facts a { grid-template-columns: 100px minmax(0, 1fr); min-height: 112px; gap: 18px; }
    .reputation-facts strong { font-size: 3.8rem; }
    .access-main { min-height: 720px; }
    .access-main .index { margin-bottom: 50px; }
    .access-facts dl > div { grid-template-columns: 1fr; gap: 10px; }
    .faq-list summary { min-height: 92px; font-size: 1.55rem; }
    .faq-list summary span { gap: 12px; }
    .faq-list details p { padding-left: 25px; padding-right: 10px; }
    .collection-grid { grid-template-columns: 1fr; }
    .venue-card { min-height: 230px; }
    .page-portals { grid-template-columns: 1fr; }
    .page-portal { min-height: 64svh; border-right: 0; border-bottom: 1px solid var(--club-line); }
    .page-portal:last-child { border-bottom: 0; }
    .site-footer { grid-template-columns: 1fr 1fr; }
    .footer-mark { grid-column: 1 / -1; }
    .whatsapp { inset: auto 16px calc(12px + env(safe-area-inset-bottom)); 16px; min-height: 56px; padding-inline: 18px; }
    .guide-hero { grid-template-columns: 1fr; padding-top: 70px; }
    .guide-hero-copy { min-height: 75svh; padding: 100px 20px 54px; }
    .guide-hero picture { min-height: 65svh; }
    .guide-layout { grid-template-columns: minmax(0, 1fr); }
    .guide-layout > * { min-width: 0; }
    .guide-section h2 { font-size: clamp(3.25rem, 15.5vw, 5.8rem); }
    .guide-aside { position: static; }
    .guide-options { grid-template-columns: 1fr; }
    .guide-checklist { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    .reveal, .js .reveal { opacity: 1; transform: none; }
}

@media (prefers-contrast: more) {
    :root { --club-muted: rgba(244,240,232,0.84); --club-line: rgba(244,240,232,0.44); }
}
