/* =========================================================================
   shanghaiclubs.com — INS Shanghai · "Midnight" theme
   Built on the Airbnb design system tokens (assets/airbnb-tokens.css):
   soft radii, Inter/Cereal type ramp, Rausch (#ff385c) used scarcely,
   sentence case, middle-dot separators, photography-led — adapted to a
   dark nightlife canvas.
   ========================================================================= */

:root {
  /* Dark surface layer (the only departure from the light DS) */
  --ink-canvas:   #07070b;
  --ink-surface:  #0e0e15;
  --ink-surface-2:#15151f;
  --ink-elevated: #1b1b27;
  --line:         rgba(255,255,255,0.10);
  --line-soft:    rgba(255,255,255,0.06);
  --tx-hi:        #ffffff;
  --tx-mid:       rgba(255,255,255,0.74);
  --tx-low:       rgba(255,255,255,0.50);
  --glow: 0 0 0 1px rgba(255,255,255,0.04), 0 18px 50px -12px rgba(0,0,0,0.7);
  --rausch-glow: 0 8px 30px -6px rgba(255,56,92,0.5);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink-canvas);
  color: var(--tx-hi);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* Dark canvas: the design-system tokens force h1–h4 to dark ink (#222).
   Default every heading to the light text color so nothing disappears
   against the background. Specific sections still override as needed. */
h1, h2, h3, h4 { color: var(--tx-hi); }

/* ---------------- layout helpers ---------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--color-primary); margin: 0 0 16px;
}
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  font-size: 44px; line-height: 1.05; font-weight: 800; letter-spacing: -1px;
  color: var(--tx-hi); margin: 0 0 16px;
}
.section-head p { font-size: 18px; line-height: 1.6; color: var(--tx-mid); margin: 0; }
.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 54px; padding: 0 28px; border-radius: var(--radius-sm);
  font-size: 16px; font-weight: 600; cursor: pointer; border: none;
  text-decoration: none; white-space: nowrap; transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--rausch-glow); }
.btn-primary:hover { background: var(--color-primary-active); }
.btn-ghost { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 15px; }
.btn-lg { height: 58px; padding: 0 34px; font-size: 17px; }
.btn svg { width: 19px; height: 19px; }

/* ---------------- top nav ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: 76px; display: flex; align-items: center;
  background: rgba(7,7,11,0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; }
.brand .mark { font-size: 24px; font-weight: 800; letter-spacing: 3px; color: #fff; }
.brand .sub { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--tx-low); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--tx-mid); text-decoration: none; transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-toggle { display: none; }

/* ---------------- footer ---------------- */
.footer { border-top: 1px solid var(--line-soft); padding: 64px 0 40px; background: var(--ink-surface); }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--tx-low); margin: 0 0 18px; }
.footer a, .footer p { display: block; font-size: 15px; color: var(--tx-mid); text-decoration: none; margin: 0 0 12px; line-height: 1.5; }
.footer a:hover { color: #fff; }
.footer .brand .mark { font-size: 22px; }
.footer .legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer .legal span { font-size: 13px; color: var(--tx-low); }

/* ---------------- channel chips (whatsapp/telegram/wechat) ---------------- */
.chans { display: flex; align-items: center; gap: 10px; }
.chans .lbl { font-size: 14px; color: var(--tx-low); margin-right: 2px; }
/* .chans .chan beats `.footer a { display:block }` so footer chips stay centered */
.chans .chan {
  width: 46px; height: 46px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line); color: #fff; cursor: pointer; margin: 0;
  transition: background .15s, transform .15s, border-color .15s;
}
.chans .chan:hover { transform: translateY(-2px); }
.chans .chan svg { width: 22px; height: 22px; display: block; }
.chan.wa:hover { background: #25D366; border-color: #25D366; }
.chan.tg:hover { background: #2AABEE; border-color: #2AABEE; }
.chan.wc:hover { background: #07C160; border-color: #07C160; }

/* ---------------- image placeholders (real photos drop in via <image-slot>) ---------------- */
image-slot { display: block; }
/* theme the slot's shadow-DOM empty state for the dark canvas */
image-slot::part(frame) { background: var(--ink-surface-2); }
image-slot::part(empty) { color: rgba(255,255,255,0.55); }
.ph-grad {
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(255,56,92,.45), transparent 55%),
    radial-gradient(110% 100% at 86% 22%, rgba(120,40,200,.5), transparent 55%),
    radial-gradient(120% 120% at 60% 112%, rgba(20,90,220,.4), transparent 55%),
    linear-gradient(160deg, #150b18, #07070c 70%);
}
image-slot.ph-grad::part(frame) {
  background:
    radial-gradient(120% 90% at 18% 8%, rgba(255,56,92,.40), transparent 55%),
    radial-gradient(110% 100% at 86% 22%, rgba(120,40,200,.45), transparent 55%),
    radial-gradient(120% 120% at 60% 112%, rgba(20,90,220,.38), transparent 55%),
    linear-gradient(160deg, #150b18, #07070c 70%);
}

/* ---------------- hero ---------------- */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; overflow: hidden; }
.hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero .hero-bg image-slot { width: 100%; height: 100%; }
.hero .scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,7,11,.45) 0%, rgba(7,7,11,.15) 30%, rgba(7,7,11,.55) 70%, rgba(7,7,11,.96) 100%);
}
.hero-body { position: relative; z-index: 2; flex: 1; display: flex; align-items: flex-end; }
.hero-body .wrap { padding-bottom: 64px; width: 100%; }
.hero h1 {
  font-size: clamp(56px, 9vw, 116px); line-height: 0.94; font-weight: 800; letter-spacing: -3px;
  color: #fff; margin: 14px 0 0; max-width: 14ch;
}
.hero .lead { font-size: clamp(18px, 2vw, 22px); line-height: 1.5; color: var(--tx-mid); max-width: 560px; margin: 24px 0 36px; }
.hero .ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .chans { margin-top: 34px; }

/* tonight strip under hero */
.tonight { position: relative; z-index: 2; border-top: 1px solid var(--line); background: rgba(7,7,11,0.6); backdrop-filter: blur(8px); }
.tonight .wrap { display: grid; grid-template-columns: repeat(3,1fr); }
.tonight .cell { padding: 22px 0; border-left: 1px solid var(--line-soft); padding-left: 28px; }
.tonight .cell:first-child { border-left: none; padding-left: 0; }
.tonight .k { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 700; color: var(--color-primary); }
.tonight .v { font-size: 16px; font-weight: 600; color: #fff; margin-top: 5px; }

/* ---------------- promoter trust band ---------------- */
.trust { background: var(--ink-surface); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust .grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.trust .item .n { font-size: 40px; font-weight: 800; letter-spacing: -1px; color: #fff; }
.trust .item .n .u { color: var(--color-primary); }
.trust .item .l { font-size: 15px; color: var(--tx-mid); margin-top: 6px; line-height: 1.4; }

/* ---------------- split / about ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media { border-radius: var(--radius-md); overflow: hidden; height: 480px; }
.split .media image-slot { width: 100%; height: 100%; }
.split h2 { font-size: 40px; line-height: 1.08; font-weight: 800; letter-spacing: -1px; margin: 16px 0 18px; }
.split p { font-size: 17px; line-height: 1.65; color: var(--tx-mid); margin: 0 0 18px; }

/* ---------------- gallery ---------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.gallery image-slot { width: 100%; height: 100%; border-radius: var(--radius-md); }
.gallery .span2 { grid-column: span 2; }
.gallery .row2 { grid-row: span 2; }

/* ---------------- VIP table tiers ---------------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tier {
  background: var(--ink-surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 24px; display: flex; flex-direction: column; transition: transform .18s ease, border-color .18s ease, box-shadow .2s ease;
}
.tier:hover { transform: translateY(-5px); box-shadow: var(--glow); }
.tier.feat { border-color: var(--color-primary); }
.tier .badge {
  align-self: flex-start; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--color-primary); padding: 5px 10px; border-radius: var(--radius-full); margin-bottom: 16px;
}
.tier h3 { font-size: 22px; font-weight: 800; letter-spacing: -.5px; margin: 0 0 10px; color: #fff; }
.tier .desc { font-size: 15px; line-height: 1.55; color: var(--tx-mid); margin: 0 0 20px; flex: 1; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; }
.tier li { font-size: 14px; color: var(--tx-mid); padding: 7px 0 7px 24px; position: relative; border-top: 1px solid var(--line-soft); }
.tier li:first-child { border-top: none; }
.tier li::before { content: "·"; position: absolute; left: 8px; color: var(--color-primary); font-weight: 800; font-size: 18px; line-height: 1; top: 8px; }
.tier .price { font-size: 13px; font-weight: 600; color: var(--tx-low); margin-bottom: 14px; }

/* ---------------- bottle / drinks menu ---------------- */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 48px; }
.menu-cat-title { font-size: 13px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--color-primary); margin: 32px 0 8px; grid-column: 1 / -1; }
.menu-row { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.menu-row .name { font-size: 17px; font-weight: 600; color: #fff; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-row .meta { font-size: 14px; color: var(--tx-low); white-space: nowrap; }

/* ---------------- events / tickets ---------------- */
.events { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event {
  background: var(--ink-surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .2s ease;
}
.event:hover { transform: translateY(-5px); box-shadow: var(--glow); }
.event .img { height: 220px; position: relative; }
.event .img image-slot { width: 100%; height: 100%; }
.event .date-chip {
  position: absolute; top: 14px; left: 14px; z-index: 2; background: rgba(7,7,11,0.78); backdrop-filter: blur(6px);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 8px 12px; text-align: center;
}
.event .date-chip .d { font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.event .date-chip .m { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-primary); margin-top: 3px; }
.event .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.event .body .tag { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--tx-low); }
.event .body h3 { font-size: 21px; font-weight: 800; letter-spacing: -.5px; margin: 8px 0 8px; color: #fff; }
.event .body .meta { font-size: 14px; color: var(--tx-mid); margin: 0 0 20px; flex: 1; }

/* ---------------- reviews ---------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--ink-surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 28px 26px; }
.review .stars { display: flex; gap: 1px; margin-bottom: 16px; color: var(--color-primary); font-size: 16px; letter-spacing: 2px; }
.review .stars svg { width: 16px; height: 16px; color: var(--color-primary); }
.review p { font-size: 16px; line-height: 1.6; color: var(--tx-mid); margin: 0 0 22px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 40px; height: 40px; border-radius: 50%; background: var(--ink-elevated); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--tx-mid); font-size: 15px; }
.review .who .nm { font-size: 15px; font-weight: 600; color: #fff; }
.review .who .src { font-size: 13px; color: var(--tx-low); }

/* ---------------- FAQ ---------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq summary { list-style: none; cursor: pointer; padding: 22px 0; font-size: 18px; font-weight: 600; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ic { width: 22px; height: 22px; flex: 0 0 auto; transition: transform .2s; color: var(--tx-low); }
.faq details[open] summary .ic { transform: rotate(45deg); color: var(--color-primary); }
.faq .ans { padding: 0 0 24px; font-size: 16px; line-height: 1.65; color: var(--tx-mid); max-width: 70ch; }

/* ---------------- how it works ---------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { padding: 0 8px; }
.step .num { font-size: 14px; font-weight: 800; color: var(--color-primary); letter-spacing: 1px; }
.step h3 { font-size: 21px; font-weight: 700; margin: 12px 0 10px; color: #fff; }
.step p { font-size: 15px; line-height: 1.6; color: var(--tx-mid); margin: 0; }

/* ---------------- location ---------------- */
.loc { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: stretch; }
.loc .info h2 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin: 14px 0 22px; }
.loc .info .row { display: flex; gap: 14px; padding: 18px 0; border-top: 1px solid var(--line-soft); }
.loc .info .row:first-of-type { border-top: none; }
.loc .info .row svg { width: 20px; height: 20px; color: var(--color-primary); flex: 0 0 auto; margin-top: 2px; }
.loc .info .row .t { font-size: 15px; font-weight: 600; color: #fff; }
.loc .info .row .s { font-size: 14px; color: var(--tx-mid); margin-top: 3px; line-height: 1.5; }
.loc .map { border-radius: var(--radius-md); overflow: hidden; min-height: 420px; border: 1px solid var(--line); }
.loc .map iframe { width: 100%; height: 100%; border: 0; filter: invert(0.92) hue-rotate(180deg) grayscale(0.3) contrast(0.9); }

/* ---------------- DJ / residents ---------------- */
.djs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dj { text-align: center; }
.dj image-slot { width: 100%; aspect-ratio: 1; border-radius: var(--radius-md); margin-bottom: 14px; }
.dj .nm { font-size: 17px; font-weight: 700; color: #fff; }
.dj .gn { font-size: 13px; color: var(--tx-low); margin-top: 4px; letter-spacing: .5px; }

/* ---------------- CTA band ---------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 72px 56px; text-align: center; }
.cta-band .ph-grad { position: absolute; inset: 0; z-index: 0; }
.cta-band .scrim { position: absolute; inset: 0; z-index: 1; background: rgba(7,7,11,.45); }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: 46px; line-height: 1.05; font-weight: 800; letter-spacing: -1.2px; margin: 0 0 16px; }
.cta-band p { font-size: 19px; color: var(--tx-mid); margin: 0 auto 32px; max-width: 540px; }
.cta-band .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------- contact modal ---------------- */
.cm-overlay {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px; opacity: 0; transition: opacity .2s;
}
.cm-overlay.open { display: flex; opacity: 1; }
.cm {
  background: var(--ink-surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  width: 100%; max-width: 440px; padding: 32px; box-shadow: var(--glow); transform: translateY(12px); transition: transform .22s;
}
.cm-overlay.open .cm { transform: translateY(0); }
.cm .x { float: right; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--tx-mid); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.cm .x:hover { background: rgba(255,255,255,.08); color: #fff; }
.cm h3 { font-size: 24px; font-weight: 800; letter-spacing: -.5px; margin: 4px 0 6px; color: #fff; }
.cm .cm-sub { font-size: 15px; color: var(--tx-mid); margin: 0 0 26px; line-height: 1.5; }
.cm-opt {
  display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-md);
  text-decoration: none; margin-bottom: 12px; cursor: pointer; transition: border-color .15s, background .15s, transform .15s;
}
.cm-opt:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); transform: translateX(2px); }
.cm-opt .ico { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; color: #fff; }
.cm-opt .ico svg { width: 24px; height: 24px; }
.cm-opt.wa .ico { background: #25D366; }
.cm-opt.tg .ico { background: #2AABEE; }
.cm-opt.wc .ico { background: #07C160; }
.cm-opt .tt { font-size: 16px; font-weight: 700; color: #fff; }
.cm-opt .ss { font-size: 13px; color: var(--tx-low); margin-top: 2px; }
.cm-opt .arr { margin-left: auto; color: var(--tx-low); }
.cm .wc-panel { display: none; text-align: center; padding-top: 6px; }
.cm .wc-panel.show { display: block; }
.cm .wc-panel .qr { width: 180px; height: 180px; margin: 0 auto 16px; border-radius: var(--radius-md); background: #fff; padding: 10px; }
.cm .wc-panel .qr image-slot { width: 100%; height: 100%; }
.cm .wc-panel .id { font-size: 15px; color: var(--tx-mid); }
.cm .wc-panel .id b { color: #fff; }
.cm .wc-panel .back { margin-top: 18px; background: none; border: none; color: var(--color-primary); font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }

/* ---------------- blog ---------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: var(--ink-surface); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; text-decoration: none; transition: transform .18s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--glow); }
.post-card .img { height: 200px; }
.post-card .img image-slot { width: 100%; height: 100%; }
.post-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--color-primary); }
.post-card h3 { font-size: 20px; font-weight: 800; letter-spacing: -.4px; color: #fff; margin: 10px 0 10px; line-height: 1.2; }
.post-card p { font-size: 15px; line-height: 1.55; color: var(--tx-mid); margin: 0 0 18px; flex: 1; }
.post-card .meta { font-size: 13px; color: var(--tx-low); }
.post-card .read { font-size: 14px; font-weight: 600; color: #fff; margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; }
.post-feat { grid-column: span 3; display: grid; grid-template-columns: 1.1fr 1fr; min-height: 320px; }
.post-feat .img { height: auto; }
.post-feat .body { justify-content: center; padding: 40px; }
.post-feat h3 { font-size: 32px; }
.post-feat p { font-size: 17px; }

/* ---------------- article ---------------- */
.article { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.article .cover { border-radius: var(--radius-md); overflow: hidden; height: 420px; margin: 8px 0 40px; }
.article .cover image-slot { width: 100%; height: 100%; }
.article .post-meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--tx-low); margin-bottom: 28px; }
.article .post-meta .dot { color: var(--color-primary); }
.article h2 { font-size: 28px; font-weight: 800; letter-spacing: -.5px; color: #fff; margin: 44px 0 16px; }
.article p { font-size: 18px; line-height: 1.7; color: var(--tx-mid); margin: 0 0 22px; }
.article ul { margin: 0 0 22px; padding-left: 22px; }
.article li { font-size: 18px; line-height: 1.7; color: var(--tx-mid); margin-bottom: 10px; }
.article a.inline { color: #fff; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--color-primary); }
.article blockquote { margin: 32px 0; padding: 8px 0 8px 24px; border-left: 3px solid var(--color-primary); font-size: 21px; line-height: 1.5; color: #fff; font-weight: 600; }
.article .post-cta { margin: 48px 0 8px; padding: 32px; background: var(--ink-surface); border: 1px solid var(--line); border-radius: var(--radius-md); text-align: center; }
.article .post-cta h3 { font-size: 22px; font-weight: 800; margin: 0 0 8px; color: #fff; }
.article .post-cta p { font-size: 15px; margin: 0 0 20px; }

/* ---------------- page hero (sub-pages) ---------------- */
.page-hero { position: relative; padding: 120px 0 64px; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.page-hero .ph-grad { position: absolute; inset: 0; z-index: 0; opacity: .5; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1; font-weight: 800; letter-spacing: -2px; margin: 14px 0 0; }
.page-hero p { font-size: 19px; color: var(--tx-mid); max-width: 560px; margin: 20px 0 0; line-height: 1.55; }

/* ---------------- responsive ---------------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--ink-surface); border-bottom: 1px solid var(--line); padding: 12px 0; }
  .nav-links.open a { padding: 14px 32px; }
  .nav-toggle { display: flex; background: none; border: none; color: #fff; cursor: pointer; padding: 8px; }
  .nav-toggle svg { width: 26px; height: 26px; }
  .split, .loc { grid-template-columns: 1fr; gap: 32px; }
  .split .media { height: 340px; }
  .trust .grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .tiers, .events, .reviews, .djs { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: repeat(2,1fr); }
  .post-feat { grid-column: span 2; grid-template-columns: 1fr; }
  .post-feat .img { height: 240px; }
  .gallery { grid-template-columns: repeat(2,1fr); }
  .menu-grid { grid-template-columns: 1fr; gap: 0 0; }
  .steps { grid-template-columns: 1fr; gap: 20px; }
  .tonight .wrap { grid-template-columns: 1fr; }
  .tonight .cell { border-left: none; padding-left: 0; border-top: 1px solid var(--line-soft); }
  .tonight .cell:first-child { border-top: none; }
  .footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .cta-band h2, .section-head h2 { font-size: 34px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .tiers, .events, .reviews, .djs, .gallery { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-feat { grid-column: span 1; }
  .trust .grid { grid-template-columns: 1fr 1fr; }
  .hero .ctas { flex-direction: column; align-items: stretch; }
  .hero .ctas .btn { width: 100%; }
  .cta-band { padding: 48px 24px; }
}
