/* ============================================================
   SPARK · Dining Venues — ONE TABLE & TIERGARTEN SALON
   Maison Revka structure, SPARK aesthetic.
   ============================================================ */
@import url('site.css');

:root {
  --venue-shell-x: clamp(24px, 5vw, 64px);
  --venue-rule: rgba(0,0,0,0.10);
  --venue-rule-strong: rgba(0,0,0,0.18);
}

/* ============== VENUE NAV (Maison Revka style top bar) ============== */
.vnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: 0 var(--venue-shell-x);
  height: 88px;
  font-family: var(--font-body);
  color: #fff;
  background: linear-gradient(180deg, rgba(11,11,12,0.78) 0%, rgba(11,11,12,0.20) 70%, rgba(11,11,12,0) 100%);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.vnav.is-stuck {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--venue-rule);
}
.vnav--solid {
  background: var(--paper); color: var(--ink);
  border-bottom: 1px solid var(--venue-rule);
}
.vnav__l, .vnav__r {
  display: flex; align-items: center;
  gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.vnav__r { justify-content: flex-end; }
.vnav__l a, .vnav__r a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85;
  transition: opacity .15s ease, color .15s ease;
  white-space: nowrap;
}
.vnav__l a:hover, .vnav__r a:hover { opacity: 1; color: var(--oak); }
.vnav.is-stuck a:hover, .vnav--solid a:hover { color: var(--oak-deep); }
.vnav__l a.is-active, .vnav__r a.is-active { opacity: 1; }
.vnav__l a.is-active::after, .vnav__r a.is-active::after {
  content: ""; display: block; height: 1px;
  background: currentColor; opacity: .55;
  margin-top: 4px;
}

.vnav__brand {
  display: flex; flex-direction: column; align-items: center;
  text-decoration: none; color: inherit;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.vnav__brand-mark, .vnav__brand-mark--mono, .vnav__brand-sub { white-space: nowrap; }
.vnav__brand-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.06em;
}
.vnav__brand-mark--mono {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}
.vnav__brand-sub {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.7;
}

.vnav__cta {
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  opacity: 0.95;
}
.vnav__cta:hover { opacity: 1; background: currentColor; color: var(--ink) !important; }
.vnav.is-stuck .vnav__cta:hover, .vnav--solid .vnav__cta:hover {
  background: var(--ink); color: #fff !important;
}

.vnav__lang {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent; border: 0; color: inherit;
  font-family: inherit;
  padding: 6px 0;
  opacity: 0.7;
}
.vnav__lang:hover { opacity: 1; }
.vnav__lang strong { font-weight: 500; opacity: 1; }
.vnav__lang span { opacity: 0.55; margin: 0 4px; }

@media (max-width: 1240px) {
  .vnav__l, .vnav__r { gap: 22px; }
  .vnav__l a, .vnav__r a { font-size: 10px; letter-spacing: 0.18em; }
}
@media (max-width: 1100px) {
  .vnav__l li:nth-child(n+4), .vnav__r li:nth-child(n+3) { display: none; }
}
@media (max-width: 980px) {
  .vnav__l li:nth-child(n+3), .vnav__r li:nth-child(n+2):not(:last-child) { display: none; }
  .vnav__brand-mark { font-size: 24px; }
  .vnav__brand-mark--mono { font-size: 14px; letter-spacing: 0.36em; }
}
@media (max-width: 760px) {
  .vnav { grid-template-columns: auto 1fr auto; height: 64px; column-gap: 16px; }
  .vnav__l, .vnav__r { gap: 14px; }
  .vnav__l li, .vnav__r li:not(:last-child) { display: none; }
  .vnav__brand-mark { font-size: 20px; }
  .vnav__brand-mark--mono { font-size: 12px; letter-spacing: 0.30em; }
  .vnav__brand-sub { display: none; }
}

/* ============== HERO ============== */
.vhero {
  position: relative;
  height: 100vh; min-height: 720px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.vhero__media { position: absolute; inset: 0; z-index: -2; }
.vhero__media img, .vhero__media video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.78) saturate(1.05);
}
.vhero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.10) 35%, rgba(11,11,12,0.85) 100%);
}
.vhero__inner {
  position: relative;
  height: 100%;
  max-width: var(--grid-max);
  margin: 0 auto;
  padding: 0 var(--venue-shell-x) clamp(56px, 9vw, 120px);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.vhero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.vhero__eyebrow .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--oak); }
.vhero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  text-transform: uppercase;
}
.vhero__h1--serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.015em;
}
.vhero__h1 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--oak-soft);
  text-transform: none;
}
.vhero__rule {
  width: 64px; height: 1px;
  background: var(--oak);
  margin: 30px auto 22px;
}
.vhero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  max-width: 52ch;
  color: rgba(255,255,255,0.86);
  margin: 0;
}
.vhero__cta {
  margin-top: 38px;
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.30em;
  font-weight: 500;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.vhero__cta:hover { background: var(--oak); color: var(--ink); }

/* ============== HOURS BLOCK ============== */
.vhours {
  background: var(--paper);
  padding: clamp(64px, 8vw, 112px) var(--venue-shell-x);
  text-align: center;
}
.vhours__inner {
  max-width: 1080px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 80px);
}
.vhours__col h3 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--oak-deep);
  font-weight: 500;
  margin: 0 0 18px;
}
.vhours__col p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.vhours__col p strong {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
}
@media (max-width: 720px) {
  .vhours__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============== EDITORIAL SPLITS (Maison Revka image+text alternating) ============== */
.vsplit {
  background: var(--paper);
  padding: clamp(56px, 8vw, 120px) var(--venue-shell-x);
}
.vsplit__inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
}
.vsplit--reverse .vsplit__inner { grid-template-columns: 1fr 1.05fr; }
.vsplit--reverse .vsplit__media { order: 2; }
.vsplit__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.vsplit__media img { width: 100%; height: 100%; object-fit: cover; }
.vsplit__media--landscape { aspect-ratio: 4 / 3; }
.vsplit__text { padding: 0 8px; }
.vsplit__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--oak-deep);
  font-weight: 500;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 12px;
}
.vsplit__eyebrow .dot { width: 4px; height: 4px; border-radius: 999px; background: var(--oak); }
.vsplit__h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.vsplit__h2 em {
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--oak-deep);
}
.vsplit__body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0 0 16px;
  max-width: 56ch;
}
.vsplit__cta {
  display: inline-flex; align-items: center;
  margin-top: 16px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .2s ease;
}
.vsplit__cta:hover { background: var(--oak-deep); }
.vsplit__cta--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--venue-rule-strong);
}
.vsplit__cta--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

@media (max-width: 900px) {
  .vsplit__inner, .vsplit--reverse .vsplit__inner { grid-template-columns: 1fr; gap: 32px; }
  .vsplit--reverse .vsplit__media { order: 0; }
}

/* ============== TWIN-CTA cards (Maison Revka "Menus / Restaurant & Bar") ============== */
.vtwincta {
  background: var(--paper);
  padding: 0 var(--venue-shell-x) clamp(80px, 10vw, 140px);
}
.vtwincta__grid {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 28px);
}
.vtwincta__card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
}
.vtwincta__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.vtwincta__card:hover img { transform: scale(1.05); }
.vtwincta__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.0) 30%, rgba(11,11,12,0.7) 100%);
}
.vtwincta__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}
.vtwincta__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.vtwincta__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 14px;
}
.vtwincta__arrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.4);
  padding-top: 12px;
  display: inline-block;
  min-width: 80px;
}
@media (max-width: 760px) {
  .vtwincta__grid { grid-template-columns: 1fr; }
}

/* ============== FULL-BLEED IMAGE ============== */
.vfullimg {
  width: 100%;
  background: var(--ink);
}
.vfullimg img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

/* ============== CONTACT BLOCK (Maison Revka address+map) ============== */
.vcontact {
  background: var(--paper);
  padding: clamp(64px, 8vw, 112px) var(--venue-shell-x);
}
.vcontact__inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: stretch;
}
.vcontact__map {
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: #ddd;
}
.vcontact__map img { width: 100%; height: 100%; object-fit: cover; }
.vcontact__text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.018em;
  line-height: 1.06;
  margin: 0 0 18px;
}
.vcontact__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0 0 32px;
  max-width: 52ch;
}
.vcontact__rows { display: grid; gap: 14px; padding: 18px 0 6px; border-top: 1px solid var(--venue-rule); }
.vcontact__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--venue-rule);
  font-size: 14px;
}
.vcontact__row dt {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-500); font-weight: 500;
  align-self: center;
}
.vcontact__row dd {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
}
.vcontact__row dd a:hover { color: var(--oak-deep); }
@media (max-width: 900px) {
  .vcontact__inner { grid-template-columns: 1fr; }
  .vcontact__row { grid-template-columns: 1fr; gap: 4px; }
}

/* ============== TWO BIG FOOTER CARDS (Maison Revka close) ============== */
.vfootcards {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vfootcards__card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.vfootcards__card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.vfootcards__card:hover img { transform: scale(1.05); }
.vfootcards__card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.75) 100%);
}
.vfootcards__body {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: clamp(36px, 6vw, 72px); text-align: center;
}
.vfootcards__eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.36em; text-transform: uppercase;
  opacity: 0.78; margin-bottom: 12px;
}
.vfootcards__h {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 8px;
}
.vfootcards__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; opacity: 0.9;
  margin: 0 0 18px;
}
.vfootcards__cta {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 10px 22px;
  transition: background .2s ease, color .2s ease;
}
.vfootcards__card:hover .vfootcards__cta { background: #fff; color: var(--ink); }
@media (max-width: 760px) { .vfootcards { grid-template-columns: 1fr; } }

/* ============== VENUE FOOTER ============== */
.vfoot {
  background: var(--ink);
  color: #fff;
  padding: 64px var(--venue-shell-x) 28px;
}
.vfoot__inner {
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.vfoot__brand {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.vfoot__brand--script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: none;
}
.vfoot__nav {
  display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.vfoot__nav a {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.vfoot__nav a:hover { color: #fff; }
.vfoot__social { display: flex; gap: 14px; justify-content: flex-end; }
.vfoot__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}
.vfoot__social a:hover { color: #fff; border-color: #fff; }
.vfoot__bottom {
  max-width: var(--grid-max);
  margin: 24px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 16px;
  font-size: 11px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.10em;
}
.vfoot__bottom a { color: rgba(255,255,255,0.6); }
.vfoot__bottom a:hover { color: #fff; }
@media (max-width: 760px) {
  .vfoot__inner { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .vfoot__social { justify-content: center; }
}

/* ============== HUB PAGE — two big destination cards ============== */
.hub-hero {
  position: relative;
  height: 80vh; min-height: 560px;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hub-hero__media { position: absolute; inset: 0; z-index: -2; }
.hub-hero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.hub-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,0.55) 0%, rgba(11,11,12,0.10) 35%, rgba(11,11,12,0.85) 100%);
}
.hub-hero__inner {
  position: relative; height: 100%;
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 var(--venue-shell-x) clamp(64px, 8vw, 112px);
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  text-align: center;
}
.hub-hero__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.36em; text-transform: uppercase;
  margin-bottom: 28px; color: rgba(255,255,255,0.78);
}
.hub-hero__h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
  text-transform: uppercase;
}
.hub-hero__h1 em {
  font-style: italic; font-family: var(--font-serif);
  font-weight: 400; color: var(--oak-soft); text-transform: none;
}
.hub-hero__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  max-width: 60ch;
  margin: 22px auto 0;
  color: rgba(255,255,255,0.82);
}

.hub-intro {
  background: var(--paper);
  padding: clamp(64px, 8vw, 112px) var(--venue-shell-x);
}
.hub-intro__inner {
  max-width: 880px; margin: 0 auto; text-align: center;
}
.hub-intro__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--oak-deep); font-weight: 500;
  margin-bottom: 18px;
}
.hub-intro__h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.hub-intro__h2 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.hub-intro__lede {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--ink-700);
  margin: 0 auto;
  max-width: 56ch;
}

.hub-pair {
  background: var(--paper);
  padding: 0 var(--venue-shell-x) clamp(80px, 10vw, 140px);
}
.hub-pair__grid {
  max-width: var(--grid-max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2.6vw, 40px);
}
.hub-card {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.hub-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.hub-card:hover img { transform: scale(1.06); }
.hub-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.10) 30%, rgba(11,11,12,0.78) 100%);
}
.hub-card__body {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(32px, 4vw, 56px);
}
.hub-card__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 14px; color: var(--oak-soft);
}
.hub-card__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0 0 12px;
}
.hub-card__h em {
  font-style: italic; font-family: var(--font-serif); font-weight: 400;
  color: var(--oak-soft); text-transform: none;
}
.hub-card__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.45;
  margin: 0 0 18px;
  max-width: 28ch;
  opacity: 0.92;
}
.hub-card__meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase;
  opacity: 0.78;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.32);
}
.hub-card__cta {
  position: absolute; top: clamp(28px, 3vw, 40px); right: clamp(28px, 3vw, 40px);
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  font-size: 16px;
  transition: background .2s ease, color .2s ease;
}
.hub-card:hover .hub-card__cta { background: #fff; color: var(--ink); border-color: #fff; }
@media (max-width: 800px) { .hub-pair__grid { grid-template-columns: 1fr; } }

/* ============== Generic page intro / sub-page hero ============== */
.subhero {
  position: relative;
  height: 60vh; min-height: 480px;
  color: #fff; overflow: hidden; isolation: isolate;
  background: var(--ink);
}
.subhero__media { position: absolute; inset: 0; z-index: -2; }
.subhero__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.7); }
.subhero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,11,12,0.50) 0%, rgba(11,11,12,0.15) 40%, rgba(11,11,12,0.75) 100%);
}
.subhero__inner {
  position: relative; height: 100%;
  max-width: var(--grid-max); margin: 0 auto;
  padding: 0 var(--venue-shell-x) clamp(48px, 6vw, 88px);
  display: flex; flex-direction: column; justify-content: flex-end;
  text-align: center; align-items: center;
}
.subhero__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 22px; opacity: 0.78;
}
.subhero__h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 0.96; letter-spacing: -0.022em; margin: 0;
  text-transform: uppercase;
}
.subhero__h1 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-soft); text-transform: none; }
.subhero__sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(16px, 1.5vw, 20px);
  margin-top: 18px; max-width: 56ch; opacity: 0.88;
}

/* ============== Menu list (for Menus page) ============== */
.vmenu {
  background: var(--paper);
  padding: clamp(64px, 8vw, 112px) var(--venue-shell-x);
}
.vmenu__inner { max-width: 980px; margin: 0 auto; }
.vmenu__group + .vmenu__group { margin-top: clamp(48px, 6vw, 80px); }
.vmenu__head {
  text-align: center;
  margin-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--venue-rule);
  padding-bottom: clamp(22px, 2.5vw, 34px);
}
.vmenu__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.30em; text-transform: uppercase;
  color: var(--oak-deep); font-weight: 500;
  margin-bottom: 14px;
}
.vmenu__h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.018em; margin: 0;
}
.vmenu__h2 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.vmenu__list { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(18px, 2vw, 28px); }
.vmenu__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--venue-rule);
  align-items: baseline;
}
.vmenu__item h4 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 19px; margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.vmenu__item h4 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.vmenu__item p {
  font-size: 14px; line-height: 1.55; color: var(--ink-700); margin: 0;
  max-width: 60ch;
}
.vmenu__price {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-700);
  white-space: nowrap;
}

/* ============== EVENTS — capacity card grid ============== */
.vevents {
  background: var(--paper);
  padding: clamp(64px, 8vw, 112px) var(--venue-shell-x);
}
.vevents__inner { max-width: var(--grid-max); margin: 0 auto; }
.vevents__head { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 4vw, 64px); align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
@media (max-width: 800px) { .vevents__head { grid-template-columns: 1fr; } }
.vevents__head h2 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing: -0.022em; line-height: 1.02; margin: 14px 0 0;
}
.vevents__head h2 em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.vevents__head p {
  font-size: 16px; line-height: 1.6; color: var(--ink-700);
  margin: 0; max-width: 56ch;
}
.vevents__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 32px); }
@media (max-width: 1000px) { .vevents__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .vevents__grid { grid-template-columns: 1fr; } }
.vevents__card { background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid var(--venue-rule); display: grid; grid-template-rows: auto 1fr; }
.vevents__card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.vevents__card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.vevents__card:hover .vevents__card-img img { transform: scale(1.04); }
.vevents__card-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.vevents__card-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.30em; text-transform: uppercase; color: var(--oak-deep); }
.vevents__card-h { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0; }
.vevents__card-h em { font-style: italic; font-family: var(--font-serif); font-weight: 400; color: var(--oak-deep); }
.vevents__card-specs { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 12px; border-top: 1px solid var(--venue-rule); font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: 0.06em; }
.vevents__card p { font-size: 14px; line-height: 1.55; color: var(--ink-700); margin: 0; }

/* ============== Quote / pull statement (Maison Revka style) ============== */
.vquote {
  background: var(--paper);
  padding: clamp(56px, 8vw, 120px) var(--venue-shell-x);
  text-align: center;
}
.vquote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.25;
  color: var(--ink);
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.vquote cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 32px;
  color: var(--ink-500);
}
.vquote--ink { background: var(--ink); color: #fff; }
.vquote--ink p { color: #fff; }
.vquote--ink cite { color: rgba(255,255,255,0.5); }

/* Salon dark theme helpers */
.salon-dark .vhours,
.salon-dark .vsplit,
.salon-dark .vtwincta,
.salon-dark .vmenu,
.salon-dark .vevents,
.salon-dark .vcontact { background: #14131A; color: #E9E5DD; }
.salon-dark .vsplit__h2,
.salon-dark .vmenu__h2,
.salon-dark .vevents__head h2,
.salon-dark .vcontact__text h2 { color: #F4EFE6; }
.salon-dark .vsplit__body p,
.salon-dark .vmenu__item p,
.salon-dark .vevents__head p,
.salon-dark .vevents__card p,
.salon-dark .vcontact__lede { color: rgba(244,239,230,0.72); }
.salon-dark .vmenu__price,
.salon-dark .vcontact__row dd { color: #F4EFE6; }
.salon-dark .vcontact__row dt,
.salon-dark .vmenu__item h4 em,
.salon-dark .vevents__card-h em,
.salon-dark .vsplit__h2 em,
.salon-dark .vsplit__eyebrow,
.salon-dark .vmenu__eyebrow,
.salon-dark .vevents__card-num { color: #C6A87A; }
.salon-dark .vmenu__head,
.salon-dark .vmenu__item,
.salon-dark .vcontact__rows,
.salon-dark .vcontact__row,
.salon-dark .vevents__card-specs { border-color: rgba(244,239,230,0.10); }
.salon-dark .vevents__card { background: #1B1A22; border-color: rgba(244,239,230,0.10); }
.salon-dark .vsplit__cta--ghost { color: #F4EFE6; border-color: rgba(244,239,230,0.30); }
.salon-dark .vsplit__cta--ghost:hover { background: #F4EFE6; color: #14131A; border-color: #F4EFE6; }
.salon-dark .vhours__col p { color: #F4EFE6; }
.salon-dark .vhours__col p strong { color: #F4EFE6; }
.salon-dark .vhours__col h3 { color: #C6A87A; }

/* ============== Tweaks panel local ============== */
.tweaks-fab {
  position: fixed; right: 18px; bottom: 18px;
  z-index: 1500;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  display: none; align-items: center; justify-content: center;
  border: 0; cursor: pointer;
  box-shadow: 0 8px 24px -10px rgba(0,0,0,0.4);
}
.tweaks-fab.is-on { display: inline-flex; }
.tweaks-card {
  position: fixed; right: 18px; bottom: 70px; z-index: 1600;
  width: 280px;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--venue-rule);
  border-radius: 8px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.35);
  padding: 18px;
  display: none;
  font-family: var(--font-body);
}
.tweaks-card.is-open { display: block; }
.tweaks-card h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; margin: 0 0 12px; }
.tweaks-card label { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-500); margin: 12px 0 6px; }
.tweaks-card input[type="text"], .tweaks-card select {
  width: 100%; padding: 8px 10px; font-size: 13px; border: 1px solid var(--venue-rule); border-radius: 4px; background: #fff; color: var(--ink);
  font-family: inherit;
}
.tweaks-card .swatch-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tweaks-card .swatch {
  width: 32px; height: 32px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  background-clip: padding-box;
}
.tweaks-card .swatch.is-active { border-color: var(--ink); }
.tweaks-card .close { float: right; background: transparent; border: 0; cursor: pointer; font-size: 16px; line-height: 1; padding: 0; color: var(--ink-500); }
