/* ============================================================
   GOGI Korean BBQ — style.css
   Black Stone Luxury — mobile-first
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --black:       #0a0a0a;
  --black-mid:   #111111;
  --black-soft:  #1a1a1a;
  --black-card:  #161616;
  --red:         #c0392b;
  --red-light:   #e63946;
  --white:       #ffffff;
  --off-white:   #f0f0f0;
  --grey:        #a3a3a3;
  --grey-light:  #cccccc;
  --border:      rgba(255,255,255,0.08);
  --overlay:     rgba(8, 8, 8, 0.72);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-light);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Nav ───────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, transparent 100%);
  pointer-events: none;
}

.site-nav a {
  pointer-events: all;
}

.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f0f0f0;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red-light);
}


/* ── Hero Section ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--black-mid);
}

/* Fade the bottom of the hero section into the about section */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--black-mid));
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/logo-neon-sign.jpeg');
  background-size: cover;
  background-position: center 45%;
  background-repeat: no-repeat;
  filter: brightness(0.55) saturate(0.9);
  transform: scale(1.03);
  transition: transform 8s ease;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.5) 100%),
    linear-gradient(to bottom, transparent 60%, rgba(17,17,17,0.7) 85%, #111111 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  width: 100%;
  max-width: 600px;
}

.hero-logo {
  width: min(340px, 82vw);
  height: auto;
  filter: drop-shadow(0 0 32px rgba(192, 57, 43, 0.55)) drop-shadow(0 0 6px rgba(255,255,255,0.15));
  animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 32px rgba(192, 57, 43, 0.55)) drop-shadow(0 0 6px rgba(255,255,255,0.15)); }
  50%       { filter: drop-shadow(0 0 48px rgba(230, 57, 70, 0.75)) drop-shadow(0 0 12px rgba(255,255,255,0.2)); }
}

.hero-buttons {
  position: absolute;
  bottom: 38%;
  left: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 2;
}

.hero-buttons .btn {
  min-height: 48px;
  padding: 0 1rem;
  font-size: 0.72rem;
}

@media (max-width: 640px) {
  .hero-buttons {
    position: absolute;
    bottom: 23%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 0;
    z-index: 2;
  }
  .hero-buttons .btn {
    width: auto;
    min-width: 140px;
    min-height: 48px;
    font-size: 0.72rem;
    white-space: nowrap;
  }
}

/* Button base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(14px);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(192, 57, 43, 0.45);
  animation: btnFadeIn 0.6s ease forwards 1.0s;
}

.btn-primary:hover {
  background: var(--red-light);
  box-shadow: 0 6px 28px rgba(230, 57, 70, 0.55);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0.08);
  animation: btnFadeIn 0.6s ease forwards 1.3s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn-frost {
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 1;
  transform: none;
}

.btn-frost:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

@keyframes btnFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Scroll tip */
.scroll-tip {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0;
  padding: 0;
  animation: none;
  transition: none;
}

.scroll-tip svg {
  width: 24px;
  height: 24px;
  display: inline-block;
}

/* ── Hours / Contact Section ───────────────────────────────── */
.hours-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hours-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hours-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  object-position: center 40%;
}

/* Background video pause/play toggle (WCAG 2.2.2) */
.video-pause-toggle {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.video-pause-toggle:hover,
.video-pause-toggle:focus-visible {
  background: rgba(0,0,0,0.75);
  border-color: rgba(255,255,255,0.55);
  outline: none;
}

.video-pause-toggle:focus-visible {
  outline: 2px solid var(--red-light);
  outline-offset: 3px;
}

.video-pause-toggle svg {
  width: 16px;
  height: 16px;
}

.video-pause-toggle .icon-play {
  display: none;
}

.video-pause-toggle[aria-pressed="true"] .icon-pause {
  display: none;
}

.video-pause-toggle[aria-pressed="true"] .icon-play {
  display: block;
}

.hours-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  padding: 5rem 1.5rem;
  text-align: center;
}

.hours-content h2 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  margin-bottom: 2.5rem;
  color: var(--white);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

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

.hours-table td {
  padding: 0.7rem 0.5rem;
  font-size: 0.88rem;
  color: var(--off-white);
}

.hours-table td:first-child {
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--grey-light);
  width: 48%;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--white);
}

.hours-table tr.today td {
  color: var(--red-light);
}

.hours-table tr.today td:first-child {
  color: var(--red-light);
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--red-light);
}

.contact-item a {
  color: var(--off-white);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--red-light);
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--red);
  margin: 2rem auto;
  opacity: 0.6;
}

/* ── About Section ─────────────────────────────────────────── */
.about-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: var(--black-mid);
  overflow: hidden;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--black));
  pointer-events: none;
  z-index: 1;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192, 57, 43, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(192, 57, 43, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.about-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-inner h2 {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--grey-light);
  font-weight: 300;
}

.about-gallery {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 3rem;
  border-radius: 4px;
  overflow: hidden;
}

.about-gallery li {
  margin: 0;
  padding: 0;
}

.gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
}

.gallery-trigger:focus-visible {
  outline: 2px solid var(--red-light);
  outline-offset: 3px;
}

.about-gallery img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.8) saturate(0.85);
}

.gallery-trigger:hover img,
.gallery-trigger:focus-visible img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

.about-gallery li:first-child {
  grid-column: 1 / -1;
}

.about-gallery li:first-child img {
  height: 220px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 32px;
  margin: 0 auto 1rem;
  opacity: 0.7;
}

.footer-text {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red-light);
}

/* ============================================================
   MENU PAGE STYLES — v2
   Scoped to .menu-page body class.
   Does NOT touch homepage classes:
     .site-nav, .hero, .about-section, .hours-section, .site-footer
   ============================================================ */

/* ── Menu Page Base ──────────────────────────────────────── */
.menu-page {
  background: var(--black);
  min-height: 100vh;
}

/* ── Top Nav (menu-only fixed bar) ──────────────────────── */
.menu-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-nav .nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.back-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
}

.back-link:hover {
  color: var(--white);
}

.back-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.back-link:hover .back-arrow {
  transform: translateX(-3px);
}

/* ── Hero / Pricing Header ───────────────────────────────── */
.menu-hero {
  padding-top: 60px; /* account for fixed nav */
  text-align: center;
  background: var(--black);
}

/* Full-width image — NO text over it */
.menu-hero-bg {
  position: relative;
  width: 100%;
  height: 95vw;
  max-height: 720px;
  min-height: 360px;
  background-image: url('assets/bbq-grill-mixed-meats.jpeg');
  background-size: cover;
  background-position: center center;
}

.menu-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, transparent, #0a0a0a);
  pointer-events: none;
}

/* Pricing + content sits BELOW the image on solid dark bg */
.menu-hero-content {
  background: var(--black);
  padding: 2.5rem 1.25rem 2rem;
  max-width: 820px;
  margin: 0 auto;
}

/* Eyebrow label */
.menu-hero-eyebrow {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.65rem;
}

.menu-hero-content h1 {
  font-size: clamp(1.8rem, 7vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

/* ── Pricing Row ─────────────────────────────────────────── */
.menu-pricing-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.menu-pricing-card {
  flex: 1;
  min-width: 130px;
  padding: 1.25rem 1rem;
  background: rgba(15, 15, 15, 0.85);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

/* Main pricing card (AYCE price) gets subtle red glow */
.menu-pricing-card--main {
  background: rgba(192, 57, 43, 0.12);
  border-bottom: 2px solid var(--red);
}

.menu-pricing-amount {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--red-light);
  line-height: 1;
  letter-spacing: 0.02em;
}

.menu-pricing-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── Policy Notes ────────────────────────────────────────── */
.menu-policy {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.menu-policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.menu-policy-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(240, 240, 240, 0.85);
  font-family: 'Inter', sans-serif;
}

.menu-policy-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(192, 57, 43, 0.55);
  font-size: 0.7rem;
}

.menu-policy-list li strong {
  color: var(--off-white);
  font-weight: 600;
}

.menu-policy-list li em {
  font-style: italic;
  color: var(--off-white);
}

/* ── Sticky Tab Bar ──────────────────────────────────────── */
.menu-tab-wrapper {
  position: sticky;
  top: 76px;
  z-index: 150;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.6rem 0.75rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  gap: 0.4rem;
  padding: 0 0.25rem;
}

/* Center the tabs only on wider screens where the row fits without scrolling */
@media (min-width: 900px) {
  .menu-tabs {
    justify-content: center;
  }
}

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

.menu-tab {
  flex-shrink: 0;
  scroll-snap-align: center;
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  min-height: 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.menu-tab:hover {
  color: var(--off-white);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
}

/* Active tab — filled red pill */
.menu-tab--active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

/* ── Main Menu Body ──────────────────────────────────────── */
.menu-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 8rem;
}

/* ── Section Layout ──────────────────────────────────────── */
.menu-section {
  margin-top: 3.5rem;
  /* Extra scroll offset so sticky bar doesn't cover heading */
  scroll-margin-top: 120px;
}

/* Red-accented section heading with decorative line */
.menu-section-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--border);
}

.menu-section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  display: block;
}

/* ── Menu Item Grid ──────────────────────────────────────── */
.menu-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Standard item row */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0.9rem 1.1rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.menu-item:hover {
  background: rgba(26, 26, 26, 0.9);
  border-color: rgba(255,255,255,0.14);
}

/* Special item (sauce choice, flavor list) — stacks vertically */
.menu-item--special {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.85rem 1rem;
}

.menu-item-main {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

/* Premium item (Baby Back Ribs) */
.menu-item--premium {
  border-color: rgba(192, 57, 43, 0.25);
  background: rgba(192, 57, 43, 0.06);
}

.menu-item--premium:hover {
  border-color: rgba(192, 57, 43, 0.4);
  background: rgba(192, 57, 43, 0.09);
}

/* Add-on item (Lobster Tail) */
.menu-item--addon {
  border-color: rgba(255,255,255,0.12);
}

/* ── Item Typography ─────────────────────────────────────── */
.item-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.01em;
}

/* Sauce-choice / flavor note under special items */
.item-special-note {
  font-size: 0.72rem;
  color: var(--grey-light);
  font-style: italic;
  line-height: 1.5;
  padding-left: 0.1rem;
}

/* Add-on price tag (Lobster Tail, Ice Cream) */
.item-addon-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  flex-shrink: 0;
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(192, 57, 43, 0.3);
  border-radius: 2px;
  background: rgba(192, 57, 43, 0.1);
}

/* ── Badges ──────────────────────────────────────────────── */
.item-badge {
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 2px;
}

/* Marinated badge — subtle, understated */
.item-badge--marinated {
  color: rgba(240, 240, 240, 0.75);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Spicy badge — red, same shape as Marinated */
.item-badge--spicy {
  color: var(--red-light);
  background: rgba(230, 57, 70, 0.08);
  border: 1px solid rgba(230, 57, 70, 0.35);
}

/* Extra Spicy badge — hotter, more saturated */
.item-badge--extra-spicy {
  color: #fff;
  background: rgba(230, 57, 70, 0.18);
  border: 1px solid rgba(230, 57, 70, 0.6);
}

/* Premium badge — warm red accent */
.item-badge--premium {
  color: var(--red-light);
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid rgba(192, 57, 43, 0.3);
}

/* ── Extras Section ──────────────────────────────────────── */
.menu-section--extras {
  margin-top: 4rem;
  padding-top: 0;
}

.extras-block {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 3px;
}

/* Ssam highlight block */
.extras-block--highlight {
  border-color: rgba(192, 57, 43, 0.2);
  background: rgba(192, 57, 43, 0.05);
}

.extras-block-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 0.4rem;
}

.extras-heading-sub {
  font-size: 0.72rem;
  color: var(--grey);
  letter-spacing: 0.14em;
  font-weight: 400;
  margin-left: 0.4rem;
  text-transform: uppercase;
}

.extras-block-note {
  font-size: 0.73rem;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 0.85rem;
  line-height: 1.5;
}

/* Pill list (sauces, banchan) */
.extras-pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.extras-pill-list li {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--grey-light);
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: rgba(0,0,0,0.3);
}

/* Prose text (Ssam, Drinks) */
.extras-prose {
  font-size: 0.84rem;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── Responsive: Homepage ────────────────────────────────── */
/* (homepage-only rules — kept here so layout media queries stay together) */
@media (min-width: 480px) {
  .about-gallery img {
    height: 180px;
  }
  .about-gallery li:first-child img {
    height: 260px;
  }
}

@media (min-width: 640px) {
  .site-nav {
    padding: 1.25rem 2.5rem;
  }

  .nav-logo {
    height: 40px;
  }

  .hours-content {
    padding: 6rem 2rem;
  }

  .about-section {
    padding: 7rem 2rem;
  }

  .about-gallery img {
    height: 200px;
  }
  .about-gallery li:first-child img {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .hero-bg {
    filter: brightness(0.5) saturate(0.85);
  }

  .about-gallery {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .about-gallery li:first-child {
    grid-column: 1 / -1;
  }

  .about-gallery li:first-child img {
    height: 320px;
  }

  .about-gallery img {
    height: 200px;
  }
}

/* ── Responsive: Menu Page ───────────────────────────────── */
@media (min-width: 540px) {
  /* Slightly wider items on tablet */
  .menu-tab {
    padding: 0 1.25rem;
    font-size: 0.68rem;
  }
}

@media (min-width: 768px) {
  .menu-hero {
    padding-top: 64px;
    padding-bottom: 0;
  }

  .menu-pricing-row {
    flex-wrap: nowrap;
  }

  .menu-pricing-amount {
    font-size: 1.4rem;
  }

  .menu-policy-list li {
    font-size: 0.82rem;
  }

  /* Two-column item layout on tablet+ */
  .menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }

  /* Special items always span full width */
  .menu-item--special,
  .menu-item--addon {
    grid-column: 1 / -1;
  }

  /* Opt-out: stay in a single column even with a note underneath */
  .menu-item--note-inline {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .menu-body {
    padding: 2.5rem 1.5rem 8rem;
  }

  .menu-pricing-amount {
    font-size: 1.6rem;
  }
}

/* ── Utility ─────────────────────────────────────────────── */
.visually-hidden,
.skip-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-nav:focus {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  clip: auto;
  background: var(--red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
}

/* Visible focus rings — white inner ring contrasts against red buttons,
   red outer halo contrasts against dark page bg. WCAG 2.4.11 compliant.
   Outline + box-shadow both follow the element's natural border-radius. */
a:focus-visible,
button:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #c0392b;
}

/* Skip-link targets receive programmatic focus only — no visible ring. */
main:focus,
[tabindex="-1"]:focus {
  outline: none;
}

/* ── Inline-style utility replacements (kept for CSP without 'unsafe-inline') */
.btn--mt-sm { margin-top: 0.5rem; }
.btn--mt-md { margin-top: 1rem; }
.tabs-scrollbar { margin: 0.6rem 1rem 0; }

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .btn {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hours-video-bg video {
    display: none;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Intersection Observer Fade-In ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
