/* =========================================================
   WHITE SHADES — design tokens, layout, components
   ========================================================= */

@font-face {
  font-family: 'Fraunces';
  src: local('Fraunces');
}

:root {
  /* ---- Type scale ---- */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.75rem;
  --text-hero: clamp(2.75rem, 3.2vw + 2rem, 5.5rem);
  --text-display: clamp(2.25rem, 2.4vw + 1.5rem, 3.75rem);

  /* ---- Spacing ---- */
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- Radius / motion ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;
  --transition-interactive: 0.2s ease;
  --transition-panel: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* ---- Fonts ---- */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* ---- Fixed brand tones (independent of theme) ---- */
  --navy-950: #0a141f;
  --navy-900: #0c1b2a;
  --navy-800: #10202f;
  --navy-700: #16293b;
  --cream-050: #f7f2e7;
  --cream-100: #f2ecdd;
  --cream-200: #e8dcc0;
  --brass-500: #a9803f;
  --brass-400: #c79a5c;
  --brass-600: #8a6830;

  /* ---- Light theme (default) ---- */
  --color-bg: #f7f2e7;
  --color-surface: #fbf8f0;
  --color-surface-2: #ffffff;
  --color-surface-offset: #efe6d3;
  --color-text: #10202e;
  --color-text-muted: #4d5a63;
  --color-text-faint: #7c8790;
  --color-text-inverse: #f7f2e7;
  --color-border: oklch(from #10202e l c h / 0.14);
  --color-divider: oklch(from #10202e l c h / 0.09);
  --color-primary: #a9803f;
  --color-primary-hover: #8a6830;
  --color-primary-active: #6f5426;
  --color-primary-highlight: #e8dcc0;
  --color-overlay: oklch(from #0a141f l c h / 0.55);
  --shadow-color: 220 40% 10%;
  --shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.08);
  --shadow-md: 0 8px 24px -6px hsl(var(--shadow-color) / 0.16);
  --shadow-lg: 0 24px 48px -12px hsl(var(--shadow-color) / 0.24);
}

[data-theme='dark'] {
  --color-bg: #0c1826;
  --color-surface: #10202f;
  --color-surface-2: #142838;
  --color-surface-offset: #0a141f;
  --color-text: #f2ecdd;
  --color-text-muted: #b7bfc6;
  --color-text-faint: #7c8994;
  --color-text-inverse: #10202e;
  --color-border: oklch(from #f7f2e7 l c h / 0.14);
  --color-divider: oklch(from #f7f2e7 l c h / 0.09);
  --color-primary: #d1a559;
  --color-primary-hover: #e0ba78;
  --color-primary-active: #b8934a;
  --color-primary-highlight: #33291a;
  --color-overlay: oklch(from #000000 l c h / 0.6);
  --shadow-color: 220 60% 3%;
}

/* =========================================================
   Base utility layer
   ========================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (max-width: 640px) {
  .container {
    padding-inline: var(--space-5);
  }
}

.section {
  padding-block: var(--space-24);
}
@media (max-width: 780px) {
  .section {
    padding-block: var(--space-16);
  }
}

.overline {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.overline::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: var(--text-hero);
  letter-spacing: -0.01em;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-optical-sizing: auto;
  font-size: var(--text-display);
  letter-spacing: -0.01em;
}
h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-3xl);
}
h4,
.h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 40ch;
}

.eyebrow-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--navy-950);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.btn-ghost:hover {
  background: oklch(from currentColor l c h / 0.08);
}
.btn-sm {
  padding: 0.7rem 1.4rem;
  font-size: var(--text-xs);
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: var(--space-4);
  background: oklch(from var(--color-bg) l c h / 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition:
    background var(--transition-interactive),
    border-color var(--transition-interactive),
    padding var(--transition-interactive);
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-divider);
  padding-block: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  text-decoration: none;
}
.brand-mark svg {
  width: 26px;
  height: 26px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.brand-name-logo {
  height: 34px;
  width: auto;
}
.brand-name-logo-dark {
  display: none;
}
[data-theme='dark'] .brand-name-logo-light {
  display: none;
}
[data-theme='dark'] .brand-name-logo-dark {
  display: block;
}
.brand-mark .brand-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.02em;
  font-weight: 500;
}
.brand-mark .brand-name b {
  color: var(--color-primary);
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}
.main-nav a {
  font-size: var(--text-sm);
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  text-decoration: none;
  position: relative;
}
.main-nav a:hover {
  color: var(--color-text);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.header-reserve-btn {
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.header-reserve-btn:hover {
  transform: translateY(-1px);
}

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
}
.theme-toggle .icon-moon {
  display: none;
}
[data-theme='dark'] .theme-toggle .icon-sun {
  display: none;
}
[data-theme='dark'] .theme-toggle .icon-moon {
  display: block;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  position: relative;
  z-index: 110;
}
.nav-toggle svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-8);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  }
  .main-nav a {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text);
  }
  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 105;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--cream-050);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(from #050a10 l c h / 0.35) 0%, oklch(from #050a10 l c h / 0.25) 40%, oklch(from #050a10 l c h / 0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--space-32) var(--space-16);
}
.hero-eyebrow {
  color: var(--brass-400);
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}
.hero h1 {
  color: var(--cream-050);
  max-width: 16ch;
}
.hero-sub {
  margin-top: var(--space-6);
  font-size: var(--text-lg);
  color: oklch(from var(--cream-050) l c h / 0.85);
  max-width: 46ch;
}
.hero-actions {
  margin-top: var(--space-10);
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.hero-actions .btn-ghost {
  color: var(--cream-050);
  border-color: oklch(from var(--cream-050) l c h / 0.5);
}
.hero-actions .btn-ghost:hover {
  border-color: var(--cream-050);
  background: oklch(from var(--cream-050) l c h / 0.1);
}

/* ---- At-a-glance strip ---- */
.info-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
}
.info-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  padding-block: var(--space-8);
}
.info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.info-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item .label {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: 2px;
}
.info-item .value {
  font-size: var(--text-sm);
  color: var(--color-text);
}
.info-item .value-note {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  margin-top: 2px;
}
@media (max-width: 900px) {
  .info-strip .container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}
@media (max-width: 560px) {
  .info-strip .container {
    grid-template-columns: 1fr;
  }
}

/* ---- Brand intro ---- */
.intro {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.intro .overline {
  justify-content: center;
}
.intro h2 {
  margin-top: var(--space-5);
}
.intro p {
  margin: var(--space-6) auto 0;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: 58ch;
}
.founder-note {
  margin-top: var(--space-8);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
}
.founder-note img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---- Venue panels (Shards / Lumina) — fixed tone regardless of theme ---- */
.venue-panel {
  position: relative;
}
.venue-panel.-shards {
  background: var(--navy-800);
  color: var(--cream-100);
}
.venue-panel.-lumina {
  background: var(--cream-050);
  color: var(--navy-900);
}

.venue-header {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-16);
  align-items: center;
  margin-bottom: var(--space-16);
}
.venue-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: var(--space-12);
}
.venue-brand-block .venue-logo {
  height: 92px;
  width: auto;
  margin-bottom: var(--space-6);
}
.venue-brand-block .overline {
  justify-content: center;
}
.venue-brand-block .venue-title-logo {
  display: block;
  height: clamp(64px, 8vw, 84px);
  width: auto;
  margin-top: var(--space-4);
}
.venue-panel.-shards .lede {
  color: oklch(from var(--cream-100) l c h / 0.72);
}
.venue-panel.-lumina .lede {
  color: oklch(from var(--navy-900) l c h / 0.68);
}
.venue-header p.lede {
  max-width: 46ch;
}
.venue-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}
.venue-feature-list li {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  align-items: flex-start;
}
.venue-panel.-shards .venue-feature-list li {
  color: oklch(from var(--cream-100) l c h / 0.85);
}
.venue-panel.-lumina .venue-feature-list li {
  color: oklch(from var(--navy-900) l c h / 0.78);
}
.venue-feature-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brass-400);
}
.venue-panel.-lumina .venue-feature-list svg {
  color: var(--brass-500);
}

.venue-media-grid {
  position: relative;
}
.venue-media-grid img {
  border-radius: var(--radius-md);
  object-fit: cover;
}
.venue-media-grid.-shards {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-4);
}
.venue-media-grid.-shards img:first-child {
  grid-row: 1 / 3;
  height: 100%;
  aspect-ratio: 3 / 4;
}
.venue-media-grid.-shards img:nth-child(2) {
  aspect-ratio: 4 / 3;
}
.venue-media-grid.-lumina {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.venue-media-grid.-lumina img:first-child {
  grid-column: 1 / 3;
  aspect-ratio: 16 / 9;
}
.venue-media-grid.-lumina img:nth-child(2),
.venue-media-grid.-lumina img:nth-child(3) {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .venue-header {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .venue-header .venue-media-grid {
    order: -1;
  }
}

/* ---- Cocktail cards ---- */
.menu-block {
  margin-top: var(--space-16);
}
.menu-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}
.menu-block-head h3 {
  font-size: var(--text-2xl);
}
.menu-note {
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  color: var(--color-primary);
}
.venue-panel.-shards .menu-note {
  color: var(--brass-400);
}

.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: oklch(from currentColor l c h / 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.cocktail-card {
  padding: var(--space-6);
}
.venue-panel.-shards .cocktail-card {
  background: var(--navy-800);
}
.venue-panel.-lumina .cocktail-card {
  background: var(--cream-050);
}
.cocktail-card .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.cocktail-card .name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
}
.cocktail-card .price {
  font-size: var(--text-sm);
  color: var(--color-primary);
  flex-shrink: 0;
}
.venue-panel.-shards .cocktail-card .price {
  color: var(--brass-400);
}
.cocktail-card .desc {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.venue-panel.-shards .cocktail-card .desc {
  color: oklch(from var(--cream-100) l c h / 0.65);
}
.venue-panel.-lumina .cocktail-card .desc {
  color: oklch(from var(--navy-900) l c h / 0.62);
}
@media (max-width: 900px) {
  .cocktail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .cocktail-grid {
    grid-template-columns: 1fr;
  }
}

.drinks-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}
.drinks-tags span {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid oklch(from currentColor l c h / 0.25);
}

/* ---- Happy hour / promo callout ---- */
.promo-callout {
  margin-top: var(--space-12);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.venue-panel.-shards .promo-callout {
  background: var(--navy-700);
  border: 1px solid oklch(from var(--cream-100) l c h / 0.1);
}
.venue-panel.-lumina .promo-callout {
  background: var(--cream-200);
  border: 1px solid oklch(from var(--navy-900) l c h / 0.08);
}
.promo-callout .promo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-primary);
  color: var(--navy-950);
}
.promo-callout .promo-icon svg {
  width: 22px;
  height: 22px;
}
.promo-callout .promo-copy h4 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
}
.promo-callout .promo-copy p {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
}
.venue-panel.-shards .promo-callout .promo-copy p {
  color: oklch(from var(--cream-100) l c h / 0.72);
}
.venue-panel.-lumina .promo-callout .promo-copy p {
  color: oklch(from var(--navy-900) l c h / 0.7);
}

.venue-cta {
  margin-top: var(--space-12);
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.venue-panel.-shards .btn-primary {
  background: var(--brass-400);
  color: var(--navy-950);
}
.venue-panel.-shards .btn-primary:hover {
  background: var(--cream-100);
}
.venue-panel.-shards .btn-ghost {
  color: var(--cream-100);
  border-color: oklch(from var(--cream-100) l c h / 0.4);
}
.venue-panel.-shards .btn-ghost:hover {
  border-color: var(--cream-100);
}
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  text-decoration: none;
}
.ig-link svg {
  width: 18px;
  height: 18px;
}
.venue-panel.-shards .ig-link {
  color: oklch(from var(--cream-100) l c h / 0.85);
}
.venue-panel.-lumina .ig-link {
  color: var(--navy-900);
}

/* ---- Food strip (Shards) ---- */
.food-strip {
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.food-strip .food-item {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid oklch(from var(--cream-100) l c h / 0.12);
}
.food-strip .food-item .row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
}
.food-strip .food-item .price {
  color: var(--brass-400);
}
@media (max-width: 780px) {
  .food-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Food Menu ---- */
.food-menu-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.fm-logo-ws {
  height: 30px;
  width: auto;
}
.fm-logo-ws-dark {
  display: none;
}
[data-theme='dark'] .fm-logo-ws-light {
  display: none;
}
[data-theme='dark'] .fm-logo-ws-dark {
  display: block;
}
.fm-logo-divider {
  width: 1px;
  height: 26px;
  background: var(--color-divider);
}
.fm-logo-lumina {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}
.food-menu-title {
  font-family: 'Open Sans', var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-align: center;
  font-size: clamp(1.75rem, 1.4rem + 2vw, var(--text-4xl));
  color: var(--color-primary);
}
.food-menu-sub {
  text-align: center;
  max-width: 52ch;
  margin: var(--space-4) auto 0;
  color: var(--color-text-muted);
}
.food-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  margin-top: var(--space-12);
}
.food-menu-category {
  margin-bottom: var(--space-10);
}
.food-menu-category:last-child {
  margin-bottom: 0;
}
.fm-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.fm-cat-label {
  font-family: 'Open Sans', var(--font-body);
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}
.fm-cat-note {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
}
.fm-item {
  padding-block: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.fm-item:last-child {
  border-bottom: none;
}
.fm-item .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-3);
}
.fm-item .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
}
.fm-item .price {
  font-size: var(--text-sm);
  color: var(--color-primary);
  flex-shrink: 0;
}
.fm-item .desc {
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
}
.food-menu-note {
  margin: var(--space-12) auto 0;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
@media (max-width: 780px) {
  .food-menu-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  .food-menu-brand-row {
    gap: var(--space-4);
  }
  .food-menu-title {
    letter-spacing: 0.18em;
  }
}

/* ---- Events / promotions section ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
}
.event-card {
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.event-card .tag {
  align-self: flex-start;
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary-active);
}
.event-card h3 {
  font-size: var(--text-2xl);
}
.event-card p {
  color: var(--color-text-muted);
  font-size: var(--text-base);
}
.event-card .meta {
  display: flex;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-faint);
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-divider);
}
@media (max-width: 780px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Private events / venue hire ---- */
.private-events-head h2 {
  margin-top: var(--space-4);
}
.private-events-head .lede {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
  max-width: 60ch;
}
.private-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.private-event-card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}
.private-event-card h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
}
.pe-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-divider);
}
.pe-specs li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-sm);
}
.pe-specs li span {
  color: var(--color-text-faint);
}
.pe-specs li strong {
  color: var(--color-text);
  font-weight: 600;
}
.pe-note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}
.private-events > .btn {
  margin-top: var(--space-8);
}
.private-events > .btn svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 780px) {
  .private-events-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: var(--space-4);
  margin-top: var(--space-12);
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.gallery-grid .g-tall {
  grid-row: span 2;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-grid .g-tall {
    grid-row: span 2;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-grid .g-tall {
    grid-row: span 1;
  }
}

/* ---- Location ---- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 4 / 3.4;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.hours-table {
  margin-top: var(--space-6);
}
.hours-table .venue-hours {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-divider);
}
.hours-table .venue-hours:first-child {
  border-top: none;
  padding-top: 0;
}
.hours-table .venue-hours h4 {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
.hours-table .venue-hours h4 .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}
.hours-table dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2) var(--space-6);
  font-size: var(--text-sm);
}
.hours-table dt {
  color: var(--color-text-faint);
}
.hours-table dd {
  color: var(--color-text);
  text-align: right;
}
.contact-list {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.contact-list a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
}
.contact-list a:hover {
  color: var(--color-primary);
}
.contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* ---- Social CTA ---- */
.social-cta {
  text-align: center;
  background: var(--navy-900);
  color: var(--cream-050);
  position: relative;
  overflow: hidden;
}
.social-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, oklch(from var(--brass-400) l c h / 0.18), transparent 60%);
}
.social-cta .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.social-cta h2 {
  color: var(--cream-050);
}
.social-cta p {
  margin-top: var(--space-5);
  color: oklch(from var(--cream-050) l c h / 0.7);
  font-size: var(--text-lg);
}
.social-links {
  margin-top: var(--space-10);
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  border: 1px solid oklch(from var(--cream-050) l c h / 0.25);
  color: var(--cream-050);
  text-decoration: none;
  font-size: var(--text-sm);
}
.social-links a:hover {
  background: oklch(from var(--cream-050) l c h / 0.08);
  border-color: var(--brass-400);
}
.social-links svg {
  width: 20px;
  height: 20px;
}

/* ---- Footer ---- */
.site-footer {
  padding-block: var(--space-16) var(--space-10);
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
}
.footer-brand .brand-mark {
  margin-bottom: var(--space-5);
}
.footer-brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 34ch;
}
.footer-col h5 {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
}
.footer-col a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  flex-wrap: wrap;
  gap: var(--space-3);
}
@media (max-width: 780px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

/* ---- Reveal-on-scroll ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .venue-media-grid.-shards,
  .venue-media-grid.-lumina {
    gap: var(--space-3);
  }
}

/* =========================================================
   MULTI-PAGE RESTRUCTURE — appended block
   Added for the 10-page site only. No existing rule was changed.
   Uses existing design tokens exclusively.
   ========================================================= */

/* Inner-page hero: same treatment as the home hero, shorter so page
   content starts sooner. Home page keeps the full-viewport hero. */
.hero.-page {
  min-height: 66vh;
}
.hero.-page .hero-content {
  padding-block: var(--space-32) var(--space-12);
}
@media (max-width: 780px) {
  .hero.-page {
    min-height: 72vh;
  }
}

/* Current page + highlighted F1 nav item */
.main-nav a[aria-current='page'] {
  color: var(--color-primary);
}
.main-nav a.-f1 {
  color: var(--color-primary);
  letter-spacing: 0.06em;
}
.main-nav a.-f1:hover {
  color: var(--color-primary-hover);
}
@media (min-width: 901px) and (max-width: 1180px) {
  .main-nav {
    gap: var(--space-5);
  }
}

/* Package price line inside an existing .event-card */
.pkg-price {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
}
.pkg-price small {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  display: block;
  margin-top: var(--space-2);
}
.event-card .pkg-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  list-style: none;
}
.event-card .pkg-list li {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}
.event-card .pkg-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-primary);
}

/* Lumina panel sits on a fixed cream background in both themes, so its accent
   colour must not follow --color-primary (which lightens in dark mode and drops
   contrast on cream). Pinned to the same brass the light theme already uses, so
   light mode is unchanged. Mirrors the existing .-shards .menu-note pattern. */
.venue-panel.-lumina .overline,
.venue-panel.-lumina .menu-note,
.venue-panel.-lumina .cocktail-card .price,
.venue-panel.-lumina .fm-cat-label,
.venue-panel.-lumina .fm-item .price {
  color: var(--brass-500);
}
.venue-panel.-lumina .promo-callout .promo-icon {
  background: var(--brass-500);
}

/* Four-item cocktail grid: two columns so the last row fills completely instead
   of leaving an empty cell showing the grid's divider background. */
.cocktail-grid.-two {
  grid-template-columns: repeat(2, 1fr);
}

/* Price table — Daylight Hire rates (private hire) and corporate rates */
.price-table {
  margin-top: var(--space-8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
}
.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.price-table th,
.price-table td {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  border-bottom: 1px solid var(--color-divider);
}
.price-table th {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-faint);
  background: var(--color-surface-offset);
}
.price-table td {
  color: var(--color-text-muted);
}
.price-table td:last-child {
  color: var(--color-primary);
  white-space: nowrap;
}
.price-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 620px) {
  /* Narrow screens: the four-column rate table becomes one stacked block per
     row, so the price column is never clipped or pushed off screen. */
  .price-table thead {
    display: none;
  }
  .price-table tr {
    display: block;
    border-bottom: 1px solid var(--color-divider);
    padding: var(--space-4) var(--space-5);
  }
  .price-table tr:last-child {
    border-bottom: none;
  }
  .price-table td {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-1) 0;
    border-bottom: none;
    font-size: var(--text-sm);
  }
  .price-table td::before {
    content: attr(data-label);
    font-size: var(--text-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-faint);
  }
}
