/* ============================================================
   YAHWEH TECAN HIBACHI — MAIN STYLES
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --black:        #080808;
  --charcoal:     #111111;
  --dark:         #1a1a1a;
  --red:          #c41e20;
  --red-dark:     #8b0000;
  --red-bright:   #e8231f;
  --orange:       #ff6b1a;
  --gold:         #d4a017;
  --white:        #ffffff;
  --off-white:    #e8e8e8;
  --gray:         #888888;
  --border:       rgba(196,30,32,0.3);
  --font-display: 'Bebas Neue', sans-serif;
  --font-sub:     'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --font-cursive: 'Dancing Script', cursive;
  --nav-height:   72px;
  --transition:   0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 28px;
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
  line-height: 1.3;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196,30,32,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 0.95rem; }

.section-label {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.section-label-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.red-italic { font-style: italic; }

/* ---- Animate In ---- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Fallback — if JS never fires, still show content */
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; }
}

/* ---- Image Placeholders ---- */
.img-placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 50%, #1a0808 100%);
  border: 1px solid rgba(196,30,32,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  font-family: var(--font-sub);
  letter-spacing: 0.1em;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '📷';
  font-size: 2rem;
  opacity: 0.3;
  display: block;
  margin-bottom: 8px;
}
.img-placeholder:hover { border-color: rgba(196,30,32,0.7); }
.img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.placeholder-label {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  text-transform: uppercase;
}

/* ---- Faded BG Text ---- */
.bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(60px, 12vw, 180px);
  color: white;
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
  line-height: 1;
  z-index: 0;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(17,17,17,0.97);
  border-bottom: 2px solid var(--red);
  backdrop-filter: blur(10px);
  transition: box-shadow var(--transition);
  height: var(--nav-height);
}
.nav.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-icon svg { display: block; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-name {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.1;
}
.nav-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.68rem;
  color: var(--gray);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--off-white);
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--red);
  transition: right var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { right: 0; }

.nav-cta {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--red); }
.mobile-nav-cta {
  display: block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 1.5rem;
  padding: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 60px;
  background: var(--charcoal);
  border-top: 2px solid var(--red);
}
.mobile-sticky-call,
.mobile-sticky-menu {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}
.mobile-sticky-call {
  background: var(--red);
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.mobile-sticky-menu {
  background: var(--dark);
  color: var(--white);
}

/* ============================================================
   HERO
============================================================ */
/* ============================================================
   HERO — Full-screen cinematic background
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background image — fills 100% width and height */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

/* Dark smoky overlay — heavier on left for text readability, lighter right so food shows */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right,
      rgba(0,0,0,0.88) 0%,
      rgba(0,0,0,0.75) 35%,
      rgba(0,0,0,0.45) 60%,
      rgba(0,0,0,0.15) 100%
    ),
    linear-gradient(to bottom,
      rgba(0,0,0,0.5) 0%,
      transparent 20%,
      transparent 70%,
      rgba(0,0,0,0.6) 100%
    );
  pointer-events: none;
}

/* Ember particles */
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Main content — left side, layered over background */
.hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: calc(var(--nav-height) + 24px) 60px 120px 64px;
  max-width: 680px;
}

.hero-script {
  font-style: italic;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.15rem;
  color: var(--red);
  letter-spacing: 0.02em;
}

.hero-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  gap: 0px;
  margin: 0;
  /* Let headline break out of the 680px content box */
  width: max-content;
  max-width: none;
}
.hero-line-white {
  font-family: 'Anton', var(--font-display), sans-serif;
  font-size: clamp(5rem, 10.5vw, 13.5rem);
  font-weight: 400; /* Anton has no weight variants — 400 IS the ultra-bold */
  color: var(--white);
  display: block;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.55),
    0 4px 36px rgba(0,0,0,0.75);
  -webkit-font-smoothing: antialiased;
}
.hero-line-red {
  font-family: 'Anton', var(--font-display), sans-serif;
  font-size: clamp(5rem, 10.5vw, 13.5rem);
  font-weight: 400;
  color: var(--red);
  display: block;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.45),
    0 0 70px rgba(196,30,32,0.6),
    0 4px 36px rgba(196,30,32,0.35);
  -webkit-font-smoothing: antialiased;
}

.hero-description {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cash-badge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  border-radius: 6px;
  max-width: 480px;
}
.cash-badge-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.cash-badge-text strong {
  display: block;
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}
.cash-badge-text span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* Inline stats — sits inside hero-content under cash badge */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-stat-icon { font-size: 0.9rem; }
.hero-stat-label {
  font-family: var(--font-sub);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
}
.hero-stat-dot { color: var(--red); font-size: 0.8rem; }

/* Full-width info bar — pinned absolutely to hero bottom */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.09);
}

.hero-info-bar {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  width: 100%;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
}
.info-bar-icon { font-size: 1.25rem; flex-shrink: 0; }
.info-bar-item div { display: flex; flex-direction: column; }
.info-bar-item strong {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 1px;
}
.info-bar-item span {
  font-size: 0.74rem;
  color: var(--gray);
}
.info-bar-phone {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red) !important;
  letter-spacing: 0.05em;
}
.info-bar-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  margin: 12px 0;
}

/* ============================================================
   ABOUT — Cinematic food showcase
============================================================ */
.about {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.about-inner {
  display: grid;
  grid-template-columns: 57% 43%;
  min-height: 90vh;
  position: relative;
  z-index: 2;
}

/* ---- FOOD SIDE ---- */
.about-food-side {
  position: relative;
  overflow: hidden;
  /* No negative margin — sections must not bleed into each other */
  margin-top: 0;
}

/* Warm radial glow — orange core fading to red/dark */
.about-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 55% 55%, rgba(255,100,10,0.28) 0%, rgba(196,30,32,0.14) 40%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Ember particles layer */
.about-embers {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Smoke gradient — drifts up from food */
.about-smoke-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(5,3,2,0.72) 0%, rgba(5,3,2,0.3) 50%, transparent 100%);
  z-index: 4;
  pointer-events: none;
}

/* Main food image — fills entire left side, slightly oversized */
.about-food-main {
  position: absolute;
  inset: -5% -2% -5% -3%;
  z-index: 3;
}
.about-food-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(1.08) contrast(1.12) saturate(1.2);
}

/* Secondary food photo — overlaps bottom-right, breaks out slightly */
.about-food-secondary {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 52%;
  height: 40%;
  z-index: 6;
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    -12px -12px 50px rgba(0,0,0,0.85),
    0 0 80px rgba(255,70,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06);
}
.about-food-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.05) saturate(1.25) contrast(1.08);
}

/* Right-edge gradient — blends food into the text panel */
.about-food-edge {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(to right, transparent 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.92) 75%, #0a0a0a 100%);
  z-index: 5;
  pointer-events: none;
}

/* ---- TEXT SIDE ---- */
.about-text-side {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: 80px 64px 80px 32px;
  background: #0a0a0a;
}

/* Section label */
.about-label-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-label-line {
  height: 1px;
  width: 36px;
  background: var(--red);
  flex-shrink: 0;
}
.about-label-text {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Main headline — BIG and dramatic */
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.87;
  color: var(--white);
  text-shadow: 0 4px 40px rgba(0,0,0,0.7);
}
.about-hl-red {
  color: var(--red);
  display: block;
  text-shadow: 0 4px 30px rgba(196,30,32,0.4);
}

/* Sub copy */
.about-sub {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 380px;
}

/* Feature list — no boxes, clean and bold */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-feature-icon { font-size: 1.2rem; flex-shrink: 0; }
.about-feature-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--off-white);
}

/* Buttons */
.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

/* Marquee */
.marquee-strip {
  background: var(--red-dark);
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 8;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-content {
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
  white-space: nowrap;
}

/* Legacy selectors kept so nothing else breaks */
.smoke-overlay { display: none; }
.divider-line { height: 1px; background: var(--border); flex: 1; }

/* ============================================================
   MENU SECTION
============================================================ */
.menu-section {
  background: #0a0a0a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.menu-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.menu-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 5;
}

.menu-top {
  text-align: center;
  margin-bottom: 60px;
}
.menu-script {
  font-style: italic;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--red);
  margin-bottom: 12px;
}
.menu-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.menu-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.menu-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(196,30,32,0.4);
  border-color: rgba(196,30,32,0.7);
}

.menu-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}
.badge-favorite { background: var(--red); color: var(--white); }
.badge-premium  { background: var(--dark); color: var(--gold); border: 1px solid var(--gold); }
.badge-legend   { background: var(--red); color: var(--white); }

.menu-card-img {
  height: 220px;
  flex-shrink: 0;
}

.menu-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.menu-card-name {
  font-family: var(--font-sub);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.menu-card-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.menu-card-fresh {
  font-family: var(--font-sub);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
  text-transform: uppercase;
}
.menu-card-btn {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
}

/* Middle Banner */
.menu-banner {
  position: relative;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.menu-banner-bg::before { font-size: 3rem; }
.menu-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.85) 0%, rgba(140,0,0,0.6) 100%);
}
.menu-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.menu-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
}
.menu-banner-sub {
  font-size: 0.9rem;
  color: var(--off-white);
  max-width: 500px;
  line-height: 1.6;
}

/* ============================================================
   FULL MENU BOARD
============================================================ */
.full-menu {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 5;
}

.full-menu-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  text-align: center;
}
.full-menu-header-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.full-menu-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.full-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 32px;
  align-items: start;
}

.full-menu-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.full-menu-col-center {
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 0 28px;
}

/* Category block */
.menu-cat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-cat-header {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  text-transform: uppercase;
  border-radius: 3px 3px 0 0;
}

.menu-cat-featured .menu-cat-header {
  background: var(--red);
  font-size: 0.88rem;
  padding: 10px 14px;
}

.menu-cat-sub {
  font-family: var(--font-sub);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  background: rgba(196,30,32,0.12);
  border: 1px solid rgba(196,30,32,0.2);
  border-top: none;
  padding: 6px 14px;
  text-transform: uppercase;
}

.menu-cat-items {
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  font-family: var(--font-sub);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: rgba(255,255,255,0.03); }

.menu-item span:last-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-left: 12px;
}

.menu-item-bold {
  background: rgba(196,30,32,0.08);
  font-weight: 700;
}
.menu-item-bold:hover { background: rgba(196,30,32,0.14); }
.menu-item-bold span:first-child { color: var(--white); font-weight: 700; }

.menu-item-note {
  padding: 5px 14px 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.menu-item-note:last-child { border-bottom: none; }

.full-menu-disclaimer {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  max-width: 700px;
  margin: 40px auto 12px;
  line-height: 1.7;
  font-style: italic;
}
.full-menu-payment {
  text-align: center;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray);
}

/* Lunch Banner */
.lunch-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 60%, #a01015 100%);
  border-radius: 10px;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
  box-shadow: 0 10px 50px rgba(196,30,32,0.35);
  position: relative;
  overflow: hidden;
}
.lunch-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.lunch-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.lunch-accent-line {
  width: 4px;
  height: 80px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}
.lunch-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.04em;
}
.lunch-center { text-align: center; }
.lunch-price {
  font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 8rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 0 40px rgba(196,30,32,0.4);
}
.lunch-badge {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.25);
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 3px;
  margin-bottom: 10px;
  color: var(--white);
}
.lunch-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 8px;
}
.lunch-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.lunch-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
}
.payment-icon { font-size: 1.2rem; }
.lunch-cta {
  text-align: center;
  line-height: 1.4;
  background: var(--black) !important;
  border-color: transparent !important;
  color: var(--white) !important;
}
.lunch-cta:hover {
  background: var(--charcoal) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4) !important;
}
.lunch-title { color: var(--white); }
.lunch-accent-line { background: rgba(255,255,255,0.5); }

/* ============================================================
   GALLERY
============================================================ */
.gallery-section {
  background: #080808;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.gallery-bg-text {
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: pre-line;
  font-size: clamp(60px, 10vw, 150px);
}
.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 5;
}
.gallery-top { text-align: center; margin-bottom: 60px; }
.gallery-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.gallery-sub { color: var(--gray); font-size: 1rem; }

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

/* Masonry */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  position: relative;
}
.gallery-item { border-radius: 8px; }
.gi-tall  { grid-row: span 2; }
.gi-wide  { grid-column: span 2; }

/* Floating reviews */
.gallery-review-float {
  position: absolute;
  background: rgba(17,17,17,0.95);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 200px;
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.gallery-review-1 { top: 20px;  right: -20px; }
.gallery-review-2 { top: 50%;   right: -30px; transform: translateY(-50%); }
.gallery-review-3 { bottom: 20px; left: -20px; }
.float-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 6px; }
.float-text { font-size: 0.75rem; color: var(--off-white); line-height: 1.5; margin-bottom: 6px; font-style: italic; }
.float-source { font-size: 0.65rem; color: var(--gray); font-family: var(--font-sub); letter-spacing: 0.08em; }

/* Phone Mockup */
.gallery-right-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.phone-mockup { display: flex; justify-content: center; }
.phone-frame {
  width: 220px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  background: #0f0f0f;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 6px rgba(255,255,255,0.04);
}
.phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin: 0 auto 12px;
}
.phone-screen {
  background: #1a1a1a;
  border-radius: 18px;
  overflow: hidden;
}
.phone-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
}
.phone-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-sub);
  flex-shrink: 0;
}
.phone-account { display: flex; flex-direction: column; }
.phone-account strong { font-size: 0.7rem; color: var(--white); line-height: 1.2; }
.phone-account span { font-size: 0.6rem; color: var(--gray); }
.phone-post-img {
  width: 100%;
  height: 140px;
  border-radius: 0;
  position: relative;
}
.phone-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 2;
}
.phone-post-body { padding: 10px 12px; }
.phone-actions { display: flex; gap: 12px; font-size: 0.65rem; color: var(--gray); margin-bottom: 6px; }
.phone-caption { font-size: 0.65rem; color: var(--off-white); line-height: 1.5; }

.gallery-bold-text { text-align: center; }
.gallery-bold-line-white { font-family: var(--font-display); font-size: 1.8rem; color: var(--white); line-height: 1; }
.gallery-bold-line-red   { font-family: var(--font-display); font-size: 1.8rem; color: var(--red); line-height: 1; margin-bottom: 16px; }
.gallery-watch-btn { display: inline-block; }

.social-callout { display: flex; flex-direction: column; gap: 12px; }
.social-callout-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-align: center;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 12px 16px;
  transition: border-color var(--transition);
}
.social-link:hover { border-color: var(--red); }
.social-icon { font-size: 1.4rem; }
.social-link div { display: flex; flex-direction: column; }
.social-link strong { font-family: var(--font-sub); font-size: 0.82rem; color: var(--white); }
.social-link span { font-size: 0.72rem; color: var(--gray); }

.gallery-cta {
  text-align: center;
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.gallery-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 8px;
}
.red-arrow { color: var(--red); }
.gallery-cta-sub { color: var(--gray); margin-bottom: 28px; }
.gallery-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* ============================================================
   REVIEWS
============================================================ */
.reviews-section {
  background: #0d0d0d;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.reviews-bg-text {
  top: 40px;
  left: -2%;
  text-align: left;
  white-space: pre-line;
  font-size: clamp(80px, 14vw, 200px);
  opacity: 0.04;
  line-height: 0.9;
}
.reviews-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 5;
}

.reviews-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.reviews-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.reviews-sub { color: var(--gray); font-size: 1rem; }

.reviews-rating-box {
  background: rgba(17,17,17,0.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  min-width: 240px;
  text-align: center;
}
.rating-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}
.rating-number {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--white);
  line-height: 1;
}
.rating-star { font-size: 2rem; color: var(--gold); }
.rating-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 12px;
}
.rating-count {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--off-white);
  margin-bottom: 16px;
}
.rating-count-num { font-size: 1.5rem; font-weight: 700; color: var(--white); }
.rating-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rating-badges span {
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--off-white);
  background: rgba(255,255,255,0.04);
  padding: 6px 12px;
  border-radius: 4px;
}

/* Carousel */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.carousel-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
  z-index: 5;
}
.carousel-btn:hover { background: var(--red); border-color: var(--red); }
.carousel-viewport { flex: 1; overflow: hidden; }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.review-card {
  min-width: 33.333%;
  padding: 0 10px;
  flex-shrink: 0;
}
.review-card-inner {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  height: 100%;
  transition: box-shadow var(--transition);
}
.review-card:hover .review-card-inner {
  box-shadow: 0 0 25px rgba(196,30,32,0.2);
}

/* Make each card full height inside */
.review-card {
  display: flex;
}
.review-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  transition: box-shadow var(--transition);
  flex-shrink: 0;
}
.review-card:hover { box-shadow: 0 0 25px rgba(196,30,32,0.2); }
.review-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--red);
  line-height: 0.8;
  opacity: 0.4;
  margin-bottom: 8px;
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text {
  font-style: italic;
  color: var(--off-white);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.review-name { display: block; font-weight: 600; font-size: 0.9rem; color: var(--white); }
.review-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 2px;
}
.google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #4285F4;
  border-radius: 50%;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: sans-serif;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 60px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* More Reviews */
.more-reviews-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.more-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.more-review-card {
  background: #141414;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more-review-header { display: flex; align-items: center; gap: 10px; }
.more-review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red);
  flex-shrink: 0;
}
.more-review-header strong { font-size: 0.85rem; color: var(--white); display: block; }
.more-review-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 1px; }
.more-review-date { font-size: 0.68rem; color: var(--gray); }
.more-review-img { height: 80px; margin-top: 8px; border-radius: 4px; }
.more-review-img::before { font-size: 1.2rem; }

/* Memphis Tribute */
.memphis-tribute {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 40px;
}
.memphis-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(196,30,32,0.1);
  border: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-align: center;
  flex-shrink: 0;
}
.memphis-text { display: flex; flex-direction: column; gap: 8px; }
.memphis-thanks { color: var(--gray); font-size: 0.9rem; }
.memphis-tennessee { opacity: 0.6; max-width: 200px; }
.memphis-appreciate {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
}

.reviews-cta { text-align: center; }
.reviews-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.reviews-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ============================================================
   FAMILY SECTION
============================================================ */
.family-section {
  background: #0a0a0a;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.family-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.family-bg-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(100px, 20vw, 260px);
  text-align: center;
}

.family-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 5;
}

.family-photos {
  position: relative;
  height: 640px;
}
.family-photo-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 75%;
  border-radius: 10px;
  border: 2px solid var(--border);
}
.film-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  border-radius: 10px;
  pointer-events: none;
  z-index: 1;
}
.family-photo-sm {
  position: absolute;
  border-radius: 8px;
  border: 2px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.family-photo-a { width: 42%; height: 35%; bottom: 0; left: 5%; transform: rotate(-2deg); }
.family-photo-b { width: 42%; height: 35%; bottom: 20px; right: 0; transform: rotate(1.5deg); }
.family-photo-c { width: 38%; height: 32%; top: 60%; left: 50%; transform: translateY(-50%) rotate(3deg); }

.family-content { display: flex; flex-direction: column; gap: 20px; }

.family-label-italic {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.1em;
}

.family-headline { display: flex; flex-direction: column; line-height: 0.95; }
.family-headline-white {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--white);
}
.family-headline-red {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  color: var(--red);
}

.family-subhead {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  display: inline-block;
}

.family-story { display: flex; flex-direction: column; gap: 12px; }
.family-story p {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.8;
}
.family-mission { color: var(--red); font-style: italic; font-weight: 600; }

.family-tagline {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--gray);
  font-size: 0.9rem;
  border-left: 3px solid var(--red);
  padding-left: 16px;
}

.family-signature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
}
.signature-text {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1.2;
}
.signature-sub {
  font-family: var(--font-cursive);
  font-size: 1.4rem;
  color: var(--red);
}

.family-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.family-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--off-white);
}
.family-badge span:first-child { font-size: 1.2rem; }

.family-bottom-strip {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 32px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.family-bottom-thanks {
  font-family: var(--font-sub);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}
.family-bottom-sub {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ============================================================
   LOCATION
============================================================ */
.location-section {
  background: #0d0d0d;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.location-bg-text {
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: pre-line;
  font-size: clamp(50px, 9vw, 140px);
}
.location-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  position: relative;
  z-index: 5;
}

.location-headline {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  margin-bottom: 16px;
}
.location-headline-white {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
}
.location-headline-red {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--red);
}
.location-sub {
  color: var(--gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}

.map-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
}
.map-pin { font-size: 1.5rem; }
.map-label div { display: flex; flex-direction: column; gap: 2px; }
.map-label strong {
  font-family: var(--font-sub);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
}
.map-cursive {
  font-family: var(--font-cursive);
  font-size: 1.1rem;
  color: var(--red);
}

/* Location Right */
.location-logo-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.location-logo-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}
.location-logo-name {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
}
.location-logo-sub {
  font-size: 0.75rem;
  color: var(--gray);
}
.location-store-photo-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.location-store-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.location-open-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-sub);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 3px 10px;
  border-radius: 3px;
  z-index: 2;
}
.location-portions-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.75);
  border: 1px solid rgba(196,30,32,0.6);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.3;
  padding: 6px 8px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.info-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.info-card-icon { font-size: 1.5rem; flex-shrink: 0; padding-top: 2px; }
.info-card-content { display: flex; flex-direction: column; gap: 4px; }
.info-card-title {
  font-family: var(--font-sub);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gray);
}
.info-card-value {
  font-family: var(--font-sub);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.lunch-sub { color: var(--red); font-size: 0.72rem; font-family: var(--font-sub); font-weight: 600; letter-spacing: 0.08em; }
.info-card-phone-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.02em;
}
.info-card-sub {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
}
.info-card-btn { margin-top: 8px; width: 100%; }
.info-card-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.info-card-em { font-style: italic; font-size: 0.8rem; color: var(--off-white); opacity: 0.7; }

.info-card-social { flex-direction: column; gap: 10px; }
.info-card-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.info-card-social-row a {
  color: var(--red);
  font-family: var(--font-sub);
  font-weight: 600;
}
.social-platform { color: var(--gray); font-size: 0.72rem; margin-left: auto; }
.info-card-social-label {
  font-family: var(--font-sub);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-align: center;
  padding-top: 4px;
}

/* Location CTA Strip */
.location-cta-strip {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.location-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.location-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.9) 0%, rgba(100,0,0,0.7) 100%);
}
.location-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.location-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.location-cta-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.location-footer-note {
  background: #111;
  text-align: center;
  padding: 20px;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.zelle-text { color: var(--gold); }

/* ============================================================
   FINAL CTA
============================================================ */
.final-cta {
  background: #080808;
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.final-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.final-cta-sides {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  z-index: 2;
}
.final-food-left,
.final-food-right {
  width: 25%;
  height: 100%;
  flex-shrink: 0;
  opacity: 0.65;
}
.final-food-right { margin-left: auto; }
.final-food-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, #080808 100%);
  z-index: 2;
  pointer-events: none;
}
.final-food-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 40%, #080808 100%);
  z-index: 2;
  pointer-events: none;
}
.final-food-left::before,
.final-food-right::before { font-size: 1.5rem; }

.final-cta-center {
  position: relative;
  z-index: 5;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px 80px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.final-label {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.final-headline { display: flex; flex-direction: column; line-height: 0.9; margin-bottom: 20px; }
.final-headline-white {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  color: var(--white);
}
.final-headline-red {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  color: var(--red);
}
.final-sub { color: var(--gray); font-size: 1.05rem; margin-bottom: 36px; }
.final-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

.final-info-strip {
  background: #111;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  position: relative;
  z-index: 5;
  margin-top: auto;
  /* Bleeds flush into the Instagram section below */
  flex-shrink: 0;
}
.final-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
}
.final-info-item > span { font-size: 1.4rem; flex-shrink: 0; }
.final-info-item div { display: flex; flex-direction: column; }
.final-info-item strong {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 2px;
}
.final-info-item span { font-size: 0.78rem; color: var(--gray); }
.final-info-call {
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
}
.final-info-divider {
  width: 1px;
  background: rgba(255,255,255,0.06);
  margin: 20px 0;
}

/* ============================================================
   INSTAGRAM STRIP
============================================================ */
.ig-strip-section {
  background: #0d0d0d;
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.ig-strip-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}
.ig-strip-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.ig-icon { font-size: 1.6rem; }
.ig-strip-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.ig-strip-follow {
  margin-left: auto;
  font-family: var(--font-sub);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 8px 20px;
  border-radius: 4px;
  transition: background var(--transition);
}
.ig-strip-follow:hover { background: var(--red); color: var(--white); }

.ig-strip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ig-strip-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex: 1;
}
.ig-strip-scroll::-webkit-scrollbar { display: none; }

.ig-thumb {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  scroll-snap-align: start;
}
.ig-thumb::before { font-size: 1.5rem; }

.ig-arrow {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.ig-arrow:hover { background: var(--red); border-color: var(--red); }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #080808;
  border-top: 2px solid var(--red);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-logo { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.footer-thank {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  line-height: 1;
}
.footer-support {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--red);
  line-height: 1;
}
.footer-built { font-size: 0.8rem; color: var(--gray); margin-top: 6px; line-height: 1.5; }

.memphis-skyline {
  margin-top: 20px;
  opacity: 0.6;
}

.footer-center { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-sub);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--red); }
.footer-nav span { color: rgba(255,255,255,0.15); }

.footer-social { display: flex; gap: 12px; }
.footer-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: border-color var(--transition), background var(--transition);
}
.footer-social-btn:hover { border-color: var(--red); background: rgba(196,30,32,0.1); }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-come {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1;
}
.footer-leave {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--red);
  line-height: 1;
}

.footer-copyright {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 16px 60px;
  text-align: center;
  font-family: var(--font-sub);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.footer-copyright a { color: var(--red); }

/* ============================================================
   RESPONSIVE — TABLET (max 1100px)
============================================================ */
@media (max-width: 1100px) {
  .nav-links { gap: 20px; }
  .nav-cta { font-size: 0.65rem; padding: 10px 14px; display: none; }

  .hero-content { padding: calc(var(--nav-height) + 20px) 40px 110px 48px; max-width: 580px; }
  .hero-info-bar { grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr; }

  .about-inner { grid-template-columns: 52% 48%; }
  .about-text-side { padding: 60px 40px 60px 16px; gap: 22px; }
  .about-headline { font-size: clamp(3rem, 5.5vw, 5rem); }
  .menu-inner { padding: 0 40px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid .menu-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .menu-grid-bottom .menu-card:nth-child(3) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }

  .gallery-layout { grid-template-columns: 1fr; }
  .gallery-right-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }

  .reviews-top { grid-template-columns: 1fr; }
  .reviews-rating-box { max-width: 400px; }
  .review-card { min-width: 50%; }
  .more-reviews-grid { grid-template-columns: repeat(2, 1fr); }

  .family-inner { padding: 0 40px 80px; gap: 50px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 40px 60px; }
  .location-right { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .location-logo-card { grid-column: 1 / -1; }

  .lunch-banner { grid-template-columns: 1fr; text-align: center; }
  .lunch-left { justify-content: center; }
  .lunch-right { align-items: center; }
  .full-menu-grid { grid-template-columns: 1fr; }
  .full-menu-col-center { border-left: none; border-right: none; padding: 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 0; }

  .final-info-strip { grid-template-columns: repeat(2, 1fr); }
  .final-info-divider:nth-child(4) { display: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-right { align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
============================================================ */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  /* Mobile sticky bar */
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 60px; }

  /* Hero */
  /* Hero mobile — full screen bg, stacked text */
  .hero { min-height: 100svh; }
  .hero-content { padding: calc(var(--nav-height) + 16px) 24px 110px; max-width: 100%; gap: 14px; }
  .hero-line-white { font-size: clamp(3.8rem, 16vw, 6rem); }
  .hero-line-red   { font-size: clamp(3.8rem, 16vw, 6rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .hero-stat-dot { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 4px 10px; }
  .hero-info-bar { grid-template-columns: 1fr 1fr; }
  .hero-info-bar .info-bar-divider { display: none; }
  .info-bar-item { padding: 14px 16px; }

  /* About */
  /* About mobile — stack food on top, text below */
  .about-inner { grid-template-columns: 1fr; min-height: auto; }
  .about-food-side { height: 55vw; min-height: 280px; margin-top: 0; }
  .about-food-secondary { bottom: -16px; right: -16px; width: 48%; height: 44%; }
  .about-text-side { padding: 48px 24px 48px; background: rgba(10,10,10,0.95); gap: 20px; }
  .about-headline { font-size: clamp(2.8rem, 12vw, 4rem); }
  .about-features { grid-template-columns: 1fr 1fr; }

  /* Menu */
  .menu-inner { padding: 0 24px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-grid .menu-card:nth-child(3),
  .menu-grid-bottom .menu-card:nth-child(3) { max-width: 100%; grid-column: auto; }
  .lunch-banner { padding: 32px 24px; }

  /* Gallery */
  .gallery-inner { padding: 0 24px; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gi-wide { grid-column: span 1; }
  .gallery-review-1,
  .gallery-review-2,
  .gallery-review-3 { display: none; }
  .gallery-right-col { grid-template-columns: 1fr; }
  .phone-mockup { display: none; }

  /* Reviews */
  .reviews-inner { padding: 0 24px; }
  .review-card { min-width: 100%; }
  .more-reviews-grid { grid-template-columns: 1fr; }
  .memphis-tribute { flex-direction: column; text-align: center; }

  /* Family */
  .family-inner { grid-template-columns: 1fr; padding: 0 24px 60px; gap: 40px; }
  .family-photos { height: 300px; }
  .family-photo-main { width: 90%; height: 80%; }
  .family-photo-c { display: none; }
  .family-bottom-strip { padding: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }

  /* Location */
  .location-inner { padding: 0 24px 60px; }
  .location-right { grid-template-columns: 1fr; }

  /* Final CTA */
  .final-cta-center { padding: 0 24px 60px; }
  .final-headline-white,
  .final-headline-red { font-size: clamp(3rem, 12vw, 5rem); }
  .final-buttons { flex-direction: column; }
  .final-buttons .btn { width: 100%; }
  .final-info-strip { grid-template-columns: 1fr 1fr; }
  .final-cta-sides { display: none; }

  /* IG Strip */
  .ig-strip-inner { padding: 0 24px; }

  /* Footer */
  .footer-inner { padding: 0 24px 32px; }
  .footer-come, .footer-leave { font-size: 2rem; }
  .footer-copyright { padding: 16px 24px; }

  /* Location CTA */
  .location-cta-buttons { flex-direction: column; align-items: center; }
  .reviews-cta-buttons { flex-direction: column; align-items: center; }
  .gallery-cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
  .family-badges  { grid-template-columns: 1fr; }
  .hero-info-bar  { grid-template-columns: 1fr; }
  .hero-stat-dot { display: none; }
  .final-info-strip { grid-template-columns: 1fr; }
}
