/* ============================================================
   SPARK Places — Site-wide stylesheet
   Design direction: lighter hospitality (per user), SPARK design system.
   ============================================================ */

/* ---- Fonts ----
   Primary typefaces: Söhne Buch (400) and Söhne Kräftig (500) — the brand's
   official grotesque. Inter is kept as a UI fallback via Google Fonts. */

@font-face {
  font-family: 'Söhne';
  src: url('fonts/Sohne-Buch.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Söhne';
  src: url('fonts/Sohne-Kraftig.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Söhne';
  src: url('fonts/Sohne-Kraftig.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Söhne';
  src: url('fonts/Sohne-Kraftig.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* core palette */
  --ink:          #0B0B0C;
  --paper:        #F6F3EE;
  --concrete:     #E8E4DC;
  --oak:          #C6A87A;
  --oak-deep:     #A88B5C;
  --oak-soft:     #E8D8B8;

  --ink-900: #0A0A0A;
  --ink-800: #171717;
  --ink-700: #2A2926;
  --ink-600: #44423D;
  --ink-500: #6E6B63;
  --ink-400: #9A968B;
  --ink-300: #C3BFB3;
  --ink-200: #DFDCD1;
  --ink-100: #EFEDE4;
  --ink-050: #F7F5EE;

  --font-display: 'Söhne', 'General Sans', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Söhne', 'General Sans', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
  /* Optional serif accent used only in subtitles / editorial pull-quotes.
     Free Google Fonts serif with similar ductus to GT Super Display. */
  --font-serif:   'Instrument Serif', Georgia, serif;

  --grid-max: 1440px;

  --accent: var(--oak);
  --hero-tone: light;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.55;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* --- Typography utilities --- */
.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.028em; line-height: 1.03; }
.serif { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(0,0,0,0.55);
}
.eyebrow--light { color: rgba(255,255,255,0.65); }
.mono { font-family: var(--font-mono); letter-spacing: 0; font-feature-settings: "tnum" 1; }
.label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Links --- */
.link-u {
  display: inline-block;
  font-weight: 500;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  line-height: 1.2;
  transition: opacity .2s ease, color .2s ease;
}
.link-u:hover { opacity: 0.65; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: #2A2926; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid rgba(0,0,0,0.15); }
.btn--ghost:hover { background: rgba(0,0,0,0.05); }
.btn--invert { background: #fff; color: var(--ink); }
.btn--invert:hover { background: var(--paper); }

/* --- Layout helpers --- */
.wrap { max-width: var(--grid-max); margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

/* --- HERO (group landing + location pages) --- */
.hero-group, .loc-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg, .loc-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #0B0B0C;
}
.hero-bg img, .hero-bg video, .hero-bg iframe,
.loc-hero__bg img, .loc-hero__bg video, .loc-hero__bg iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
/* iframe-as-background needs scale trick to cover viewport without letterbox */
.hero-bg iframe, .loc-hero__bg iframe {
  width: 177.77vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
/* keep poster image under iframe for instant paint */
.hero-bg img, .loc-hero__bg img { z-index: -1; }
/* scrim for legibility */
.hero-group::before, .loc-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.15) 0%, rgba(11,11,12,0) 40%, rgba(11,11,12,0.55) 100%);
}
.loc-hero__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,0.25) 0%, rgba(11,11,12,0) 38%, rgba(11,11,12,0.6) 100%);
}

.hero-content, .loc-hero__content {
  position: relative;
  max-width: var(--grid-max);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 96px;
}
.hero-content .eyebrow { color: rgba(255,255,255,0.72); margin-bottom: 20px; display: block; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 7.2vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  max-width: 18ch;
  color: #fff;
}
.hero-headline .rotator {
  display: inline-block;
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--oak-soft);
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.5;
  max-width: 44ch;
  color: rgba(255,255,255,0.82);
  margin: 0 0 28px;
}
.hero-ctas { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-ctas .link-u { color: #fff; }

.loc-hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 10vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin: 20px 0 24px;
  color: #fff;
}
.loc-hero__tagline {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  max-width: 52ch;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
}
.loc-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- HEADER --- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background .3s ease, border-color .3s ease;
}
.header--transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0) 100%);
  border-bottom: 1px solid transparent;
  color: #fff;
  backdrop-filter: none;
}
.header--transparent .header__nav-link,
.header--transparent .icon-btn {
  text-shadow: 0 1px 2px rgba(0,0,0,0.45);
}
.header--transparent .header__logo { filter: invert(1); }
.header--transparent .icon-btn { color: #fff; }
.header--transparent .header__nav-link { color: #fff; }
.header--transparent .header__enquire { background: #fff; color: #000; }
.header-inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 24px;
}
.header-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  padding-top: 8px;
}
.header-top__left { justify-self: start; display: flex; align-items: center; gap: 8px; }
.header-top__center { justify-self: center; display: flex; align-items: baseline; gap: 22px; }
.header-top__right { justify-self: end; display: flex; align-items: center; gap: 8px; }
.header__logo { height: 36px; width: auto; }
.header__sep {
  width: 1px; height: 16px;
  background: rgba(0,0,0,0.18);
  align-self: center;
}
.header--transparent .header__sep { background: rgba(255,255,255,0.3); }
.header__location {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-transform: none;
  color: #5F5F5F;
  white-space: nowrap;
  align-self: center;
}
.header--transparent .header__location {
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 2px rgba(0,0,0,0.35);
}
@media (max-width: 620px) {
  .header__sep, .header__location { display: none; }
}
.icon-btn {
  width: 44px; height: 44px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background .2s ease;
}
.icon-btn:hover { background: rgba(0,0,0,0.06); }
.header--transparent .icon-btn:hover { background: rgba(255,255,255,0.15); }
.header-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
  height: 40px;
  padding-bottom: 6px;
}
.header__nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color .2s ease;
  position: relative;
}
.header__nav-link:hover { color: rgba(0,0,0,0.55); }
.header__nav-link.is-active { color: rgba(0,0,0,0.45); }
/* Current location pill — Oak accent (matches drawer + brand) */
.header__nav-link--loc.is-current { color: var(--oak-deep); font-weight: 500; }
.header--transparent .header__nav-link--loc.is-current { color: var(--oak-soft); }
.header-nav__divider {
  display: inline-block;
  width: 1px; height: 12px;
  background: rgba(0,0,0,0.18);
  margin: 0 6px;
  align-self: center;
}
.header--transparent .header-nav__divider { background: rgba(255,255,255,0.28); }
/* Subnav — on-venue row (Discover / Venues / Gallery) */
.header-subnav {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 4px 0 8px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.header--transparent .header-subnav { border-top-color: rgba(255,255,255,0.14); }
.header__subnav-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease;
}
.header__subnav-link:hover { color: var(--ink); }
.header__subnav-link.is-active { color: var(--ink); position: relative; }
.header__subnav-link.is-active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -9px;
  height: 1px; background: var(--ink);
}
.header--transparent .header__subnav-link { color: rgba(255,255,255,0.7); }
.header--transparent .header__subnav-link:hover,
.header--transparent .header__subnav-link.is-active { color: #fff; }
.header--transparent .header__subnav-link.is-active::after { background: #fff; }
.header--transparent .header__nav-link { color: #fff; }
.header--transparent .header__nav-link.is-active { color: #fff; opacity: 0.95; }
.header--transparent .header__nav-link:hover { color: rgba(255,255,255,0.7); }
.header__enquire {
  background: var(--ink);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: background .2s ease;
}
.header__enquire:hover { background: #333; }
.lang-menu {
  position: absolute;
  top: 100%; right: 16px;
  margin-top: 6px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  min-width: 140px;
  padding: 6px;
  z-index: 80;
  display: none;
}
.lang-menu.is-open { display: block; }
.lang-menu button {
  display: block; width: 100%;
  text-align: left;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--ink);
}
.lang-menu button:hover { background: rgba(0,0,0,0.04); }
.lang-menu button.is-active { font-weight: 500; background: rgba(0,0,0,0.03); }

/* Hamburger drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
}
.drawer.is-open { display: block; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.4);
  opacity: 0;
  animation: fade-in .25s ease forwards;
}
.drawer__panel {
  position: absolute;
  top: 0; left: 0;
  width: min(380px, 88vw);
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  animation: slide-in .3s cubic-bezier(.22,1,.36,1) forwards;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
@keyframes fade-in { to { opacity: 1; } }
@keyframes slide-in { to { transform: translateX(0); } }
.drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.drawer__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.drawer__primary {
  padding: 24px 28px 14px;
  display: flex; flex-direction: column; gap: 0;
}
.drawer__primary a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--ink);
  line-height: 1.0;
  padding: 3px 0;
  transition: opacity .2s ease;
}
.drawer__primary a:hover { opacity: 0.55; }
.drawer__secondary {
  padding: 14px 28px 18px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; flex-direction: column; gap: 12px;
}
.drawer__secondary a {
  font-size: 13px; font-weight: 500;
  color: rgba(0,0,0,0.65);
}
.drawer__secondary a:hover { color: var(--ink); }
.drawer__cta {
  margin-top: auto;
  padding: 22px 28px 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.drawer__cta .btn { width: 100%; justify-content: center; }

/* --- FOOTER --- */
.footer {
  display: block;
  background: var(--ink);
  color: #fff;
  padding: 80px 0 40px;
}
.footer .wrap { display: flex; flex-direction: column; gap: 48px; }

/* Location card + contact cols */
.footer-location {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 2.6fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-location__card { display: flex; gap: 16px; align-items: center; }
.footer-location__thumb {
  width: 64px; height: 64px; border-radius: 4px; overflow: hidden; flex: 0 0 auto;
  background: rgba(255,255,255,0.08);
}
.footer-location__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-location__name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.footer-location__name strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.2;
}
.footer-location__name span {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}
.footer-location__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 48px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.footer-location__cols a {
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: border-color .2s ease;
}
.footer-location__cols a:hover { border-bottom-color: #fff; }
.footer-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 500;
}
.footer-maplink {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7) !important;
  border-bottom: 1px solid rgba(255,255,255,0.3) !important;
}

/* Newsletter */
.footer-newsletter {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-newsletter h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0 0 24px;
  color: #fff;
  max-width: 640px;
}
.footer-newsletter__form {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  max-width: 560px;
}
.footer-newsletter__form input[type="email"] {
  flex: 1; min-width: 240px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.footer-newsletter__form input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
}
.footer-newsletter__form button {
  padding: 13px 28px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.footer-newsletter__form button:hover {
  background: #fff; color: var(--ink); border-color: #fff;
}

/* Nav columns */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-cols h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 18px;
  text-transform: none;
  display: flex; align-items: center; gap: 8px;
}
.footer-club__badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff; color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
}
.footer-cols ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols li a {
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.4;
  transition: color .2s ease;
}
.footer-cols li a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.65); margin-right: 20px; font-size: 12px; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1060px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 32px 24px; }
  .footer-location { grid-template-columns: 1fr; gap: 32px; }
  .footer-location__cols { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-location__cols { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* --- HERO (group landing) --- */
.hero-group {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: -2px;
  z-index: 0;
  overflow: hidden;
}
.hero-bg iframe, .hero-bg img, .hero-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180vh; height: 102vh;
  min-width: 102vw; min-height: 58vw;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  padding: 0 24px;
  text-align: center;
}
.hero-content .eyebrow {
  color: rgba(246,243,238,0.78);
  margin-bottom: 32px;
  display: block;
}
.hero-headline {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-size: clamp(40px, 6.8vw, 92px);
}
.hero-headline .rotator {
  position: relative; display: inline-block;
  vertical-align: baseline;
  font-family: inherit;
  color: var(--oak-soft);
  font-weight: 500;
  font-style: normal;
}
.hero-headline .rotator__sizer {
  visibility: hidden;
  display: inline-block;
}
.hero-headline .rotator__slot {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.hero-headline .rotator__slot.is-active { opacity: 1; transition: opacity .45s ease .2s; }
.hero-sub {
  margin: 32px auto 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.4;
  color: rgba(246,243,238,0.92);
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 620px;
}
.hero-ctas {
  display: flex; gap: 40px;
  flex-wrap: wrap; align-items: center; justify-content: center;
}
.hero-ctas .link-u { color: #fff; font-size: 13px; }
.hero-scroll-hint {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* --- SECTIONS --- */
section { position: relative; }
.section {
  padding: clamp(64px, 9vw, 128px) 0;
}
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--pb-tight { padding-bottom: clamp(24px, 3vw, 48px); }
.philosophy-tight { padding-top: clamp(36px, 4.5vw, 64px) !important; padding-bottom: clamp(20px, 2.5vw, 40px) !important; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--white { background: #fff; }
.section--ink { background: var(--ink); color: #fff; }
.section--concrete { background: var(--concrete); }
.section--mid { background: #CDC4B4; color: var(--ink); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.04;
  font-size: clamp(34px, 4.6vw, 64px);
}
.section-title--sm {
  font-size: clamp(28px, 3.4vw, 48px);
}

/* Brand statement */
.statement {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.statement p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 24px;
}
.statement .lede {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: rgba(0,0,0,0.72);
  line-height: 1.5;
  letter-spacing: 0;
}

.statement--ink p { color: #fff; }
.statement--ink .lede { color: rgba(255,255,255,0.72); }

/* Destinations header */
.section-head {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 900px;
  margin-bottom: 48px;
}

/* --- DESTINATION TILE --- */
.destination {
  padding: clamp(56px, 7vw, 96px) 0;
}
/* When destinations section starts immediately after a paper-background section,
   eliminate the doubled whitespace by removing top padding on the first tile. */
.section--paper + #destinations .destination:first-child { padding-top: 0; }
.destination--light { background: var(--paper); color: var(--ink); }
.destination--dark  { background: #14161B; color: #fff; }
.destination--mid   { background: #C9C0B0; color: var(--ink); }
.destination-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 24px;
}
.destination-grid--reverse { grid-template-columns: 5fr 7fr; }
.destination-grid--reverse .destination-media { order: 2; }
@media (max-width: 860px) {
  .destination-grid, .destination-grid--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .destination-grid--reverse .destination-media { order: 0; }
}
.destination-text .eyebrow { color: rgba(0,0,0,0.58); }
.destination--dark .destination-text .eyebrow { color: rgba(255,255,255,0.55); }
.destination-text h3 {
  margin: 12px 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 52px);
  letter-spacing: -0.028em;
  line-height: 1.03;
}
.destination-text p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,0.72);
  margin: 0 0 28px;
  max-width: 440px;
}
.destination--dark .destination-text p { color: rgba(255,255,255,0.72); }
.destination-text .link-u {
  color: currentColor;
  display: inline-flex; gap: 8px; align-items: center;
  transition: gap .2s ease, opacity .2s ease;
}
.destination-text .link-u:hover { gap: 12px; opacity: 0.7; }
.destination-text .badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid currentColor;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

/* --- LOCATION CARDS (Rosewood-style portrait row) --- */
.loc-cards { padding: 88px 0 96px; background: var(--paper); }
.loc-cards__head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.loc-cards__head .eyebrow { display: block; margin-bottom: 14px; }
.loc-cards__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.loc-card { display: block; text-decoration: none; color: var(--ink); }
.loc-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--concrete);
  margin-bottom: 20px;
}
.loc-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.loc-card:hover .loc-card__img img { transform: scale(1.03); }
.loc-card__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.loc-card__sub {
  text-align: center;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.02em;
}
@media (max-width: 840px) {
  .loc-cards__row { grid-template-columns: 1fr; gap: 32px; }
  .loc-card__img { aspect-ratio: 4 / 3; }
}

/* --- EXPERIENCES SHOWCASE (Rosewood-style horizontal scroll) --- */
.exp-showcase {
  background: var(--paper);
  padding: clamp(64px, 8vw, 112px) 0 clamp(72px, 9vw, 128px);
  overflow: hidden;
}
.exp-showcase__inner {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  align-items: center;
  gap: 56px;
  padding-left: clamp(24px, 4vw, 64px);
}
.exp-showcase__intro { max-width: 320px; }
.exp-showcase__intro .eyebrow { display: block; margin-bottom: 14px; }
.exp-showcase__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--ink);
}
.exp-showcase__title em {
  font-style: italic;
  font-weight: 400;
}
.exp-showcase__intro p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  margin: 0;
}
.exp-showcase__track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}
.exp-showcase__track-wrap::-webkit-scrollbar { height: 6px; }
.exp-showcase__track-wrap::-webkit-scrollbar-track { background: transparent; }
.exp-showcase__track-wrap::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.18); border-radius: 999px; }
.exp-showcase__track {
  display: flex;
  gap: 24px;
  padding-right: clamp(24px, 4vw, 64px);
}
.exp-card {
  flex: 0 0 260px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.exp-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--concrete);
  margin-bottom: 16px;
}
.exp-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.exp-card:hover .exp-card__img img { transform: scale(1.04); }
.exp-card__label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--ink);
}
.exp-card__sub {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.55);
  margin-bottom: 14px;
}
.exp-card__cta {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 18px;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: background .2s ease;
}
.exp-card:hover .exp-card__cta { background: #000; }
@media (max-width: 900px) {
  .exp-showcase__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-right: clamp(24px, 4vw, 64px);
  }
  .exp-showcase__intro { max-width: 100%; }
  .exp-card { flex-basis: 220px; }
}

/* --- CAROUSEL --- */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  aspect-ratio: 16/11;
}
.carousel--43 { aspect-ratio: 4/3; }
.carousel--169 { aspect-ratio: 16/9; }
.carousel__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.carousel__slide.is-active { opacity: 1; }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel__slide.city-sight--placeholder {
  background: linear-gradient(135deg, #0B0B0C 0%, #2A2520 100%);
  display: flex; align-items: center; justify-content: center;
}
.carousel__slide.city-sight--placeholder::before {
  content: attr(data-placeholder);
  color: rgba(255,255,255,0.55);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; padding: 0 24px;
}
.carousel__caption {
  position: absolute;
  left: 24px; bottom: 24px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.carousel__caption--light { color: #000; text-shadow: 0 1px 2px rgba(255,255,255,0.6); }
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .2s ease, background .2s ease;
}
.carousel:hover .carousel__arrow { opacity: 1; }
.carousel__arrow:hover { background: #fff; }
.carousel__arrow--prev { left: 16px; }
.carousel__arrow--next { right: 16px; }
.carousel--dark .carousel__arrow { background: rgba(0,0,0,0.5); color: #fff; }
.carousel--dark .carousel__arrow:hover { background: rgba(0,0,0,0.7); }
.carousel__dots {
  position: absolute;
  right: 24px; bottom: 24px;
  display: flex; gap: 6px;
}
.carousel__dots button {
  height: 5px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  transition: all .3s ease;
  width: 5px;
}
.carousel--dark .carousel__dots button { background: rgba(255,255,255,0.4); }
.carousel__dots button.is-active {
  width: 22px;
  background: rgba(0,0,0,0.85);
}
.carousel--dark .carousel__dots button.is-active { background: #fff; }

/* --- EXPERIENCES GRID --- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 980px) { .experience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .experience-grid { grid-template-columns: 1fr; } }
.experience {
  display: flex; flex-direction: column; gap: 18px;
}
.experience__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #fff;
}
.experience__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.experience:hover .experience__img img { transform: scale(1.05); }
.experience h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 0;
}
.experience p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.65);
}

/* --- SPLIT (stagecraft / culinary) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.split--reverse .split__text { order: 2; }
@media (max-width: 860px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__text { order: 1; }
}
.split__text {
  display: flex; align-items: center;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 6vw, 96px);
}
.split__text-inner { max-width: 460px; }
.split__text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.028em;
  line-height: 1.05;
  margin: 16px 0 24px;
}
.split__text p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,0.72);
  margin: 0 0 20px;
}
.split--dark { background: #14161B; color: #fff; }
.split--dark .split__text p { color: rgba(255,255,255,0.72); }
.split__media {
  background: #111;
  min-height: 360px;
}
.split__media .carousel { height: 100%; aspect-ratio: auto; }

/* --- LOCATION HERO --- */
.loc-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.loc-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.loc-hero__bg img, .loc-hero__bg iframe, .loc-hero__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.loc-hero__bg iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180vh; height: 102vh;
  min-width: 102vw; min-height: 58vw;
}
.loc-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.loc-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 32px 80px;
}
.loc-hero__content .eyebrow {
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}
.loc-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 8vw, 120px);
  letter-spacing: -0.036em;
  line-height: 0.97;
  max-width: 12ch;
  margin: 0;
}
.loc-hero__tagline {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 1.9vw, 26px);
  max-width: 560px;
  color: rgba(255,255,255,0.92);
  line-height: 1.38;
  letter-spacing: -0.005em;
}
.loc-hero__ctas {
  margin-top: 36px;
  display: flex; gap: 16px;
  flex-wrap: wrap;
}

/* --- SPECS BAR --- */
.specs-bar {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.specs-bar__inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.specs-bar__inner > * + * { border-left: 1px solid rgba(0,0,0,0.08); }
@media (max-width: 720px) {
  .specs-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .specs-bar__inner > *:nth-child(3) { border-left: 0; }
}
.spec {
  padding: 26px 28px;
}
.spec__label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(0,0,0,0.55); font-weight: 500; }
.spec__value { font-family: var(--font-display); font-size: 24px; line-height: 1.1; margin-top: 8px; letter-spacing: -0.015em; }
.spec__value--mono { font-family: var(--font-mono); font-size: 17px; letter-spacing: 0; }

/* --- STAGE ROW (location page) --- */
.stage-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(64px, 8vw, 120px);
}
.stage-row--reverse > *:first-child { order: 2; }
@media (max-width: 860px) {
  .stage-row, .stage-row--reverse { grid-template-columns: 1fr; gap: 28px; }
  .stage-row--reverse > *:first-child { order: 0; }
}
.stage-row__media { aspect-ratio: 4/3; overflow: hidden; background: #111; }
.stage-row__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.stage-row:hover .stage-row__media img { transform: scale(1.04); }
.stage-row h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.028em;
  line-height: 1.03;
  margin: 12px 0 8px;
}
.stage-row__specs {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  letter-spacing: 0;
  margin: 0 0 24px;
}
.stage-row p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0,0,0,0.72);
  max-width: 480px;
  margin: 0 0 24px;
}
.stage-row__bullets {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.stage-row__bullets li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: rgba(0,0,0,0.72);
}
.stage-row__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* --- GALLERY MOSAIC --- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.gallery-mosaic .tile {
  overflow: hidden;
  background: #111;
}
.gallery-mosaic .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.22,1,.36,1);
}
.gallery-mosaic .tile:hover img { transform: scale(1.04); }
.gallery-mosaic .tile--tall  { grid-column: span 4; aspect-ratio: 3/4; }
.gallery-mosaic .tile--wide  { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-mosaic .tile--sq    { grid-column: span 4; aspect-ratio: 1/1; }
.gallery-mosaic .tile--third { grid-column: span 4; aspect-ratio: 1/1; }
@media (max-width: 860px) {
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
  .gallery-mosaic .tile { grid-column: span 1; aspect-ratio: 1/1; }
}

/* --- ENQUIRE CLOSING --- */
.enquire-close {
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 11vw, 160px) 0;
  text-align: center;
}
.enquire-close .wrap { max-width: 820px; }
.enquire-close .eyebrow { color: rgba(255,255,255,0.6); }
.enquire-close h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5.2vw, 72px);
  letter-spacing: -0.032em;
  line-height: 1.03;
  margin: 20px 0 24px;
}
.enquire-close p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.enquire-close .btn--invert { padding: 16px 36px; }

/* --- ENQUIRE FORM --- */
.form-shell {
  max-width: 760px;
  margin: 48px auto 0;
  text-align: left;
  background: #fff;
  color: var(--ink);
  padding: clamp(32px, 5vw, 64px);
  border-radius: 4px;
}
.form-shell h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid label { display: flex; flex-direction: column; gap: 6px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(0,0,0,0.6); font-weight: 500; }
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  transition: border .2s ease;
}
.form-grid textarea { min-height: 120px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form-submit-row {
  margin-top: 24px;
  display: flex; justify-content: flex-end;
  gap: 16px;
}
.form-success {
  padding: 32px;
  text-align: center;
  background: var(--paper);
  border-radius: 4px;
  margin-top: 24px;
}
.form-success h4 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 8px;
}

/* --- TWEAKS panel --- */
.tweaks-panel {
  position: fixed;
  right: 20px; bottom: 20px;
  width: 320px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  border-radius: 12px;
  padding: 20px;
  z-index: 200;
  display: none;
  font-size: 13px;
}
.tweaks-panel.is-open { display: block; }
.tweaks-panel h5 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
}
.tweak-field { margin-bottom: 16px; }
.tweak-field__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 500;
  margin-bottom: 8px;
}
.tweak-segment {
  display: inline-flex;
  background: var(--paper);
  padding: 3px;
  border-radius: 999px;
  gap: 2px;
  flex-wrap: wrap;
}
.tweak-segment button {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
  color: rgba(0,0,0,0.65);
  transition: background .2s ease, color .2s ease;
}
.tweak-segment button.is-active {
  background: var(--ink);
  color: #fff;
}

/* --- Breadcrumb strip for location subpages --- */
.loc-subnav {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(0,0,0,0.55);
}
.loc-subnav a { color: var(--ink); font-weight: 500; }

/* --- NAVIGATION DOTS (locations) --- */
.scroll-nav {
  position: fixed;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; gap: 12px;
}
.scroll-nav button {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.25);
  transition: all .3s ease;
  position: relative;
}
.scroll-nav button.is-active { background: var(--ink); height: 22px; border-radius: 6px; }
.scroll-nav button::after {
  content: attr(data-label);
  position: absolute;
  right: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.scroll-nav button:hover::after { opacity: 1; }
@media (max-width: 860px) { .scroll-nav { display: none; } }

/* --- Coming soon (Kudamm) --- */
.coming-soon-banner {
  background: var(--ink);
  color: #fff;
  padding: 14px 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.countdown {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin: 40px 0 56px;
}
.countdown__unit { text-align: center; }
.countdown__n {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
}
.countdown__l {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 10px;
  display: block;
}

/* --- Fullbleed image block --- */
.fullbleed { position: relative; width: 100%; overflow: hidden; }
.fullbleed img { width: 100%; height: auto; display: block; }
.fullbleed--ratio {
  aspect-ratio: 21/9;
}
.fullbleed--ratio img { height: 100%; object-fit: cover; }

/* --- Utilities --- */
.sep { height: 1px; background: rgba(0,0,0,0.08); }
.u-center { text-align: center; }
.u-mt-sm { margin-top: 16px; }
.u-mt-md { margin-top: 32px; }
.u-mt-lg { margin-top: 56px; }
.u-mb-sm { margin-bottom: 16px; }
.u-mb-md { margin-bottom: 32px; }
.u-mb-lg { margin-bottom: 56px; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1);
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* --- Responsive header --- */
@media (max-width: 960px) {
  /* Hide the full horizontal nav; show a compact scrollable pill-bar instead */
  .header-nav {
    gap: 14px;
    padding: 0 4px 8px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(to right, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);
  }
  .header-nav::-webkit-scrollbar { display: none; }
  .header__nav-link {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid rgba(0,0,0,0.14);
    border-radius: 999px;
    font-size: 12px;
    white-space: nowrap;
    background: transparent;
  }
  .header--transparent .header__nav-link {
    border-color: rgba(255,255,255,0.3);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
  }
  .header__nav-link--loc.is-current {
    background: var(--ink);
    color: var(--paper) !important;
    border-color: var(--ink);
  }
  .header--transparent .header__nav-link--loc.is-current {
    background: var(--oak-deep);
    color: #fff !important;
    border-color: var(--oak-deep);
  }
  .header__nav-link.is-active { color: var(--ink); }
  /* Hide group sections + divider + enquire inline — they live in the drawer on mobile */
  .header-nav__divider,
  .header-nav .header__enquire,
  .header-nav > .header__nav-link:not(.header__nav-link--loc) {
    display: none;
  }
  .header-subnav {
    padding: 8px 4px 10px;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .header-subnav::-webkit-scrollbar { display: none; }
  .header__subnav-link { flex: 0 0 auto; font-size: 10px; }
  .header__subnav-link.is-active::after { bottom: -4px; }
  .header-top { height: 60px; padding-top: 0; }
}
@media (max-width: 520px) {
  .header__nav-link { font-size: 11.5px; padding: 7px 12px; }
}

/* Light CSS reset for prose rendering */
p { margin: 0; }

/* --- SECTIONS --- */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  background: #fff;
  color: var(--ink);
  position: relative;
}
.section--paper { background: var(--paper); }
.section--ink { background: var(--ink); color: #fff; }
.section--concrete { background: var(--concrete); }
.section--white { background: #fff; }

.section-head {
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 20px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: inherit;
}
.section-title--sm {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.06;
}
.section-lede {
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  max-width: 62ch;
  color: rgba(0,0,0,0.72);
  margin: 0;
}
.section--ink .section-lede { color: rgba(255,255,255,0.78); }

/* --- STAGE ROWS (location pages) --- */
.stage-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(48px, 6vw, 96px) 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stage-row:first-of-type { border-top: 0; }
.stage-row--reverse .stage-row__media { order: 2; }
.stage-row__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 16/10;
  background: var(--paper);
}
.stage-row__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.stage-row:hover .stage-row__media img { transform: scale(1.02); }
.stage-row__text .eyebrow { display: block; margin-bottom: 18px; }
.stage-row__text h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}
.stage-row__specs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(0,0,0,0.55);
  margin: 0 0 20px;
}
.stage-row__text p {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(0,0,0,0.75);
  margin: 0 0 24px;
  max-width: 52ch;
}
.stage-row__bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
  color: rgba(0,0,0,0.72);
}
.stage-row__bullets li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}
.stage-row__bullets li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--oak-deep);
}
@media (max-width: 860px) {
  .stage-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .stage-row--reverse .stage-row__media { order: 0; }
}

/* --- FLOORPLAN --- */
.floorplan {
  margin: 0;
  background: #fff;
  padding: clamp(32px, 5vw, 72px);
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 40px 80px -40px rgba(0,0,0,0.18);
}
.floorplan img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 72vh;
  object-fit: contain;
  margin: 0 auto;
}
.floorplan__caption {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- enquire-close (photo CTA block on location pages) --- */
.enquire-close__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0.35) 45%, rgba(11,11,12,0.7) 100%);
}
.enquire-close h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 18px 0 20px;
}
.enquire-close p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* --- enquire-close (photo CTA block on location pages) --- */
.enquire-close {
  position: relative;
  isolation: isolate;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: clamp(96px, 14vw, 180px) 0;
  text-align: center;
  overflow: hidden;
}
.enquire-close__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0.35) 45%, rgba(11,11,12,0.7) 100%);
}
.enquire-close h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 18px 0 20px;
}
.enquire-close p {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* --- DRAWER (mobile / full menu) --- */
.drawer {
  position: fixed; inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.drawer.is-open { pointer-events: auto; opacity: 1; }
.drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
}
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: #fff;
  color: var(--ink);
  padding: 24px 28px 32px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
  box-shadow: -12px 0 40px rgba(0,0,0,0.12);
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 8px;
}
.drawer__head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(0,0,0,0.55);
}
.drawer__primary {
  display: flex; flex-direction: column;
  padding: 18px 0 4px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.drawer__primary a {
  font-family: 'Söhne', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  padding: 3px 0;
  color: var(--ink);
  text-decoration: none;
  transition: color .15s ease;
}
.drawer__primary a:hover { color: var(--oak-deep); }
.drawer__primary a.is-current { color: var(--oak-deep); }
.drawer__subhead {
  padding: 14px 0 6px;
  margin-top: 6px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  font-weight: 500;
}
.drawer__sub {
  display: flex; flex-direction: column; gap: 6px;
  padding-bottom: 8px;
}
.drawer__sub a {
  font-size: 15px;
  color: rgba(0,0,0,0.8);
  text-decoration: none;
  padding: 4px 0;
}
.drawer__sub a:hover { color: var(--oak-deep); }
.drawer__home {
  font-size: 12px !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  font-weight: 600 !important;
  color: rgba(0,0,0,0.55) !important;
  padding-bottom: 12px !important;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  line-height: 1.2;
}
.drawer__secondary {
  display: flex; flex-direction: column;
  padding: 14px 0;
}
.drawer__secondary a {
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  padding: 5px 0;
  line-height: 1.3;
  text-decoration: none;
}
.drawer__secondary a:hover { color: var(--ink); }
.drawer__cta {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.drawer__cta .btn { width: 100%; text-align: center; }
@media (max-width: 520px) {
  .drawer__panel { padding: 20px 22px 24px; }
  .drawer__primary a { font-size: 18px; padding: 6px 0; }
}

/* --- FOOTER --- */
.footer {
  display: block;
  background: var(--ink);
  color: #fff;
  padding: 48px 0 20px;
  margin-top: 0;
}
.footer .wrap {
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Location card strip */
.footer-location {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-location__card {
  display: flex; gap: 14px; align-items: center;
}
.footer-location__thumb {
  width: 72px; height: 72px; flex: none;
  border-radius: 6px; overflow: hidden;
  background: rgba(255,255,255,0.05);
}
.footer-location__thumb img { width: 100%; height: 100%; object-fit: cover; }
.footer-location__name strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.footer-location__name span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.footer-location__cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.footer-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 8px;
}
.footer-location__cols a,
.footer-location__cols div {
  font-size: 14px;
  line-height: 1.45;
  color: #fff;
}
.footer-maplink {
  display: inline-block;
  margin-top: 6px;
  color: var(--oak-soft) !important;
  font-size: 13px !important;
}

/* Newsletter */
.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-newsletter h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.22;
  font-weight: 500;
  margin: 0;
  max-width: 480px;
  color: #fff;
}
.footer-newsletter__form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-newsletter__form input {
  flex: 1;
  min-width: 220px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: #fff;
  transition: border-color .2s ease;
}
.footer-newsletter__form input::placeholder { color: rgba(255,255,255,0.45); }
.footer-newsletter__form input:focus { outline: none; border-bottom-color: var(--oak); }
.footer-newsletter__form button {
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 999px;
  transition: background .2s ease;
}
.footer-newsletter__form button:hover { background: var(--oak-soft); }

/* Link columns — TIGHT line-height per user request */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  padding: 28px 0 20px;
}
.footer-cols h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 8px;
}
.footer-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;          /* was ~10–12 — tighter per request */
}
.footer-cols li { line-height: 1.25; }  /* tighten cell */
.footer-cols li a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none;
  transition: color .15s ease;
  display: inline-block;
  padding: 0;
}
.footer-cols li a:hover { color: #fff; }

/* Club badge */
.footer-club__badge {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--oak);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a {
  color: rgba(255,255,255,0.6);
  margin-left: 24px;
  text-decoration: none;
  transition: color .15s ease;
}
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1040px) {
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
}
@media (max-width: 860px) {
  .footer-location { grid-template-columns: 1fr; gap: 32px; }
  .footer-location__cols { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom a { margin-left: 0; margin-right: 20px; }
}


/* ═══════════════════════════════════════════════════════════════════
   VENUES — Category index + editorial venue cards
   ═══════════════════════════════════════════════════════════════════ */

/* Venues hero (subtle, paper) */
.venues-hero {
  padding: 96px 0 56px;
}
.venues-hero .eyebrow { color: rgba(0,0,0,0.55); }
.venues-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 18px 0 20px;
  max-width: 15ch;
}
.venues-hero__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  color: rgba(0,0,0,0.68);
  max-width: 56ch;
}

/* Category index — 3-up or 2-up with big editorial images */
.cat-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 0 72px;
}
.cat-index--2 { grid-template-columns: repeat(2, 1fr); max-width: 980px; }
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.18);
}
.cat-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--concrete);
}
.cat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.cat-card:hover .cat-card__img img { transform: scale(1.05); }
.cat-card__body {
  padding: 28px 28px 30px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.cat-card__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(0,0,0,0.4);
}
.cat-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.cat-card__lead {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  margin: 4px 0 0;
}
.cat-card__meta {
  margin-top: auto;
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.5);
}
.cat-card__cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  position: relative;
}
.cat-card__cta::after {
  content: ''; position: absolute; left: 0; right: 14px; bottom: -3px;
  height: 1px; background: currentColor; opacity: 0.25;
  transition: opacity .3s ease, right .3s ease;
}
.cat-card:hover .cat-card__cta::after { opacity: 1; right: 0; }

/* Venue list — editorial rows, alternating image/text */
.venue-list {
  padding: 48px 0 72px;
  display: flex; flex-direction: column;
  gap: 64px;
}
.venue-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.venue-row--reverse .venue-row__media { order: 2; }
.venue-row__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--concrete);
  position: relative;
}
.venue-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.venue-row:hover .venue-row__media img { transform: scale(1.03); }
.venue-row__media-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; letter-spacing: 0.14em;
  color: #fff;
  background: rgba(0,0,0,0.55);
  padding: 5px 9px;
  backdrop-filter: blur(6px);
}
.venue-row__body { padding: 12px 0; }
.venue-row__floor {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin: 0 0 10px;
}
.venue-row__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 16px;
  color: var(--ink);
}
.venue-row__tag {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(0,0,0,0.55);
  margin: -8px 0 20px;
}
.venue-row__desc {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(0,0,0,0.72);
  margin: 0 0 24px;
  max-width: 48ch;
}

/* Spec strip (sqm · guests · feature) */
.spec-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin: 0 0 20px;
}
.spec-strip__cell {
  padding: 16px 0;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.spec-strip__cell:last-child { border-right: none; }
.spec-strip__k {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 5px;
}
.spec-strip__v {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.spec-strip__v-sm { font-size: 15px; letter-spacing: 0; }

.venue-row__feat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(0,0,0,0.62);
}
.venue-row__feat::before {
  content: ''; width: 6px; height: 6px;
  background: var(--oak-deep, #8a6a3d);
  border-radius: 50%;
}

/* Compact venue cards (for spaces with many rooms) */
.venue-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  padding: 40px 0 72px;
}
.venue-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
}
.venue-compact__media {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--concrete);
}
.venue-compact__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.venue-compact:hover .venue-compact__media img { transform: scale(1.04); }
.venue-compact__body {
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 8px;
}
.venue-compact__floor {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}
.venue-compact__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}
.venue-compact__desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  margin: 2px 0 10px;
}
.venue-compact__spec {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.55);
}
.venue-compact__spec b {
  color: var(--ink);
  font-weight: 500;
}

/* Venue category header (for sub-pages) */
.venue-cat-head {
  padding: 96px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: end;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.venue-cat-head__num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.45);
}
.venue-cat-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  margin: 14px 0 0;
  max-width: 12ch;
}
.venue-cat-head__lead {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  color: rgba(0,0,0,0.68);
  padding-bottom: 12px;
  max-width: 52ch;
}

/* Partner (Kimpton) block */
.partner-block {
  padding: 80px 0 96px;
  background: #F5F1EA;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.partner-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.partner-block__media { aspect-ratio: 4/3; overflow: hidden; }
.partner-block__media img { width: 100%; height: 100%; object-fit: cover; }
.partner-block__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--oak-deep, #8a6a3d);
  margin: 0 0 14px;
}
.partner-block__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 8px;
}
.partner-block__addr {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  color: rgba(0,0,0,0.6);
  margin: 0 0 20px;
}
.partner-block__body {
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(0,0,0,0.72);
  margin: 0 0 24px;
  max-width: 48ch;
}
.partner-block__tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 0 0 28px;
}
.partner-block__tags span {
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  color: rgba(0,0,0,0.68);
  border-radius: 999px;
}

/* Venues footer CTA */
.venues-cta {
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.venues-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.venues-cta p {
  color: rgba(0,0,0,0.65);
  margin: 0 0 24px;
  max-width: 48ch; margin-left: auto; margin-right: auto;
}
.venues-cta__buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .cat-index, .cat-index--2 { grid-template-columns: 1fr; }
  .venue-row { grid-template-columns: 1fr; gap: 24px; }
  .venue-row--reverse .venue-row__media { order: 0; }
  .venue-cat-head { grid-template-columns: 1fr; gap: 20px; padding-top: 72px; }
  .venue-compact-grid { grid-template-columns: 1fr; }
  .venue-compact { grid-template-columns: 1fr; }
  .venue-compact__media { aspect-ratio: 16/10; }
  .partner-block__inner { grid-template-columns: 1fr; gap: 28px; }
  .spec-strip__v { font-size: 17px; }
}
