/* VIPListed — Design System (Clearscope spec: Manrope logo + Spline Sans Mono everywhere else) */

/* ─── Reset ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 93.75%; } /* ≈15px — one zoom level down */
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── Tokens (Clearscope spec values) ───────────────────────────────────── */
:root {
  /* Fonts */
  --font-logo: "Manrope", sans-serif;           /* logo only — 800 weight */
  --font-mono: "Spline Sans Mono", monospace;   /* everything else */

  /* Stone palette */
  --stone-50:  oklch(98.5% 0.001 106.423);
  --stone-150: oklch(95.23% 0.0029 84.56);
  --stone-600: oklch(44% 0.005 60);
  --stone-950: oklch(14.7% 0.004 49.25);

  /* Semantic — light mode */
  --bg:         var(--stone-50);
  --panel:      var(--stone-150);
  --fg:         var(--stone-950);
  --fg-muted:   var(--stone-600);
  --border-col: oklch(88% 0.003 84);
  --border:     1px solid var(--border-col);

  /* Brand colour */
  --whatsapp: #25D366;

  /* Spacing — spec exact values */
  --spacing-f-3:   clamp(1.3125rem, 1.2411rem + 0.3046vw, 1.5rem);
  --spacing-f-3-4: clamp(1.3125rem, 0.8604rem + 1.9289vw, 2.5rem);
  --spacing-f-5-6: clamp(3.0625rem, 2.7056rem + 1.5228vw, 4rem);
  --spacing-f-6-7: clamp(3.5rem,    2.9289rem + 2.4365vw, 5rem);

  /* Type scale — spec exact values */
  --text-f-sm:   clamp(0.8333rem, 0.7937rem + 0.1692vw, 0.9375rem);
  --text-f-base: clamp(0.9375rem, 0.8661rem + 0.3046vw, 1.125rem);
  --text-f-lg:   clamp(1.0547rem, 0.9423rem + 0.4797vw, 1.35rem);
  --text-f-3xl:  clamp(1.5017rem, 1.1853rem + 1.35vw,   2.3328rem);
  --text-f-4xl:  clamp(1.6894rem, 1.2668rem + 1.803vw,  2.7994rem);
  --text-f-7xl:  clamp(2.4054rem, 1.4796rem + 3.9502vw, 4.8373rem);

  /* Layout */
  --leading-marketing: 1.2;
  --tracking-wider: 0.05em;
  --maxw:   1152px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --transition: 150ms ease;
}

/* ─── Dark mode ──────────────────────────────────────────────────────────── */
[data-theme="dark"] {
  --bg:         oklch(11% 0.004 49.25);
  --panel:      oklch(16% 0.004 49.25);
  --fg:         var(--stone-50);
  --fg-muted:   oklch(65% 0.003 84);
  --border-col: oklch(25% 0.004 49.25);
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--fg);
  font-size: var(--text-f-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.2s ease, color 0.2s ease;
}

/* All headings: Spline Sans Mono (spec), NOT Manrope */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-mono);
  line-height: var(--leading-marketing);
  font-weight: 600;
}

/* ─── Skip link ──────────────────────────────────────────────────────────── */
.skip {
  position: absolute; top: -100%; left: 16px;
  background: var(--fg); color: var(--bg);
  padding: 8px 16px; font-size: var(--text-f-sm);
  text-decoration: none; z-index: 200;
}
.skip:focus { top: 16px; }

/* ─── Logo (ONLY element using Manrope 800) ──────────────────────────────── */
.brand {
  display: inline-block;
  font-family: var(--font-logo);
  font-size: var(--spacing-f-3);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
footer .brand { color: var(--stone-50); }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 760px; }
.section    { padding: 52px 0; }
.section-sm { padding: 32px 0; }
@media (min-width: 768px) {
  .section    { padding: 72px 0; }
  .section-sm { padding: 48px 0; }
}

/* ─── Header — always black, white text ─────────────────────────────────── */
.nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding-block: clamp(0.75rem, 0.7rem + 0.2vw, 0.875rem);
  padding-inline: var(--gutter);
  border-bottom: 1px solid oklch(22% 0.004 49.25);
  font-family: var(--font-mono);
  font-size: var(--text-f-base);
  line-height: 1;
  position: sticky; top: 0;
  background: var(--stone-950);
  z-index: 100;
}
[data-theme="dark"] .nav { background: oklch(8% 0.003 49.25); border-bottom-color: oklch(18% 0.004 49.25); }

/* Brand — always white inside nav */
.nav .brand { color: var(--stone-50); }

/* Desktop nav — right-aligned, full width stretch */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1.6rem);
  flex: 1;
  justify-content: flex-end;
  padding-inline: 0;
  margin-right: 1.5rem;
}
.desktop-nav a {
  font-size: clamp(0.7rem, 0.6rem + 0.35vw, 0.8rem);
  font-weight: 500;
  color: var(--stone-50);
  opacity: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.desktop-nav a:hover { opacity: 0.55; }
.desktop-nav a[aria-current="page"] {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

/* Actions — right */
.header-actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }

/* Mobile nav */
.mobile-nav { display: none; align-items: center; gap: 0.5rem; margin-left: auto; }

@media not all and (min-width: 1280px) {
  .desktop-nav    { display: none; }
  .header-actions { display: none; }
  .mobile-nav     { display: flex; }
}

/* Mobile dropdown — fixed so it always appears below sticky nav regardless of scroll */
.mobile-menu {
  border-bottom: 1px solid oklch(22% 0.004 49.25);
  background: var(--stone-950);
  /* Fixed positioning keeps it visible wherever the user has scrolled */
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;   /* JS overrides this with the nav's exact bottom position */
  z-index: 99; /* just below nav (z-index:100) */
  overflow-y: auto;
  max-height: calc(100svh - 60px);
  max-height: calc(100vh - 60px); /* fallback */
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  display: flex; align-items: center;
  min-height: 48px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid oklch(22% 0.004 49.25);
  font-size: var(--text-f-base);
  color: var(--stone-50);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}
.mobile-menu a:hover { opacity: 0.6; }
.mobile-menu-cta { padding: 12px var(--gutter) 16px; }

/* ─── Theme Toggle ───────────────────────────────────────────────────────── */
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid oklch(30% 0.004 49.25);
  width: 34px; height: 34px;
  cursor: pointer; color: var(--stone-50); flex-shrink: 0;
  transition: background var(--transition);
}
.theme-toggle:hover { background: oklch(20% 0.004 49.25); }
.theme-toggle svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.icon-sun  { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Mobile hamburger */
.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid oklch(30% 0.004 49.25);
  width: 34px; height: 34px; cursor: pointer; color: var(--stone-50); flex-shrink: 0;
}
.nav-toggle svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--stone-950);
  border-radius: 0;
  padding: 0.825em 1.5em;
  font-family: var(--font-mono);
  font-size: var(--text-f-base);
  line-height: 1;
  font-weight: 600;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), opacity var(--transition),
              filter var(--transition);
}
.btn:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }

/* Solid — stone-950 bg, stone-50 text (inverts in dark) */
.btn-primary {
  background: var(--stone-950);
  color: var(--stone-50);
  border-color: var(--stone-950);
}
.btn-primary:hover { opacity: 0.82; }
[data-theme="dark"] .btn-primary {
  background: var(--stone-50);
  color: var(--stone-950);
  border-color: var(--stone-50);
}

/* Ghost / border */
.btn-ghost {
  background: var(--stone-50);
  color: var(--stone-950);
  border-color: var(--stone-950);
}
.btn-ghost:hover { background: var(--panel); }
[data-theme="dark"] .btn-ghost {
  background: transparent;
  color: var(--stone-50);
  border-color: var(--stone-50);
}

/* WhatsApp — always green, text-transform stays uppercase for consistency */
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover { filter: brightness(0.95); }
.btn-whatsapp .icon { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* Sizes */
.btn-sm   { padding: 0.5em 1em;   font-size: var(--text-f-sm); }
.btn-lg   { padding: 1em 2em;     font-size: var(--text-f-lg); }
.btn-full { width: 100%; }

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg);
  border: 1px solid var(--border-col);
  overflow: hidden;
  text-decoration: none; color: var(--fg); display: block;
  transition: border-color var(--transition), transform var(--transition);
}
.card:hover { border-color: var(--fg-muted); transform: translateY(-1px); }
.card:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--panel); filter: grayscale(0.2); }
.card-img--logo { object-fit: contain; background: #000; padding: 20px; filter: none; }
/* Venue club images — greyscale + subtle invert for moody dark aesthetic */
.card-img--venue { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--panel); display: block;
  filter: grayscale(0.85) brightness(0.9) contrast(1.05);
  transition: filter 0.3s ease;
}
.card:hover .card-img--venue { filter: grayscale(0.6) brightness(0.85) contrast(1.05); }

/* Inverted variant — for white/light background logos: white→black, logo→grey */
.card-img--venue-inv { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: #000; display: block;
  filter: grayscale(1) invert(1) brightness(0.85) contrast(1.1);
  transition: filter 0.3s ease;
}
.card:hover .card-img--venue-inv { filter: grayscale(0.5) invert(1) brightness(1) contrast(1.05); }
/* see also .venue-hero-img--inv below, after the main rule */
.card-img-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--panel); display: flex; align-items: center; justify-content: center; color: var(--fg-muted); font-size: var(--text-f-sm); letter-spacing: 0.04em; position: relative; overflow: hidden; }
.card-img-label { font-family: var(--font-display); font-size: clamp(0.9rem, 2.5vw, 1.3rem); font-weight: 800; letter-spacing: -0.01em; color: oklch(95% 0.003 84); text-align: center; padding: 0 16px; line-height: 1.2; pointer-events: none; position: relative; z-index: 1; }
.card-img-placeholder::before { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, oklch(18% 0.008 84) 0%, oklch(12% 0.004 84) 100%); }
.card-body  { padding: 20px; }
.card-label { margin-bottom: 6px; }
.card-title { font-size: var(--text-f-lg); font-weight: 600; margin-bottom: 8px; }
.card-desc  { font-size: var(--text-f-sm); color: var(--fg-muted); line-height: 1.5; }

/* ── Text-style card header (used on clubs & restaurants index) */
.card-hdr {
  height: 200px;
  background: var(--stone-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 0 20px;
  position: relative;
}
[data-theme="dark"] .card-hdr { background: oklch(6% 0.003 49.25); }
.card-hdr-tag {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--font-mono);
  font-size: 0.55rem; letter-spacing: 0.18em;
  color: #25D366;
  text-transform: uppercase;
  border: 1px solid oklch(22% 0.08 145);
  padding: 2px 7px;
}
.card-hdr-name {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 0.65rem + 0.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}
.card-hdr-area {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: oklch(48% 0.004 49);
  text-transform: uppercase;
}
.card-hdr-tags {
  display: flex; gap: 5px; flex-wrap: wrap; justify-content: center;
  position: absolute; bottom: 12px; left: 0; right: 0; padding: 0 12px;
}
.card-hdr-pill {
  font-family: var(--font-mono);
  font-size: 0.52rem; letter-spacing: 0.1em;
  color: oklch(55% 0.003 49);
  background: oklch(12% 0.003 49.25);
  padding: 2px 7px;
  text-transform: uppercase;
  border: 1px solid oklch(20% 0.004 49);
}

/* ─── Grids ──────────────────────────────────────────────────────────────── */
.grid-2, .grid-3, .grid-4 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 40px 0 52px; border-bottom: var(--border); }
@media (min-width: 768px) { .hero { padding: 52px 0 64px; } }
.hero-eyebrow { margin-bottom: 16px; }

/* Hero h1 — Spline Sans Mono, uppercase, fluid size (one step pulled back) */
.hero-h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 0.95rem + 3.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: var(--leading-marketing);
  text-transform: uppercase;
  text-wrap: balance;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero-sub {
  font-size: var(--text-f-base);
  color: var(--fg-muted);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ─── Hero two-column layout ──────────────────────────────────────────────── */
.hero-inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero-text { flex: 1; min-width: 0; }
.hero-mockup { display: none; flex-shrink: 0; }
@media (min-width: 900px) { .hero-mockup { display: block; } }

/* ─── WhatsApp iPhone mockup ─────────────────────────────────────────────── */
.wa-phone {
  width: 292px;
  background: #fff;
  border: 10px solid #0e0e0e;
  border-radius: 50px;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px #1c1c1e,
    0 32px 72px oklch(0% 0 0 / 0.45),
    inset 0 1px 0 oklch(100% 0 0 / 0.12);
  display: flex;
  flex-direction: column;
  position: relative;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

/* Dynamic island */
.wa-phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 28px;
  background: #0e0e0e;
  border-radius: 20px;
  z-index: 20;
}

/* Home indicator */
.wa-phone::after {
  content: '';
  position: absolute;
  bottom: 7px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 4px;
  background: rgba(0,0,0,0.25);
  border-radius: 4px;
  z-index: 20;
}

/* ── Dark mode: keep mockup always in its own colour scheme */
[data-theme="dark"] .wa-phone { color-scheme: light; }
[data-theme="dark"] .wa-status-bar,
[data-theme="dark"] .wa-bar { background: #075E54 !important; }
[data-theme="dark"] .wa-chat { background: #ECE5DD !important; }
[data-theme="dark"] .wa-msg.out { background: #DCF8C6 !important; color: #111 !important; }
[data-theme="dark"] .wa-msg.in  { background: #fff !important; color: #111 !important; }
[data-theme="dark"] .wa-input-bar { background: #f0f0f0 !important; }
[data-theme="dark"] .wa-input-pill { background: #fff !important; color: #b0b0b0 !important; }
[data-theme="dark"] .wa-time { color: rgba(0,0,0,0.38) !important; }

/* ── WhatsApp Status Bar — WhatsApp green header */
.wa-status-bar {
  background: #075E54;
  padding: 14px 16px 6px; /* content level with dynamic island */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.wa-status-time {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
}
.wa-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wa-status-icons svg { display: block; }

/* ── WhatsApp header bar — classic green */
.wa-bar {
  background: #075E54;
  padding: 6px 12px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: none;
  flex-shrink: 0;
}
.wa-back {
  display: flex; align-items: center; gap: 2px;
  color: #fff;
  flex-shrink: 0;
  font-size: 15px; font-weight: 400;
}
.wa-back-count {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.wa-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #b0b8c0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
  color: #fff;
  letter-spacing: 0;
  overflow: hidden;
}
.wa-avatar-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #8a9bb0 0%, #6b7f96 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff;
}
.wa-bar-info { flex: 1; min-width: 0; }
.wa-bar-name {
  font-size: 12px; font-weight: 600;
  color: #fff; line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wa-bar-status { font-size: 9.5px; color: rgba(255,255,255,0.75); font-weight: 500; }
.wa-bar-actions {
  display: flex; align-items: center; gap: 7px;
  flex-shrink: 0;
}
/* Semi-transparent pill buttons on green header */
.wa-call-pill {
  background: rgba(255,255,255,0.18);
  border-radius: 20px;
  width: 34px; height: 30px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Chat area */
.wa-chat {
  flex: 1;
  background: #ECE5DD;
  padding: 7px 8px 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.wa-chat::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23b8a898' fill-opacity='0.12'%3E%3Cpath d='M0 20 L20 0 L40 20 L20 40Z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.wa-msg {
  max-width: 83%;
  padding: 5px 8px 3px;
  border-radius: 8px;
  font-size: 10.5px;
  line-height: 1.42;
  position: relative;
  z-index: 1;
}
.wa-msg.out {
  background: #DCF8C6;
  align-self: flex-end;
  border-radius: 8px 1px 8px 8px;
}
.wa-msg.in {
  background: #fff;
  align-self: flex-start;
  border-radius: 1px 8px 8px 8px;
}
.wa-time {
  font-size: 8px;
  color: rgba(0,0,0,0.38);
  display: block;
  text-align: right;
  margin-top: 2px;
}

/* ── Input bar — matches screenshot exactly */
.wa-input-bar {
  background: #f2f2f7;
  padding: 8px 10px 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  border-top: 0.5px solid rgba(0,0,0,0.1);
}
/* [+] button — plain icon, no circle */
.wa-input-plus {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #8e8e93;
  width: 24px;
}
/* White pill input field */
.wa-input-pill {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 7px 10px 7px 13px;
  font-size: 10.5px;
  color: #b0b0b0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  box-shadow: 0 0 0 0.5px rgba(0,0,0,0.1);
}
/* Sticker icon inside pill (right side) */
.wa-pill-sticker {
  display: flex; align-items: center;
  color: #8e8e93; flex-shrink: 0;
}
/* Camera icon — right of pill, outside */
.wa-input-camera {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #8e8e93;
}
/* Mic button — green circle (WhatsApp brand) */
.wa-input-mic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ─── Trust Strip — minimal stats ───────────────────────────────────────── */
.trust-strip { border-bottom: var(--border); }
.trust-inner { display: flex; align-items: stretch; }
.trust-stat {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 20px 12px; gap: 2px; text-align: center;
}
.trust-stat-num {
  font-size: var(--text-f-3xl); font-weight: 600; line-height: 1;
  color: var(--fg); letter-spacing: -0.02em;
}
.trust-stat-label {
  font-size: var(--text-f-sm); color: var(--fg-muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.trust-div { width: 1px; background: var(--border-col); flex-shrink: 0; align-self: stretch; }
@media (max-width: 639px) {
  .trust-inner { flex-wrap: wrap; }
  .trust-stat { flex: 0 0 50%; border-bottom: var(--border); }
  .trust-div { display: none; }
}

/* ─── Logo Strip ─────────────────────────────────────────────────────────── */
.logo-strip { border-bottom: var(--border); padding: 28px 0 32px; }
.logo-strip-label {
  text-align: center; font-size: var(--text-f-sm); color: var(--fg-muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px;
}
.logo-strip-track {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 28px 52px;
}
.logo-strip-item {
  display: flex; align-items: center; justify-content: center;
  height: 48px; opacity: 0.35;
  filter: grayscale(1);
  transition: opacity var(--transition), filter var(--transition);
}
.logo-strip-item:hover { opacity: 0.8; filter: grayscale(0); }
/* Real image logos */
.logo-strip-item img { max-height: 48px; width: auto; max-width: 140px; object-fit: contain; }
/* White logos need inversion in light mode to show on light bg */
.logo-strip-item.logo-white img { filter: invert(1); }
/* Dark mode: dark logos invert to white; white logos stay as-is (already light) */
[data-theme="dark"] .logo-strip-item img { filter: invert(1) grayscale(1); }
[data-theme="dark"] .logo-strip-item.logo-white img { filter: grayscale(1); }
/* SVG text fallbacks */
.logo-strip-item svg {
  height: auto; width: auto; max-width: 130px;
  fill: var(--fg); overflow: visible;
}
.logo-strip-name {
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg); line-height: 1.4; text-align: center;
  white-space: pre-line;
}
.trust-item { font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-muted); }

/* ─── Section headers ────────────────────────────────────────────────────── */
.section-header { margin-bottom: 40px; }
.section-header h2 {
  font-size: var(--text-f-4xl);
  line-height: 1.5;
  font-weight: 600;
  margin-bottom: 8px;
}
.section-header p { font-size: var(--text-f-base); color: var(--fg-muted); }

/* Feature/section titles (direct use) */
.section-title  { font-size: var(--text-f-4xl); line-height: 1.5; font-weight: 600; }
.feature-title  { font-size: var(--text-f-3xl); line-height: var(--leading-marketing); font-weight: 600; }

/* ─── Utility classes ────────────────────────────────────────────────────── */
.label-mono { font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-muted); }
.muted { color: var(--fg-muted); }
.mono  { font-family: var(--font-mono); }

/* ─── Steps ──────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.step-num   { font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.step-title { font-size: var(--text-f-lg); font-weight: 600; margin-bottom: 8px; }
.step-desc  { font-size: var(--text-f-sm); color: var(--fg-muted); line-height: 1.6; }

/* ─── CTA Band ───────────────────────────────────────────────────────────── */
.cta-band { background: var(--panel); border-top: var(--border); border-bottom: var(--border); text-align: center; padding: 64px 0; }
.cta-band h2 { font-size: var(--text-f-3xl); margin-bottom: 12px; }
.cta-band p  { color: var(--fg-muted); margin-bottom: 28px; font-size: var(--text-f-base); }

/* ─── Points ─────────────────────────────────────────────────────────────── */
.points { list-style: none; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .points { grid-template-columns: repeat(2, 1fr); } }
.points li { display: flex; gap: 12px; font-size: var(--text-f-base); align-items: flex-start; }
.points li::before { content: "—"; color: var(--fg-muted); flex-shrink: 0; font-size: var(--text-f-sm); margin-top: 3px; }

/* ─── Filter Pills ───────────────────────────────────────────────────────── */
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-pill {
  background: none; border: 1px solid var(--border-col); border-radius: 100px;
  padding: 6px 16px; font-size: var(--text-f-sm); font-weight: 500;
  cursor: pointer; color: var(--fg-muted); letter-spacing: 0.04em;
  text-transform: uppercase; transition: all var(--transition);
}
.filter-pill:hover { border-color: var(--fg); color: var(--fg); }
.filter-pill.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.filter-pill:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }

/* ─── Day Tabs ───────────────────────────────────────────────────────────── */
.day-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 40px; }
.day-tab {
  background: none; border: 1px solid var(--border-col); border-radius: 100px;
  padding: 7px 18px; font-family: var(--font-mono); font-size: var(--text-f-sm);
  font-weight: 600; letter-spacing: var(--tracking-wider); cursor: pointer;
  color: var(--fg-muted); text-transform: uppercase;
  transition: all var(--transition); position: relative;
}
.day-tab:hover { border-color: var(--fg); color: var(--fg); }
.day-tab.active { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.day-tab.today::after {
  content: ''; position: absolute; top: -3px; right: -3px;
  width: 7px; height: 7px; background: var(--whatsapp);
  border-radius: 50%; border: 1px solid var(--bg);
}
.day-tab:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }

/* ─── Night Cards — dark card style ─────────────────────────────────────── */
.nights-section { padding: 64px 0; border-bottom: var(--border); }
@media (min-width: 768px) { .nights-section { padding: 96px 0; } }

.night-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 540px)  { .night-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px)  { .night-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .night-cards { grid-template-columns: repeat(4, 1fr); } }

/* New card element: .nc */
.nc { display: flex; flex-direction: column; border: 1px solid var(--border-col); overflow: hidden; }
.nc[hidden] { display: none; }

.nc-dark {
  background: var(--stone-950);
  color: var(--stone-50);
  padding: 16px 16px 14px;
  min-height: 170px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; text-align: center;
}
[data-theme="dark"] .nc-dark { background: oklch(10% 0.003 49.25); }

.nc-badge {
  position: absolute; top: 11px; left: 12px;
  font-size: 0.58rem; letter-spacing: 0.14em;
  color: #25D366;                              /* green — verified */
  border: 1px solid oklch(22% 0.08 145);
  padding: 2px 7px;
}
.nc-rule { width: 18px; height: 1px; background: oklch(36% 0.004 49.25); margin: 0 auto 12px; }
.nc-name {
  font-size: clamp(0.95rem, 0.75rem + 0.85vw, 1.3rem);
  font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; line-height: 1.2;
  margin-bottom: 8px;
}
.nc-loc {
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: oklch(62% 0.003 84);                 /* light grey */
  text-transform: uppercase;
}
.nc-time {
  position: absolute; bottom: 11px; right: 12px;
  font-size: 0.58rem; letter-spacing: 0.06em;
  color: oklch(42% 0.003 84);
}

.nc-body {
  padding: 14px 16px 16px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
  border-top: none;
}
.nc-title {
  font-size: var(--text-f-base); font-weight: 700;
  color: var(--fg); text-decoration: none;
}
.nc-title:hover { text-decoration: underline; }
.nc-meta { font-size: var(--text-f-sm); color: var(--fg-muted); line-height: 1.4; }
.nc-actions { display: flex; flex-direction: column; gap: 6px; margin-top: auto; padding-top: 2px; }
.nc-btn {
  width: 100%; justify-content: center;
  font-size: var(--text-f-sm); padding: 0.7em 1em;
}
.nc-gl {
  font-size: var(--text-f-sm); color: var(--fg-muted);
  text-align: center; text-decoration: none; padding: 3px;
  letter-spacing: 0.02em;
}
.nc-gl:hover { color: var(--fg); text-decoration: underline; }
.nights-empty { text-align: center; padding: 64px 24px; color: var(--fg-muted); font-size: var(--text-f-sm); grid-column: 1/-1; }

/* ─── Blog grid ──────────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border-col);
  border: 1px solid var(--border-col);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media (min-width: 640px)  { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card { background: var(--bg); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; text-decoration: none; color: var(--fg); transition: background var(--transition); min-width: 0; box-sizing: border-box; }
.blog-card:hover { background: var(--panel); }
.blog-card-tag { font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-muted); }
.blog-card-title { font-size: var(--text-f-lg); font-weight: 600; line-height: 1.35; }
.blog-card-desc, .blog-card-excerpt { font-size: var(--text-f-sm); color: var(--fg-muted); line-height: 1.6; flex: 1; }
.blog-card-read  { font-size: var(--text-f-sm); font-weight: 500; color: var(--fg-muted); margin-top: 8px; }
.blog-card-img-placeholder { height: 200px; background: var(--panel); border-bottom: var(--border); display: flex; align-items: center; justify-content: center; }
.blog-card-img   { width: 100%; height: 200px; object-fit: cover; filter: grayscale(0.15); }
.blog-card-label { color: var(--fg-muted); margin-bottom: 4px; }
.blog-card-body  { display: flex; flex-direction: column; gap: 8px; }

/* ─── Trust strip ────────────────────────────────────────────────────────── */
.trust-strip { border-bottom: var(--border); padding: 20px 0; }
.trust-strip-inner { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; font-size: var(--text-f-sm); color: var(--fg-muted); padding-top: 20px; padding-bottom: 12px; letter-spacing: 0.04em; }
.breadcrumb a { color: var(--fg-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb-sep { margin: 0 2px; }
.breadcrumb span[aria-hidden] { color: var(--border-col); }

/* ─── Page header ────────────────────────────────────────────────────────── */
.page-header { padding: 48px 0 40px; border-bottom: var(--border); text-align: center; }
.page-header .container { max-width: 720px; }
.page-header h1 { font-size: var(--text-f-4xl); font-weight: 600; margin-bottom: 8px; }
.page-header p  { font-size: var(--text-f-base); color: var(--fg-muted); max-width: 560px; margin-inline: auto; }

/* ─── Venue hero ─────────────────────────────────────────────────────────── */
.venue-hero { padding: 32px 0 0; border-bottom: var(--border); }
.venue-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; background: var(--panel); border: var(--border); filter: grayscale(0.85) brightness(0.9) contrast(1.05); margin-top: 24px; }
/* Invert variant — white/transparent bg logos: white→black, logo→grey ---- */
.venue-hero-img--inv { filter: grayscale(1) invert(1) brightness(0.85) contrast(1.1); }
.venue-hero-img-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--panel); border: var(--border); display: flex; align-items: center; justify-content: center; color: var(--fg-muted); font-size: var(--text-f-sm); margin-top: 24px; letter-spacing: var(--tracking-wider); text-transform: uppercase; }
.venue-meta { margin: 16px 0 28px; }

/* ─── Venue info wrap + stats grid ───────────────────────────────────────── */
.venue-info-wrap { margin-top: 24px; display: flex; flex-direction: column; gap: 0; }
.venue-info-wrap .venue-hero-img { margin-top: 0; border-bottom: none; }
/* Grid owns the left + top edge; each cell provides right + bottom — no nth-child tricks needed */
.venue-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-left: var(--border); border-top: var(--border); }
@media (min-width: 640px) { .venue-stats-grid { grid-template-columns: repeat(3, 1fr); } }
.venue-stat { padding: 16px 18px; border-right: var(--border); border-bottom: var(--border); display: flex; flex-direction: column; gap: 5px; }
.venue-stat-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.18em; color: #25D366; text-transform: uppercase; }
.venue-stat-val { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--fg); line-height: 1.4; }

/* ─── Intent Tiles ───────────────────────────────────────────────────────── */
.intent-tiles { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 40px 0; }
@media (min-width: 640px) { .intent-tiles { grid-template-columns: repeat(2, 1fr); } }
.intent-tile { display: flex; align-items: center; justify-content: space-between; padding: 28px 24px; border: 1px solid var(--border-col); text-decoration: none; color: var(--fg); font-weight: 600; font-size: var(--text-f-lg); text-transform: uppercase; letter-spacing: var(--tracking-wider); transition: border-color var(--transition), transform var(--transition); }
.intent-tile:hover { border-color: var(--fg); transform: translateY(-1px); }
.intent-tile-arrow { color: var(--fg-muted); font-size: 20px; text-transform: none; letter-spacing: 0; }

/* ─── Facts table ────────────────────────────────────────────────────────── */
.facts-table { width: 100%; border-collapse: collapse; font-size: var(--text-f-sm); margin: 24px 0; }
.facts-table tr { border-bottom: var(--border); }
.facts-table tr:last-child { border-bottom: none; }
.facts-table td { padding: 12px 0; vertical-align: top; }
.facts-table td:first-child { font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-muted); width: 140px; padding-right: 16px; }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list { margin: 12px 0 40px; }
.faq-item { border-top: var(--border); padding: 20px 0; }
.faq-item:last-child { border-bottom: var(--border); }
.faq-item h3, .faq-q { font-size: var(--text-f-base); font-weight: 600; margin: 0 0 8px; }
.faq-item p, .faq-a  { font-size: var(--text-f-sm); color: var(--fg-muted); line-height: 1.7; margin: 0; }

/* ─── Prose ──────────────────────────────────────────────────────────────── */
.prose { max-width: 680px; margin-inline: auto; }
.prose p     { margin-bottom: 16px; font-size: var(--text-f-base); line-height: 1.75; color: var(--fg); }
.prose p:last-child { margin-bottom: 0; }
.prose h2    { font-size: var(--text-f-3xl); font-weight: 600; margin: 40px 0 12px; }
.prose h3    { font-size: var(--text-f-lg);  font-weight: 600; margin: 32px 0 12px; }
.prose ul    { margin: 12px 0 16px; padding-left: 0; list-style: none; }
.prose ul li { padding: 6px 0 6px 20px; position: relative; font-size: var(--text-f-base); line-height: 1.6; color: var(--fg); }
.prose ul li::before { content: "—"; position: absolute; left: 0; color: var(--fg-muted); font-size: var(--text-f-sm); top: 9px; }
.prose a     { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Area cards ─────────────────────────────────────────────────────────── */
.area-card { display: block; position: relative; border: 1px solid var(--border-col); overflow: hidden; text-decoration: none; color: var(--fg); transition: border-color var(--transition), transform var(--transition); aspect-ratio: 4/3; background: var(--panel); }
.area-card:hover { border-color: var(--fg-muted); transform: translateY(-1px); }
.area-card-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) brightness(0.75); }
.area-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: #fff; }
.area-card-body .label-mono { color: rgba(255,255,255,0.7); }
.area-card-body h3 { font-size: var(--text-f-lg); font-weight: 700; color: #fff; }
.area-card-placeholder { width: 100%; height: 100%; display: flex; align-items: flex-end; background: var(--panel); }
.area-card-placeholder .area-card-body { background: linear-gradient(transparent, rgba(0,0,0,0.5)); }

/* Area card — styled visual panel (no image) */
.area-card-visual {
  width: 100%; height: 100%;
  background: var(--stone-950);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 24px 22px 52px;
  position: relative;
}
.area-card-visual::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, oklch(40% 0.02 49) 0%, oklch(22% 0.005 49) 100%);
}
.area-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.55rem; letter-spacing: 0.22em;
  color: oklch(48% 0.005 49);
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid oklch(22% 0.005 49);
  padding: 2px 7px;
}
.area-card-venues {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.area-card-venues li {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.1em;
  color: oklch(60% 0.004 49);
  text-transform: uppercase;
  padding-left: 12px;
  position: relative;
}
.area-card-venues li::before {
  content: '—';
  position: absolute; left: 0;
  color: oklch(35% 0.004 49);
  font-size: 0.55rem;
  line-height: 1.6;
}
.area-card-venues li:last-child { color: oklch(38% 0.004 49); }

/* ─── Blog post ──────────────────────────────────────────────────────────── */
.blog-post { padding: 48px 0 80px; }
.blog-post-header { padding: 40px 0 32px; border-bottom: var(--border); margin-bottom: 48px; }
.blog-post-header h1 { font-size: var(--text-f-4xl); font-weight: 600; margin-bottom: 12px; max-width: 720px; }
.blog-post-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: var(--text-f-sm); color: var(--fg-muted); letter-spacing: var(--tracking-wider); text-transform: uppercase; }
/* Article body — centred column */
.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter) 80px;
}
.blog-post-body .lead { font-size: var(--text-f-lg); line-height: 1.75; color: var(--fg); margin-bottom: 32px; padding-bottom: 24px; border-bottom: var(--border); }
.blog-post-body h2 { font-size: var(--text-f-3xl); font-weight: 600; margin: 40px 0 14px; }
.blog-post-body h3 { font-size: var(--text-f-lg);  font-weight: 600; margin: 28px 0 10px; }
.blog-post-body p  { font-size: var(--text-f-base); line-height: 1.8; color: var(--fg); margin-bottom: 18px; }
.blog-post-body ul { margin: 12px 0 20px; padding: 0; list-style: none; }
.blog-post-body ul li { font-size: var(--text-f-base); line-height: 1.7; color: var(--fg); padding: 7px 0 7px 20px; position: relative; border-bottom: var(--border); }
.blog-post-body ul li:last-child { border-bottom: none; }
.blog-post-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--fg-muted); font-size: var(--text-f-sm); top: 10px; }
.blog-post-body ol { margin: 12px 0 20px; padding-left: 20px; }
.blog-post-body ol li { font-size: var(--text-f-base); line-height: 1.7; color: var(--fg); margin-bottom: 10px; }
.blog-post-body a  { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.blog-post-body .blog-cta { margin: 40px 0; padding: 28px; background: var(--panel); border: var(--border); }
.blog-post-body .blog-cta p { margin-bottom: 16px; font-weight: 500; }
.cta-inline { margin: 48px 0; padding: 32px; background: var(--panel); border: var(--border); text-align: center; }
.cta-inline p { margin-bottom: 16px; font-weight: 500; font-size: var(--text-f-lg); }
.container-narrow { max-width: 760px; }
.blog-related { margin-top: 48px; padding-top: 28px; border-top: var(--border); }
.blog-related h3 { font-size: var(--text-f-base); font-weight: 600; margin-bottom: 12px; }
.blog-related ul { list-style: none; padding: 0; margin: 0; }
.blog-related li { padding: 5px 0; }
.blog-related a  { color: var(--fg); text-decoration: none; font-size: var(--text-f-sm); display: inline-flex; align-items: center; gap: 4px; }
.blog-related a:hover { text-decoration: underline; }

/* ─── Blog post article body (jet guide etc) ─────────────────────────────── */
.post-body { max-width: 720px; }
.post-lead { font-size: var(--text-f-lg); line-height: 1.8; color: var(--fg); margin-bottom: 36px; padding-bottom: 28px; border-bottom: var(--border); }
.post-body h2 { font-size: var(--text-f-3xl); font-weight: 600; margin: 44px 0 14px; }
.post-body h3 { font-size: var(--text-f-lg); font-weight: 600; margin: 28px 0 10px; }
.post-body p   { font-size: var(--text-f-base); line-height: 1.8; color: var(--fg); margin-bottom: 18px; }
.post-body ul  { margin: 12px 0 24px; padding: 0; list-style: none; }
.post-body ul li { font-size: var(--text-f-base); line-height: 1.7; color: var(--fg); padding: 9px 0 9px 20px; position: relative; border-bottom: var(--border); }
.post-body ul li:last-child { border-bottom: none; }
.post-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--fg-muted); line-height: 1.85; }
.post-body ol  { margin: 12px 0 24px; padding-left: 24px; }
.post-body ol li { font-size: var(--text-f-base); line-height: 1.75; color: var(--fg); margin-bottom: 12px; }
.post-body a   { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.post-meta     { font-size: var(--text-f-sm); color: var(--fg-muted); letter-spacing: 0.1em; }

/* Post table */
.post-table-wrap { overflow-x: auto; margin: 24px 0 32px; }
.post-table { width: 100%; border-collapse: collapse; font-size: var(--text-f-sm); }
.post-table th { text-align: left; font-family: var(--font-mono); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.6rem; padding: 10px 14px; border-bottom: 2px solid var(--border-col); color: var(--fg-muted); }
.post-table td { padding: 11px 14px; border-bottom: var(--border); color: var(--fg); vertical-align: top; }
.post-table tr:last-child td { border-bottom: none; }

/* Partner block */
.post-partner-block { margin: 40px 0; padding: 28px; border: var(--border); background: var(--panel); }
.post-partner-label { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--fg-muted); margin-bottom: 14px; }
.post-partner-block p { font-size: var(--text-f-base); line-height: 1.7; margin-bottom: 18px; }
.post-partner-block a:not(.btn) { color: var(--fg); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Post nav */
.post-nav-links { margin-top: 56px; padding-top: 24px; border-top: var(--border); }

/* Blog card image text placeholder */
.blog-card-img--text {
  background: var(--stone-950);
  width: 100%; aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img-label {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.28em;
  color: oklch(38% 0.004 49);
  text-transform: uppercase;
}

/* ─── Venue list ─────────────────────────────────────────────────────────── */
.venue-list { margin: 12px 0 32px; }
.venue-list-item { padding: 20px 0; border-top: var(--border); }
.venue-list-item:last-child { border-bottom: var(--border); }
.venue-list-name a { color: var(--fg); text-decoration: none; font-size: var(--text-f-lg); font-weight: 700; }
.venue-list-name a:hover { text-decoration: underline; }
.venue-list-meta { font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--fg-muted); margin-bottom: 8px; }
.venue-list-desc { font-size: var(--text-f-sm); color: var(--fg-muted); line-height: 1.65; }

/* ─── Restaurant feature block ───────────────────────────────────────────── */
.rest-feature {
  border: var(--border);
  margin-bottom: 0;
  background: var(--panel);
}
.rest-feature-body { padding: 32px; }
.rest-feature-area {
  font-size: 0.6rem; letter-spacing: 0.22em;
  color: #25D366; margin-bottom: 10px;
}
.rest-feature-name {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.2rem);
  font-weight: 600; margin-bottom: 16px;
}
.rest-feature-desc {
  font-size: var(--text-f-base); line-height: 1.75;
  color: var(--fg-muted); margin-bottom: 24px;
  max-width: 680px;
}
.rest-feature-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.rest-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--border-col);
  color: var(--fg-muted);
}

/* ─── Content pages ──────────────────────────────────────────────────────── */
.content-page { padding: 60px 0 80px; }
.content-page h2 { font-size: var(--text-f-3xl); font-weight: 600; margin: 40px 0 12px; }
.content-page p  { font-size: var(--text-f-base); color: var(--fg); line-height: 1.75; margin-bottom: 16px; }
.content-page ul { margin: 12px 0 16px; padding-left: 20px; }
.content-page ul li { font-size: var(--text-f-base); line-height: 1.7; margin-bottom: 6px; color: var(--fg); }
.content-page a  { color: var(--fg); text-decoration: underline; }

/* ─── Booking Modal ──────────────────────────────────────────────────────── */
.vl-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: oklch(0% 0 0 / 0.72);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vl-modal-overlay.is-open { opacity: 1; }
.vl-modal-overlay[hidden] { display: none !important; }

.vl-modal {
  background: var(--bg);
  border: var(--border);
  width: 100%; max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  padding: 36px 32px 32px;
  transform: translateY(16px);
  transition: transform 0.22s ease;
}
.vl-modal-overlay.is-open .vl-modal { transform: translateY(0); }

@media (max-width: 600px) {
  .vl-modal { padding: 28px 20px 24px; }
}

.vl-modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  color: var(--fg-muted); padding: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: color var(--transition);
}
.vl-modal-close:hover { color: var(--fg); }

.vl-modal-eyebrow {
  color: #25D366; margin-bottom: 8px;
}
.vl-modal-title {
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.9rem);
  font-weight: 700; margin-bottom: 6px;
  font-family: var(--font-sans);
}
.vl-modal-sub {
  font-size: var(--text-f-sm); color: var(--fg-muted);
  line-height: 1.55; margin-bottom: 24px;
}

.vl-booking-form { display: flex; flex-direction: column; gap: 16px; }

.vl-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 500px) { .vl-form-row { grid-template-columns: 1fr; } }

.vl-field { display: flex; flex-direction: column; gap: 5px; }
.vl-label {
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted);
}
.vl-req { color: #25D366; }
.vl-opt { color: var(--fg-muted); opacity: 0.6; font-size: 0.55rem; }

.vl-input {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--border-col);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--text-f-sm);
  padding: 10px 12px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  -webkit-appearance: none;
}
.vl-input::placeholder { color: var(--fg-muted); opacity: 0.6; }
.vl-input:focus { border-color: var(--fg); }
.vl-input.is-error { border-color: #e85c41; }
.vl-select { cursor: pointer; }
.vl-textarea { resize: vertical; min-height: 72px; }

/* Group breakdown row */
.vl-group-row { grid-template-columns: 1fr 1fr auto; align-items: end; }
@media (max-width: 500px) { .vl-group-row { grid-template-columns: 1fr 1fr auto; } }
.vl-label-sub { font-size: 0.58rem; opacity: 0.8; }
.vl-field--total { min-width: 52px; }
.vl-total-display {
  background: var(--panel);
  border: 1px solid var(--border-col);
  color: var(--fg);
  font-family: var(--font-mono);
  font-size: var(--text-f-sm);
  font-weight: 700;
  padding: 10px 12px;
  text-align: center;
  min-width: 52px;
}

.vl-radio-group {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.vl-radio-label {
  font-size: var(--text-f-sm);
  padding: 8px 14px;
  border: 1px solid var(--border-col);
  cursor: pointer;
  display: flex; align-items: center; gap: 7px;
  transition: border-color var(--transition), background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.vl-radio-label:has(input:checked) {
  border-color: var(--fg);
  background: var(--fg);
  color: var(--bg);
}
.vl-radio-label input[type="radio"] {
  display: none;
}

.vl-form-error {
  font-size: var(--text-f-sm); color: #e85c41;
  padding: 8px 12px;
  border: 1px solid #e85c41;
  background: oklch(40% 0.15 25 / 0.08);
}

.vl-modal-actions {
  display: flex; gap: 10px; align-items: center;
  margin-top: 4px; flex-wrap: wrap;
}
.vl-submit-btn { flex: 1; justify-content: center; }
.vl-cancel-btn { white-space: nowrap; }

.vl-disclaimer {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.06em;
  color: var(--fg-muted); opacity: 0.7;
  text-align: center; margin-top: 4px;
}

/* ── Spend section */
.vl-spend-section { display: flex; flex-direction: column; gap: 10px; }
.vl-spend-section[hidden] { display: none; }

.vl-spend-hint {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  background: oklch(96% 0.012 145 / 0.12);
  border: 1px solid oklch(60% 0.15 145 / 0.25);
}
.vl-spend-hint[hidden] { display: none; }
.vl-spend-hint-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.vl-spend-hint-label {
  font-family: var(--font-mono);
  font-size: 0.7rem; font-weight: 600;
  color: #25D366; letter-spacing: 0.05em;
  display: block;
}
.vl-spend-hint-note {
  font-family: var(--font-mono);
  font-size: 0.6rem; color: var(--fg-muted);
  letter-spacing: 0.02em; line-height: 1.5;
  display: block; margin-top: 2px;
}
[data-theme="dark"] .vl-spend-hint {
  background: oklch(20% 0.04 145 / 0.2);
  border-color: oklch(40% 0.1 145 / 0.3);
}

/* Success state */
.vl-modal-success {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 12px; padding: 16px 0;
}
.vl-success-icon {
  width: 56px; height: 56px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vl-success-title {
  font-family: var(--font-sans);
  font-size: 1.4rem; font-weight: 700;
}
.vl-success-sub {
  font-size: var(--text-f-sm); color: var(--fg-muted);
  line-height: 1.6; max-width: 340px;
}

/* Loading state */
.vl-submit-btn.is-loading { opacity: 0.7; pointer-events: none; }

/* ─── Sticky mobile CTA ──────────────────────────────────────────────────── */
.sticky-cta { display: none; }
@media (max-width: 767px) {
  .sticky-cta { display: block; position: fixed; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: var(--bg); border-top: var(--border); z-index: 50; }
  body.has-sticky-cta { padding-bottom: 80px; }
}

/* ─── Responsive button fixes ────────────────────────────────────────────── */
/* btn-lg becomes full-width on mobile so long text doesn't overflow */
@media (max-width: 640px) {
  .btn-lg { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .btn-whatsapp.btn-lg { width: 100%; justify-content: center; }
}

/* ─── Event row — replaces non-responsive inline grid on events page ─────── */
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg);
  align-items: center;
  border-bottom: var(--border);
}
.event-row:last-child { border-bottom: none; }
@media (max-width: 600px) {
  .event-row {
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 8px 12px;
  }
  .event-row .event-book {
    grid-column: 2;
    justify-self: start;
  }
}

/* ─── Dress code grid — guide page ──────────────────────────────────────── */
.dress-code-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .dress-code-grid { grid-template-columns: 1fr; } }

/* ─── Error page ─────────────────────────────────────────────────────────── */
.error-page { min-height: 60vh; display: flex; align-items: center; padding: 80px 0; }
.error-page-inner { max-width: 480px; }
.error-code { font-family: var(--font-mono); font-size: 80px; font-weight: 700; letter-spacing: -0.04em; color: var(--border-col); line-height: 1; margin-bottom: 16px; }
.error-page h1 { font-size: var(--text-f-4xl); margin-bottom: 12px; }
.error-page p  { color: var(--fg-muted); margin-bottom: 28px; }

/* ─── Footer — Clearscope-style layout ───────────────────────────────────── */
footer, .footer {
  background: oklch(10% 0.003 49.25);
  color: var(--stone-50);
  font-family: var(--font-mono);
  font-size: var(--text-f-sm);
}

/* Main footer body */
.footer-main {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: start;
}

/* Big wordmark on the left (like Clearscope) */
.footer-wordmark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--stone-50) !important;
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
  display: block;
}
.footer-wordmark:hover { opacity: 0.75; }

/* 3-column link grid */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: oklch(48% 0.004 84);
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.footer-col a {
  display: block;
  font-size: var(--text-f-sm);
  color: oklch(78% 0.003 84);
  text-decoration: none;
  margin-bottom: 13px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }

/* Legacy .footer-grid (kept for pages not yet updated) */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-top: var(--spacing-f-5-6);
  padding-bottom: var(--spacing-f-5-6);
}
@media (max-width: 767px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid h4 {
  font-size: var(--text-f-sm); letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: oklch(65% 0.004 84);
  font-weight: 600; margin-bottom: 16px; display: block;
}
.footer-grid a:not(.btn) {
  display: block; font-size: var(--text-f-sm); color: var(--stone-50);
  text-decoration: none; margin-bottom: 10px; transition: opacity var(--transition);
}
.footer-grid a:not(.btn):hover { opacity: 0.6; }
.footer-grid p { font-size: var(--text-f-sm); color: oklch(70% 0.003 84); line-height: 1.6; margin-bottom: 8px; }

/* Bottom bar — centered single line */
.footer-bottom {
  background: oklch(7% 0.003 49.25);
  border-top: 1px solid oklch(16% 0.004 49.25);
  color: oklch(45% 0.003 84);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px;
  padding-block: 1rem;
  font-size: 0.72rem;
  text-align: center;
}
.footer-bottom a { color: oklch(52% 0.003 84); text-decoration: none; display: inline; margin-bottom: 0; }
.footer-bottom a:hover { color: #fff; }

/* Responsive footer */
@media (max-width: 960px) {
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-wordmark { font-size: 1.5rem; }
}
@media (max-width: 400px) {
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── Utility ────────────────────────────────────────────────────────────── */
.mt-0  { margin-top: 0; }     .mb-0  { margin-bottom: 0; }
.mt-8  { margin-top: 8px; }   .mb-8  { margin-bottom: 8px; }
.mt-16 { margin-top: 16px; }  .mb-16 { margin-bottom: 16px; }
.mt-24 { margin-top: 24px; }  .mb-24 { margin-bottom: 24px; }
.mt-40 { margin-top: 40px; }  .mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-xs     { font-size: var(--text-f-sm); }
.text-sm     { font-size: var(--text-f-sm); }
.text-base   { font-size: var(--text-f-base); }
.text-lg     { font-size: var(--text-f-lg); }
.bg-muted    { background: var(--panel); }
.border-top  { border-top: var(--border); }
.divider     { border: none; border-top: var(--border); margin: 40px 0; }

/* ─── Partners page ──────────────────────────────────────────────────────── */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.steps-grid   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.why-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) {
  .partner-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
}

/* ─── Language selector ──────────────────────────────────────────────────── */
.lang-selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: transparent;
  border: 1px solid oklch(35% 0 0);
  border-radius: 6px;
  padding: 5px 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: oklch(70% 0 0);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.lang-btn:hover { border-color: oklch(60% 0 0); color: #fff; }
.lang-flag { font-size: 0.9rem; line-height: 1; }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 148px;
  background: oklch(14% 0.003 84);
  border: 1px solid oklch(25% 0.003 84);
  border-radius: 8px;
  padding: 4px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.lang-selector.open .lang-dropdown { display: flex; }
.lang-dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: oklch(70% 0 0);
  text-decoration: none;
  transition: background 0.1s, color 0.1s;
  white-space: nowrap;
  margin-bottom: 0;
}
.lang-dropdown a:hover { background: oklch(22% 0.003 84); color: #fff; }
.lang-dropdown a .lf { font-size: 1rem; }
/* light mode overrides */
[data-theme="light"] .lang-btn { border-color: oklch(75% 0 0); color: oklch(40% 0 0); }
[data-theme="light"] .lang-btn:hover { border-color: oklch(40% 0 0); color: oklch(10% 0 0); }
[data-theme="light"] .lang-dropdown { background: #fff; border-color: oklch(85% 0 0); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
[data-theme="light"] .lang-dropdown a { color: oklch(30% 0 0); }
[data-theme="light"] .lang-dropdown a:hover { background: oklch(96% 0 0); color: oklch(10% 0 0); }

/* ─── Partners page ──────────────────────────────────────────────────────── */
.partner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.steps-grid   { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.why-grid     { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 720px) {
  .partner-grid { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
}

/* ─── Mobile fixes ───────────────────────────────────────────────────────────
   1. No horizontal overflow   2. iOS input zoom fix   3. Touch-action
   4. Modal pointer-events     5. Day tabs scroll       6. Modal bottom-sheet
   7. Nav tap targets          8. Menu tap targets      9. Night cards visible
   --------------------------------------------------------------------------- */

/* 1. No horizontal scroll */
html, body { overflow-x: hidden; max-width: 100%; }

/* 2. iOS font-size zoom fix — ANY input < 16px triggers auto-zoom + snapback on iOS Safari */
@media (max-width: 767px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
  select,
  textarea,
  .vl-input {
    font-size: 16px !important;
  }
}

/* 3. Touch-action on all interactive elements — removes 300ms tap delay */
button, .btn, a, [role="button"],
.day-tab, .filter-pill, .nav-toggle, .theme-toggle, .lang-btn,
.vl-radio-label, .card, .area-card, .intent-tile, .nc-title {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* 4. Modal overlay pointer-events — the overlay was blocking taps during its 220ms close fade */
.vl-modal-overlay         { pointer-events: none; }
.vl-modal-overlay.is-open { pointer-events: auto; }

/* 5. Day tabs — scrollable row on mobile, no wrapping */
@media (max-width: 640px) {
  .day-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 6px;
  }
  .day-tabs::-webkit-scrollbar { display: none; }
  .day-tab { flex-shrink: 0; }
}

/* 6. Modal — bottom sheet on mobile */
@media (max-width: 600px) {
  .vl-modal-overlay { align-items: flex-end; padding: 0; }
  .vl-modal {
    max-width: 100%; width: 100%;
    max-height: 92vh; max-height: 92svh;
    border-radius: 16px 16px 0 0;
    border-left: none; border-right: none; border-bottom: none;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 20px 16px 36px;
  }
}

/* 7. Nav buttons — 44×44px minimum touch target */
.nav-toggle, .theme-toggle { min-width: 44px; min-height: 44px; width: 44px; height: 44px; }

/* 8. Mobile menu link tap targets */
.mobile-menu a { min-height: 48px; display: flex; align-items: center; }

/* 9. Night cards always visible */
.night-cards { overflow: visible; }
.nc[hidden]  { display: none !important; }

/* 10. Fix undefined --font-sans fallback on inputs */
.vl-input { font-family: var(--font-mono); }

/* ─── Focus ──────────────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--fg); outline-offset: 2px; }
