/* ============================================
   BAR N9NE — Design Tokens
   ============================================ */

:root,
[data-theme='light'] {
  /* Surfaces — warm cream / cardstock */
  --color-bg: #f6f1e6;
  --color-surface: #fbf7ee;
  --color-surface-2: #ffffff;
  --color-surface-offset: #eee6d3;
  --color-surface-offset-2: #e6dcc4;
  --color-surface-dynamic: #ddd1b3;
  --color-divider: #e2d7bf;
  --color-border: #d6c9a9;

  /* Text — near-black warm ink */
  --color-text: #1b1712;
  --color-text-muted: #6d6355;
  --color-text-faint: #a99d87;
  --color-text-inverse: #f6f1e6;

  /* Primary — N9NE red */
  --color-primary: #c9202b;
  --color-primary-hover: #a3161f;
  --color-primary-active: #7d1017;
  --color-primary-highlight: #f0d3d2;

  /* Warning / amber (used sparingly for spice heat) */
  --color-warning: #a85a12;
  --color-warning-hover: #8a4a0e;
  --color-warning-active: #6b3a0a;
  --color-warning-highlight: #ecd6b8;

  --color-error: #a12c2c;
  --color-error-hover: #7d1e1e;
  --color-error-active: #561717;
  --color-error-highlight: #e0cece;

  --color-success: #43621f;
  --color-success-hover: #33490f;
  --color-success-active: #223008;
  --color-success-highlight: #d4dfc4;

  --radius-sm: 0.25rem;
  --radius-md: 0.4rem;
  --radius-lg: 0.65rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 40 / 0.1);
  --shadow-md: 0 6px 16px oklch(0.2 0.02 40 / 0.14);
  --shadow-lg: 0 16px 40px oklch(0.15 0.02 40 / 0.22);

  --content-narrow: 640px;
  --content-default: 980px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Bevan', 'Rockwell', Georgia, serif;
  --font-accent: 'Rye', 'Bevan', Georgia, serif;
  --font-body: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0c0b0a;
  --color-surface: #161412;
  --color-surface-2: #1b1917;
  --color-surface-offset: #201d19;
  --color-surface-offset-2: #262220;
  --color-surface-dynamic: #2e2925;
  --color-divider: #292420;
  --color-border: #3a332c;

  --color-text: #f3ede1;
  --color-text-muted: #a89e8d;
  --color-text-faint: #6f665a;
  --color-text-inverse: #17130f;

  --color-primary: #e2222b;
  --color-primary-hover: #ff4d54;
  --color-primary-active: #b81b22;
  --color-primary-highlight: #3a1c1d;

  --color-warning: #d98a3d;
  --color-warning-hover: #f0a35a;
  --color-warning-active: #b56b25;
  --color-warning-highlight: #3a2a17;

  --color-error: #d16565;
  --color-error-hover: #e08585;
  --color-error-active: #a53f3f;
  --color-error-highlight: #3a2323;

  --color-success: #7fae4a;
  --color-success-hover: #97c563;
  --color-success-active: #5e8a32;
  --color-success-highlight: #263a1c;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 8px 20px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0c0b0a;
    --color-surface: #161412;
    --color-surface-2: #1b1917;
    --color-surface-offset: #201d19;
    --color-surface-offset-2: #262220;
    --color-surface-dynamic: #2e2925;
    --color-divider: #292420;
    --color-border: #3a332c;
    --color-text: #f3ede1;
    --color-text-muted: #a89e8d;
    --color-text-faint: #6f665a;
    --color-text-inverse: #17130f;
    --color-primary: #e2222b;
    --color-primary-hover: #ff4d54;
    --color-primary-active: #b81b22;
    --color-primary-highlight: #3a1c1d;
    --color-warning: #d98a3d;
    --color-warning-hover: #f0a35a;
    --color-warning-active: #b56b25;
    --color-warning-highlight: #3a2a17;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
    --shadow-md: 0 8px 20px oklch(0 0 0 / 0.45);
    --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.55);
  }
}

/* Type Scale */
:root {
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(2.75rem, 0.5rem + 6.5vw, 7rem);
}

/* Spacing */
:root {
  --space-1: 0.25rem;
  --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;
}

/* ============================================
   Global / Layout helpers
   ============================================ */

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--content-default);
}

section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-24));
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
}

.section-sub {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  max-width: 60ch;
  margin-bottom: var(--space-10);
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: var(--color-primary);
  display: block;
}

/* ============================================
   Header
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid var(--color-divider);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  isolation: isolate;
}

.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: color-mix(in oklab, var(--color-bg) 88%, transparent);
  backdrop-filter: blur(14px);
}

.header--hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.brand__mark {
  height: 44px;
  width: auto;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.brand__mark img {
  height: 100%;
  width: auto;
  display: block;
}

.brand__text {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: var(--space-2);
  position: relative;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--color-text);
}

.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  flex-shrink: 0;
}

.theme-toggle:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-md);
}
.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--outline {
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn--outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline-invert {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}
.btn--outline-invert:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 5, 0.55) 0%,
    rgba(8, 6, 5, 0.35) 35%,
    rgba(8, 6, 5, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #f6f1e6;
  padding-block: var(--space-16) var(--space-16);
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--color-primary) 88%, black 4%);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7cf07c;
  box-shadow: 0 0 0 3px rgba(124, 240, 124, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  text-transform: uppercase;
  line-height: 0.98;
  margin-bottom: var(--space-6);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 span {
  color: var(--color-primary);
}

.hero__lede {
  font-family: var(--font-accent);
  font-size: var(--text-lg);
  color: #f0e4c8;
  max-width: 46ch;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-6);
}

.hero__fact {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.hero__fact dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-text-faint);
  font-weight: 700;
}

.hero__fact dd {
  font-size: var(--text-base);
  font-weight: 600;
  color: #f6f1e6;
}

/* ============================================
   Marquee ticker
   ============================================ */

.ticker {
  background: var(--color-primary);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-divider);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: var(--space-10);
  padding-block: var(--space-3);
  animation: ticker 32s linear infinite;
  will-change: transform;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ticker__item::before {
  content: '★';
  opacity: 0.7;
  font-size: 0.8em;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ============================================
   About / split section
   ============================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.split__media-tag {
  position: absolute;
  bottom: var(--space-6);
  left: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  font-family: var(--font-accent);
  font-size: var(--text-base);
  color: var(--color-primary);
}

.split__body p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.pillar {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  text-align: center;
  background: var(--color-surface);
}

.pillar__icon {
  color: var(--color-primary);
  margin-inline: auto;
  margin-bottom: var(--space-2);
}

.pillar__label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   Menu preview grid
   ============================================ */

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.dish-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.dish-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.dish-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-card:hover img {
  transform: scale(1.06);
}

.dish-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 5, 4, 0.85) 100%);
}

.dish-card__label {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 1;
  color: #fff;
}

.dish-card__label .name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
  display: block;
}

.dish-card__label .price {
  font-size: var(--text-sm);
  color: #f0d3d2;
  font-weight: 700;
}

.menu-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  margin-top: var(--space-10);
  flex-wrap: wrap;
}

.menu-cta p {
  color: var(--color-text-muted);
  max-width: 46ch;
}

/* ============================================
   Events
   ============================================ */

.events {
  position: relative;
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}

.events__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.event-row {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.event-row__day {
  font-family: var(--font-display);
  font-size: var(--text-base);
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.15;
  white-space: nowrap;
}

.event-row__day small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.event-row__title {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.event-row__desc {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.event-row__tag {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-success);
  background: var(--color-success-highlight);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.events__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.events__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.events__media-caption {
  position: absolute;
  left: var(--space-6);
  bottom: var(--space-6);
  right: var(--space-6);
  color: #fff;
}

.events__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 5, 4, 0.85) 100%);
}

.events__media-caption {
  z-index: 1;
}

.events__media-caption .eyebrow {
  color: #f0a35a;
}

.events__media-caption h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  text-transform: uppercase;
}

/* ============================================
   Wings heat scale
   ============================================ */

.heat {
  border-top: 1px solid var(--color-divider);
}

.heat__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.heat-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-6) var(--space-5);
  background: var(--color-surface);
  text-align: center;
}

.heat-card__flames {
  color: var(--color-warning);
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
  letter-spacing: 0.1em;
}

.heat-card__name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.heat-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.heat-card--hot {
  border-color: var(--color-primary);
  background: var(--color-primary-highlight);
}

/* ============================================
   Visit / location
   ============================================ */

.visit {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  position: relative;
  overflow: hidden;
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-block: var(--space-8);
}

.info-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.info-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.info-item__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--color-text-faint);
  margin-bottom: var(--space-1);
}

.info-item__value {
  font-weight: 600;
  font-size: var(--text-base);
}

.info-item__value a {
  color: var(--color-text);
  text-decoration: none;
}
.info-item__value a:hover {
  color: var(--color-primary);
}

.hours-table {
  width: 100%;
  font-size: var(--text-sm);
}

.hours-table td {
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--color-divider);
}

.hours-table td:first-child {
  color: var(--color-text-muted);
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.2;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: #0c0b0a;
  color: #cfc6b6;
  padding-block: var(--space-16) var(--space-8);
}

[data-theme='light'] .footer {
  background: #17130f;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__brand img {
  height: 40px;
  border-radius: var(--radius-sm);
}

.footer p {
  color: #9c9284;
  font-size: var(--text-sm);
  max-width: 40ch;
}

.footer h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f3ede1;
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__links a {
  color: #b3a996;
  text-decoration: none;
  font-size: var(--text-sm);
}
.footer__links a:hover {
  color: var(--color-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-8);
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: #7c7364;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cfc6b6;
}
.footer__social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* ============================================
   Menu page
   ============================================ */

.menu-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(var(--space-24), 14vw, var(--space-32));
  padding-bottom: var(--space-12);
  text-align: center;
  color: #f6f1e6;
  border-bottom: 1px solid var(--color-divider);
}

.menu-hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.menu-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.menu-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 5, 0.78) 0%,
    rgba(8, 6, 5, 0.6) 45%,
    rgba(8, 6, 5, 0.9) 100%
  );
}

.menu-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  text-transform: uppercase;
  color: #f6f1e6;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.menu-hero .eyebrow {
  margin-bottom: var(--space-3);
}

.menu-hero__meta {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  margin-top: var(--space-6);
  flex-wrap: wrap;
  font-size: var(--text-sm);
  color: rgba(246, 241, 230, 0.85);
}

.menu-hero__meta strong {
  color: #fff;
}

.menu-nav {
  position: sticky;
  top: 73px;
  z-index: 50;
  background: color-mix(in oklab, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-divider);
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-nav__inner {
  display: flex;
  gap: var(--space-6);
  padding-block: var(--space-4);
  white-space: nowrap;
}

.menu-nav a {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-decoration: none;
}
.menu-nav a:hover,
.menu-nav a.is-active {
  color: var(--color-primary);
}

.menu-section {
  padding-block: var(--space-16);
  border-bottom: 1px solid var(--color-divider);
}

.menu-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.menu-section__head h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
}

.menu-section__note {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 40ch;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3) var(--space-10);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px dashed var(--color-divider);
}

.menu-item__info {
  max-width: 34ch;
}

.menu-item__name {
  font-weight: 700;
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.menu-item__desc {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
}

.menu-item__addon {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 700;
  margin-top: var(--space-2);
  display: block;
}

.menu-item__price {
  font-family: var(--font-display);
  font-size: var(--text-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.flame-tag {
  color: var(--color-warning);
  font-size: 0.7em;
}

.wings-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}

.wings-sauces {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.sauce-pill {
  font-size: var(--text-xs);
  font-weight: 600;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.sauce-pill--hot {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 700;
}

.wings-pricing {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.wings-pricing__row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-weight: 700;
}

.wings-pricing__row span:last-child {
  color: var(--color-primary);
  font-family: var(--font-display);
}

.menu-cta-band {
  text-align: center;
  padding-block: var(--space-20);
}

.menu-cta-band h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.menu-cta-band .actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.allergy-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: var(--space-6);
}

/* ============================================
   Reveal animation
   ============================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  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);
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 960px) {
  .split,
  .events__grid,
  .visit__grid,
  .wings-panel {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .split--reverse .split__media {
    order: 0;
  }

  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dish-card:first-child {
    grid-row: span 1;
    aspect-ratio: 3/4;
  }

  .heat__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .menu-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    inset: 73px 0 0 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-8) var(--space-6);
    gap: var(--space-6);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 90;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__links a {
    font-size: var(--text-lg);
  }

  .nav-toggle {
    display: flex;
  }

  .brand__text {
    display: none;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__facts {
    gap: var(--space-5);
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .event-row__tag {
    justify-self: flex-start;
  }

  .menu-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
