/* ==========================================================================
   Ibiza Clubbing 2026 — styles
   Aesthetic: island night. Deep indigo dark, sunset gradient (magenta→orange
   →gold), electric cyan accents. Big confident display type.
   ========================================================================== */
:root {
  --ink:      #0a0714;
  --ink-2:    #120b22;
  --panel:    #171029;
  --panel-2:  #1e1436;
  --line:     rgba(255,255,255,.09);
  --line-2:   rgba(255,255,255,.16);
  --text:     #f4f0ff;
  --muted:    #b3a9cf;
  --muted-2:  #7d7499;

  --magenta:  #ff2d78;
  --orange:   #ff8a3c;
  --gold:     #ffcc44;
  --cyan:     #22d3ee;
  --violet:   #8b5cf6;

  --sunset: linear-gradient(100deg, var(--magenta) 0%, var(--orange) 52%, var(--gold) 100%);
  --night:  radial-gradient(120% 120% at 80% -10%, #2a1247 0%, #0a0714 60%);

  --r-sm: 10px; --r: 16px; --r-lg: 24px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.7);
  --maxw: 1180px;
  --font-display: 'Clash Display', 'Archivo', system-ui, sans-serif;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased; line-height: 1.6;
}
h1,h2,h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -.02em; margin: 0; }
a { color: inherit; }
img { max-width: 100%; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.gradient-text { background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(18px,4vw,40px);
  background: rgba(10,7,20,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; text-decoration: none; }
.brand .glyph { width: 26px; height: 26px; border-radius: 8px; background: var(--sunset); box-shadow: 0 0 22px rgba(255,80,120,.5); }
/* logo cropped from the wide artwork (trims the black margins + URL line) */
.brand-logo {
  display: block; width: 180px; height: 48px;
  background: url("../img/ibiza-clubbing.png") no-repeat;
  background-size: 257px auto; background-position: -39px -45px;
  mix-blend-mode: screen;
}
@media (max-width: 760px) {
  .brand-logo { width: 144px; height: 38px; background-size: 206px auto; background-position: -31px -36px; }
}
.nav-links { display: flex; gap: 8px; }
.nav-links a {
  text-decoration: none; color: var(--muted); font-size: .92rem; font-weight: 500;
  padding: 8px 14px; border-radius: 999px; transition: .18s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-cta { background: var(--sunset) !important; color: #1a0a12 !important; font-weight: 700 !important; }

/* ---------- accessibility util ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- hero banner (artwork masthead) ---------- */
.hero--banner { position: relative; background: var(--night); line-height: 0; }
.hero-banner-img { display: block; width: 100%; height: clamp(340px, 56vh, 600px); object-fit: cover; object-position: center 24%; }
.hero--banner::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(to bottom, transparent, var(--ink)); pointer-events: none; }
/* graceful fallback if the image isn't in place yet */
.hero-fallback { display: none; }
.hero--banner.no-img .hero-banner-img { display: none; }
.hero--banner.no-img::after { display: none; }
.hero--banner.no-img .hero-fallback { display: flex; align-items: center; justify-content: center; height: clamp(300px, 46vh, 460px); background: var(--night); line-height: 1; }
.hero-fallback-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 9vw, 5.4rem); letter-spacing: -.02em; color: var(--text); }
@media (max-width: 760px) { .hero-banner-img { height: auto; } }

/* ---------- hero intro strip ---------- */
.hero-intro { background: var(--ink); padding: clamp(28px, 5vh, 54px) 0 clamp(36px, 6vh, 64px); border-bottom: 1px solid var(--line); }
.hero-intro .lede { font-size: clamp(1.05rem, 2vw, 1.35rem); color: var(--muted); max-width: 660px; margin: 0 0 28px; }
.hero-intro .hero-stats { margin-top: 40px; }

/* ---------- hero (legacy text hero, kept for other uses) ---------- */
.hero { position: relative; overflow: hidden; background: var(--night); padding: clamp(64px, 12vh, 150px) 0 clamp(56px, 9vh, 110px); }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background:
    radial-gradient(40% 55% at 12% 8%, rgba(255,45,120,.5), transparent 60%),
    radial-gradient(45% 55% at 88% 0%, rgba(255,138,60,.42), transparent 60%),
    radial-gradient(50% 60% at 60% 100%, rgba(34,211,238,.28), transparent 60%);
  filter: blur(6px);
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 600; color: var(--gold);
  border: 1px solid var(--line-2); padding: 7px 15px; border-radius: 999px; background: rgba(255,255,255,.03);
}
.eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(255,204,68,.6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(255,204,68,0); } 100% { box-shadow: 0 0 0 0 rgba(255,204,68,0); } }
.hero h1 { font-size: clamp(2.9rem, 8vw, 6.4rem); margin-bottom: 22px; }
.hero p.lede { font-size: clamp(1.05rem, 2vw, 1.4rem); color: var(--muted); max-width: 640px; margin: 0 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  padding: 15px 26px; border-radius: 999px; border: 1px solid transparent; transition: .2s;
}
.btn-primary { background: var(--sunset); color: #1a0a12; box-shadow: 0 12px 30px -8px rgba(255,80,120,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(255,80,120,.6); }
.btn-ghost { background: rgba(255,255,255,.05); border-color: var(--line-2); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.hero-stats { display: flex; flex-wrap: wrap; gap: 34px; margin-top: 52px; }
.hero-stats .stat b { display: block; font-family: var(--font-display); font-size: 2rem; background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats .stat span { color: var(--muted-2); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- section scaffolding ---------- */
section { padding: clamp(56px, 10vh, 104px) 0; }
.sec-head { max-width: 680px; margin-bottom: 46px; }
.sec-kicker { color: var(--cyan); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.sec-head h2 { font-size: clamp(2rem, 5vw, 3.3rem); margin: 12px 0 14px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- how the season works ---------- */
.rhythm { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.rhythm .card {
  background: linear-gradient(180deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px;
}
.rhythm .card .n { font-family: var(--font-display); font-size: 2.2rem; background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rhythm .card h3 { font-size: 1.25rem; margin: 6px 0 8px; }
.rhythm .card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---------- venues ---------- */
#venue-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.venue-card {
  display: block; text-decoration: none; color: inherit;
  position: relative; overflow: hidden; padding: 26px 24px 24px;
  background: linear-gradient(180deg, var(--panel-2), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); transition: .22s;
}
.vc-link { display: inline-block; margin-top: 16px; font-weight: 700; font-size: .9rem; color: var(--v); position: relative; transition: .18s; }
.venue-card:hover .vc-link { letter-spacing: .02em; }
.venue-card::before { content:''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--v); }
.venue-card::after { content:''; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px; border-radius: 50%; background: var(--v); opacity: .16; filter: blur(30px); transition: .22s; }
.venue-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.venue-card:hover::after { opacity: .3; }
.vc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; position: relative; }
.vc-type { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--v); border: 1px solid var(--v); padding: 4px 10px; border-radius: 999px; }
.vc-area { font-size: .82rem; color: var(--muted-2); }
.venue-card h3 { font-size: 1.7rem; margin-bottom: 10px; position: relative; }
.vc-blurb { color: var(--muted); font-size: .95rem; margin: 0 0 16px; position: relative; }
.vc-meta { display: flex; flex-direction: column; gap: 5px; font-size: .84rem; color: var(--muted); margin-bottom: 14px; position: relative; }
.vc-genres { display: flex; flex-wrap: wrap; gap: 6px; position: relative; }
.vc-genres span { font-size: .74rem; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--muted); }

/* ---------- calendar ---------- */
.cal-section { background: var(--ink-2); border-top: 1px solid var(--line); }
.cal-toolbar { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.cal-controls { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.seg { display: inline-flex; background: var(--panel); border: 1px solid var(--line); border-radius: 999px; padding: 4px; }
.seg button { border: 0; background: transparent; color: var(--muted); font-weight: 600; font-size: .88rem; padding: 8px 16px; border-radius: 999px; cursor: pointer; transition: .16s; }
.seg button.active { background: var(--sunset); color: #1a0a12; }
select.filter {
  appearance: none; background: var(--panel) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b3a9cf'%3E%3Cpath d='M6 8 1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
  color: var(--text); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 34px 10px 16px; font-size: .88rem; font-weight: 600; cursor: pointer;
}
#month-nav { display: flex; align-items: center; gap: 14px; }
#month-nav button { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); background: var(--panel); color: #fff; font-size: 1.2rem; cursor: pointer; transition: .16s; }
#month-nav button:hover { background: var(--panel-2); border-color: var(--line-2); }
#cal-title { font-family: var(--font-display); font-size: 1.5rem; min-width: 220px; text-align: center; }

/* month grid */
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.cal-dow { text-align: center; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; padding-bottom: 4px; }
.cal-cell {
  min-height: 118px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 8px 7px; display: flex; flex-direction: column; gap: 4px; overflow: hidden;
}
.cal-cell.empty { background: transparent; border: 0; }
.cal-cell.off { opacity: .38; }
.cal-cell.today { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.cal-date { font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: 2px; }
.cal-cell.today .cal-date { color: var(--gold); }
.cal-closed { font-size: .7rem; color: var(--muted-2); font-style: italic; }
.cal-ev {
  display: flex; align-items: center; gap: 6px; width: 100%; text-align: left; cursor: pointer;
  background: color-mix(in srgb, var(--v) 14%, transparent); border: 1px solid color-mix(in srgb, var(--v) 34%, transparent);
  border-radius: 7px; padding: 4px 7px; color: var(--text); font-size: .74rem; line-height: 1.15; transition: .14s;
}
.cal-ev:hover { background: color-mix(in srgb, var(--v) 30%, transparent); transform: translateX(2px); }
.cal-ev.special { background: var(--sunset); border-color: transparent; color: #1a0a12; font-weight: 700; }
.cal-ev.special .dot { display: none; }
.cal-ev .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--v); flex: 0 0 auto; box-shadow: 0 0 6px var(--v); }
.cal-ev .txt { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cal-more { background: none; border: 0; color: var(--muted-2); font-size: .72rem; font-weight: 600; cursor: pointer; text-align: left; padding: 2px 4px; }
.cal-more:hover { color: #fff; }

/* list view */
.cal-list { max-width: 820px; }
.list-month { font-size: 1.4rem; margin: 30px 0 14px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.list-month:first-child { margin-top: 0; }
.list-day { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.list-date { text-align: center; }
.ld-dow { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.ld-num { display: block; font-family: var(--font-display); font-size: 1.6rem; }
.list-evs { display: flex; flex-direction: column; gap: 8px; }
.list-ev {
  display: grid; grid-template-columns: 1fr auto; grid-auto-rows: auto; gap: 2px 12px; text-align: left; cursor: pointer;
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--v);
  border-radius: 10px; padding: 12px 15px; color: var(--text); transition: .16s;
}
.list-ev:hover { background: var(--panel-2); transform: translateX(3px); }
.le-night { font-weight: 700; font-size: 1rem; }
.le-night .tag { font-family: var(--font); font-style: normal; font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; background: var(--sunset); color: #1a0a12; padding: 2px 7px; border-radius: 999px; margin-left: 6px; }
.le-venue { grid-column: 2; grid-row: 1; color: var(--v); font-weight: 600; font-size: .9rem; }
.le-artists { grid-column: 1 / -1; color: var(--muted); font-size: .84rem; }
.cal-empty { color: var(--muted); text-align: center; padding: 60px 0; }
.cal-note { margin-top: 20px; font-size: .84rem; color: var(--muted-2); text-align: center; }
.cal-note a { color: var(--cyan); }

/* legend */
.legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 22px 0 4px; }
.legend span { display: inline-flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--muted); }
.legend i { width: 11px; height: 11px; border-radius: 3px; }

/* ---------- tips ---------- */
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.tip { background: linear-gradient(180deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.tip .ico { font-size: 1.6rem; margin-bottom: 10px; }
.tip h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tip p { color: var(--muted); font-size: .93rem; margin: 0; }
.tip.safety { border-color: color-mix(in srgb, var(--cyan) 40%, transparent); }

/* day spots */
.spots { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 14px; margin-top: 8px; }
.spot { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; }
.spot h4 { margin: 0 0 4px; font-family: var(--font-display); font-size: 1.1rem; }
.spot .sp-area { font-size: .76rem; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; }
.spot p { margin: 8px 0 0; color: var(--muted); font-size: .88rem; }

/* ---------- modal ---------- */
#modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; background: rgba(5,3,12,.72); backdrop-filter: blur(6px); }
#modal.open { display: flex; }
.modal-box { position: relative; width: 100%; max-width: 480px; max-height: 88vh; overflow-y: auto; background: linear-gradient(180deg, var(--panel-2), var(--ink-2)); border: 1px solid var(--line-2); border-radius: var(--r-lg); box-shadow: var(--shadow); padding: 28px; }
#modal-close { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.05); color: #fff; font-size: 1.1rem; cursor: pointer; }
#modal-close:hover { background: rgba(255,255,255,.12); }
.modal-head { border-left: 4px solid var(--v); padding-left: 14px; margin-bottom: 20px; }
.modal-tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--v); }
.modal-head h3 { font-size: 1.9rem; margin: 4px 0 4px; }
.modal-when { color: var(--muted); margin: 0; font-size: .95rem; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.modal-grid div, .modal-line { font-size: .95rem; }
.ml { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); margin-bottom: 2px; }
.modal-line { margin-bottom: 16px; }
.modal-note { background: rgba(255,255,255,.04); border-radius: 10px; padding: 12px 14px; color: var(--muted); font-size: .9rem; margin: 0 0 16px; }
.modal-blurb { color: var(--muted); font-size: .92rem; margin: 0 0 20px; }
.modal-cta { display: block; text-align: center; background: var(--sunset); color: #1a0a12; font-weight: 700; text-decoration: none; padding: 13px; border-radius: 999px; }
.modal-cta:hover { filter: brightness(1.05); }
.modal-fine { color: var(--muted-2); font-size: .78rem; text-align: center; margin: 12px 0 0; }
.day-list { display: flex; flex-direction: column; gap: 8px; }
.day-item { display: flex; justify-content: space-between; align-items: center; background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--v); border-radius: 10px; padding: 12px 15px; color: #fff; cursor: pointer; }
.day-item:hover { background: var(--panel-2); }
.di-night { font-weight: 700; }
.di-venue { color: var(--v); font-size: .88rem; }

/* booking form */
.modal-back { background: none; border: 0; color: var(--muted); font-size: .85rem; font-weight: 600; cursor: pointer; padding: 0 0 14px; }
.modal-back:hover { color: #fff; }
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.bf-field { display: flex; flex-direction: column; gap: 6px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); font-weight: 700; }
.bf-opt { text-transform: none; letter-spacing: 0; color: var(--muted-2); font-weight: 500; }
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: var(--font); font-size: .95rem; font-weight: 500; text-transform: none; letter-spacing: 0; color: var(--text);
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 100%;
}
.booking-form input::placeholder, .booking-form textarea::placeholder { color: var(--muted-2); }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { outline: none; border-color: var(--v, var(--cyan)); box-shadow: 0 0 0 3px color-mix(in srgb, var(--cyan) 20%, transparent); }
.booking-form textarea { resize: vertical; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-form .modal-cta { border: 0; cursor: pointer; font-family: var(--font); font-size: 1rem; margin-top: 4px; }
.booking-form .modal-cta:disabled { opacity: .6; cursor: default; }
.bf-error { color: #ff7b93; font-size: .85rem; margin: 0; background: rgba(255,80,120,.1); border: 1px solid rgba(255,80,120,.3); border-radius: 8px; padding: 8px 12px; }

/* booking success */
.booking-done { text-align: center; padding: 8px 4px; }
.bd-check { width: 62px; height: 62px; margin: 6px auto 18px; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; color: #1a0a12; background: var(--sunset); box-shadow: 0 0 30px color-mix(in srgb, var(--v) 55%, transparent); }
.booking-done h3 { font-size: 1.7rem; margin-bottom: 10px; }
.booking-done p { color: var(--muted); font-size: .95rem; margin: 0 auto 22px; max-width: 340px; }
.booking-done strong { color: var(--text); }
.booking-done .modal-cta { display: inline-block; border: 0; cursor: pointer; font-family: var(--font); font-size: 1rem; padding-inline: 40px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--ink); }
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.footer p { color: var(--muted-2); font-size: .85rem; margin: 0; }
.footer a { color: var(--cyan); text-decoration: none; }

/* ==========================================================================
   CLUB PAGE
   ========================================================================== */
.club-hero { position: relative; overflow: hidden; background: var(--night); padding: clamp(40px, 8vh, 88px) 0 clamp(40px, 7vh, 72px); border-bottom: 1px solid var(--line); }
.club-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(46% 60% at 84% 0%, color-mix(in srgb, var(--v) 55%, transparent), transparent 62%),
              radial-gradient(40% 55% at 6% 14%, color-mix(in srgb, var(--v) 34%, transparent), transparent 60%);
  filter: blur(8px);
}
.club-hero .wrap { position: relative; z-index: 1; }
.club-back { display: inline-block; margin-bottom: 22px; color: var(--muted); text-decoration: none; font-weight: 600; font-size: .9rem; }
.club-back:hover { color: #fff; }
.ch-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.ch-type { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--v); border: 1px solid var(--v); padding: 5px 12px; border-radius: 999px; }
.ch-area, .ch-est { font-size: .82rem; color: var(--muted); border: 1px solid var(--line-2); padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.03); }
.club-hero h1 { font-size: clamp(2.6rem, 7vw, 5.2rem); margin-bottom: 18px; }
.ch-lede { font-size: clamp(1.02rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 640px; margin: 0 0 30px; }
.ch-meta { display: flex; flex-wrap: wrap; gap: 30px; margin-bottom: 32px; }
.ch-meta div b { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--v); }
.ch-meta div span { color: var(--muted-2); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

.club-about { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
.ca-text h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 16px; }
.ca-text p { color: var(--muted); font-size: 1.05rem; margin: 0 0 20px; }
.ca-genres { display: flex; flex-wrap: wrap; gap: 8px; }
.ca-genres span { font-size: .78rem; padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--muted); }
.ca-card { background: linear-gradient(180deg, var(--panel-2), var(--ink-2)); border: 1px solid var(--line); border-top: 3px solid var(--v); border-radius: var(--r-lg); padding: 26px; position: sticky; top: 90px; }
.ca-card h3 { font-size: 1.2rem; margin-bottom: 16px; }
.ca-card dl { display: grid; grid-template-columns: auto 1fr; gap: 12px 18px; margin: 0; }
.ca-card dt { color: var(--muted-2); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.ca-card dd { margin: 0; font-size: .92rem; color: var(--text); text-align: right; }

.club-history { max-width: 760px; }
.club-history h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 16px; }
.club-history p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.club-location { background: var(--ink-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.club-location h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 12px 0 24px; }
.cl-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: stretch; }
.cl-map { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line-2); min-height: 320px; }
.cl-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }
.cl-info { display: flex; flex-direction: column; gap: 16px; }
.cl-address { font-size: 1.05rem; margin: 0; color: var(--text); }
.cl-maplink { color: var(--v); font-weight: 700; text-decoration: none; font-size: .95rem; }
.cl-maplink:hover { text-decoration: underline; }
.cl-tip { background: var(--panel); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; color: var(--muted); font-size: .9rem; margin: auto 0 0; }
.cl-tip strong { color: var(--text); }

.club-events-sec { border-top: 0; }
.ce-intro { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 12px 0 8px; }
.ce-sub { font-size: 1.25rem; margin: 34px 0 14px; }
.ev-list { display: flex; flex-direction: column; gap: 10px; }
.ev-row { display: grid; grid-template-columns: 62px 1fr auto; gap: 18px; align-items: center;
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--v); border-radius: var(--r); padding: 16px 18px; transition: .16s; }
.ev-row:hover { background: var(--panel-2); }
.ev-day { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--v); text-align: center; text-transform: uppercase; letter-spacing: .04em; }
.ev-date { text-align: center; }
.ev-date .ed-num { display: block; font-family: var(--font-display); font-size: 1.5rem; line-height: 1; }
.ev-date .ed-mon { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.ev-main h4 { font-size: 1.15rem; margin: 0 0 3px; }
.ev-tag { font-family: var(--font); font-style: normal; font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; background: var(--sunset); color: #1a0a12; padding: 3px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle; }
.ev-genre { font-size: .82rem; color: var(--v); margin: 0 0 2px; font-weight: 600; }
.ev-artists { font-size: .88rem; color: var(--muted); margin: 0; }
.ev-book { flex: 0 0 auto; cursor: pointer; font-weight: 700; font-size: .9rem; padding: 10px 20px; border-radius: 999px;
  background: var(--sunset); color: #1a0a12; border: 0; transition: .18s; }
.ev-book:hover:not([disabled]) { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(255,80,120,.5); }
.ev-book[disabled] { background: rgba(255,255,255,.06); color: var(--muted-2); cursor: default; }

.club-404 { text-align: center; padding: 100px 0; }
.club-404 h1 { font-size: 2.4rem; margin-bottom: 12px; }
.club-404 p { color: var(--muted); margin-bottom: 26px; }

/* ==========================================================================
   STORY PAGE
   ========================================================================== */
.story-hero { position: relative; overflow: hidden; background: var(--night); padding: clamp(48px, 9vh, 104px) 0 clamp(40px, 7vh, 76px); border-bottom: 1px solid var(--line); }
.story-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background: radial-gradient(42% 55% at 88% 4%, rgba(255,204,68,.4), transparent 60%),
              radial-gradient(40% 55% at 6% 12%, rgba(255,45,120,.4), transparent 60%),
              radial-gradient(50% 60% at 55% 100%, rgba(34,211,238,.22), transparent 62%);
  filter: blur(8px);
}
.story-hero .wrap { position: relative; z-index: 1; }
.story-hero .eyebrow { color: var(--cyan); border-color: var(--line-2); }
.story-hero .eyebrow .pulse { background: var(--cyan); box-shadow: 0 0 0 0 rgba(34,211,238,.6); }
.story-hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); margin: 20px 0 20px; }

.story-body { display: grid; grid-template-columns: minmax(0, 1.7fr) 1fr; gap: 48px; align-items: start; }
.prose { max-width: 720px; }
.era { margin-bottom: 34px; }
.era-tag { display: inline-block; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.era h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin: 0 0 12px; }
.prose p { color: var(--muted); font-size: 1.08rem; line-height: 1.75; margin: 0; }
.prose p strong { color: var(--text); font-weight: 700; }
.prose p em { color: var(--gold); font-style: italic; }
.prose p.lead::first-letter {
  float: left; font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; line-height: .82;
  padding: 4px 12px 0 0; background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pullquote {
  margin: 40px 0; padding: 4px 0 4px 24px; border-left: 3px solid transparent; border-image: var(--sunset) 1;
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 1.9rem); line-height: 1.25;
  color: var(--text);
}
.story-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }

.story-timeline { position: sticky; top: 90px; background: linear-gradient(180deg, var(--panel-2), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 28px; }
.story-timeline h3 { font-size: 1.1rem; margin: 0 0 18px; }
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--magenta), var(--gold)); opacity: .5; }
.timeline li { position: relative; padding: 0 0 18px 26px; }
.timeline li::before { content: ''; position: absolute; left: 0; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: var(--ink); border: 2px solid var(--gold); }
.timeline li:last-child { padding-bottom: 0; }
.tl-year { display: block; font-family: var(--font-display); font-weight: 800; font-size: 1.02rem; color: var(--text); }
.tl-label { display: block; font-size: .86rem; color: var(--muted); }
.timeline li.tl-now::before { background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.timeline li.tl-now .tl-year { background: var(--sunset); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* homepage story teaser */
.story-teaser { padding-top: 0; }
.st-inner {
  position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(30px, 5vw, 52px);
  background: linear-gradient(110deg, var(--panel-2), var(--ink-2));
  border: 1px solid var(--line);
}
.st-inner::after { content: ''; position: absolute; top: -80px; right: -60px; width: 260px; height: 260px; border-radius: 50%; background: var(--sunset); opacity: .18; filter: blur(50px); }
.st-inner > div { position: relative; max-width: 640px; }
.st-inner h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin: 12px 0 14px; }
.st-inner p { color: var(--muted); font-size: 1.06rem; margin: 0 0 26px; }

/* ==========================================================================
   GUIDE PAGE — areas + accommodation
   ========================================================================== */
#areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.area-card {
  display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden;
  padding: 24px; background: linear-gradient(180deg, var(--panel-2), var(--ink-2));
  border: 1px solid var(--line); border-radius: var(--r-lg); transition: .22s;
}
.area-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--v); }
.area-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.ac-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.ac-tag { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--v); border: 1px solid var(--v); padding: 4px 10px; border-radius: 999px; }
.ac-airport { font-size: .82rem; color: var(--muted-2); }
.area-card h3 { font-size: 1.55rem; margin-bottom: 10px; }
.ac-blurb { color: var(--muted); font-size: .94rem; margin: 0 0 14px; }
.ac-for { font-size: .9rem; color: var(--text); margin: 0 0 14px; }
.ac-for span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); font-weight: 700; margin-bottom: 2px; }
.ac-clubs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.ac-clubs span { font-size: .74rem; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--muted); }
.ac-link { font-weight: 700; font-size: .88rem; color: var(--v); }

.stay-group { margin-bottom: 40px; scroll-margin-top: 84px; }
.stay-group:last-child { margin-bottom: 0; }
.sg-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.sg-head h3 { font-size: 1.6rem; }
.sg-head h3::before { content: ''; display: inline-block; width: 12px; height: 12px; border-radius: 4px; background: var(--v); margin-right: 10px; vertical-align: middle; }
.sg-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--v); border: 1px solid var(--v); padding: 4px 10px; border-radius: 999px; }
.stay-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 16px; }
.stay-card {
  position: relative; display: flex; flex-direction: column; padding: 22px;
  background: var(--panel); border: 1px solid var(--line); border-left: 3px solid var(--v); border-radius: var(--r); transition: .18s;
}
.stay-card:hover { background: var(--panel-2); transform: translateY(-3px); }
.stay-card.flagship { border: 1px solid color-mix(in srgb, var(--v) 55%, transparent); border-left-width: 3px; box-shadow: 0 0 0 1px color-mix(in srgb, var(--v) 20%, transparent); }
.sc-flag { display: inline-block; align-self: flex-start; font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: #1a0a12; background: var(--sunset); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px; }
.sc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.sc-type { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.sc-tier { font-family: var(--font-display); font-weight: 800; color: var(--v); font-size: 1rem; letter-spacing: .04em; }
.stay-card h4 { font-size: 1.2rem; margin: 0 0 10px; }
.sc-who { font-size: .9rem; color: var(--muted); margin: 0 0 10px; }
.sc-who span { color: var(--muted-2); text-transform: uppercase; font-size: .66rem; letter-spacing: .08em; font-weight: 700; }
.sc-note { font-size: .9rem; color: var(--muted); margin: 0 0 18px; flex: 1; }
.stay-enquire { align-self: flex-start; cursor: pointer; font-weight: 700; font-size: .88rem; padding: 9px 20px; border-radius: 999px; border: 0; background: var(--sunset); color: #1a0a12; transition: .18s; }
.stay-enquire:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(255,80,120,.5); }

/* sponsored banner ad (photo background) */
.stay-ad {
  position: relative; overflow: hidden; margin: 4px 0 40px;
  display: flex; align-items: center; min-height: 300px;
  padding: clamp(26px, 3.6vw, 46px);
  border-radius: var(--r-lg);
  border: 1px solid rgba(245,184,60,.4);
  box-shadow: 0 24px 60px -30px rgba(0,0,0,.8);
  background-image:
    linear-gradient(100deg, rgba(8,5,16,.95) 0%, rgba(8,5,16,.82) 42%, rgba(8,5,16,.42) 74%, rgba(8,5,16,.18) 100%),
    url("../img/garbi.avif");
  background-size: cover; background-position: center;
}
.ad-body { position: relative; z-index: 1; max-width: 560px; text-shadow: 0 1px 14px rgba(0,0,0,.55); }
.ad-badge { display: inline-block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 800; color: #0f0a06; background: linear-gradient(100deg, #ffd35c, #f5a83c); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; text-shadow: none; }
.stay-ad h3 { font-size: clamp(1.5rem, 3.4vw, 2.3rem); margin: 0 0 10px; }
.ad-tag { color: #e8e2f5; font-size: 1rem; max-width: 520px; margin: 0 0 16px; }
.ad-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.ad-chips span { font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: rgba(255,255,255,.12); color: var(--text); backdrop-filter: blur(4px); text-shadow: none; }
.ad-chips span:first-child { color: #ffd35c; letter-spacing: .04em; }
.ad-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.ad-cta .btn { cursor: pointer; }
@media (max-width: 720px) {
  .stay-ad {
    min-height: 340px; align-items: flex-end;
    background-image:
      linear-gradient(180deg, rgba(8,5,16,.35) 0%, rgba(8,5,16,.7) 45%, rgba(8,5,16,.95) 100%),
      url("../img/garbi.avif");
  }
  .ad-body { max-width: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .club-about { grid-template-columns: 1fr; gap: 26px; }
  .ca-card { position: static; }
  .cl-grid { grid-template-columns: 1fr; }
  .story-body { grid-template-columns: 1fr; gap: 32px; }
  .story-timeline { position: static; order: -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .cal-cell { min-height: 84px; }
  .cal-ev .txt { display: none; }
  .cal-ev { justify-content: center; padding: 5px; }
  .cal-cell .cal-ev.special { }
  .cal-more { text-align: center; }
  .modal-grid { grid-template-columns: 1fr; }
  #cal-title { min-width: 0; font-size: 1.2rem; }
  .cal-toolbar { flex-direction: column; align-items: stretch; }
}
@media (max-width: 560px) {
  .ev-row { grid-template-columns: 52px 1fr; gap: 12px; }
  .ev-book { grid-column: 1 / -1; justify-self: start; }
  .ch-meta { gap: 22px; }
}
@media (max-width: 480px) {
  .hero-stats { gap: 22px; }
  .list-day { grid-template-columns: 48px 1fr; gap: 12px; }
}
