/* ══════════════════════════════════════
   NOCTURNE TABLE — DESIGN SYSTEM
   Stark modernist: near-black ground,
   parchment white type, acid-green accent.
   Grid-breaking, theatrical, typographic.
   Fonts: Bebas Neue (display) + Overpass (body)
══════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── TOKENS ── */
:root {
  --black:     #080808;
  --off-black: #101010;
  --dim:       #1A1A1A;
  --mid:       #2C2C2C;
  --border:    rgba(255, 255, 255, 0.07);
  --white:     #F0EDE8;
  --muted:     rgba(240, 237, 232, 0.38);
  --ghost:     rgba(240, 237, 232, 0.14);

  /* Single electric accent — acid chartreuse */
  --acid:      #C8F23C;
  --acid-dim:  rgba(200, 242, 60, 0.18);

  --display:   'Bebas Neue', 'Impact', sans-serif;
  --body:      'Overpass', system-ui, sans-serif;

  --page: clamp(1.5rem, 4vw, 4rem);
}

/* ══════════════════════════════════════
   BASE
══════════════════════════════════════ */
html {
  font-size: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  font-weight: 200;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a, button, input, select, textarea {
  font: inherit;
  color: inherit;
}

a { text-decoration: none; }
button { cursor: pointer; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(200, 242, 60, 0.5);
  outline-offset: 2px;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--acid);
  color: var(--black);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════
   TOPBAR
══════════════════════════════════════ */
.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: stretch;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  padding: 0 var(--page);
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}

.brand-mark {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--acid);
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: saturate(1.05);
}

.brand-sep {
  width: 1px;
  height: 24px;
  background: var(--border);
  margin: 0 1rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-name {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.brand-line {
  font-size: 0.6rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── PRIMARY NAV ── */
.primary-nav {
  display: flex;
  align-items: stretch;
  margin-left: auto;
}

.nav-pill {
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  border-right: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-pill::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-pill:hover { color: var(--white); }
.nav-pill.is-active { color: var(--white); }
.nav-pill.is-active::after { transform: scaleX(1); }

.nav-pill-cta {
  background: var(--acid);
  color: var(--black) !important;
  font-weight: 300;
  letter-spacing: 0.12em;
  border-left: none;
  padding: 0 2rem;
  transition: background 0.2s;
}
.nav-pill-cta:hover { background: #d8ff4a; }
.nav-pill-cta::after { display: none; }

/* ── MENU TOGGLE (mobile) ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  border-left: 1px solid var(--border);
  cursor: pointer;
  padding: 0 16px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px)  rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ══════════════════════════════════════
   APP SHELL — SPLIT LAYOUT
══════════════════════════════════════ */
.app-shell {
  min-height: 100svh;
  display: block;
}

.stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 56px);
  padding-top: 56px;
}

/* ── VISUAL PANEL (left) ── */
.visual-panel {
  position: sticky;
  top: 56px;
  height: calc(100svh - 56px);
  overflow: hidden;
  background: var(--off-black);
}

.visual-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, rgba(200, 242, 60, 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.visual-grid {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  z-index: 2;
}

/* Visual cards */
.visual-card {
  position: relative;
  overflow: hidden;
  transition: opacity 0.5s;
}

/* Treat placeholders like background layers behind the captions */
.visual-dish-ember,
.visual-dish-stone,
.visual-room {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.visual-card-main {
  grid-column: 1 / -1;
  grid-row: 1;
}

.visual-card-side {
  grid-column: 1;
  grid-row: 2;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.visual-card-tall {
  grid-column: 2;
  grid-row: 2;
  border-top: 1px solid var(--border);
}

/* Dish placeholder visuals */
.visual-dish-ember {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 60% 55%, rgba(200, 242, 60, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(180, 120, 40, 0.15) 0%, transparent 40%),
    linear-gradient(160deg, #0f0f0f 0%, #1a1410 60%, #0c0c0c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-dish-ember::before {
  content: '';
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(200, 242, 60, 0.15);
  box-shadow: 0 0 60px rgba(200, 242, 60, 0.06);
}

.visual-dish-stone {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 50%, rgba(200, 242, 60, 0.05) 0%, transparent 60%),
    linear-gradient(135deg, #111 0%, #1c1c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visual-dish-stone::before {
  content: '';
  width: 70px;
  height: 70px;
  border: 1px solid rgba(200, 242, 60, 0.2);
  transform: rotate(45deg);
}

.visual-room {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0d0d0d 0%, #161410 60%, #0d0d0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.visual-room::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(200, 242, 60, 0.04) 0%, transparent 100%);
}
.visual-room::after {
  content: '';
  width: 40px;
  height: 80px;
  border-left:  1px solid rgba(200, 242, 60, 0.25);
  border-right: 1px solid rgba(200, 242, 60, 0.25);
  border-top:   1px solid rgba(200, 242, 60, 0.25);
}

/* Image support: when real photos are loaded */
.visual-card img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75) brightness(0.85);
  transition: filter 0.6s;
}
.visual-card:hover img {
  filter: saturate(0.9) brightness(0.92);
}

/* Captions */
.visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.visual-caption-compact {
  padding: 1rem 1.25rem;
}

.visual-kicker {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
}

.visual-caption strong {
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 200;
  color: var(--white);
  line-height: 1.3;
}

.visual-caption-compact strong {
  font-size: 0.72rem;
}

/* Overlay labels */
.vertical-note {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ghost);
  white-space: nowrap;
  pointer-events: none;
}

.release-note {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: rgba(200, 242, 60, 0.35);
  pointer-events: none;
}

/* ── CONTENT PANEL (right) ── */
.content-panel {
  display: flex;
  flex-direction: column;
  min-height: calc(100svh - 56px);
  border-left: 1px solid var(--border);
}

.content-frame {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.panel-stack {
  flex: 1;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 4rem);
  overflow-y: auto;
}

/* ══════════════════════════════════════
   VIEW PANELS
══════════════════════════════════════ */
.view-panel {
  display: none;
  animation: panelIn 0.4s ease both;
}

.view-panel.is-active {
  display: block;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PANEL TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--acid);
  flex-shrink: 0;
}

.view-panel h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.lead {
  font-size: 0.93rem;
  font-weight: 200;
  line-height: 1.85;
  color: rgba(240, 237, 232, 0.65);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--border);
  padding-left: 1.25rem;
}

/* ── STAT ROW ── */
.stat-row {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.stat-card {
  flex: 1;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }

.meta-icon {
  font-size: 0.6rem;
  color: var(--acid);
  margin-bottom: 0.25rem;
}

.stat-number {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.03em;
}

.stat-label {
  font-size: 0.62rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── HOUSE STRIP ── */
.house-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.house-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  padding: 0.35rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: rgba(240, 237, 232, 0.55);
  transition: border-color 0.2s, color 0.2s;
}
.house-chip:hover {
  border-color: rgba(200, 242, 60, 0.3);
  color: var(--acid);
}

.house-icon {
  font-size: 0.5rem;
  color: var(--acid);
}

/* ── COPY GRID ── */
.copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}

.copy-card {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}
.copy-card:last-child { border-right: none; }
.copy-card.accent-card { background: var(--dim); }

.card-kicker {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 0.6rem;
}

.copy-card h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.copy-card p {
  font-size: 0.82rem;
  font-weight: 200;
  line-height: 1.75;
  color: var(--muted);
}

/* ── ACTION ROW ── */
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ── BUTTONS ── */
.button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
}

.button-primary {
  background: var(--acid);
  color: var(--black);
}
.button-primary:hover { background: #d8ff4a; }

.button-secondary {
  background: none;
  color: var(--muted);
  border: 1px solid var(--border);
}
.button-secondary:hover {
  color: var(--white);
  border-color: rgba(240, 237, 232, 0.3);
}

.button-block {
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════
   TASTING — TIMELINE
══════════════════════════════════════ */
.timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.timeline-item:last-child { border-bottom: 1px solid var(--border); }

.timeline-step {
  font-family: var(--display);
  font-size: 1.5rem;
  color: rgba(200, 242, 60, 0.3);
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 0.2rem;
}

.timeline-item h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.timeline-item p {
  font-size: 0.82rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   ROOM — ROOM GRID
══════════════════════════════════════ */
.room-grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
}

.room-card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}
.room-card:last-child { border-bottom: 1px solid var(--border); }

.room-card.accent-card {
  border-left: 2px solid var(--acid);
  padding-left: 1.25rem;
}

.room-card h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.05;
}

.room-card p {
  font-size: 0.82rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   JOURNAL
══════════════════════════════════════ */
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
}

.data-card {
  padding: 1.25rem 1.5rem;
  border-right: 1px solid var(--border);
}
.data-card:last-child { border-right: none; }

.data-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.data-head h2 {
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
  margin-top: 0.25rem;
}

.data-status {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(200, 242, 60, 0.25);
  white-space: nowrap;
}

/* Notes feed */
.notes-feed,
.social-feed-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.note-entry {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.note-entry-meta {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.note-entry-meta span {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.note-entry-meta span:first-child { color: var(--acid); }
.note-entry-meta span:last-child  { color: var(--ghost); }

.note-entry h3 {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.note-entry p {
  font-size: 0.72rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.6;
}

/* Social feed */
.social-entry {
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.social-entry-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3rem;
}

.social-entry-platform {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
}
.social-entry-platform svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.social-entry-meta > span:last-child {
  font-size: 0.58rem;
  color: var(--ghost);
}

.social-entry h3 {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.social-entry p {
  font-size: 0.72rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.4rem;
}

.social-entry-link {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 242, 60, 0.25);
  padding-bottom: 1px;
}

/* Journal list */
.journal-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.journal-entry {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.journal-entry:last-child { border-bottom: 1px solid var(--border); }

.journal-date {
  font-size: 0.62rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding-top: 0.25rem;
}

.journal-entry h2 {
  font-family: var(--display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.journal-entry p {
  font-size: 0.78rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.7;
}

/* Quote panel */
.quote-panel {
  margin-bottom: 2rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--acid);
  background: var(--dim);
}

.quote-panel p {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 200;
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.quote-panel span {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══════════════════════════════════════
   RESERVE — FORM
══════════════════════════════════════ */
.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.field {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.field:nth-child(even) { border-right: none; }
.field.field-full {
  grid-column: 1 / -1;
  border-right: none;
}

.field span,
.field label {
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--acid);
  padding: 0.75rem 1rem 0;
}

.field input,
.field select,
.field textarea {
  background: none;
  border: none;
  outline: none;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 200;
  color: var(--white);
  padding: 0.3rem 1rem 0.9rem;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--ghost); }

.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.field select option { background: var(--dim); }

.field textarea { resize: none; }

.field input.is-invalid,
.field select.is-invalid,
.field textarea.is-invalid {
  border-bottom: 1px solid rgba(255, 80, 60, 0.5);
}

/* Submit button inside form grid */
.reservation-form .button-block {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px solid var(--border);
}

.reservation-feedback {
  font-size: 0.78rem;
  font-weight: 200;
  line-height: 1.6;
  min-height: 1.5rem;
  margin-bottom: 1rem;
  color: var(--muted);
}
.reservation-feedback.is-success { color: var(--acid); }
.reservation-feedback.is-error   { color: #ff5c4a; }

/* Success card */
.success-card {
  padding: 1.5rem;
  border: 1px solid rgba(200, 242, 60, 0.25);
  background: rgba(200, 242, 60, 0.04);
  margin-bottom: 1.5rem;
}

.success-card h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.success-card p {
  font-size: 0.82rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact strip */
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.contact-strip a,
.contact-strip span {
  flex: 1;
  min-width: max-content;
  padding: 0.85rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  border-right: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}

.contact-strip a:last-child,
.contact-strip span:last-child { border-right: none; }

.contact-strip a:hover {
  color: var(--acid);
  background: var(--dim);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}

.location-card {
  padding: 1.5rem;
  border-right: 1px solid var(--border);
}

.location-card h2 {
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.location-card p {
  font-size: 0.78rem;
  font-weight: 200;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.location-list span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.location-list span::before {
  content: '–';
  color: var(--acid);
}

.map-card {
  overflow: hidden;
  min-height: 200px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: none;
  filter: grayscale(1) invert(0.9) brightness(0.5);
}

/* ══════════════════════════════════════
   FOOTBAR
══════════════════════════════════════ */
.footbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2rem;
  height: 52px;
  border-top: 1px solid var(--border);
  background: var(--off-black);
  flex-shrink: 0;
}

.footbar-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footbar-label {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ghost);
}

.footbar-copy strong {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.view-indicator {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.view-index {
  font-family: var(--display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}

.view-total {
  font-size: 0.72rem;
  color: var(--muted);
}

/* Live desk */
.live-desk {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
}

.live-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.25rem;
  border-left: 1px solid var(--border);
  height: 100%;
}

.live-label {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ghost);
  display: block;
}

.live-chip strong {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--white);
  display: block;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--acid);
  animation: pulse 2s ease-in-out infinite;
}

.live-chip-status.is-closed .live-dot {
  background: rgba(255, 90, 70, 0.7);
  box-shadow: none;
  animation: none;
}

.live-chip-status.is-prep .live-dot {
  background: rgba(200, 242, 60, 0.4);
  box-shadow: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ══════════════════════════════════════
   SITE FOOTER
══════════════════════════════════════ */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 1.5rem var(--page);
  border-top: 1px solid var(--border);
  background: var(--off-black);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Legacy footer mark (text logo) removed in favor of image logo. */

.brand-logo-footer {
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

.footer-brand strong {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
}

.footer-brand p {
  font-size: 0.65rem;
  font-weight: 200;
  color: var(--muted);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--acid); }

.social-row {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.social-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s;
}
.social-chip:hover {
  color: var(--acid);
  border-color: rgba(200, 242, 60, 0.3);
}

.social-chip svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

/* ══════════════════════════════════════
   RESPONSIVE — TABLET
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .data-grid { grid-template-columns: 1fr; }
  .data-card { border-right: none; border-bottom: 1px solid var(--border); }
  .copy-grid { grid-template-columns: 1fr; }
  .copy-card { border-right: none; border-bottom: 1px solid var(--border); }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ══════════════════════════════════════
   RESPONSIVE — MOBILE
══════════════════════════════════════ */
@media (max-width: 860px) {
  /* Collapse split layout to single column */
  .stage { grid-template-columns: 1fr; }

  .visual-panel {
    display: none;
  }

  .content-panel {
    border-left: none;
    min-height: calc(100svh - 56px);
  }

  /* Mobile nav — fullscreen overlay */
  .primary-nav {
    display: none;
    position: fixed;
    inset: 56px 0 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    z-index: 199;
    border-top: 1px solid var(--border);
    overflow-y: auto;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .nav-pill {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem var(--page);
    font-size: 0.8rem;
    justify-content: space-between;
  }
  .nav-pill::after { display: none; }

  .nav-pill-cta {
    background: none;
    color: var(--acid) !important;
  }

  .menu-toggle  { display: flex; }

  /* Footbar — hide live desk on mobile */
  .footbar {
    grid-template-columns: 1fr 1fr;
  }

  .live-desk { display: none; }

  /* Footer — stack */
  .site-footer {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links { justify-content: flex-start; }
  .social-row   { justify-content: flex-start; }

  /* Form — single column */
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .field {
    border-right: none;
  }

  .field.field-full {
    border-right: none;
  }

  /* Contact strip — stack */
  .contact-strip {
    flex-direction: column;
  }

  .contact-strip a,
  .contact-strip span {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .contact-strip a:last-child,
  .contact-strip span:last-child {
    border-bottom: none;
  }
}
