/* =====================================================
   STOKERIDGE TAVERN & GRILL - SHARED STYLES
   Used across: index, menu, bar, events, about, contact
   ===================================================== */

:root {
  --maroon: #5c1a2a;
  --maroon-deep: #3d1019;
  --maroon-light: #7a2e40;
  --maroon-glow: rgba(122, 46, 64, 0.35);
  --cream: #f5f0e8;
  --cream-warm: #efe8db;
  --tan: #e2d5c3;
  --tan-light: #ebe1d3;
  --gold: #c9a14a;
  --charcoal: #2c2c2a;
  --charcoal-warm: #383632;
  --text-dark: #2c2c2a;
  --text-mid: #5a5348;
  --text-light: #8a8278;
  --white: #fdfbf7;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-chalk: 'Covered By Your Grace', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  opacity: 0;
  animation: pageFadeIn 0.6s ease-out 0.05s forwards;
}

/* Prices, phone numbers, year stamps - prevent jitter when values update */
.menu-item-price,
.bourbon-price,
.about-stat-number,
.reviews-score,
.hours-table td:last-child,
.hero-info,
.hero-brandline {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Universal focus ring - accessibility critical */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.menu-item:focus-visible,
.bourbon-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}
nav a:focus-visible {
  outline-offset: 5px;
}

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

/* ── SCROLL PROGRESS INDICATOR (top of every page) ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--maroon), var(--maroon-light), var(--gold));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(122, 46, 64, 0.6);
}

/* ── SCROLL ANIMATION BASE STATES ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.16s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.24s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.32s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.40s; }
.stagger-children > *:nth-child(7) { transition-delay: 0.48s; }
.stagger-children > *:nth-child(8) { transition-delay: 0.56s; }

/* ── NAV - STOKERIDGE BUILDING FACADE ─────────────── */
#mainNav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.building-facade { position: relative; width: 100%; }

/* BRICK STRIP */
.brick-strip {
  position: relative;
  width: 100%;
  height: 55px;
  background-color: #d5cfc5;
  overflow: hidden;
}
.brick-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='18'%3E%3Crect width='38' height='18' fill='%23d5cfc5'/%3E%3Crect x='0.5' y='0.5' width='17' height='7.5' fill='%23863C35'/%3E%3Crect x='19.5' y='0.5' width='17' height='7.5' fill='%236E3540'/%3E%3Crect x='10' y='9.5' width='17' height='7.5' fill='%23944842'/%3E%3Crect x='-8.5' y='9.5' width='17' height='7.5' fill='%237A3838'/%3E%3Crect x='28.5' y='9.5' width='17' height='7.5' fill='%23704045'/%3E%3C/svg%3E");
  background-size: 38px 18px;
  z-index: 0;
}
.brick-strip::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='18'%3E%3Crect x='2' y='1' width='6' height='4' rx='0.2' fill='%23603035' opacity='0.35'/%3E%3Crect x='21' y='2' width='5' height='3' rx='0.2' fill='%23553040' opacity='0.3'/%3E%3Crect x='12' y='11' width='7' height='3.5' rx='0.2' fill='%235A2E30' opacity='0.25'/%3E%3Crect x='30' y='10' width='4' height='4.5' rx='0.2' fill='%23653838' opacity='0.3'/%3E%3Crect x='-5' y='11' width='6' height='3' rx='0.2' fill='%23503540' opacity='0.25'/%3E%3C/svg%3E");
  background-size: 38px 18px;
  z-index: 1;
}

/* NEON SIGN */
.sign-row {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 0 2rem;
  gap: 1px;
}
.sign-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}
.sign-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 460px;
  line-height: 1;
  margin-top: 2px;
}
.sign-text {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 1.5px #1a1a1a;
  paint-order: stroke fill;
  text-shadow:
    0 0 3px rgba(255,255,255,1),
    0 0 8px rgba(255,255,255,0.9),
    0 0 16px rgba(255,255,255,0.6),
    0 0 30px rgba(255,255,255,0.35),
    0 0 50px rgba(255,255,255,0.15);
  transition: all 0.5s;
  animation: signGlow 3s ease-in-out infinite;
  background: #6d3530;
  padding: 2px 6px;
}
@keyframes signGlow {
  0%, 100% {
    text-shadow:
      0 0 3px rgba(255,255,255,1),
      0 0 8px rgba(255,255,255,0.9),
      0 0 16px rgba(255,255,255,0.6),
      0 0 30px rgba(255,255,255,0.35),
      0 0 50px rgba(255,255,255,0.15);
  }
  50% {
    text-shadow:
      0 0 5px rgba(255,255,255,1),
      0 0 12px rgba(255,255,255,1),
      0 0 24px rgba(255,255,255,0.75),
      0 0 45px rgba(255,255,255,0.45),
      0 0 70px rgba(255,255,255,0.2);
  }
}
.sign-stokeridge-text { font-size: 1.15rem; letter-spacing: 7px; }
.sign-tavern-text, .sign-grill-text { font-size: 1.05rem; letter-spacing: 5px; }
.sign-tavern-text { margin-right: auto; }
.sign-grill-text { margin-left: auto; }

/* MAROON AWNING */
.awning-wrap { position: relative; width: 100%; z-index: 3; }
.awning-body {
  position: relative;
  background: linear-gradient(180deg, #72263a 0%, #5c1a2a 35%, #4a1520 100%);
  padding: 0;
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 6% 100%);
  box-shadow: 0 6px 25px rgba(0,0,0,0.35);
}
.awning-body::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 24px,
    rgba(0,0,0,0.05) 24px, rgba(0,0,0,0.05) 25px
  );
  pointer-events: none;
  z-index: 0;
}
.awning-body::after {
  content: '';
  position: absolute; bottom: -4px; left: 6%; right: 6%;
  height: 6px;
  background: linear-gradient(180deg, rgba(0,0,0,0.2), transparent);
  z-index: -1;
}

/* NAV LINKS */
.nav-inner {
  position: relative; z-index: 4;
  max-width: 1000px; margin: 0 auto; padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  height: 46px;
}
.nav-left, .nav-right { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
.nav-left a, .nav-right a {
  color: rgba(245,240,232,0.75); text-decoration: none;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 1.8px;
  text-transform: uppercase; transition: all 0.3s;
  position: relative;
}
.nav-left a::after, .nav-right a:not(.nav-cta)::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: rgba(245,240,232,0.4);
  transform: scaleX(0); transition: transform 0.3s;
  transform-origin: center;
}
.nav-left a:hover::after, .nav-right a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-left a:hover, .nav-right a:hover { color: var(--cream); }

/* Current-page active state */
.nav-left a.active, .nav-right a.active:not(.nav-cta) {
  color: var(--cream);
}
.nav-left a.active::after, .nav-right a.active:not(.nav-cta)::after {
  transform: scaleX(1);
  background: var(--gold);
  box-shadow: 0 0 6px rgba(201,161,74,0.5);
}

.nav-cta {
  background: rgba(245,240,232,0.12) !important; color: var(--cream) !important;
  padding: 0.4rem 1rem; font-weight: 600 !important;
  border: 1px solid rgba(245,240,232,0.3);
  transition: all 0.3s;
}
.nav-cta:hover { background: rgba(245,240,232,0.2) !important; border-color: rgba(245,240,232,0.5); }

/* SCROLLED/COMPACT STATE */
nav.nav-compact .brick-strip { height: 0; overflow: hidden; }
nav.nav-compact .sign-row { opacity: 0; pointer-events: none; }
nav.nav-compact .awning-body { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%); }
nav.nav-compact .nav-inner { height: 40px; }
.brick-strip, .sign-row, .awning-body, .nav-inner {
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  position: absolute; right: 1.5rem; z-index: 10;
}
.mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--cream); margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 650px;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center; overflow: hidden; background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(122, 46, 64, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(201, 161, 74, 0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(92,26,42,0.55) 0%, rgba(44,44,42,0.65) 50%, rgba(90,77,62,0.45) 100%);
  background-size: 200% 200%;
  animation: heroShimmer 18s ease-in-out infinite;
}
@keyframes heroShimmer {
  0%, 100% { background-position: 0% 0%, 100% 100%, 0% 0%; }
  50%      { background-position: 100% 50%, 0% 50%, 100% 100%; }
}

/* HERO VIDEO - environment video that plays behind logo + CTAs */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills hero, crops sides on portrait viewports */
  object-position: center; /* center the focal point */
  opacity: 0.65;
  z-index: 1;
  pointer-events: none;
  /* Subtle warm tint to keep brand feel even before overlay */
  filter: saturate(1.05) contrast(0.98);
}
/* Bump overlay above video so text stays legible */
.hero-overlay { z-index: 2; }
.hero::before, .hero::after { z-index: 3; }
.hero-corner { z-index: 3; }
.hero-content { z-index: 4; }
.hero-scroll { z-index: 4; }
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(44,44,42,0.1) 0%, rgba(44,44,42,0.3) 50%, rgba(44,44,42,0.85) 85%, var(--charcoal) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 0 2rem 5rem;
  max-width: 600px;
}
.hero-logo {
  height: 80px; width: auto;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}

/* Minimal hero - less copy so environment video breathes */
.hero-minimal .hero-logo {
  height: 120px;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 6px 22px rgba(0,0,0,0.55));
}
.hero-brandline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-minimal .hero-buttons {
  animation: fadeUp 0.8s 0.45s forwards;
}
@media (max-width: 768px) {
  .hero-minimal .hero-logo { height: 85px; }
  .hero-brandline { font-size: 0.65rem; letter-spacing: 3px; }
}
.hero-tagline {
  font-family: var(--font-chalk);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--tan);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-buttons .btn { min-width: 200px; text-align: center; }
.hero-info {
  margin-top: 2.5rem;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  opacity: 0; animation: fadeUp 0.8s 0.7s forwards;
}
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2;
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(245,240,232,0.4), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 0.8; transform: scaleY(1.2); }
}

/* ── PAGE HEADER (interior pages) ─────────────────── */
.page-header {
  position: relative;
  padding: 11rem 2rem 4rem;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
  border-bottom: 3px solid var(--maroon);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(122, 46, 64, 0.45) 0%, transparent 65%),
    radial-gradient(ellipse at 20% 20%, rgba(201, 161, 74, 0.12) 0%, transparent 50%);
  z-index: 0;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.page-header-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.page-header .section-label {
  font-family: var(--font-chalk);
  font-size: 1.2rem;
  color: var(--tan);
  margin-bottom: 0.4rem;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}
.page-header p {
  color: rgba(245,240,232,0.72);
  font-size: 1rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}
.page-header .divider {
  background: var(--gold);
  margin: 1rem auto 1.5rem;
}
.page-header .divider.visible { width: 70px; }

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { margin: 0 0.6rem; opacity: 0.5; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-block; padding: 0.75rem 1.8rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn:hover::before { left: 100%; }
.btn-cream { background: var(--cream); color: var(--maroon-deep); }
.btn-cream:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.3); }
.btn-ghost:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn-maroon { background: var(--maroon); color: var(--cream); }
.btn-maroon:hover { background: var(--maroon-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(92,26,42,0.35); }

/* ── IMAGE STRIPS & GRIDS ─────────────────────────── */
.img-strip-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.img-strip-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.img-strip-2 { display: grid; grid-template-columns: 1fr 1fr; }

.img-cell {
  position: relative; overflow: hidden; background: var(--charcoal-warm);
  aspect-ratio: 1;
}
.img-cell.wide { aspect-ratio: 16/9; }
.img-cell.tall { aspect-ratio: 3/4; }
.img-cell.banner { aspect-ratio: 21/9; }
.img-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.img-cell:hover img { transform: scale(1.05); }
.img-cell-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(44,44,42,0.85));
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.5s;
}
.img-cell:hover .img-cell-overlay,
.img-cell.visible .img-cell-overlay {
  transform: translateY(0);
  opacity: 1;
}
.img-cell-label { font-family: var(--font-chalk); font-size: 1.2rem; color: var(--cream); }
.img-cell-desc { font-size: 0.78rem; color: rgba(245,240,232,0.65); }

/* Polished placeholder */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.6rem;
  color: rgba(245,240,232,0.35);
  font-size: 0.68rem;
  letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  padding: 1.25rem;
  text-align: center;
  border: 1px dashed rgba(245,240,232,0.12);
  background:
    radial-gradient(circle at 50% 40%, rgba(245,240,232,0.04), transparent 60%),
    var(--charcoal-warm);
}
.img-placeholder::before {
  content: '';
  display: block;
  width: 34px; height: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a14a' stroke-width='1.5'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Ccircle cx='12' cy='12' r='3.5'/%3E%3Cpath d='M8 5l1.5-2h5L16 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.5;
}
.img-placeholder .ph-label {
  color: var(--gold);
  opacity: 0.7;
  font-family: var(--font-chalk);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: none;
}

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 5rem 2rem; position: relative; }
.section-inner { max-width: 1080px; margin: 0 auto; position: relative; }

.bg-warm { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-wood {
  background: var(--charcoal-warm); color: var(--cream);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0,0,0,0.05) 80px, rgba(0,0,0,0.05) 81px);
}
.bg-dark {
  background: var(--charcoal); color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-label {
  font-family: var(--font-chalk);
  font-size: 1.15rem;
  color: var(--maroon);
  margin-bottom: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.bg-wood .section-label, .bg-dark .section-label { color: var(--tan); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: var(--charcoal);
}
.bg-wood .section-title, .bg-dark .section-title { color: var(--cream); }

.section-text {
  color: var(--text-mid);
  font-size: 1rem;
  max-width: 580px;
  line-height: 1.85;
}
.bg-wood .section-text, .bg-dark .section-text { color: rgba(245,240,232,0.72); }

.divider {
  width: 40px; height: 3px;
  background: var(--maroon);
  margin: 1rem 0 1.5rem;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.divider.visible { width: 60px; }
.bg-wood .divider, .bg-dark .divider { background: var(--maroon-light); }

/* Ornamental divider - fork/knife */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto 1.75rem;
  color: var(--gold);
  opacity: 0.65;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}
.ornament svg { width: 22px; height: 22px; opacity: 0.9; }

/* ── ABOUT ────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-top: 2rem; }
.about-image {
  aspect-ratio: 4/3;
  background: var(--charcoal-warm);
  overflow: hidden;
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,161,74,0.25);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.about-stats > div { text-align: center; }
.about-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.2rem;
  font-weight: 500;
}

/* "What Makes Us Different" */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.highlight-card {
  padding: 1.75rem 1.25rem;
  background: var(--white);
  border-top: 3px solid var(--maroon);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.highlight-card-icon {
  width: 44px; height: 44px;
  margin: 0 auto 0.75rem;
  color: var(--maroon);
}
.highlight-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.highlight-card-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ── MENU ─────────────────────────────────────────── */
.menu-cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.75rem;
}
.menu-cat-btn {
  padding: 0.55rem 1.25rem;
  background: transparent;
  border: 1px solid var(--tan);
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.73rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  min-height: 40px;
  transition: background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease,
              transform 0.25s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.menu-cat-btn:hover {
  border-color: var(--maroon);
  color: var(--maroon);
  transform: translateY(-1px);
}
.menu-cat-btn.active {
  border-color: var(--maroon);
  color: var(--white);
  background: var(--maroon);
  box-shadow: 0 4px 12px rgba(92,26,42,0.25);
}
/* Dark-section variant for bar page */
.bg-wood .menu-cat-btn,
.bg-dark .menu-cat-btn {
  border-color: rgba(245,240,232,0.2);
  color: rgba(245,240,232,0.6);
}
.bg-wood .menu-cat-btn:hover,
.bg-dark .menu-cat-btn:hover {
  border-color: var(--gold);
  color: var(--cream);
  background: rgba(201,161,74,0.08);
}
.bg-wood .menu-cat-btn.active,
.bg-dark .menu-cat-btn.active {
  border-color: var(--gold);
  color: var(--charcoal);
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(201,161,74,0.3);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
  transition: opacity 0.25s ease;
}
.menu-grid.switching { opacity: 0; }

.menu-item {
  padding: 1.6rem 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--tan-light);
  /* Spring-physics feel - slight overshoot on hover */
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease;
  opacity: 0;
  transform: translateY(15px);
  animation: menuItemIn 0.5s forwards;
  position: relative;
  overflow: hidden;
}
.menu-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--maroon);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.35s ease, width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes menuItemIn { to { opacity: 1; transform: translateY(0); } }
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(44, 26, 18, 0.10),
              0 3px 8px rgba(44, 26, 18, 0.05);
  border-color: var(--tan);
}
.menu-item:hover::before { width: 84px; }
.menu-item:hover::after { opacity: 0.65; width: 72px; }

.menu-item-header {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  flex-shrink: 0;
  letter-spacing: 0.1px;
  line-height: 1.25;
  transition: color 0.3s ease;
}
.menu-item-leader {
  flex: 1;
  height: 1px;
  border-bottom: 1.5px dotted var(--tan);
  transform: translateY(-5px);
  min-width: 16px;
  opacity: 0.85;
}
.menu-item-price {
  color: var(--maroon);
  font-weight: 700;
  white-space: nowrap;
  font-size: 1rem;
  font-family: var(--font-display);
  flex-shrink: 0;
  letter-spacing: 0.2px;
}
.menu-item-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
  opacity: 0.82;
  max-width: 52ch;
}
.menu-item:hover .menu-item-name {
  color: var(--maroon-deep);
}

.menu-link {
  display: inline-block; margin-top: 1.75rem;
  color: var(--maroon);
  text-decoration: none;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 2px solid var(--maroon);
  padding-bottom: 2px;
  transition: letter-spacing 0.3s;
}
.menu-link:hover { letter-spacing: 2.5px; }

/* ── BOURBON / BAR ────────────────────────────────── */
.bourbon-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: stretch;
}
.bourbon-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.bourbon-card {
  padding: 1.35rem 0.9rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  text-align: center;
  border: 1px solid rgba(245,240,232,0.08);
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.4s ease;
  position: relative;
}
.bourbon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
  pointer-events: none;
}
.bourbon-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0.7;
}
.bourbon-card:hover {
  border-color: rgba(201,161,74,0.25);
  transform: translateY(-4px);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.bourbon-card:hover::before {
  border-color: rgba(201,161,74,0.45);
  box-shadow: inset 0 0 22px rgba(201,161,74,0.1);
}
.bourbon-card:hover::after { width: 50%; }

.bourbon-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.2px;
  margin-bottom: 0.25rem;
}
.bourbon-detail {
  font-size: 0.65rem;
  color: rgba(245,240,232,0.42);
  letter-spacing: 1.3px;
  text-transform: uppercase;
  font-weight: 500;
}
.bourbon-price {
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}
.bourbon-image {
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
  min-height: 0;     /* let grid stretch determine height; don't push the row taller */
  align-self: stretch;
}
.bourbon-image::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,161,74,0.2);
  z-index: 1;
}
/* Image fills the grid-stretched box without dictating its own height -
   works for the static <img>, the JS-injected <img> on tab switch, and the
   placeholder shown for tequila/drafts tabs. */
.bourbon-image > img,
.bourbon-image > .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bourbon-note {
  margin-top: 1.25rem;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
}

/* ── FULL WIDTH QUOTE BREAK ───────────────────────── */
.quote-break {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: var(--charcoal-warm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quote-break-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(92,26,42,0.45), rgba(44,44,42,0.65));
  z-index: 1;
}
.quote-break img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.quote-break .img-placeholder,
.quote-break img {
  transition: transform 0.1s linear;
}
.quote-break-text {
  position: relative; z-index: 2;
  text-align: center; padding: 0 2rem;
}
.quote-break-text p {
  font-family: var(--font-chalk);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  color: var(--cream);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.quote-break.visible .quote-break-text p {
  opacity: 1; transform: translateY(0) scale(1);
}
.quote-break-text span {
  display: block; margin-top: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  opacity: 0;
  transition: opacity 0.6s 0.3s;
}
.quote-break.visible .quote-break-text span { opacity: 1; }

/* ── EVENTS ───────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.event-card {
  padding: 1.5rem;
  background: var(--white);
  border-top: 4px solid var(--maroon);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.event-card::after {
  content: '♪';
  position: absolute;
  top: 0.75rem; right: 0.9rem;
  font-size: 1rem;
  color: var(--maroon);
  opacity: 0.15;
  transition: opacity 0.3s;
}
.event-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.event-card:hover::after { opacity: 0.45; }
.event-day {
  font-family: var(--font-chalk);
  font-size: 1.05rem;
  color: var(--maroon);
  margin-bottom: 0.3rem;
}
.event-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.event-desc {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.55;
}

.catering-note {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  background: rgba(92,26,42,0.06);
  border-left: 3px solid var(--maroon);
  color: var(--text-mid);
  font-size: 0.9rem;
}
.catering-note a {
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
}

/* Lineup panel */
.lineup-panel {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--tan);
  border-top: 3px solid var(--maroon);
  text-align: center;
}
.lineup-panel h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.lineup-panel p {
  color: var(--text-mid);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 0 auto 1rem;
}

/* GAS PUMP ICONS */
.events-section-wrap {
  position: relative;
  overflow: visible;
}
.pump-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  width: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}
.pump-icon-left  { left:  calc((100vw - 1080px) / 4 * -1 - 20px); }
.pump-icon-right { right: calc((100vw - 1080px) / 4 * -1 - 20px); }
@media (max-width: 1300px) {
  .pump-icon-left  { left:  -60px; }
  .pump-icon-right { right: -60px; }
}

/* ── REVIEWS ─────────────────────────────────────── */
.reviews-header { text-align: center; margin-bottom: 2rem; }
.reviews-header .divider { margin-left: auto; margin-right: auto; }
.reviews-rating {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; margin-bottom: 2rem;
}
.reviews-stars { color: #e8a020; font-size: 1.4rem; letter-spacing: 2px; }
.reviews-score {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--charcoal);
}
.reviews-count { font-size: 0.82rem; color: var(--text-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.review-card {
  padding: 1.5rem;
  background: var(--white);
  border-left: 3px solid var(--maroon);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}
.review-card-stars { color: #e8a020; font-size: 0.85rem; margin-bottom: 0.5rem; }
.review-card-text {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.65; font-style: italic;
}
.review-card-author {
  margin-top: 0.75rem; font-size: 0.75rem;
  font-weight: 600; color: var(--charcoal);
  letter-spacing: 0.5px;
}
.review-card-source { font-size: 0.68rem; color: var(--text-light); }
.reviews-cta { text-align: center; }
.reviews-cta a {
  color: var(--maroon);
  text-decoration: none;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-bottom: 2px solid var(--maroon);
  padding-bottom: 2px;
}

/* ── SPECIALS ────────────────────────────────────── */
.specials-header { text-align: center; margin-bottom: 2rem; }
.specials-header .divider { margin-left: auto; margin-right: auto; }
.specials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}
.special-card {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,240,232,0.1);
  text-align: center;
  transition: all 0.35s;
  position: relative;
}
.special-card:hover {
  border-color: rgba(201,161,74,0.3);
  transform: translateY(-3px);
  box-shadow: 0 0 22px rgba(201,161,74,0.1);
}
.special-day {
  font-family: var(--font-chalk);
  font-size: 1.3rem;
  color: var(--tan);
  margin-bottom: 0.3rem;
}
.special-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.special-desc {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.55;
}
.special-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tan);
  margin-top: 0.5rem;
}

/* ── CONTACT ──────────────────────────────────────── */
.contact-header { text-align: center; margin-bottom: 2.5rem; }
.contact-header .section-label,
.contact-header .section-title { text-align: center; }
.contact-header .section-label { justify-content: center; display: inline-flex; }
.contact-header .divider { margin-left: auto; margin-right: auto; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-card {
  text-align: center;
  padding: 1.75rem 1rem 1.5rem;
  background: var(--cream);
  border-top: 3px solid var(--maroon);
  transition: transform 0.3s, box-shadow 0.3s;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.contact-card-icon {
  width: 28px; height: 28px;
  margin: 0 auto 0.6rem;
  color: var(--maroon);
  opacity: 0.75;
}
.contact-card-label {
  font-family: var(--font-chalk);
  font-size: 1.1rem;
  color: var(--maroon);
  margin-bottom: 0.4rem;
}
.contact-card-value {
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-card-value a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-card-value a:hover { color: var(--maroon); }

.hours-map-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 420px;
  margin: 0 auto;
}
.hours-table tr { border-bottom: 1px solid var(--tan-light); transition: background 0.2s; }
.hours-table tr.today {
  background: rgba(92,26,42,0.06);
}
.hours-table tr.today td {
  color: var(--maroon);
  font-weight: 600;
}
.hours-table td { padding: 0.65rem 0.5rem; font-size: 0.92rem; }
.hours-table td:first-child {
  font-weight: 500;
  color: var(--charcoal);
}
.hours-table td:last-child {
  color: var(--text-mid);
  text-align: right;
}

.open-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  background: rgba(92,26,42,0.06);
  border-left: 3px solid var(--maroon);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.open-indicator .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #b92020;
}
.open-indicator.is-open .dot {
  background: #28a745;
  box-shadow: 0 0 0 0 rgba(40,167,69,0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(40,167,69,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(40,167,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(40,167,69,0); }
}

.sunday-note {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(92,26,42,0.06);
  border-left: 3px solid var(--maroon);
  font-size: 0.85rem;
  color: var(--maroon);
  font-weight: 500;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--tan);
  height: 100%;
  min-height: 280px;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 280px;
  border: none;
}

/* Contact form - restaurant-polish */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding: 2.25rem 2.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--tan-light);
  border-top: 3px solid var(--maroon);
  box-shadow: 0 10px 40px rgba(44,26,18,0.05);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -3px; right: 0;
  width: 80px; height: 3px;
  background: var(--gold);
}
.contact-form .row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.contact-form .field {
  position: relative;
}
.contact-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.contact-form label .required {
  color: var(--maroon);
  margin-left: 0.15rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--cream);
  border: 1px solid var(--tan);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.25s ease,
              background 0.25s ease,
              box-shadow 0.25s ease;
  min-height: 44px; /* touch target */
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--text-light);
  opacity: 0.7;
}
.contact-form input:hover,
.contact-form textarea:hover {
  border-color: var(--text-light);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--maroon);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(92,26,42,0.1);
}
/* Invalid only after user has interacted */
.contact-form input.touched:invalid,
.contact-form textarea.touched:invalid {
  border-color: #b92020;
  background: rgba(185, 32, 32, 0.03);
}
.contact-form input.touched:invalid:focus,
.contact-form textarea.touched:invalid:focus {
  box-shadow: 0 0 0 3px rgba(185, 32, 32, 0.1);
}
.contact-form .field-error {
  display: none;
  font-size: 0.78rem;
  color: #b92020;
  margin-top: 0.4rem;
  font-weight: 500;
}
.contact-form .field-error::before {
  content: '⚠ ';
  margin-right: 0.25rem;
}
.contact-form .field.has-error .field-error { display: block; }
.contact-form .field-helper {
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.35rem;
  font-style: italic;
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}
.contact-form .form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--tan-light);
}
.contact-form small {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.5;
}
.contact-form .form-status {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  min-height: 1.2em;
  font-weight: 500;
}
.contact-form .form-status.success {
  color: #2d6a3d;
}
.contact-form .form-status.error {
  color: #b92020;
}

@media (max-width: 640px) {
  .contact-form { padding: 1.75rem 1.25rem 1.5rem; }
  .contact-form .row-2 { grid-template-columns: 1fr; gap: 1rem; }
}

.directions-box {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.75rem;
  background: var(--cream);
  border-left: 3px solid var(--maroon);
}
.directions-box h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.directions-box p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── CTA BANNER ───────────────────────────────────── */
.cta-banner {
  padding: 4rem 2rem;
  background: var(--maroon);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,161,74,0.15) 0%, transparent 60%),
    linear-gradient(135deg, rgba(0,0,0,0.15), transparent 50%);
  pointer-events: none;
}
.cta-banner .cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 1.5rem;
}
.cta-banner .btn-cream { background: var(--cream); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  padding: 5.5rem 2rem 1.75rem;
  background: var(--charcoal);
  border-top: 3px solid var(--maroon);
  position: relative;
  color: rgba(245,240,232,0.7);
}
footer::before {
  content: '';
  position: absolute;
  top: 3px; left: 0; right: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='8'%3E%3Crect width='38' height='8' fill='%23d5cfc5'/%3E%3Crect x='0' y='0' width='17' height='8' fill='%23863C35'/%3E%3Crect x='19' y='0' width='17' height='8' fill='%236E3540'/%3E%3C/svg%3E");
  background-size: 38px 8px;
  opacity: 0.3;
}
footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(122,46,64,0.22) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Main grid - 3 columns on desktop */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr;
  gap: 3.5rem 4.5rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,161,74,0.16);
}

/* Column headings - now unmistakably headings, not links */
.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin: 0 0 2.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,161,74,0.22);
  display: block;
  position: relative;
}
.footer-col-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ── COLUMN 1: BRAND ─────────────────────────────── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.footer-brand > a:first-child {
  display: inline-block;
  margin-bottom: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.footer-brand > a:first-child:hover { transform: translateY(-2px); }
.footer-logo {
  height: 84px;
  width: auto;
  opacity: 0.92;
  transition: opacity 0.3s ease;
  display: block;
  max-width: 100%;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4));
}
.footer-brand > a:first-child:hover .footer-logo { opacity: 1; }

.footer-tagline {
  font-family: var(--font-chalk);
  font-size: 1.5rem;
  color: var(--tan);
  opacity: 0.88;
  line-height: 1.35;
  margin: 0 0 1.5rem;
  max-width: 280px;
}
.footer-brand-meta {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  font-weight: 500;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  width: 100%;
  max-width: 260px;
}

/* ── COLUMN 2: EXPLORE ───────────────────────────── */
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  color: rgba(245,240,232,0.72);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color 0.3s ease, transform 0.3s ease, padding-left 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  padding-left: 0;
  line-height: 1.3;
}
.footer-nav a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-block;
  flex-shrink: 0;
}
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--cream);
  padding-left: 0.35rem;
}
.footer-nav a:hover::before,
.footer-nav a:focus-visible::before { width: 20px; }

/* Active state - distinctly NOT gold, so it doesn't blend with the heading accent */
.footer-nav a.active {
  color: var(--cream);
  font-weight: 600;
}
.footer-nav a.active::before {
  width: 22px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,161,74,0.45);
}

/* ── COLUMN 3: VISIT US ──────────────────────────── */
.footer-visit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
}
.footer-visit p,
.footer-visit address {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245,240,232,0.78);
  font-style: normal;
  margin: 0;
}
.footer-visit a {
  color: rgba(245,240,232,0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-visit a:hover { color: var(--gold); }
.footer-visit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.footer-visit-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 0.15rem;
}
.footer-hours-chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(201,161,74,0.4);
  background: rgba(201,161,74,0.05);
  margin-top: 0.25rem;
  align-self: flex-start;
}

/* ── SOCIAL ROW (inside Visit column) ────────────── */
.footer-social {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  width: 100%;
}
.footer-social a {
  color: rgba(245,240,232,0.55);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(245,240,232,0.18);
  border-radius: 50%;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201,161,74,0.3);
}
.footer-social svg { width: 17px; height: 17px; }

/* ── BOTTOM BAR ──────────────────────────────────── */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 0.76rem;
  color: rgba(245,240,232,0.42);
  letter-spacing: 0.3px;
  margin: 0;
}
.footer-credit {
  font-size: 0.66rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0;
}
.footer-credit .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 0.6rem;
  vertical-align: middle;
  opacity: 0.7;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 960px) {
  footer { padding: 4rem 1.5rem 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2.5rem;
    padding-bottom: 2.5rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-logo { height: 72px; }
  .footer-tagline { font-size: 1.35rem; }
  .footer-brand-meta { max-width: none; }
}
@media (max-width: 520px) {
  footer { padding: 3.25rem 1.25rem 1.5rem; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }
  .footer-brand { grid-column: auto; align-items: flex-start; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
  }
  .footer-logo { height: 64px; }
  .footer-tagline { font-size: 1.25rem; }
  .footer-col-heading { margin-bottom: 1.75rem; }
}

/* ── BACK TO TOP ──────────────────────────────────── */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 44px; height: 44px;
  background: var(--maroon);
  color: var(--cream);
  border: 1px solid var(--maroon-light);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 90;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}
.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--maroon-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}
.back-to-top svg { width: 18px; height: 18px; }

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

/* =====================================================
   LANDING PAGE VISUAL ENHANCEMENTS
   ===================================================== */

/* ── HERO ORNAMENT TRIM ──────────────────────────── */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,161,74,0.15) 20%,
    rgba(201,161,74,0.5) 50%,
    rgba(201,161,74,0.15) 80%,
    transparent 100%);
  z-index: 3;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(201,161,74,0.08) 60%,
    rgba(201,161,74,0.15) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Corner ornaments in hero */
.hero-corner {
  position: absolute;
  width: 56px; height: 56px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
}
.hero-corner svg { width: 100%; height: 100%; }
.hero-corner.tl { top: 1.5rem; left: 1.5rem; }
.hero-corner.tr { top: 1.5rem; right: 1.5rem; transform: scaleX(-1); }
.hero-corner.bl { bottom: 6rem; left: 1.5rem; transform: scaleY(-1); }
.hero-corner.br { bottom: 6rem; right: 1.5rem; transform: scale(-1, -1); }

/* Subtle ember glow behind hero content */
.hero-minimal .hero-content {
  position: relative;
}
.hero-minimal .hero-content::before {
  content: '';
  position: absolute;
  top: 40%; left: 50%;
  width: 520px; height: 260px;
  background: radial-gradient(ellipse, rgba(201,161,74,0.08) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* ── MARQUEE (scrolling brand strip) ─────────────── */
.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(201,161,74,0.25);
  border-bottom: 1px solid rgba(201,161,74,0.25);
  box-shadow:
    inset 0 8px 20px -8px rgba(0,0,0,0.6),
    inset 0 -8px 20px -8px rgba(0,0,0,0.6);
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--charcoal), transparent);
}
.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--charcoal), transparent);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: marqueeScroll 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  color: var(--cream);
  flex-shrink: 0;
}
.marquee-item::after {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,161,74,0.5);
  flex-shrink: 0;
}

/* ── STAT BAND ────────────────────────────────────── */
.stat-band {
  background: var(--charcoal);
  color: var(--cream);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,161,74,0.18);
  border-bottom: 1px solid rgba(201,161,74,0.18);
}
.stat-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(122,46,64,0.35) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stat-band-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  z-index: 1;
}
.stat-item {
  position: relative;
  padding: 0 1rem;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 15%; bottom: 15%;
  right: -0.25rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(201,161,74,0.3), transparent);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
  display: block;
  text-shadow: 0 2px 20px rgba(201,161,74,0.25);
}
.stat-label {
  margin-top: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
  font-weight: 500;
}
.stat-plus {
  color: var(--gold);
  font-size: 0.7em;
  margin-left: 0.1em;
  vertical-align: super;
  opacity: 0.75;
}

/* ── OVERSIZED EDITORIAL HEADLINE ────────────────── */
.editorial-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.bg-wood .editorial-heading,
.bg-dark .editorial-heading { color: var(--cream); }

/* ── REVIEWS SECTION UPGRADE ─────────────────────── */
.reviews-upgraded .review-card {
  padding: 2rem 1.75rem 1.75rem;
  border-left: none;
  border-top: 3px solid var(--maroon);
  position: relative;
  background: var(--white);
}
.reviews-upgraded .review-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  font-weight: 700;
}
.reviews-upgraded .review-card-text {
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.reviews-upgraded .review-card-author {
  color: var(--maroon);
  font-weight: 700;
}

/* ── TRUST/AWARDS ROW ─────────────────────────────── */
.trust-row {
  padding: 3rem 2rem;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--tan-light);
  border-bottom: 1px solid var(--tan-light);
}
.trust-label {
  font-family: var(--font-chalk);
  font-size: 1.2rem;
  color: var(--maroon);
  margin-bottom: 1.25rem;
}
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem 3rem;
  max-width: 1080px;
  margin: 0 auto;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.trust-badge:hover { opacity: 1; transform: translateY(-2px); }
.trust-badge-icon {
  width: 44px; height: 44px;
  color: var(--maroon);
}
.trust-badge-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}
.trust-badge-label {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 600;
}
.trust-stars {
  color: #e8a020;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* ── SECTION RHYTHM UPGRADE ──────────────────────── */
.section-breathe { padding: 7rem 2rem; }

/* Mobile responsive for all new components */
@media (max-width: 768px) {
  .hero-corner { width: 36px; height: 36px; }
  .hero-corner.tl, .hero-corner.tr { top: 0.75rem; }
  .hero-corner.tl { left: 0.75rem; }
  .hero-corner.tr { right: 0.75rem; }
  .hero-corner.bl, .hero-corner.br { display: none; }
  .marquee-item { font-size: 1.15rem; gap: 2.5rem; }
  .marquee-track { gap: 2.5rem; }
  .stat-band { padding: 3.5rem 1.25rem; }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(even)::after { display: none; }
  .section-breathe { padding: 4rem 1.25rem; }
  .trust-badges { gap: 1.75rem 2rem; }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .mobile-toggle { display: block; min-width: 44px; min-height: 44px; padding: 8px; }

  /* MOBILE DROPDOWN - single unified panel (combines navLeft + navRight visually) */
  /* The two ULs are kept as siblings but the BACKGROUND lives on nav-inner,
     so they read as ONE continuous dark panel with consistent divider lines. */
  .nav-left, .nav-right {
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    /* Closed state: collapsed, transparent, non-interactive */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      visibility 0s linear 0.4s;
  }
  /* Open state: slides down smoothly */
  .nav-left.open, .nav-right.open {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }
  /* When menu-open is set, awning becomes rectangle, nav-inner expands to wrap, and
     the dark dropdown background lives on nav-inner so both ULs join seamlessly.
     Using !important here because the base .nav-inner rule (line ~261) has
     `gap: 2rem; padding: 0 2rem` and same/lower-specificity rules in this same
     media block are competing - !important guarantees the dropdown styling wins
     and stays clean on every browser. */
  #mainNav.menu-open .awning-body {
    clip-path: none !important;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5);
  }
  #mainNav.menu-open .nav-inner {
    flex-wrap: wrap !important;
    height: auto !important;
    align-items: stretch !important;
    background: var(--charcoal) !important;
    border-bottom: 3px solid var(--maroon);
    padding: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    gap: 0 !important;
  }

  /* Each list item - full-width row */
  .nav-left li, .nav-right li { width: 100%; list-style: none; }

  /* Links - uniform divider lines so the two-UL boundary is invisible.
     Fixed height + flush padding so every row is exactly the same size. */
  .nav-left a, .nav-right a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 52px;
    min-height: 52px;
    padding: 0 1.5rem;
    margin: 0;
    color: rgba(245, 240, 232, 0.92);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    text-decoration: none;
    box-sizing: border-box;
  }
  /* Lists themselves must have zero margin so the seam between nav-left and
     nav-right is invisible - otherwise the UA default UL margin shows up as
     an extra gap between Events and About. */
  .nav-left, .nav-right {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;        /* override the 1.5rem desktop gap */
    row-gap: 0 !important;
  }
  .nav-left li, .nav-right li { margin: 0 !important; }
  .nav-left a::after, .nav-right a::after { display: none; }
  .nav-left a:active, .nav-right a:active {
    background: rgba(245, 240, 232, 0.04);
  }
  /* Active page indicator - gold left bar */
  .nav-left a.active, .nav-right a.active:not(.nav-cta) {
    color: var(--gold);
    box-shadow: inset 3px 0 0 var(--gold);
  }

  /* Call Us - gold pill button anchored to the end of the dropdown.
     Reduced top margin so it reads as part of the same list, not a floating
     CTA disconnected from the nav items above it. */
  .nav-right .nav-cta {
    background: var(--gold) !important;
    color: var(--charcoal) !important;
    border: none !important;
    border-bottom: none !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0.65rem 1.5rem 0.85rem !important;
    padding: 0.9rem 1.25rem !important;
    width: calc(100% - 3rem) !important;
    text-align: center;
    justify-content: center;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    box-shadow: 0 4px 14px rgba(201, 161, 74, 0.35);
  }
  .nav-right .nav-cta:active {
    background: rgba(201, 161, 74, 0.85) !important;
  }

  /* HERO VIDEO - bulletproof landscape display on mobile */
  .hero { overflow: hidden; }
  .hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  .brick-strip { height: 36px; }
  .sign-tavern-text, .sign-grill-text { display: none; }
  .sign-stokeridge-text { font-size: 0.85rem; letter-spacing: 5px; }
  .nav-inner { height: 40px; }
  .awning-body { clip-path: polygon(0% 0%, 100% 0%, 96% 100%, 4% 100%); }
  .hero-logo { height: 60px; }
  .pump-icon { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .specials-grid { grid-template-columns: 1fr; }
  .about-split, .bourbon-split { grid-template-columns: 1fr; gap: 2rem; }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .hours-map-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .img-strip-4 { grid-template-columns: repeat(2, 1fr); }
  .img-strip-3 { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.25rem; }
  .quote-break { height: 250px; }
  .about-stats { gap: 1.5rem; }
  .about-stat-number { font-size: 2rem; }
  .page-header { padding: 9rem 1.25rem 3rem; }
  .contact-form .row-2 { grid-template-columns: 1fr; }
  .back-to-top { right: 1rem; bottom: 1rem; width: 40px; height: 40px; }

  .reveal { transform: translateY(25px); }
  .reveal-left { transform: translateX(-30px); }
  .reveal-right { transform: translateX(30px); }
}

/* =====================================================
   MOBILE OPTIMIZATION PASS
   All rules below apply ONLY at 1023px and under.
   Desktop (1024px+) is untouched.
   ===================================================== */

/* Sticky mobile CTA bar - hidden by default, shown under 768px */
.mobile-cta-bar { display: none; }

/* TABLET RANGE (768-1023px) */
@media (max-width: 1023px) {
  /* Tighter section rhythm than desktop */
  .section-breathe { padding: 5rem 2rem; }
  .stat-band { padding: 4rem 2rem; }
  .trust-row { padding: 2.5rem 1.5rem; }

  /* Editorial headings scale down proportionally */
  .editorial-heading {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    line-height: 1.1;
  }

  /* Hero brand-line tighter */
  .hero-brandline { font-size: 0.7rem; letter-spacing: 3.5px; }

  /* Marquee - smaller phrase, tighter */
  .marquee { padding: 1rem 0; }
  .marquee-item { font-size: 1.25rem; gap: 2.75rem; }
  .marquee-track { gap: 2.75rem; }
}

/* ── MOBILE (≤767px) ─────────────────────────────── */
@media (max-width: 767px) {
  /* Body padding-bottom so content isn't hidden by sticky CTA bar */
  body { padding-bottom: 64px; }

  /* Sticky CTA bar - appears */
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 95;
    background: var(--maroon);
    border-top: 1px solid rgba(201, 161, 74, 0.4);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    padding: 0.75rem 0.5rem;
    color: var(--cream);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-cta-btn + .mobile-cta-btn {
    border-left: 1px solid rgba(245, 240, 232, 0.18);
  }
  .mobile-cta-btn:active { background: var(--maroon-deep); }
  .mobile-cta-btn svg {
    width: 18px; height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
  }
  .mobile-cta-btn.primary {
    background: rgba(201, 161, 74, 0.1);
    color: var(--cream);
  }
  .mobile-cta-btn.primary:active { background: rgba(201, 161, 74, 0.2); }

  /* Lift back-to-top above sticky bar */
  .back-to-top {
    bottom: 5rem;
    right: 1rem;
    width: 44px; height: 44px;
  }

  /* HERO - shorter on mobile so the landscape (16:9) video reads as a wide cinematic
     background rather than a cropped vertical strip. 60vh + min/max keeps content
     comfortably visible while making the video display feel landscape. */
  .hero {
    min-height: 480px;
    height: 60vh;
    max-height: 620px;
    overflow: hidden;
  }
  .hero-video {
    object-fit: cover !important;
    object-position: center !important;
    width: 100% !important;
    height: 100% !important;
  }
  /* On true portrait phones (~375px wide), pull content up a touch so the
     reduced hero doesn't look bottom-heavy */
  .hero-content { padding-bottom: 2.5rem; }
  .hero-minimal .hero-logo { height: 80px; margin-bottom: 1rem; }
  .hero-brandline {
    font-size: 0.62rem;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.75rem;
  }
  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content { padding: 0 1.25rem 4rem; }

  /* Hero corners - only show top, smaller */
  .hero-corner { width: 32px; height: 32px; opacity: 0.5; }
  .hero-corner.tl { top: 0.6rem; left: 0.6rem; }
  .hero-corner.tr { top: 0.6rem; right: 0.6rem; }

  /* PAGE HEADERS (interior pages) - tighter */
  .page-header { padding: 8rem 1.25rem 2.5rem; }
  .page-header h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .page-header p { font-size: 0.95rem; }
  .breadcrumb { font-size: 0.65rem; letter-spacing: 1.5px; }

  /* MARQUEE - tighter on phone */
  .marquee { padding: 0.85rem 0; }
  .marquee-item { font-size: 1.05rem; gap: 2rem; }
  .marquee-track { gap: 2rem; animation-duration: 28s; }
  .marquee::before, .marquee::after { width: 60px; }

  /* STAT BAND - proper 2x2 grid with tight rhythm */
  .stat-band { padding: 3rem 1.25rem; }
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem 0.5rem; }
  .stat-num { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .stat-label { font-size: 0.65rem; letter-spacing: 2px; }
  .stat-item:nth-child(odd):not(:last-child)::after { display: none; }
  .stat-item:nth-child(even)::after { display: none; }

  /* SECTIONS - generous but not bloated */
  section { padding: 3.5rem 1.25rem; }
  .section-breathe { padding: 4rem 1.25rem; }
  .section-title, .editorial-heading {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.15;
    word-break: break-word;
  }

  /* EDITORIAL SPLITS - already stack, but tighten image cap */
  .about-split, .bourbon-split { gap: 1.75rem; }
  .about-image { max-height: 360px; }

  /* HIGHLIGHT CARDS (about page) - single column */
  .highlights-grid { grid-template-columns: 1fr; gap: 1rem; }
  .highlight-card { padding: 1.5rem 1.25rem; }

  /* MENU - touch-friendly tabs and items */
  .menu-cats { gap: 0.4rem; margin: 1.25rem 0; }
  .menu-cat-btn {
    padding: 0.65rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 1.2px;
    min-height: 44px;
  }
  .menu-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .menu-item { padding: 1.35rem 1.25rem; }
  .menu-item-name { font-size: 1rem; }
  .menu-item-price { font-size: 0.95rem; }
  .menu-item-desc { font-size: 0.85rem; }

  /* BAR / BOURBON cards */
  .bourbon-list { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .bourbon-card { padding: 1rem 0.6rem; }
  .bourbon-name { font-size: 0.85rem; }
  .bourbon-image { min-height: 160px; }

  /* QUOTE BREAKS - shorter on phone */
  .quote-break { height: 220px; }
  .quote-break-text p { font-size: clamp(1.4rem, 6vw, 1.85rem); }

  /* EVENTS / cards */
  .events-grid { grid-template-columns: 1fr; gap: 1rem; }
  .event-card { padding: 1.35rem 1.25rem; }
  .lineup-panel { padding: 1.5rem 1rem; margin-top: 2rem; }

  /* SPECIALS */
  .specials-grid { grid-template-columns: 1fr; gap: 1rem; max-width: none; }
  .special-card { padding: 1.5rem 1.25rem; }

  /* REVIEWS */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    max-width: 480px;
    margin: 0 auto 1.5rem !important;
  }
  .reviews-rating { flex-wrap: wrap; gap: 0.5rem; }
  .reviews-score { font-size: 1.7rem; }

  /* TRUST ROW - wrap into 2x2 at small widths */
  .trust-row { padding: 2rem 1.25rem; }
  .trust-badges { gap: 1.5rem 1.25rem; }
  .trust-badge { flex: 0 0 calc(50% - 0.625rem); min-width: 130px; }
  .trust-badge-icon { width: 36px; height: 36px; }
  .trust-badge-value { font-size: 0.95rem; }

  /* CTA BANNER - buttons stack */
  .cta-banner { padding: 3rem 1.25rem; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .cta-banner p { font-size: 0.95rem; }
  .cta-banner .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 0.75rem;
  }
  .cta-banner .btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CONTACT page - cards full width */
  .contact-cards { grid-template-columns: 1fr; gap: 0.85rem; }
  .contact-card { padding: 1.5rem 1.25rem; }
  .hours-table { max-width: none; }
  .hours-table td { padding: 0.75rem 0.5rem; font-size: 1rem; }
  .open-indicator { font-size: 0.78rem; }
  .map-wrap { min-height: 220px; }
  .map-wrap iframe { min-height: 220px; }
  .directions-box { margin-top: 1.75rem; padding: 1.25rem 1rem; }

  /* CONTACT FORM - already had its own breakpoint, just ensure inputs are 16px+ */
  .contact-form input,
  .contact-form textarea {
    font-size: 16px;  /* prevents iOS auto-zoom on focus */
    min-height: 48px;
  }
  .contact-form textarea { min-height: 140px; }
  .contact-form .btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* IMAGE STRIPS - proper aspect ratios so no endless scroll */
  .img-strip-4 .img-cell,
  .img-strip-3 .img-cell,
  .img-strip-2 .img-cell { aspect-ratio: 16/10; }
  .img-cell.banner { aspect-ratio: 21/9; }

  /* Show image-cell labels on mobile (no hover available) */
  .img-cell-overlay { transform: translateY(0); opacity: 1; }

  /* FOOTER - tighter line-height for compact mobile (other footer rules already exist) */
  .footer-tagline { font-size: 1.2rem; max-width: 100%; }
  .footer-nav a { font-size: 1rem; padding: 0.4rem 0; min-height: 44px; align-items: center; }
  .footer-social a { width: 44px; height: 44px; }

  /* Scroll progress bar - thinner on mobile */
  .scroll-progress { height: 2px; }

  /* Smooth tap highlight removal on key UI */
  nav a, .btn, .menu-cat-btn, .footer-nav a, .back-to-top, .mobile-cta-btn {
    -webkit-tap-highlight-color: transparent;
  }

  /* Long phone numbers / URLs - never overflow */
  .footer-visit a, .contact-card-value, .footer-text { word-break: break-word; }
}

/* ── MOBILE PORTRAIT (≤480px) - fine-tuning ─────── */
@media (max-width: 480px) {
  /* Hero gets a smidge tighter on tiny screens */
  .hero { min-height: 540px; }
  .hero-minimal .hero-logo { height: 72px; }
  .hero-brandline { font-size: 0.58rem; letter-spacing: 2px; }

  /* Marquee even tighter */
  .marquee-item { font-size: 0.95rem; gap: 1.5rem; }
  .marquee-track { gap: 1.5rem; animation-duration: 24s; }

  /* Stat band numbers smaller still */
  .stat-num { font-size: clamp(2rem, 8.5vw, 2.4rem); }
  .stat-label { font-size: 0.6rem; }

  /* Editorial headings cap so they don't break awkwardly at 360px */
  .editorial-heading { font-size: clamp(1.55rem, 7.5vw, 1.95rem); }
  .section-title { font-size: clamp(1.5rem, 7vw, 1.95rem); }

  /* Trust row goes to single column */
  .trust-badge { flex: 0 0 100%; }

  /* Bourbon cards single column */
  .bourbon-list { grid-template-columns: 1fr; gap: 0.6rem; }

  /* Tighter horizontal padding in tight quarters */
  section, .section-breathe { padding-left: 1rem; padding-right: 1rem; }
  .page-header { padding-left: 1rem; padding-right: 1rem; }

  /* Quote-break shorter */
  .quote-break { height: 180px; }

  /* Mobile CTA bar slightly smaller */
  .mobile-cta-btn { font-size: 0.72rem; min-height: 52px; }
  body { padding-bottom: 60px; }
  .back-to-top { bottom: 4.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body { opacity: 1; }
  .marquee-track { animation: none !important; }
}

/* =====================================================
   MOBILE POLISH - final pass.
   Scoped to ≤767px (and ≤480px). Desktop/tablet untouched.
   ===================================================== */
@media (max-width: 767px) {
  /* Balanced wrapping for big headings - kills awkward orphan words
     like "on Tap." or "Good Times" hanging on their own short line */
  .hero h1,
  .page-header h1,
  .section-title,
  .editorial-heading,
  .cta-banner h2,
  .quote-break-text p {
    text-wrap: balance;
  }

  /* Slightly more readable hero brandline ("EST. 2011 • OAK RIDGE, NC") */
  .hero-brandline { font-size: 0.7rem; letter-spacing: 2.8px; }

  /* BAR PAGE - bourbon list: keep 2 columns on phone.
     Cards only hold name/proof/price; a single column wastes scroll. */
  .bourbon-list { grid-template-columns: 1fr 1fr; gap: 0.55rem; }
  .bourbon-card {
    padding: 0.95rem 0.6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 96px;
  }
  .bourbon-name { font-size: 0.88rem; line-height: 1.2; margin-bottom: 0.15rem; }
  .bourbon-detail { font-size: 0.68rem; letter-spacing: 0.5px; }
  .bourbon-price { font-size: 0.95rem; margin-top: 0.35rem; }

  /* Bourbon photo above the note - cinematic 16:10 instead of bare min-height */
  .bourbon-image { min-height: 0; aspect-ratio: 16/10; }

  /* MENU page - category tabs as a clean wrap grid so every tab is visible
     and tappable without horizontal scrolling. 3 columns at this width fits
     all 9 categories in 3 rows with consistent sizing. */
  .menu-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin: 1rem 0 0.75rem;
    overflow: visible;
    padding: 0;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .menu-cats::-webkit-scrollbar { display: none; }
  .menu-cat-btn {
    width: 100%;
    flex: initial;
    padding: 0.6rem 0.4rem;
    font-size: 0.66rem;
    letter-spacing: 1px;
    min-height: 40px;
    white-space: nowrap;
  }

  /* Bar page categories (BOURBON / TEQUILA / DRAFTS) - only 3 tabs,
     so a 3-col grid works perfectly here too. */
  .bar-cats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    overflow: visible;
  }

  /* REVIEWS - tighter card padding so 3 reviews don't span miles */
  .review-card { padding: 1.4rem 1.25rem; }
  .reviews-rating { justify-content: center; }

  /* QUOTE BREAKS - bigger statement on phone (was 220px, felt cropped) */
  .quote-break { height: 260px; }
  .quote-break-text p { line-height: 1.3; }

  /* About-image cap raised so portraits like dadpapaw.jpg don't crop the face */
  .about-image { max-height: 420px; }

  /* Sticky mobile CTA - sit above iOS home indicator */
  .mobile-cta-bar { padding-bottom: env(safe-area-inset-bottom, 0); }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0)); }

  /* Pull menu/bourbon "See full menu" link more visually anchored */
  .see-full-menu, .menu-footer a { width: 100%; justify-content: center; }

  /* MENU PAGE - on mobile, reorder so "Download Full Menu PDF" sits between
     the category tabs and the item grid (visible without scrolling). */
  #menu > .section-inner { display: flex; flex-direction: column; }
  #menu > .section-inner > .menu-cats { order: 1; }
  #menu > .section-inner > .menu-link {
    order: 2;
    margin: 0.85rem 0 1.1rem;
    align-self: flex-start;
  }
  #menu > .section-inner > .menu-grid { order: 3; }

  /* MENU PAGE - compact item cards so 4-5 items fit on screen at once.
     Applies to all .menu-item on mobile; #featuredGrid is already tighter
     via its own override and remains compact. */
  .menu-grid { gap: 0.5rem; }
  .menu-item { padding: 0.7rem 0.9rem 0.65rem; }
  .menu-item-header {
    margin-bottom: 0.15rem;
    gap: 0.5rem;
    align-items: baseline;
    justify-content: space-between;
  }
  .menu-item-name { font-size: 0.92rem; line-height: 1.2; }
  .menu-item-price { font-size: 0.88rem; }
  /* Drop the dotted leader on mobile - clean space between name + price */
  .menu-item-leader { display: none; }
  .menu-item-desc {
    font-size: 0.78rem;
    line-height: 1.35;
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  /* The maroon top-left accent is a touch overwhelming at this scale */
  .menu-item::before { width: 22px; height: 2px; }

  /* INDEX HOME PREVIEW - "A Few Favorites" only.
     Scoped to #featuredGrid so /menu.html is untouched.
     Compact preview-style cards: 3-4 visible on one screen. */
  #featuredGrid.menu-grid { gap: 0.5rem; }
  #featuredGrid .menu-item { padding: 0.85rem 1rem 0.8rem; }
  #featuredGrid .menu-item-header { margin-bottom: 0.2rem; gap: 0.45rem; }
  #featuredGrid .menu-item-name { font-size: 0.95rem; }
  #featuredGrid .menu-item-price { font-size: 0.92rem; }
  #featuredGrid .menu-item-desc {
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* INDEX 3-PHOTO FEATURE ROW (Tavern / RV / Bar) - keep 3 across on phone.
     Override the ≤1023 single-col rule. */
  .img-strip-3 { grid-template-columns: 1fr 1fr 1fr !important; }
  .img-strip-3 .img-cell {
    aspect-ratio: 3/4 !important;   /* taller portrait so 3 across still readable */
  }
  .img-strip-3 .img-cell img { object-fit: cover; }
  /* Tighten the overlay text in the narrow cells */
  .img-strip-3 .img-cell-overlay { padding: 0.6rem 0.5rem; }
  .img-strip-3 .img-cell-label { font-size: 0.95rem; line-height: 1.15; }
  .img-strip-3 .img-cell-desc { font-size: 0.6rem; line-height: 1.25; }

  /* EVENTS PAGE - featured 3-image row: Tavern full-width on top,
     Patio + Bar side-by-side underneath. All cells 180px tall. */
  .img-strip-3.img-strip-3--featured {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 180px;
    gap: 4px;
  }
  .img-strip-3.img-strip-3--featured > .img-cell:first-child {
    grid-column: 1 / -1;
  }
  .img-strip-3.img-strip-3--featured > .img-cell {
    aspect-ratio: auto !important;
    height: 180px;
  }
  /* Overlay sizing tuned for the wider full-width cell vs the 2-col cells */
  .img-strip-3.img-strip-3--featured > .img-cell:first-child .img-cell-label { font-size: 1.1rem; }
  .img-strip-3.img-strip-3--featured > .img-cell:first-child .img-cell-desc { font-size: 0.7rem; }

  /* ABOUT PAGE - "A Few Things We're Proud Of" highlights:
     2x2 grid on phone (was single column). Compact card sizing. */
  .highlights-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 0.6rem !important;
  }
  .highlight-card { padding: 1rem 0.75rem !important; }
  .highlight-card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.5rem;
  }
  .highlight-card-title {
    font-size: 0.88rem;
    line-height: 1.2;
    margin-bottom: 0.3rem;
  }
  .highlight-card-desc {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  /* TRUST BADGES - lock 2x2 grid on phone (override ≤480 single-col below). */
  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
    align-items: start;
    justify-items: center;
  }
  .trust-badge { flex: initial; min-width: 0; width: 100%; max-width: 160px; }

  /* FOOTER - compact mobile layout. ~half the previous vertical footprint. */
  footer { padding: 2.5rem 1.25rem 1.25rem; }
  .footer-grid {
    gap: 1.75rem 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-col-heading {
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    font-size: 0.62rem;
    letter-spacing: 2.4px;
  }

  /* Brand: smaller logo + tighter tagline */
  .footer-brand > a:first-child { margin-bottom: 0.85rem; }
  .footer-logo { height: 56px; }
  .footer-tagline {
    font-size: 1.05rem;
    line-height: 1.3;
    margin: 0 0 0.85rem;
    max-width: 100%;
  }
  .footer-brand-meta {
    font-size: 0.6rem;
    letter-spacing: 2px;
    padding-top: 0.75rem;
    max-width: 100%;
  }

  /* Explore links: 2-column grid, tight rhythm */
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 1rem;
  }
  .footer-nav a {
    font-size: 0.92rem;
    padding: 0.2rem 0;
    min-height: 0;
    line-height: 1.3;
  }

  /* Visit Us: tighter spacing, smaller text */
  .footer-visit { gap: 0.7rem; }
  .footer-visit p, .footer-visit address {
    font-size: 0.85rem;
    line-height: 1.45;
  }
  .footer-visit-item { gap: 0.6rem; }
  .footer-visit-icon { width: 16px; height: 16px; }
  .footer-hours-chip {
    font-size: 0.58rem;
    letter-spacing: 1.5px;
    padding: 0.35rem 0.65rem;
    margin-top: 0.15rem;
  }
  .footer-social {
    gap: 0.6rem;
    margin-top: 0.35rem;
    padding-top: 0.85rem;
  }
  .footer-social a { width: 38px; height: 38px; }

  /* Bottom bar: tight + centered, no need for the spread layout */
  .footer-bottom {
    padding-top: 1rem;
    gap: 0.5rem;
    justify-content: center;
    text-align: center;
  }
  .footer-copyright { font-size: 0.7rem; }
  .footer-credit { font-size: 0.6rem; letter-spacing: 1.5px; }

  /* INDEX "In the Kitchen" FEATURE SPLIT - image is first in DOM (left on desktop).
     Mobile: image stacks on top (natural DOM order), then label, title, body,
     button. Compact section that flows naturally into surrounding sections. */
  section.bg-warm.section-breathe:has(.about-split > .about-image:first-child) {
    padding: 1.5rem 1.25rem 2.25rem;
  }
  .about-split:has(> .about-image:first-child) { gap: 1.1rem; }

  /* Image: full-width, 250px tall, cropped to the action (grill + flames) */
  .about-split:has(> .about-image:first-child) > .about-image {
    height: 250px;
    max-height: 250px;
    aspect-ratio: auto;
    width: 100%;
  }
  .about-split:has(> .about-image:first-child) > .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Tighten the text column rhythm */
  .about-split:has(> .about-image:first-child) > .reveal-right > .section-text {
    margin-bottom: 0;
  }
  .about-split:has(> .about-image:first-child) > .reveal-right > div[style*="margin-top"] {
    margin-top: 1.1rem !important;
  }

  /* INDEX "Our Story / Your Neighborhood Spot" ABOUT PREVIEW - centered stats,
     shorter cheers photo, tighter section. Identified by presence of .about-stats. */
  section.section-breathe:has(.about-stats) { padding: 2.75rem 1.25rem; }
  .about-split:has(.about-stats) { gap: 1.5rem; }
  .about-split:has(.about-stats) .section-text { margin-bottom: 1.25rem; }
  .about-stats {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .about-stats > div {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-stat-number { font-size: 1.85rem; }
  .about-stat-label { font-size: 0.65rem; letter-spacing: 1.5px; }

  /* Cheers photo: 220px capped */
  .about-split:has(.about-stats) > .about-image {
    height: 220px;
    max-height: 220px;
    aspect-ratio: auto;
  }
  .about-split:has(.about-stats) > .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* The inline "Learn Our Story" button wrapper - tighten its top spacing */
  .about-split:has(.about-stats) > :not(.about-image) > div[style*="margin-top"] {
    margin-top: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  /* Override the ≤480 single-col bourbon rule above - keep 2 col on tiny phones too */
  .bourbon-list { grid-template-columns: 1fr 1fr; }

  /* Slightly tighter card on 360-ish phones */
  .bourbon-card { padding: 0.85rem 0.5rem; min-height: 92px; }
  .bourbon-name { font-size: 0.82rem; }
  .bourbon-price { font-size: 0.9rem; }

  /* Hero brandline cap on smallest screens - still readable */
  .hero-brandline { font-size: 0.65rem; letter-spacing: 2.4px; }

  /* Quote-break shorter on smallest */
  .quote-break { height: 220px; }
}
