:root {
  --pink: #f985af;
  --pink-soft: #ffb4cf;
  --blue: #00c3ff;
  --blue-soft: #83e1ff;
  --ink: #050505;
  --ink-soft: #111111;
  --cream: #f7f5f0;
  --white: #ffffff;
  --line: rgba(5, 5, 5, .17);
  --radius: 28px;
  --header-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; width: 100%; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(5, 5, 5, .78);
  border-color: rgba(255,255,255,.11);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 158px; height: auto; filter: drop-shadow(0 2px 14px rgba(0,0,0,.28)); }
.main-nav { display: flex; gap: 28px; align-items: center; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.main-nav a { position: relative; }
.main-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: linear-gradient(90deg,var(--blue),var(--pink)); transition: right .25s ease;
}
.main-nav > a:hover::after { right: 0; }
.nav-cta { border: 1px solid rgba(255,255,255,.42); padding: 11px 17px; border-radius: 999px; background: rgba(0,0,0,.12); backdrop-filter: blur(6px); }
.nav-cta:hover { border-color: var(--pink); }
.menu-toggle { display: none; }
.mobile-only { display: none; }

.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--cream); }
.section-pink { background: var(--pink); }
.section-blue { background: var(--blue); }

.hero {
  min-height: 100svh;
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: #050505 url('assets/video/socialclub-poster.jpg') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.015);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.48) 0%, rgba(0,0,0,.15) 33%, rgba(0,0,0,.18) 60%, rgba(0,0,0,.72) 100%),
    radial-gradient(circle at 50% 44%, rgba(0,0,0,.02), rgba(0,0,0,.35) 80%);
}
.hero-color { position: absolute; z-index: 2; pointer-events: none; filter: blur(45px); opacity: .28; border-radius: 50%; }
.hero-color--blue { width: 36vw; height: 36vw; left: -18vw; bottom: -20vw; background: var(--blue); }
.hero-color--pink { width: 34vw; height: 34vw; right: -18vw; top: 10vh; background: var(--pink); }
.hero-center { position: relative; z-index: 4; width: min(82vw, 1080px); display: grid; justify-items: center; gap: 25px; text-align: center; }
.hero-logo { width: 100%; height: auto; filter: drop-shadow(0 9px 28px rgba(0,0,0,.72)); }
.hero-tagline { margin: 0; font-size: 12px; font-weight: 900; letter-spacing: .24em; text-shadow: 0 2px 16px rgba(0,0,0,.85); }
.hero-bottom {
  position: absolute;
  z-index: 4;
  left: 34px;
  right: 34px;
  bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.hero-next { display: inline-flex; align-items: center; justify-content: center; padding: 18px 24px; border: 1px solid rgba(255,255,255,.34); border-radius: 16px; background: rgba(5,5,5,.28); backdrop-filter: blur(9px); transition: border-color .2s ease, transform .2s ease; }
.hero-next:hover { border-color: var(--blue); transform: translateY(-2px); }
.hero-next strong { font-size: 21px; line-height: 1; letter-spacing: .015em; text-transform: uppercase; }
.scroll-cue { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 900; letter-spacing: .18em; opacity: .85; }
.scroll-cue i { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; font-size: 16px; font-style: normal; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.marquee { background: linear-gradient(90deg, var(--blue) 0 50%, var(--pink) 50% 100%); overflow: hidden; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.marquee-track { width: max-content; display: flex; gap: 0; animation: marquee 10s linear infinite; will-change: transform; }
.marquee-track span { font-size: 38px; font-weight: 900; letter-spacing: -.045em; padding: 14px 18px; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-100% / 6)); } }

.eyebrow { margin: 0 0 24px; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; display: flex; align-items: center; gap: 9px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: 0 0 auto; }
.dot--blue { background: var(--blue); }
.dot--pink { background: var(--pink); }
.dot--ink { background: var(--ink); }

.events { padding: 112px 34px 122px; position: relative; }
.events::after { content:""; position:absolute; width:150px; height:7px; top:45px; right:34px; background:linear-gradient(90deg,var(--blue) 0 50%,var(--pink) 50% 100%); border-radius:999px; }
.section-heading { display: grid; grid-template-columns: 1fr 1.4fr 1fr; align-items: end; gap: 30px; margin-bottom: 72px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h1, .club h2, .about h2 { margin: 0; font-size: clamp(72px, 10vw, 160px); line-height: .82; letter-spacing: -.075em; text-transform: uppercase; }
.section-intro { max-width: 340px; justify-self: end; font-size: 18px; line-height: 1.4; }
.event-list { border-top: 1px solid var(--line); }
.event-card { display: grid; grid-template-columns: 70px 180px 1fr 160px; gap: 24px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.event-card:hover { background: var(--white); padding-left: 14px; padding-right: 14px; }
.event-number { font-size: 12px; font-weight: 800; opacity: .55; }
.event-date { display: flex; align-items: baseline; gap: 9px; }
.event-date strong { font-size: 64px; line-height: 1; letter-spacing: -.07em; }
.event-date span { font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.event-city { display: flex; flex-direction: column; gap: 4px; }
.event-city strong { font-size: 38px; letter-spacing: -.055em; }
.event-city span { font-size: 13px; opacity: .55; }
.event-button { justify-self: end; display: inline-flex; justify-content: center; align-items: center; height: 48px; padding: 0 18px; border-radius: 999px; background: var(--ink); color: var(--white); font-size: 11px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.event-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.event-button--blue { background: var(--blue); color: var(--ink); }
.event-button--pink { background: var(--pink); color: var(--ink); }
.event-card--ghost { opacity: .52; }

.about { padding: 120px 34px 110px; position: relative; overflow: hidden; }
.about-accent { position:absolute; border-radius:50%; filter:blur(65px); opacity:.13; pointer-events:none; }
.about-accent--blue { width:430px; height:430px; background:var(--blue); right:-180px; top:-100px; }
.about-accent--pink { width:360px; height:360px; background:var(--pink); left:-180px; bottom:60px; }
.about-grid, .stats-grid { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 9vw; align-items: start; }
.about-copy { max-width: 620px; padding-top: 44px; display: flex; flex-direction: column; gap: 26px; }
.about-pillars { margin: 0; font-size: clamp(18px,1.6vw,24px); line-height: 1.15; text-transform: uppercase; letter-spacing: .16em; font-weight: 900; color: rgba(255,255,255,.92); }
.about-signature { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16); }
.about-signature p { margin: 0; font-size: clamp(30px,2.95vw,54px); line-height: .96; letter-spacing: -.055em; font-weight: 900; text-transform: uppercase; color: var(--white); }
.about-signature p + p { margin-top: 10px; }
.about-signature__pink { color: var(--pink); }
.about-signature__blue { color: var(--blue); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; border: 0; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--outline { color: var(--white); border: 1px solid rgba(255,255,255,.42); }
.button--outline:hover { border-color: var(--pink); }
.button--dark { background: var(--ink); color: var(--white); }
.button--gradient {
  background: linear-gradient(90deg, var(--blue) 0%, #89def3 52%, var(--pink) 100%);
  color: var(--ink);
}
.button--gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}
.text-link { font-size: 14px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.text-link--dark { border-color: rgba(5,5,5,.35); }
.stats-grid { margin-top: 110px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.stats-grid--five { grid-template-columns: repeat(5, 1fr); }
.stat { min-height: 220px; padding: 28px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; justify-content: space-between; }
.stat strong { font-size: clamp(58px,6vw,112px); letter-spacing: -.08em; color: var(--pink); }
.stat:nth-child(even) strong { color: var(--blue); }
.stat span { text-transform: uppercase; font-size: 11px; letter-spacing: .13em; font-weight: 800; opacity: .7; }

.gallery { padding: 22px 0 26px; position: relative; overflow: hidden; background: var(--pink); }
.gallery::before { content:none; }
.moments-wall { position:relative; z-index:1; display:grid; gap: 12px; padding: 0 12px; -webkit-mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.98) 4%, rgba(0,0,0,.98) 96%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, rgba(0,0,0,.98) 4%, rgba(0,0,0,.98) 96%, transparent 100%); }
.moments-row { overflow:hidden; }
.moments-row--top, .moments-row--middle, .moments-row--bottom { padding-left: 0; padding-right: 0; }
.moments-track { display:flex; gap:12px; width:max-content; animation: moments-scroll 48s linear infinite; will-change: transform; }
.moments-row--middle .moments-track { animation-duration: 54s; animation-delay: -10s; }
.moments-row--bottom .moments-track { animation-duration: 60s; animation-delay: -16s; }
.moments-group { display:flex; gap:12px; }
.moment-card { flex:0 0 auto; overflow:hidden; border-radius: 22px; background: #000; border:none; box-shadow:none; position:relative; transform: translateY(var(--offset, 0px)) rotate(var(--tilt, 0deg)); transition: none; }
.moment-card img { width:100%; height:100%; object-fit: cover; display:block; transition:none; }
.moment-card:hover { transform: translateY(var(--offset, 0px)) rotate(var(--tilt, 0deg)); box-shadow:none; }
.moment-card:hover img { transform:none; }
.moment-card--portrait { width: 248px; height: 300px; }
.moment-card--tall { width: 248px; height: 360px; }
.moment-card--square { width: 300px; height: 300px; }
.moment-card--wide { width: 412px; height: 300px; }
@keyframes moments-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 7px)); }
}

.club { padding: 120px 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; position:relative; overflow:hidden; }
.club::after { content:""; position:absolute; width:360px; height:360px; border-radius:50%; right:-120px; bottom:-210px; background:var(--pink); opacity:.9; }
.club-copy, .join-form { position:relative; z-index:1; }
.club-copy p:last-child { max-width: 460px; font-size: 20px; line-height: 1.35; }
.join-form { align-self: end; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 18px; }
.join-form label { display: flex; flex-direction: column; gap: 8px; }
.join-form label > span { font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.join-form input[type="text"], .join-form input[type="email"] { width: 100%; border: 0; border-bottom: 1px solid rgba(5,5,5,.5); background: transparent; border-radius: 0; padding: 12px 0 14px; outline: none; font-size: 18px; }
.join-form input:focus { border-color: var(--ink); }
.consent { grid-column: 1 / -1; flex-direction: row !important; align-items: center; }
.consent span { letter-spacing: 0 !important; text-transform: none !important; font-weight: 600 !important; }
.join-form .button { justify-self: start; }
.form-status { grid-column: 1 / -1; margin: 0; font-size: 13px; font-weight: 700; min-height: 18px; }

.site-footer { background: var(--ink); color: var(--white); padding: 80px 34px 28px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 70px; }
.footer-brand img { width:min(640px, 68vw); }
.footer-brand span { display:block; margin-top:20px; font-size:11px; font-weight:900; letter-spacing:.22em; color:rgba(255,255,255,.55); }
.footer-links { display: grid; align-content: start; gap: 14px; font-size: 18px; font-weight: 700; }
.footer-links a:hover { color: var(--pink); }
.footer-meta { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; display: flex; justify-content: space-between; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; opacity: .6; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .14s; }

@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .site-header { padding: 0 20px; }
  .brand { position: relative; z-index: 52; flex: 0 0 auto; max-width: calc(100% - 76px); }
  .brand-logo { width: 138px; max-width: 100%; }
  .menu-toggle { display: flex; width: 48px; height: 48px; flex: 0 0 48px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; background: rgba(0,0,0,.22); flex-direction: column; justify-content: center; gap: 6px; padding: 0 13px; z-index: 54; backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
  .menu-toggle span { height: 1px; background: #fff; width: 100%; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; width: 100%; height: 100svh; min-height: 100svh; z-index: 53; background: var(--ink); flex-direction: column; justify-content: center; align-items: flex-start; padding: calc(var(--header-h) + env(safe-area-inset-top) + 28px) 26px calc(40px + env(safe-area-inset-bottom)); gap: 18px; transform: translate3d(0,-105%,0); opacity: 0; visibility: hidden; pointer-events: none; overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; transition: transform .38s cubic-bezier(.2,.7,.2,1), opacity .18s ease, visibility 0s linear .38s; font-size: clamp(28px, 8.5vw, 34px); }
  .main-nav::after { content:""; position:fixed; left:0; right:0; bottom:0; height:10px; background:linear-gradient(90deg,var(--blue) 0 50%,var(--pink) 50%); }
  .main-nav.is-open { transform: translate3d(0,0,0); opacity: 1; visibility: visible; pointer-events: auto; transition: transform .38s cubic-bezier(.2,.7,.2,1), opacity .18s ease; }

  body.menu-open .site-header {
    background: transparent !important;
    border-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    z-index: 100;
  }
  body.menu-open .brand, body.menu-open .menu-toggle { position: relative; z-index: 102; }
  body.menu-open .main-nav { z-index: 101; }
  .main-nav > a { max-width: 100%; }
  .nav-cta { font-size: 16px; margin-top: 12px; padding: 12px 18px; }
  .mobile-only { display: inline-flex; }
  .nav-tiktok { font-size: 16px; text-transform: uppercase; letter-spacing: .04em; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 12px 18px; }
  .hero-center { width: min(90vw, 840px); }
  .hero-tagline { font-size:10px; letter-spacing:.17em; }
  .hero-bottom { left:20px; right:20px; bottom:20px; }
  .events, .about, .gallery, .club { padding-left: 20px; padding-right: 20px; }
  .section-heading, .gallery-top { grid-template-columns: 1fr; }
  .section-heading .section-intro, .gallery-top .text-link { justify-self: start; }
  .event-card { grid-template-columns: 52px 130px 1fr; padding: 20px 0; }
  .event-button { grid-column: 3; justify-self: start; }
  .event-date strong { font-size: 48px; }
  .event-city strong { font-size: 30px; }
  .about-grid, .club { grid-template-columns: 1fr; }
  .about-copy { padding-top: 0; gap: 22px; }
  .stats-grid, .stats-grid--five { grid-template-columns: 1fr 1fr; }
  .moments-wall { gap: 10px; padding: 0 10px; }
  .moments-track, .moments-group { gap: 10px; }
  .moment-card--portrait { width: 200px; height: 244px; }
  .moment-card--tall { width: 200px; height: 294px; }
  .moment-card--square { width: 244px; height: 244px; }
  .moment-card--wide { width: 336px; height: 244px; }
  .site-footer { grid-template-columns: 1fr; padding-left: 20px; padding-right: 20px; }
  .footer-meta { grid-column: 1; }
}

@media (max-width: 620px) {
  .site-header { height: 74px; padding-left: 14px; padding-right: 14px; }
  .brand { max-width: calc(100% - 66px); }
  .brand-logo { width: 112px; }
  .menu-toggle { width: 46px; height: 46px; flex-basis: 46px; }
  .main-nav { padding: calc(88px + env(safe-area-inset-top)) 22px calc(34px + env(safe-area-inset-bottom)); gap: 16px; }
  .hero-center { width: 94vw; gap:18px; transform:translateY(-1vh); }
  .hero-logo { filter:drop-shadow(0 5px 18px rgba(0,0,0,.9)); }
  .hero-tagline { font-size:9px; letter-spacing:.12em; }
  .hero-next { padding: 15px 18px; border-radius: 14px; }
  .hero-next strong { font-size: 17px; }
  .scroll-cue span { display:none; }
  .scroll-cue i { width:36px; height:36px; }
  .marquee-track { animation-duration: 9s; }
  .marquee-track span { font-size: 27px; padding: 11px 12px; }
  .events, .about, .gallery, .club { padding-top: 84px; padding-bottom: 90px; }
  .events::after { top:28px; right:20px; width:100px; height:5px; }
  .section-heading h1, .club h2, .about h2 { font-size: 19vw; }
  .event-card { grid-template-columns: 42px 100px 1fr; gap: 10px; }
  .event-number { align-self: start; padding-top: 8px; }
  .event-date { flex-direction: column; gap: 0; }
  .event-date strong { font-size: 42px; }
  .event-city strong { font-size: 24px; }
  .event-button { height: 42px; padding: 0 14px; }
  .stats-grid, .stats-grid--five { grid-template-columns: 1fr; }
  .stat { min-height: 170px; }
  .about-signature p { font-size: clamp(24px, 9vw, 42px); }
  .about-pillars { font-size: 14px; letter-spacing: .14em; }
  .gallery { padding-left: 0; padding-right: 0; padding-top: 16px; padding-bottom: 18px; }
  .moments-wall { gap: 8px; padding: 0 8px; }
  .moments-track, .moments-group { gap: 8px; }
  .moments-track { animation-duration: 44s; }
  .moments-row--middle .moments-track { animation-duration: 50s; }
  .moments-row--bottom .moments-track { animation-duration: 56s; }
  .moment-card { border-radius: 16px; }
  .moment-card--portrait { width: 38vw; height: 48vw; min-width: 156px; min-height: 198px; }
  .moment-card--tall { width: 38vw; height: 58vw; min-width: 156px; min-height: 238px; }
  .moment-card--square { width: 46vw; height: 46vw; min-width: 190px; min-height: 190px; }
  .moment-card--wide { width: 60vw; height: 46vw; min-width: 250px; min-height: 190px; }
  .club { gap: 60px; }
  .join-form { grid-template-columns: 1fr; }
  .consent, .form-status { grid-column: 1; }
  .footer-brand img { width:90vw; }
  .footer-meta { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video { display:none; }
  .hero { background: #050505 url('assets/video/socialclub-poster.jpg') center/cover no-repeat; }
}

/* =========================================================
   ACCOUNT / AUTH / PRIVACY / COOKIE SYSTEM
   ========================================================= */
body.cookie-modal-open { overflow: hidden; }

.site-header--solid {
  background: rgba(5,5,5,.94);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}
.subpage-nav { display:flex; gap:22px; align-items:center; color:#fff; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.05em; }
.subpage-nav a:last-child { border:1px solid rgba(255,255,255,.35); padding:10px 15px; border-radius:999px; }
.subpage-nav a:hover { color:var(--pink); }

.account-cta-card {
  position:relative;
  z-index:2;
  align-self:end;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(5,5,5,.16);
  border-radius:30px;
  padding:34px;
  box-shadow:0 28px 80px rgba(5,5,5,.16);
}
.account-cta-kicker,.card-kicker { font-size:10px; font-weight:900; letter-spacing:.16em; }
.account-cta-card h3 { margin:18px 0 16px; font-size:clamp(44px,5vw,76px); line-height:.88; letter-spacing:-.065em; text-transform:uppercase; }
.account-cta-card p { max-width:560px; font-size:17px; line-height:1.45; }
.account-cta-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.button--ghost-dark { border:1px solid rgba(5,5,5,.35); background:transparent; color:var(--ink); }
.button--blue-full { background:var(--blue); color:var(--ink); width:100%; }
.button--pink-full { background:var(--pink); color:var(--ink); width:100%; }
.button--outline-dark { border:1px solid rgba(5,5,5,.3); background:transparent; color:var(--ink); }

.footer-legal { grid-column:1 / -1; display:flex; flex-wrap:wrap; gap:18px; align-items:center; padding-top:4px; font-size:11px; text-transform:uppercase; letter-spacing:.08em; color:rgba(255,255,255,.68); }
.footer-legal a:hover,.footer-cookie-button:hover { color:var(--pink); }
.footer-cookie-button { border:0; padding:0; color:inherit; background:transparent; cursor:pointer; text-transform:inherit; letter-spacing:inherit; font:inherit; }
.site-footer--compact { padding-top:36px; }
.site-footer--compact .footer-legal { grid-column:1 / -1; }
.site-footer--compact .footer-meta { grid-column:1 / -1; }

/* Auth page */
.auth-page { background:var(--ink); color:var(--white); }
.auth-shell { min-height:100svh; display:grid; grid-template-columns:minmax(340px, .92fr) minmax(520px, 1.08fr); padding-top:var(--header-h); }
.auth-visual { position:relative; min-height:calc(100svh - var(--header-h)); overflow:hidden; display:flex; align-items:center; justify-content:center; padding:44px; }
.auth-visual video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.auth-visual-overlay { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.22),rgba(0,0,0,.68)),linear-gradient(145deg,rgba(0,195,255,.18),rgba(249,133,175,.12)); }
.auth-visual img { position:relative; z-index:2; width:min(78%,620px); filter:drop-shadow(0 8px 30px rgba(0,0,0,.7)); }
.auth-visual p { position:absolute; z-index:2; bottom:28px; left:34px; margin:0; font-size:10px; font-weight:900; letter-spacing:.22em; }
.auth-panel { background:var(--cream); color:var(--ink); min-height:calc(100svh - var(--header-h)); padding:52px clamp(28px,5vw,88px) 48px; display:flex; flex-direction:column; justify-content:center; }
.auth-tabs { display:flex; gap:8px; border-bottom:1px solid rgba(5,5,5,.15); margin-bottom:34px; }
.auth-tab { border:0; background:transparent; padding:0 0 12px; margin-right:20px; cursor:pointer; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; color:rgba(5,5,5,.42); position:relative; }
.auth-tab::after { content:""; position:absolute; left:0; right:100%; bottom:-1px; height:2px; background:linear-gradient(90deg,var(--blue),var(--pink)); transition:right .22s ease; }
.auth-tab.is-active { color:var(--ink); }
.auth-tab.is-active::after { right:0; }
.auth-view { display:none; }
.auth-view.is-active { display:block; }
.auth-view h1 { margin:10px 0 30px; font-size:clamp(68px,7vw,112px); line-height:.8; letter-spacing:-.075em; text-transform:uppercase; }
.auth-view h1.auth-community-title { font-size:clamp(52px,5.1vw,88px); line-height:.84; max-width:100%; width:100%; overflow-wrap:normal; word-break:normal; }
.auth-form { display:grid; gap:18px; max-width:680px; }
.auth-form label:not(.legal-check) { display:flex; flex-direction:column; gap:7px; }
.auth-form label > span { font-size:10px; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.auth-form input[type="text"],.auth-form input[type="email"],.auth-form input[type="tel"],.auth-form input[type="password"] { width:100%; border:1px solid rgba(5,5,5,.17); border-radius:15px; background:#fff; padding:15px 16px; outline:none; font-size:16px; transition:border-color .2s ease, box-shadow .2s ease; }
.auth-form input:focus { border-color:var(--blue); box-shadow:0 0 0 3px rgba(0,195,255,.12); }
.auth-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.legal-check { display:grid; grid-template-columns:20px 1fr; gap:10px; align-items:start; padding:2px 0; }
.legal-check input { margin-top:3px; width:16px; height:16px; accent-color:var(--pink); }
.legal-check span { font-size:12px !important; line-height:1.45; font-weight:600 !important; letter-spacing:0 !important; text-transform:none !important; color:rgba(5,5,5,.72); }
.legal-check a,.auth-legal-note a { text-decoration:underline; text-underline-offset:2px; }
.auth-status { min-height:19px; margin:0; font-size:12px; font-weight:800; color:#a1214c; }
.auth-switch { margin:24px 0 0; font-size:13px; }
.auth-switch button,.auth-legal-note button { border:0; padding:0; background:transparent; text-decoration:underline; cursor:pointer; font:inherit; color:inherit; }
.auth-legal-note { max-width:680px; margin:30px 0 0; padding-top:18px; border-top:1px solid rgba(5,5,5,.14); font-size:11px; line-height:1.5; color:rgba(5,5,5,.55); }
.auth-ticket-note { background:var(--ink); color:var(--white); border-radius:18px; padding:16px 18px; margin-bottom:24px; display:grid; grid-template-columns:auto 1fr; gap:14px; align-items:center; }
.auth-ticket-note span { color:var(--blue); font-size:9px; font-weight:900; letter-spacing:.15em; white-space:nowrap; }
.auth-ticket-note p { margin:0; font-size:13px; }

/* Account */
.account-page { background:var(--cream); }
.account-shell { min-height:calc(100svh - var(--header-h)); padding:calc(var(--header-h) + 70px) 34px 110px; display:grid; grid-template-columns:.85fr 1.15fr; gap:8vw; }
.account-hero h1 { margin:16px 0 20px; font-size:clamp(76px,9vw,150px); line-height:.78; text-transform:uppercase; letter-spacing:-.08em; }
.account-hero > p:last-child { font-size:20px; font-weight:700; }
.account-content { display:grid; gap:18px; align-content:start; }
.profile-card,.member-ticket-card { border-radius:28px; padding:30px; border:1px solid rgba(5,5,5,.14); }
.profile-card { background:#fff; }
.profile-card dl { margin:28px 0; }
.profile-card dl > div { display:grid; grid-template-columns:130px 1fr; gap:18px; padding:16px 0; border-bottom:1px solid rgba(5,5,5,.11); }
.profile-card dt { font-size:10px; text-transform:uppercase; letter-spacing:.1em; font-weight:900; opacity:.55; }
.profile-card dd { margin:0; font-size:16px; font-weight:700; word-break:break-word; }
.member-ticket-card { background:var(--ink); color:#fff; position:relative; overflow:hidden; }
.member-ticket-card::after { content:""; position:absolute; width:220px; height:220px; background:var(--blue); border-radius:50%; right:-100px; bottom:-120px; opacity:.5; }
.member-ticket-card h2 { position:relative; z-index:1; margin:22px 0 10px; font-size:clamp(58px,7vw,100px); line-height:.82; letter-spacing:-.07em; text-transform:uppercase; }
.member-ticket-card p { position:relative; z-index:1; font-weight:800; letter-spacing:.08em; text-transform:uppercase; font-size:11px; }
.member-ticket-card .button { position:relative; z-index:1; width:auto; margin-top:20px; }

/* Legal pages */
.legal-page { background:var(--cream); }
.legal-shell { padding:calc(var(--header-h) + 70px) 34px 110px; display:grid; grid-template-columns:minmax(300px,.72fr) minmax(0,1.28fr); gap:8vw; align-items:start; }
.legal-title { position:sticky; top:calc(var(--header-h) + 34px); }
.legal-title h1 { margin:18px 0 25px; font-size:clamp(70px,8vw,132px); line-height:.79; letter-spacing:-.08em; text-transform:uppercase; }
.legal-title > p:last-child { font-size:12px; opacity:.55; }
.legal-copy { max-width:860px; }
.legal-copy h2 { margin:50px 0 13px; font-size:25px; letter-spacing:-.03em; }
.legal-copy p,.legal-copy li { font-size:15px; line-height:1.7; color:rgba(5,5,5,.76); }
.legal-copy a { text-decoration:underline; text-underline-offset:3px; font-weight:700; }
.legal-warning { padding:20px 22px; border:1px solid rgba(5,5,5,.15); border-left:5px solid var(--pink); border-radius:16px; background:#fff; }
.legal-warning strong { font-size:12px; text-transform:uppercase; letter-spacing:.1em; }
.legal-warning p { margin:8px 0 0; }
.legal-related { margin-top:55px; padding-top:24px; border-top:1px solid rgba(5,5,5,.14); }
.legal-table-wrap { overflow-x:auto; margin:20px 0; }
.legal-table { width:100%; border-collapse:collapse; background:#fff; border-radius:16px; overflow:hidden; font-size:13px; }
.legal-table th,.legal-table td { text-align:left; padding:14px; border-bottom:1px solid rgba(5,5,5,.1); vertical-align:top; }
.legal-table th { background:var(--ink); color:#fff; font-size:10px; text-transform:uppercase; letter-spacing:.08em; }

/* Cookie banner + preferences */
.cookie-banner { position:fixed; z-index:220; left:18px; right:18px; bottom:18px; background:#fff; color:var(--ink); border:1px solid rgba(5,5,5,.16); border-radius:22px; box-shadow:0 24px 80px rgba(0,0,0,.28); padding:18px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
.cookie-banner[hidden],.cookie-modal[hidden] { display:none !important; }
.cookie-banner-copy { display:flex; align-items:center; gap:18px; max-width:760px; }
.cookie-banner-copy img { width:128px; flex:0 0 auto; }
.cookie-banner-copy strong { font-size:14px; }
.cookie-banner-copy p { margin:5px 0 0; font-size:11px; line-height:1.45; color:rgba(5,5,5,.66); }
.cookie-banner-copy a { text-decoration:underline; }
.cookie-actions { display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end; }
.cookie-btn { min-height:40px; border-radius:999px; border:1px solid rgba(5,5,5,.2); padding:0 15px; background:transparent; cursor:pointer; font-size:10px; font-weight:900; text-transform:uppercase; letter-spacing:.04em; }
.cookie-btn--accent { background:var(--blue); border-color:var(--blue); }
.cookie-btn--dark { background:var(--ink); color:#fff; border-color:var(--ink); }
.cookie-btn--ghost-dark { background:transparent; color:var(--ink); }
.cookie-modal { position:fixed; inset:0; z-index:240; display:grid; place-items:center; padding:20px; }
.cookie-modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.72); backdrop-filter:blur(8px); }
.cookie-modal-card { position:relative; z-index:1; width:min(650px,100%); max-height:min(800px,92svh); overflow:auto; background:var(--cream); color:var(--ink); border-radius:28px; padding:34px; box-shadow:0 30px 100px rgba(0,0,0,.45); }
.cookie-modal-card h2 { margin:8px 0 12px; font-size:clamp(48px,6vw,78px); line-height:.88; letter-spacing:-.06em; text-transform:uppercase; }
.cookie-modal-card > p { font-size:13px; line-height:1.5; color:rgba(5,5,5,.66); }
.cookie-close { position:absolute; top:18px; right:18px; width:38px; height:38px; border-radius:50%; border:1px solid rgba(5,5,5,.18); background:#fff; font-size:24px; cursor:pointer; }
.cookie-choice { display:flex; justify-content:space-between; gap:20px; align-items:center; padding:18px 0; border-top:1px solid rgba(5,5,5,.12); }
.cookie-choice strong { display:block; font-size:14px; }
.cookie-choice small { display:block; margin-top:4px; color:rgba(5,5,5,.55); line-height:1.35; }
.cookie-choice input { width:20px; height:20px; accent-color:var(--pink); }
.cookie-choice.is-locked { opacity:.7; }
.cookie-modal-actions { display:flex; justify-content:flex-end; gap:8px; padding-top:20px; }

@media (max-width: 1180px) and (min-width: 981px) {
  .auth-view h1.auth-community-title { font-size:clamp(48px,4.8vw,66px); }
}

@media (max-width: 980px) {
  .auth-shell { grid-template-columns:1fr; }
  .auth-visual { min-height:42svh; }
  .auth-panel { min-height:auto; }
  .account-shell,.legal-shell { grid-template-columns:1fr; gap:55px; padding-left:20px; padding-right:20px; }
  .legal-title { position:static; }
  .cookie-banner { align-items:flex-start; flex-direction:column; }
  .cookie-actions { width:100%; justify-content:flex-start; }
}

@media (max-width: 620px) {
  .subpage-nav a:first-child { display:none; }
  .auth-visual { min-height:34svh; padding:30px; }
  .auth-visual img { width:88%; }
  .auth-panel { padding:34px 20px 44px; }
  .auth-view h1 { font-size:18vw; }
  .auth-view h1.auth-community-title { font-size:clamp(42px,13vw,64px); line-height:.86; max-width:100%; width:100%; overflow-wrap:normal; word-break:normal; }
  .auth-form-grid { grid-template-columns:1fr; }
  .auth-ticket-note { grid-template-columns:1fr; gap:6px; }
  .account-shell { padding-top:calc(var(--header-h) + 45px); }
  .account-hero h1,.legal-title h1 { font-size:20vw; }
  .profile-card dl > div { grid-template-columns:1fr; gap:6px; }
  .legal-shell { padding-top:calc(var(--header-h) + 45px); }
  .cookie-banner { left:10px; right:10px; bottom:10px; border-radius:18px; padding:15px; }
  .cookie-banner-copy { align-items:flex-start; flex-direction:column; gap:10px; }
  .cookie-banner-copy img { width:112px; }
  .cookie-actions { display:grid; grid-template-columns:1fr 1fr; }
  .cookie-actions .cookie-btn--accent { grid-column:1 / -1; }
  .cookie-btn { width:100%; }
  .cookie-modal-card { padding:28px 20px 22px; border-radius:22px; }
  .cookie-modal-actions { display:grid; grid-template-columns:1fr; }
  .footer-legal { gap:12px 16px; }
  .account-cta-card { padding:24px; border-radius:24px; }
}


/* =========================================================
   SOCIAL CLUB SEASON CALENDAR
   ========================================================= */
.season-calendar {
  position: relative;
  overflow: hidden;
  padding: 118px 34px 126px;
  background: #05070a;
  color: var(--white);
}
.season-calendar__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  pointer-events: none;
  opacity: .72;
}
.season-calendar__video-shade {
  position: absolute;
  inset: 0;
  z-index: .5;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3,5,8,.38) 0%, rgba(3,5,8,.58) 46%, rgba(3,5,8,.76) 100%),
    radial-gradient(circle at 8% 22%, rgba(0,195,255,.18), transparent 34%),
    radial-gradient(circle at 92% 16%, rgba(249,133,175,.14), transparent 28%);
}
.season-calendar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: .6;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 22%),
    radial-gradient(circle at 65% 75%, rgba(255,255,255,.025), transparent 20%);
}
.season-calendar__inner { position: relative; z-index: 1; }
.season-calendar__heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 44px;
}
.season-calendar__title-block {
  display: grid;
  gap: 12px;
  justify-items: start;
}
.season-calendar__heading h2 {
  margin: 0;
  font-size: clamp(88px, 12vw, 188px);
  line-height: .82;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.season-calendar__kicker {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(12px, 1.25vw, 18px);
  font-weight: 900;
  letter-spacing: .28em;
  text-transform: uppercase;
}
.season-calendar__intro { max-width: 400px; justify-self: end; font-size: 18px; line-height: 1.45; color: rgba(255,255,255,.78); }
.season-calendar__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.season-tab {
  appearance: none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.season-tab:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.28); }
.season-tab.is-active {
  color: var(--ink);
  border-color: transparent;
  background: linear-gradient(90deg, var(--blue) 0%, #89def3 52%, var(--pink) 100%);
  box-shadow: 0 14px 36px rgba(0,0,0,.26);
}
.season-calendar__panel-wrap {
  padding: 26px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(6,8,12,.64), rgba(6,8,12,.48));
  backdrop-filter: blur(12px);
}
.season-panel { display: none; }
.season-panel.is-active { display: block; }
.season-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.season-card {
  position: relative;
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}
.season-card__image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #d8f6ff; }
.season-card__image::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 48%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 100%);
}
.season-card__image img { width: 100%; height: 100%; object-fit: cover; }
.season-card__day-number {
  position: absolute; top: 18px; left: 18px; z-index: 2; color: #fff;
  font-size: 56px; line-height: .86; letter-spacing: -.08em; font-weight: 900;
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.season-card__weekday-tag {
  position: absolute; top: 22px; right: 18px; z-index: 2; color: #fff;
  font-size: 16px; line-height: 1; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.season-card__body { display: grid; gap: 18px; padding: 18px 18px 20px; }
.season-card__topline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; justify-content: space-between; }
.season-card__city { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .09em; }
.season-card__time { font-size: 11px; font-weight: 800; color: rgba(5,5,5,.5); }
.season-card__title { margin: 0; font-size: 34px; line-height: .9; letter-spacing: -.06em; text-transform: uppercase; }
.season-card__venue { font-size: 14px; color: rgba(5,5,5,.56); font-weight: 700; }
.season-card__meta { display: grid; gap: 8px; padding-top: 14px; border-top: 1px solid rgba(5,5,5,.1); }
.season-card__meta-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.season-card__meta-row span:first-child { color: rgba(5,5,5,.45); font-weight: 800; }
.season-card__meta-row strong { font-size: 12px; }
.season-card__actions { display: grid; gap: 10px; margin-top: 4px; }
.season-card__button {
  width: 100%; min-height: 48px; border-radius: 999px; border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--white);
  font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.season-card__button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.season-card__button--accent { background: linear-gradient(90deg, var(--blue), var(--pink)); color: var(--ink); }
.season-card__note { font-size: 11px; color: rgba(5,5,5,.5); text-align: center; }

@media (max-width: 1180px) {
  .season-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .season-calendar { padding-left: 20px; padding-right: 20px; }
  .season-calendar__heading { grid-template-columns: 1fr; }
  .season-calendar__intro { justify-self: start; max-width: 560px; }
  .season-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .season-calendar { padding-top: 84px; padding-bottom: 90px; }
  .season-calendar__heading h2 { font-size: min(19vw, 106px); }
  .season-calendar__kicker { font-size: 10px; letter-spacing: .22em; }
  .season-calendar__panel-wrap { padding: 16px; border-radius: 24px; }
  .season-calendar__tabs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; width: 100%; overflow: visible; padding-bottom: 0; }
  .season-tab { min-width: 0; width: 100%; min-height: 44px; padding: 0 4px; white-space: nowrap; font-size: clamp(8px, 2.45vw, 10px); letter-spacing: .02em; }
  .season-card-grid { grid-template-columns: 1fr; }
  .season-card__title { font-size: 30px; }
}

@media (max-width: 767px) {
  .season-card__day-number { font-size: 52px; top: 16px; left: 16px; }
  .season-card__weekday-tag { font-size: 15px; top: 20px; right: 16px; }
}


/* Compact event cards on mobile: keep desktop layout unchanged */
@media (max-width: 620px) {
  .season-calendar { padding-top: 64px; padding-bottom: 72px; padding-left: 12px; padding-right: 12px; }
  .season-calendar__heading { margin-bottom: 28px; }
  .season-calendar__panel-wrap { padding: 10px; border-radius: 20px; }
  .season-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

  .season-card { border-radius: 18px; box-shadow: 0 10px 28px rgba(0,0,0,.16); }
  .season-card__image { aspect-ratio: 4 / 5; }
  .season-card__day-number { top: 10px; left: 10px; font-size: 34px; }
  .season-card__weekday-tag { top: 11px; right: 9px; font-size: 9px; letter-spacing: .08em; }

  .season-card__body { gap: 8px; padding: 10px 10px 12px; }
  .season-card__topline { gap: 4px; }
  .season-card__city { font-size: 9px; letter-spacing: .07em; }
  .season-card__title { font-size: clamp(19px, 5.7vw, 24px); line-height: .92; }
  .season-card__venue { font-size: 10px; }
  .season-card__actions { gap: 6px; margin-top: 2px; }
  .season-card__button { min-height: 36px; padding: 0 7px; font-size: 8px; letter-spacing: .035em; }
}

@media (max-width: 360px) {
  .season-calendar__panel-wrap { padding: 8px; }
  .season-card-grid { gap: 8px; }
  .season-card__body { padding: 8px 8px 10px; }
  .season-card__title { font-size: 18px; }
  .season-card__button { min-height: 34px; font-size: 7.5px; }
}


/* Mobile event grid refinement: 2 columns on small phones, 3 on standard/larger phones */
@media (min-width: 390px) and (max-width: 620px) {
  .season-calendar { padding-left: 8px; padding-right: 8px; }
  .season-calendar__panel-wrap { padding: 8px; }
  .season-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }

  .season-card { border-radius: 15px; }
  .season-card__image { aspect-ratio: 4 / 5; }
  .season-card__day-number { top: 7px; left: 7px; font-size: 27px; }
  .season-card__weekday-tag { top: 8px; right: 6px; font-size: 7px; letter-spacing: .05em; }

  .season-card__body { gap: 5px; padding: 8px 7px 9px; }
  .season-card__topline { min-height: 13px; }
  .season-card__city { font-size: 7px; line-height: 1.15; letter-spacing: .045em; }
  .season-card__title { font-size: clamp(13px, 3.5vw, 17px); line-height: .92; overflow-wrap: anywhere; }
  .season-card__actions { margin-top: 1px; }
  .season-card__button { min-height: 30px; padding: 0 4px; font-size: 0; letter-spacing: 0; }
  .season-card__button::after { content: 'INFO'; font-size: 7.5px; font-weight: 900; letter-spacing: .045em; }
}

@media (max-width: 389px) {
  .season-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* =========================================================
   EVERY THURSDAY — MILANO RESIDENCY
   ========================================================= */
.thursday-residency {
  position: relative;
  overflow: hidden;
  padding: 112px 34px;
  background: #050505;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.thursday-residency::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(0,195,255,.10), transparent 42%),
    linear-gradient(295deg, rgba(249,133,175,.11), transparent 40%);
}
.thursday-residency__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .18;
  pointer-events: none;
}
.thursday-residency__glow--blue { left: -190px; top: -150px; background: var(--blue); }
.thursday-residency__glow--pink { right: -190px; bottom: -180px; background: var(--pink); }
.thursday-residency__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
}
.thursday-residency h2 {
  margin: 0;
  font-size: clamp(78px, 11vw, 176px);
  line-height: .79;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.thursday-residency__sub {
  margin: 28px 0 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.thursday-residency__action {
  justify-self: end;
  width: min(100%, 430px);
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.thursday-residency__action p {
  margin: 0 0 24px;
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.12;
  letter-spacing: -.035em;
  color: rgba(255,255,255,.88);
}
.thursday-book {
  width: 100%;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  color: var(--ink);
}


/* =========================================================
   HOLLYWOOD — MEMBER-ONLY THURSDAY PAGE
   ========================================================= */
.hollywood-page {
  background: var(--ink);
  color: #fff;
}
.hollywood-page.is-auth-checking .hollywood-shell { opacity: 0; }
.hollywood-shell {
  min-height: 100svh;
  padding-top: var(--header-h);
  transition: opacity .2s ease;
}
.hollywood-hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: flex-end;
  padding: 64px 34px 54px;
  background:
    radial-gradient(circle at 12% 22%, rgba(0,195,255,.23), transparent 33%),
    radial-gradient(circle at 88% 72%, rgba(249,133,175,.20), transparent 35%),
    linear-gradient(145deg, #070b10 0%, #050505 62%, #12080d 100%);
}
.hollywood-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0 52%, rgba(0,0,0,.35));
}
.hollywood-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 8vw;
  align-items: end;
}
.hollywood-hero h1 {
  margin: 0;
  font-size: clamp(88px, 13vw, 210px);
  line-height: .76;
  letter-spacing: -.08em;
  text-transform: uppercase;
}
.hollywood-hero__location {
  width: min(100%, 430px);
  justify-self: end;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.05);
}
.hollywood-hero__location strong {
  display: block;
  font-size: clamp(30px, 3vw, 48px);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}
.hollywood-hero__location span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.hollywood-booking {
  padding: 92px 34px 110px;
  background: var(--blue);
  color: var(--ink);
}
.hollywood-booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
}
.hollywood-booking h2 {
  margin: 0;
  font-size: clamp(70px, 9vw, 145px);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hollywood-booking__placeholder {
  justify-self: end;
  width: min(100%, 480px);
  padding: 30px;
  border: 1px solid rgba(5,5,5,.22);
  border-radius: 28px;
  background: rgba(255,255,255,.30);
}
.hollywood-booking__placeholder p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}
.hollywood-booking__placeholder .eyebrow { margin-bottom: 16px; }

@media (max-width: 980px) {
  .thursday-residency { padding-left: 20px; padding-right: 20px; }
  .thursday-residency__inner { grid-template-columns: 1fr; gap: 44px; }
  .thursday-residency__action { justify-self: start; }
  .hollywood-hero { padding-left: 20px; padding-right: 20px; }
  .hollywood-hero__inner, .hollywood-booking__inner { grid-template-columns: 1fr; gap: 46px; }
  .hollywood-hero__location, .hollywood-booking__placeholder { justify-self: start; }
  .hollywood-booking { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 620px) {
  .thursday-residency { padding: 74px 14px 78px; }
  .thursday-residency h2 { font-size: 21vw; }
  .thursday-residency__sub { margin-top: 20px; font-size: 9px; letter-spacing: .13em; }
  .thursday-residency__action { padding: 22px; border-radius: 22px; }
  .thursday-residency__action p { font-size: 21px; }
  .hollywood-hero { min-height: calc(100svh - 74px); padding: 40px 14px 28px; }
  .hollywood-hero h1 { font-size: 22vw; }
  .hollywood-hero__location { padding: 22px; border-radius: 22px; }
  .hollywood-booking { padding: 72px 14px 82px; }
  .hollywood-booking h2 { font-size: 20vw; }
  .hollywood-booking__placeholder { padding: 22px; border-radius: 22px; }
}


/* =========================================================
   THURSDAY V2 — TABLE-ONLY + INTERACTIVE HOLLYWOOD MAP
   ========================================================= */
.thursday-residency__rule {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(249,133,175,.50);
  border-radius: 999px;
  color: #fff;
  background: rgba(249,133,175,.10);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
}
.thursday-residency__action p { margin-bottom: 22px; }

.hollywood-hero__rule {
  display: inline-flex;
  margin: 30px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(249,133,175,.52);
  border-radius: 999px;
  background: rgba(249,133,175,.09);
  color: rgba(255,255,255,.92);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hollywood-map-section {
  position: relative;
  padding: 104px 34px 116px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(0,195,255,.11), transparent 30%),
    radial-gradient(circle at 92% 60%, rgba(249,133,175,.10), transparent 32%),
    #07070a;
  color: #fff;
}
.hollywood-map-section__heading {
  width: min(100%, 1500px);
  margin: 0 auto 46px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 8vw;
  align-items: end;
}
.hollywood-map-section h2 {
  margin: 8px 0 0;
  font-size: clamp(72px, 9vw, 150px);
  line-height: .80;
  letter-spacing: -.075em;
  text-transform: uppercase;
}
.hollywood-map-section__intro {
  width: min(100%, 520px);
  justify-self: end;
}
.hollywood-map-section__intro p {
  margin: 18px 0 0;
  max-width: 470px;
  color: rgba(255,255,255,.68);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.45;
}
.map-status {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}
.floorplan-card {
  position: relative;
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}
.floorplan-stage {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #101017;
  isolation: isolate;
}
.floorplan-stage::after {
  content: "TAP / HOVER A ZONE";
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 6;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .16em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.floorplan-image {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.zone-hotspot {
  --zone: #f985af;
  --zone-soft: rgba(249,133,175,.18);
  --zone-border: rgba(249,133,175,.72);
  position: absolute;
  z-index: 4;
  appearance: none;
  border: 0;
  cursor: pointer;
  background: transparent;
  border-radius: 28px;
  outline: none;
}
.zone-hotspot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: radial-gradient(circle at 50% 50%, var(--zone-soft), transparent 67%);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .22s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.zone-hotspot:hover::before,
.zone-hotspot:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  border-color: var(--zone-border);
  box-shadow: inset 0 0 45px var(--zone-soft), 0 0 36px var(--zone-soft);
}
.zone-hotspot--social { --zone:#ff62e7; --zone-soft:rgba(255,98,231,.20); --zone-border:rgba(255,98,231,.72); left:3.4%; top:56.2%; width:29.7%; height:27.2%; }
.zone-hotspot--front { --zone:#16c8ff; --zone-soft:rgba(22,200,255,.17); --zone-border:rgba(22,200,255,.72); left:26.0%; top:6.2%; width:41.0%; height:49.0%; }
.zone-hotspot--backstage { --zone:#ff4048; --zone-soft:rgba(255,64,72,.18); --zone-border:rgba(255,64,72,.72); left:67.3%; top:7.5%; width:24.0%; height:52.8%; }
.zone-hotspot__tooltip {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  gap: 4px;
  min-width: max-content;
  padding: 12px 14px 11px;
  border: 1px solid var(--zone-border);
  border-radius: 14px;
  background: rgba(5,5,8,.82);
  color: #fff;
  box-shadow: 0 14px 42px rgba(0,0,0,.42), 0 0 25px var(--zone-soft);
  transform: translate(-50%, -40%) scale(.94);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity .18s ease, transform .18s ease;
}
.zone-hotspot:hover .zone-hotspot__tooltip,
.zone-hotspot:focus-visible .zone-hotspot__tooltip {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.zone-hotspot__tooltip b {
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -.01em;
}
.zone-hotspot__tooltip small {
  color: var(--zone);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.zone-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px 2px 0;
}
.zone-shortcut {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.zone-shortcut:hover { transform: translateY(-2px); background: rgba(255,255,255,.07); }
.zone-shortcut span { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 14px currentColor; }
.zone-shortcut--pink span { background:#ff62e7; color:#ff62e7; }
.zone-shortcut--blue span { background:#16c8ff; color:#16c8ff; }
.zone-shortcut--red span { background:#ff4048; color:#ff4048; }
.hollywood-booking-note {
  width: min(100%, 1500px);
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border-top: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
}
.hollywood-booking-note > span {
  color: var(--pink);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .15em;
}
.hollywood-booking-note p {
  margin: 0;
  color: rgba(255,255,255,.66);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.45;
}
.hollywood-booking-note strong { color:#fff; }

body.zone-modal-open { overflow: hidden; }
.zone-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: end center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, visibility 0s linear .25s;
}
.zone-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .2s ease;
}
.zone-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.68);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.zone-modal__panel {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 28px), 720px);
  margin: 0 14px 14px;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 95% 8%, rgba(249,133,175,.18), transparent 36%),
    radial-gradient(circle at 4% 88%, rgba(0,195,255,.14), transparent 36%),
    #0c0c10;
  color: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.58);
  transform: translateY(26px) scale(.985);
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.zone-modal.is-open .zone-modal__panel { transform: translateY(0) scale(1); }
.zone-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}
.zone-modal__panel h2 {
  margin: 22px 0 14px;
  max-width: 560px;
  font-size: clamp(46px, 7vw, 88px);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
.zone-modal__copy { margin: 0; max-width: 560px; color: rgba(255,255,255,.66); font-size: 16px; line-height: 1.45; }
.zone-modal__actions { display:grid; gap:10px; margin-top: 28px; }
.zone-contact {
  min-height: 58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color:#fff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.zone-contact--primary { background:linear-gradient(90deg,var(--blue),var(--pink)); color:#050505; border-color:transparent; }
.zone-modal__fineprint { margin:16px 0 0; text-align:center; color:rgba(255,255,255,.38); font-size:9px; font-weight:900; letter-spacing:.15em; text-transform:uppercase; }
.zone-modal-dot--pink { background:#ff62e7 !important; }
.zone-modal-dot--blue { background:#16c8ff !important; }
.zone-modal-dot--red { background:#ff4048 !important; }

@media (max-width: 980px) {
  .hollywood-map-section { padding-left:20px; padding-right:20px; }
  .hollywood-map-section__heading { grid-template-columns:1fr; gap:30px; }
  .hollywood-map-section__intro { justify-self:start; }
}

@media (max-width: 620px) {
  /* Avoid clipping the long EVERY THURSDAY title on real iPhone widths. */
  .thursday-residency h2 { font-size: 17.2vw; line-height:.82; letter-spacing:-.065em; }
  .thursday-residency__action p { font-size:18px; line-height:1.24; }
  .thursday-residency__rule { margin-bottom:14px; padding:8px 10px; font-size:8px; letter-spacing:.14em; }
  .thursday-book { min-height:54px; }

  .hollywood-hero { min-height:auto; padding-top:54px; padding-bottom:54px; }
  .hollywood-hero h1 { font-size: 17.5vw; line-height:.82; letter-spacing:-.065em; }
  .hollywood-hero__rule { margin-top:22px; font-size:8px; letter-spacing:.12em; white-space:normal; }
  .hollywood-map-section { padding:72px 12px 84px; }
  .hollywood-map-section h2 { font-size:18vw; }
  .hollywood-map-section__heading { margin-bottom:28px; }
  .floorplan-card { padding:7px; border-radius:20px; }
  .floorplan-stage { border-radius:14px; }
  .floorplan-stage::after { right:9px; top:9px; padding:6px 8px; font-size:6.5px; }
  .zone-hotspot { border-radius:16px; }
  .zone-hotspot::before { opacity:.18; }
  .zone-hotspot__tooltip { display:none; }
  .zone-shortcuts { gap:6px; padding-top:7px; }
  .zone-shortcut { min-height:48px; gap:6px; padding:0 6px; border-radius:12px; font-size:7px; letter-spacing:.08em; }
  .zone-shortcut span { width:7px; height:7px; }
  .hollywood-booking-note { grid-template-columns:30px 1fr; gap:10px; padding:18px 6px; }
  .zone-modal__panel { width:calc(100% - 16px); margin:0 8px max(8px, env(safe-area-inset-bottom)); padding:26px 18px 22px; border-radius:24px; }
  .zone-modal__panel h2 { margin-top:18px; font-size:15vw; }
  .zone-contact { min-height:54px; font-size:9px; }
}


/* =========================================================
   MOBILE COMMUNITY LAYOUT FIX — 2026-09-23
   Keeps the Join the Community block fully inside real iPhone widths.
   ========================================================= */
@media (max-width: 620px) {
  .club {
    padding: 70px 18px 82px;
    gap: 34px;
  }

  .club-copy {
    width: 100%;
    min-width: 0;
  }

  .club-copy .eyebrow {
    font-size: 9px;
    letter-spacing: .13em;
    line-height: 1.35;
  }

  .club-copy h2 {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    font-size: clamp(48px, 15.2vw, 60px);
    line-height: .82;
    letter-spacing: -.07em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .club-copy p:last-child {
    max-width: 100%;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.4;
  }

  .account-cta-card {
    width: 100%;
    min-width: 0;
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .account-cta-kicker {
    display: block;
    font-size: 9px;
    letter-spacing: .14em;
  }

  .account-cta-card h3 {
    max-width: 100%;
    margin: 16px 0 14px;
    font-size: clamp(34px, 10.7vw, 42px);
    line-height: .88;
    letter-spacing: -.055em;
  }

  .account-cta-card p {
    max-width: 100%;
    margin: 0;
    font-size: 15px;
    line-height: 1.42;
  }

  .account-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
    margin-top: 22px;
  }

  .account-cta-actions .button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    min-height: 50px;
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 480px) {
  .season-calendar__heading { gap: 16px; margin-bottom: 26px; }
  .season-calendar__heading h2 { line-height: .84; }
  .season-calendar__kicker { font-size: 9px; letter-spacing: .2em; }
}

@media (max-width: 620px) {
  .season-calendar__video { opacity: .66; object-position: center center; }
  .season-calendar__video-shade {
    background:
      linear-gradient(180deg, rgba(3,5,8,.30) 0%, rgba(3,5,8,.52) 38%, rgba(3,5,8,.80) 100%),
      radial-gradient(circle at 8% 22%, rgba(0,195,255,.14), transparent 38%),
      radial-gradient(circle at 92% 16%, rgba(249,133,175,.12), transparent 34%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .season-calendar__video { display: none; }
  .season-calendar {
    background:
      radial-gradient(circle at 10% 20%, rgba(0,195,255,.16), transparent 28%),
      radial-gradient(circle at 90% 15%, rgba(249,133,175,.12), transparent 24%),
      #07090d;
  }
}


/* === Winter Tour refinements === */
.season-calendar__panel-wrap {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}

.gallery {
  background: var(--pink) !important;
}


/* =========================================================
   SOCIAL MOMENTS — 3 CONTINUOUS IMAGE STRIPS
   ========================================================= */
.gallery {
  position: relative;
  overflow: hidden;
  padding: 6px 0 !important;
  background: #050505 !important;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(0,195,255,.05), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(249,133,175,.05), transparent 30%);
}

.moments-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  height: clamp(840px, 78vw, 1120px);
  overflow: hidden;
}

.moments-row {
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.moments-track {
  display: flex;
  width: max-content;
  gap: 8px;
  height: 100%;
  animation: moments-strip-left 62s linear infinite;
  will-change: transform;
}

.moments-row--reverse .moments-track {
  animation-name: moments-strip-right;
}

.moments-group {
  display: flex;
  gap: 8px;
  height: 100%;
  flex: 0 0 auto;
}

.moments-collage .moment-card {
  position: relative;
  flex: 0 0 auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}

.moments-collage .moment-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}

.moments-collage .moment-card:hover img {
  transform: scale(1.04);
}

.moments-collage .moment-card--portrait { aspect-ratio: 4 / 5; }
.moments-collage .moment-card--square { aspect-ratio: 1 / 1; }
.moments-collage .moment-card--landscape { aspect-ratio: 6 / 5; }

@keyframes moments-strip-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 4px)); }
}

@keyframes moments-strip-right {
  from { transform: translateX(calc(-50% - 4px)); }
  to { transform: translateX(0); }
}

@media (max-width: 980px) {
  .moments-collage {
    gap: 7px;
    height: clamp(720px, 92vw, 940px);
  }
  .moments-track,
  .moments-group {
    gap: 7px;
  }
  .moments-collage .moment-card {
    border-radius: 18px;
  }
}

@media (max-width: 620px) {
  .gallery {
    padding: 4px 0 !important;
  }

  .moments-collage {
    gap: 5px;
    height: min(92vh, 860px);
    min-height: 700px;
  }

  .moments-track,
  .moments-group {
    gap: 5px;
  }

  .moments-track {
    animation-duration: 56s;
  }

  .moments-collage .moment-card {
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .moments-track {
    animation: none;
  }
}


/* === BUILD 2026-09-23: MY ACCOUNT VIDEO + MEMBER-ONLY INFO === */
.account-page {
  position: relative;
  min-height: 100svh;
  background: #050505 !important;
  color: #fff;
  overflow-x: hidden;
}

.account-bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.account-bg-shade {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,5,5,.74), rgba(5,5,5,.46) 55%, rgba(5,5,5,.67)),
    linear-gradient(180deg, rgba(5,5,5,.20), rgba(5,5,5,.68));
}

.account-page .noise { z-index: 2; }
.account-page .site-header { z-index: 50; }
.account-page .account-shell,
.account-page .site-footer--compact {
  position: relative;
  z-index: 3;
}

.account-page .account-shell {
  grid-template-columns: .85fr 1.15fr;
}

.account-page .account-hero,
.account-page .account-content { color: #fff; }

.account-page .account-content {
  align-content: center;
}

.account-page .profile-card {
  color: #fff;
  background: rgba(5,5,5,.64) !important;
  border-color: rgba(255,255,255,.18) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,.30);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.account-page .profile-card dl > div {
  border-bottom-color: rgba(255,255,255,.16);
}

.account-page .profile-card dt { opacity: .62; }
.account-page .button--outline-dark {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.account-page .button--outline-dark:hover {
  background: #fff;
  color: var(--ink);
}

.account-page .site-footer--compact {
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .account-page .account-shell { grid-template-columns: 1fr; }
  .account-page .account-content { width: 100%; max-width: 760px; }
}

@media (max-width: 620px) {
  .account-bg-shade {
    background:
      linear-gradient(180deg, rgba(5,5,5,.48), rgba(5,5,5,.72)),
      linear-gradient(90deg, rgba(0,195,255,.07), rgba(249,133,175,.07));
  }
  .account-page .profile-card { background: rgba(5,5,5,.72) !important; }
}


/* =========================================================
   SOCIAL CLUB COOKIE POPUP — 2026
   ========================================================= */
.cookie-banner {
  position: fixed;
  z-index: 260;
  left: 50%;
  bottom: 24px;
  width: min(1120px, calc(100vw - 40px));
  transform: translate(-50%, 26px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: 38px;
  align-items: end;
  padding: 34px 36px 30px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0,195,255,.11), transparent 32%),
    linear-gradient(315deg, rgba(249,133,175,.13), transparent 36%),
    rgba(5,5,5,.96);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  box-shadow: 0 32px 100px rgba(0,0,0,.48);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: opacity .26s ease, transform .26s cubic-bezier(.2,.7,.2,1), visibility .26s ease;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner__accent {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--blue), var(--pink));
}

.cookie-banner__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-banner-copy {
  display: block;
  max-width: 720px;
}

.cookie-banner-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78) !important;
}

.cookie-banner-kicker span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(249,133,175,.55);
}

.cookie-banner-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .85;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.cookie-banner-copy h2 em {
  color: var(--blue);
  font-style: normal;
}

.cookie-banner-copy > p:not(.cookie-banner-kicker) {
  max-width: 720px;
  margin: 0 0 15px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.5;
}

.cookie-banner-copy > a {
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255,255,255,.32);
  padding-bottom: 4px;
}

.cookie-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  width: 100%;
}

.cookie-btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.cookie-btn--accent {
  border: 0;
  background: linear-gradient(90deg, var(--blue), #8edcf0 52%, var(--pink));
  color: var(--ink);
}

.cookie-btn--outline {
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: #fff;
}

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

.cookie-btn--outline-dark {
  border: 1px solid rgba(5,5,5,.24);
  background: transparent;
  color: var(--ink);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 280;
  display: grid;
  place-items: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.cookie-modal-card {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(820px, 92svh);
  overflow: auto;
  padding: 34px;
  border-radius: 30px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 34px 110px rgba(0,0,0,.5);
}

.cookie-modal-card h2 {
  margin: 10px 0 14px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.cookie-modal-card > p {
  max-width: 540px;
  color: rgba(5,5,5,.64);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(5,5,5,.18);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.cookie-choice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 19px 0;
  border-top: 1px solid rgba(5,5,5,.12);
}

.cookie-choice strong {
  display: block;
  font-size: 14px;
}

.cookie-choice small {
  display: block;
  margin-top: 5px;
  color: rgba(5,5,5,.55);
  line-height: 1.4;
}

.cookie-choice input {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
}

.cookie-choice.is-locked {
  opacity: .72;
}

.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  padding-top: 22px;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    transform: translateY(28px);
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px 20px;
    border-radius: 26px;
  }

  .cookie-banner.is-visible {
    transform: translateY(0);
  }

  .cookie-banner__accent {
    inset: 0 0 auto 0;
    width: auto;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--pink));
  }

  .cookie-banner__close {
    top: 15px;
    right: 15px;
  }

  .cookie-banner-copy h2 {
    padding-right: 42px;
    font-size: clamp(40px, 12vw, 58px);
  }

  .cookie-banner-copy > p:not(.cookie-banner-kicker) {
    font-size: 12px;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .cookie-btn--accent {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .cookie-btn {
    min-height: 46px;
    padding: 0 12px;
    font-size: 9px;
  }

  .cookie-modal-card {
    padding: 30px 20px 22px;
    border-radius: 24px;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   COMPACT COOKIE POPUP + CSS-DRAWN ARROWS
   ========================================================= */
.ui-arrow {
  display: inline-block;
  position: relative;
  flex: 0 0 auto;
  color: currentColor;
  vertical-align: middle;
}

.ui-arrow--ne {
  width: 12px;
  height: 12px;
  margin-left: 5px;
}

.ui-arrow--ne::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0;
  right: 0;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.ui-arrow--ne::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  left: 0;
  bottom: 2px;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.ui-arrow--down {
  width: 13px;
  height: 13px;
}

.ui-arrow--down::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 1.5px;
  height: 11px;
  background: currentColor;
}

.ui-arrow--down::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 0;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.cookie-banner {
  left: 50%;
  right: auto;
  bottom: 20px;
  width: min(760px, calc(100vw - 36px));
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 24px 26px 22px;
  border-radius: 24px;
}

.cookie-banner-copy {
  max-width: 640px;
}

.cookie-banner-kicker {
  margin-bottom: 10px !important;
  font-size: 9px !important;
}

.cookie-banner-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: .88;
}

.cookie-banner-copy > p:not(.cookie-banner-kicker) {
  max-width: 620px;
  margin-bottom: 11px;
  font-size: 12px;
  line-height: 1.42;
}

.cookie-banner-copy > a {
  font-size: 9px;
}

.cookie-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.cookie-btn {
  min-height: 42px;
  padding: 0 12px;
  font-size: 8.5px;
}

.cookie-banner__close {
  top: 12px;
  right: 13px;
  width: 32px;
  height: 32px;
  font-size: 20px;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    gap: 15px;
    padding: 22px 16px 16px;
    border-radius: 20px;
  }

  .cookie-banner-copy h2 {
    padding-right: 34px;
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .cookie-banner-copy > p:not(.cookie-banner-kicker) {
    font-size: 11px;
    line-height: 1.38;
  }

  .cookie-actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .cookie-btn--accent {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .cookie-btn {
    min-height: 40px;
    font-size: 8px;
  }
}

/* === COOKIE POPUP EXTRA COMPACT + NO ARROW ICONS === */
.ui-arrow { display:none !important; }

.cookie-banner {
  width: min(560px, calc(100vw - 28px)) !important;
  bottom: 14px !important;
  gap: 12px !important;
  padding: 18px 20px 16px !important;
  border-radius: 20px !important;
}
.cookie-banner-copy h2 {
  margin-bottom: 8px !important;
  font-size: clamp(26px, 2.5vw, 36px) !important;
  line-height: .9 !important;
}
.cookie-banner-kicker {
  margin-bottom: 8px !important;
  font-size: 8px !important;
}
.cookie-banner-copy > p:not(.cookie-banner-kicker) {
  margin-bottom: 9px !important;
  font-size: 10.5px !important;
  line-height: 1.35 !important;
}
.cookie-banner-copy > a { font-size: 8px !important; }
.cookie-actions { gap: 6px !important; }
.cookie-btn {
  min-height: 36px !important;
  padding: 0 10px !important;
  font-size: 7.5px !important;
}
.cookie-banner__close {
  width: 28px !important;
  height: 28px !important;
  top: 10px !important;
  right: 10px !important;
  font-size: 17px !important;
}
@media (max-width: 760px) {
  .cookie-banner {
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    bottom: 8px !important;
    padding: 17px 14px 14px !important;
    gap: 11px !important;
    border-radius: 18px !important;
  }
  .cookie-banner-copy h2 {
    padding-right: 30px !important;
    font-size: clamp(26px, 8vw, 34px) !important;
  }
  .cookie-banner-copy > p:not(.cookie-banner-kicker) {
    font-size: 10px !important;
    line-height: 1.33 !important;
  }
  .cookie-actions { gap: 5px !important; }
  .cookie-btn { min-height: 35px !important; font-size: 7px !important; }
}




/* Contact choices — compact and native to the Social Club UI. */
.nav-contact,
.footer-contact {
  position: relative;
}

.contact-toggle {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.contact-options {
  z-index: 20;
}

.contact-options[hidden] {
  display: none !important;
}

.contact-options--footer {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.contact-options--footer a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-options--footer a:hover {
  border-color: var(--pink);
}

@media (max-width: 980px) {
  .nav-contact {
    display: block;
    width: 100%;
  }

  .contact-toggle--nav {
    font-size: inherit;
    font-weight: inherit;
    text-transform: uppercase;
    letter-spacing: inherit;
  }

  .contact-options--nav {
    display: flex;
    gap: 8px;
    margin-top: 12px;
  }

  .contact-options--nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
}

/* The gallery keeps its dimensions before images decode, avoiding mobile jumps. */
.moments-collage .moment-card {
  contain: layout paint;
  background:
    linear-gradient(135deg, rgba(0,195,255,.08), rgba(249,133,175,.08)),
    #090909;
}

.moments-collage .moment-card img {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Footer brand is logo-only now. */
.footer-brand span {
  display: none !important;
}

@media (max-width: 620px) {
  .footer-links {
    gap: 12px;
  }

  .contact-options--footer {
    flex-wrap: wrap;
  }
}


/* =========================================================
   HERO FOLD + SOCIAL ICONS — FINAL
   ========================================================= */
/* The marquee starts strictly below the first viewport on every device. */
.hero {
  min-height: 100vh !important;
  height: 100vh !important;
}

@supports (height: 100svh) {
  .hero {
    min-height: 100svh !important;
    height: 100svh !important;
  }
}

/* Desktop keeps BUY YOUR TICKETS visible. */
@media (min-width: 621px) {
  .hero-bottom {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* Mobile only:
   keep the landing at its original size and centered.
   CTA + marquee stay invisible at the very top, then appear after a tiny scroll.
   Desktop is intentionally unchanged. */
@media (max-width: 620px) {
  .hero {
    min-height: 100svh !important;
    height: 100svh !important;
  }

  .hero .hero-bottom,
  .marquee {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .hero .hero-bottom {
    transform: translateY(12px) !important;
    transition:
      opacity .42s ease,
      transform .42s cubic-bezier(.22,.7,.25,1),
      visibility 0s linear .42s !important;
  }

  .marquee {
    transform: translateY(10px) !important;
    transition:
      opacity .46s ease .08s,
      transform .46s cubic-bezier(.22,.7,.25,1) .08s,
      visibility 0s linear .54s !important;
  }

  body.hero-action-revealed .hero .hero-bottom,
  body.hero-action-revealed .marquee {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.hero-action-revealed .hero .hero-bottom {
    transform: translateY(0) !important;
    transition-delay: 0s, 0s, 0s !important;
  }

  body.hero-action-revealed .marquee {
    transform: translateY(0) !important;
    transition-delay: .08s, .08s, 0s !important;
  }
}

/* Instagram + TikTok: icon-only, last in hamburger/footer. */
.nav-socials,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.045);
  color: #fff;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.62);
  background: rgba(255,255,255,.09);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}

.social-icon-link--instagram:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.social-icon-link--tiktok:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.footer-socials {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .nav-socials.mobile-only {
    display: flex;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .main-nav .nav-socials .social-icon-link {
    width: 46px;
    height: 46px;
  }
}


/* =========================================================
   PASSWORD RECOVERY
   ========================================================= */
.auth-inline-action {
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}

.auth-text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(5,5,5,.62);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.auth-text-button:hover {
  color: var(--ink);
}

.password-recovery-panel {
  margin-top: 26px;
  padding: 26px;
  border: 1px solid rgba(5,5,5,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 50px rgba(5,5,5,.08);
}

.password-recovery-panel[hidden] {
  display: none !important;
}

.password-recovery-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.password-recovery-panel h2 {
  margin: 10px 0 0;
  font-size: clamp(38px,4vw,58px);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.password-recovery-copy {
  max-width: 560px;
  margin: 18px 0 20px;
  color: rgba(5,5,5,.68);
  font-size: 13px;
  line-height: 1.5;
}

.password-recovery-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(5,5,5,.16);
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.reset-message {
  max-width: 620px;
  margin-top: 8px;
  padding: 22px 0;
}

.reset-message strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.025em;
}

.reset-message p {
  margin: 8px 0 20px;
  color: rgba(5,5,5,.65);
  line-height: 1.5;
}

@media (max-width: 620px) {
  .password-recovery-panel {
    padding: 20px;
    border-radius: 20px;
  }

  .password-recovery-panel h2 {
    font-size: 34px;
  }

  .auth-inline-action {
    margin-top: -4px;
  }
}


/* Email confirmation success */
.auth-confirmed-note {
  border-color: rgba(0,195,255,.26);
  background:
    linear-gradient(135deg, rgba(0,195,255,.10), rgba(249,133,175,.08)),
    rgba(255,255,255,.86);
}

.auth-confirmed-note span {
  color: #00aee6;
}

.auth-confirmed-note p {
  color: rgba(5,5,5,.78);
}


/* Registration success — compact, non-error banner */
.auth-account-created-note {
  margin: 18px 0 4px;
  border-color: rgba(0,195,255,.24);
  background:
    linear-gradient(135deg, rgba(0,195,255,.09), rgba(249,133,175,.08)),
    rgba(255,255,255,.88);
}

.auth-account-created-note span {
  color: #00aee6;
}

.auth-account-created-note p {
  color: rgba(5,5,5,.82);
  font-weight: 800;
}

.auth-status.is-neutral {
  color: rgba(5,5,5,.55);
}


/* Auth banners must truly stay hidden until JS explicitly reveals them. */
.auth-ticket-note[hidden],
.auth-account-created-note[hidden],
.auth-confirmed-note[hidden] {
  display: none !important;
}


/* 18+ account eligibility */
.legal-check--age {
  border-color: rgba(0,195,255,.20);
  background:
    linear-gradient(135deg, rgba(0,195,255,.055), rgba(249,133,175,.045)),
    rgba(255,255,255,.35);
}

.legal-check--age strong {
  color: #050505;
}
