  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --cream: #F5F0E8;
    --charcoal: #1a1a1a;
    --gold: #c8800a;
    --mid: #ede8dc;
    --card: #faf7f0;
    --border: #e0d8c8;
    --muted: #888;
    --text-mid: #555;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
  }
  .grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999;
    opacity: 0.028;
    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)'/%3E%3C/svg%3E");
  }

  /* ── TYPOGRAPHY ── */
  .h-font { font-family: 'Playfair Display', Georgia, serif; }
  h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 900; line-height: 0.9; letter-spacing: -0.03em; }

  /* ── NAVBAR ── */
  nav {
    border-bottom: 1.5px solid var(--charcoal);
    position: sticky; top: 0; z-index: 100;
    background: var(--cream);
  }
  .hours-strip {
    background: var(--charcoal);
    padding: 8px 24px; text-align: center;
    font-size: 11px; letter-spacing: 0.1em; color: #aaa;
    display: flex; justify-content: center; align-items: center; gap: 20px; flex-wrap: wrap;
    position: relative;
  }
  .hours-strip strong { color: var(--cream); }
  .hours-strip a { color: var(--gold) !important; text-decoration: none; }
  .hours-strip .hours-dot { color: var(--gold); font-size: 8px; }
  .nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
    height: 64px;
  }
  .nav-logo { height: 30px; object-fit: contain; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-link {
    font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--charcoal); text-decoration: none; position: relative; padding-bottom: 2px;
  }
  .nav-link::after {
    content: ''; position: absolute; left: 0; bottom: 0;
    width: 0; height: 1.5px; background: var(--charcoal);
    transition: width 0.25s ease;
  }
  .nav-link:hover::after { width: 100%; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-block; text-decoration: none; cursor: pointer; border: none;
    font-family: 'DM Sans', sans-serif; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase; font-size: 12px;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s ease, background 0.18s;
  }
  .btn:hover { transform: translateY(-3px) scale(1.04); }
  .btn:active { transform: scale(0.97); }
  .btn-dark { background: var(--charcoal); color: var(--cream); padding: 13px 30px; }
  .btn-dark:hover { box-shadow: 0 8px 24px rgba(0,0,0,.25); }
  .btn-outline { background: transparent; color: var(--charcoal); padding: 11px 26px; border: 1.5px solid var(--charcoal); }
  .btn-outline:hover { background: var(--charcoal); color: var(--cream); }
  .btn-sm { padding: 10px 20px; font-size: 11px; }

  /* ── HERO ── */
  .hero {
    min-height: 96vh; display: flex; align-items: flex-end;
    width: 100%; position: relative; overflow: hidden; padding: 0;
  }
  .hero-photo-bg {
    position: absolute; inset: 0;
    background-image: url("img/jax-burger-hero.png");
    background-size: cover; background-position: 70% 45%;
    z-index: 0;
  }
  .hero-photo-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(10,8,5,0.18) 0%,
      rgba(10,8,5,0.10) 30%,
      rgba(10,8,5,0.55) 65%,
      rgba(10,8,5,0.88) 100%
    );
  }
  .hero-content-wrap {
    position: relative; z-index: 1;
    width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 0 48px 72px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: flex-end;
  }
  .hero-bg-text {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-52%);
    font-family: 'Playfair Display', serif; font-weight: 900;
    font-size: clamp(80px, 14vw, 190px); line-height: 0.85; letter-spacing: -0.04em;
    color: #fff; opacity: 0.04; pointer-events: none; user-select: none;
    white-space: nowrap; z-index: 1;
  }
  .hero-grid { display: contents; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,240,232,0.65); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
  .hero-h1 { font-size: clamp(52px,7vw,88px); margin-bottom: 28px; color: #fff; text-shadow: 0 2px 24px rgba(0,0,0,.35); }
  .hero-p { font-size: 16px; line-height: 1.7; color: rgba(245,240,232,0.78); max-width: 380px; margin-bottom: 36px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
  .hero-stats { display: flex; gap: 24px; align-items: center; }
  .hero-stat-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: #fff; }
  .hero-stat-label { font-size: 11px; color: rgba(245,240,232,0.55); letter-spacing: 0.1em; }
  .hero-divider { width: 1px; background: rgba(255,255,255,0.25); height: 40px; }
  /* Badge rotate */
  .badge-rotate {
    position: absolute; top: 10px; right: 160px;
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--charcoal); color: var(--cream);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transform: rotate(12deg);
  }
  .badge-rotate .br-text { font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; text-align: center; line-height: 1.2; }
  .badge-rotate .br-rule { width: 36px; height: 1px; background: var(--cream); margin: 3px 0; }
  .badge-rotate .br-year { font-family: 'Playfair Display', serif; font-size: 11px; font-weight: 700; }
  .star { color: var(--gold); }
  .btn-hero-outline { background: transparent; color: #fff; padding: 11px 26px; border: 1.5px solid rgba(255,255,255,0.65); }
  .btn-hero-outline:hover { background: #fff; color: var(--charcoal); border-color: #fff; }


  /* ── MARQUEE ── */
  .marquee-bar { border-top: 1.5px solid var(--charcoal); border-bottom: 1.5px solid var(--charcoal); overflow: hidden; padding: 10px 0; background: var(--charcoal); }
  .marquee-track { display: flex; animation: marquee 22s linear infinite; white-space: nowrap; }
  .marquee-item { display: inline-flex; gap: 40px; padding-right: 40px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); align-items: center; }
  .marquee-dot { color: var(--gold); }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── FEATURES ── */
  .features {
    width: 100%; max-width: 2000px; margin: 0 auto;
    padding: 0;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 480px;
  }
  .feature-cell {
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px 32px;
    min-height: 480px;
    cursor: default;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .feature-cell:last-child { border-right: none; }

  /* Background images */
  .feature-cell::before {
    content: '';
    position: absolute; inset: 0; z-index: 0;
    background-size: cover; background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .feature-cell:hover::before { transform: scale(1.06); }

  /* Gradient overlay for readability */
  .feature-cell::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
      to top,
      rgba(10,8,5,0.88) 0%,
      rgba(10,8,5,0.55) 45%,
      rgba(10,8,5,0.18) 100%
    );
    transition: background 0.4s ease;
  }
  .feature-cell:hover::after {
    background: linear-gradient(
      to top,
      rgba(10,8,5,0.94) 0%,
      rgba(10,8,5,0.65) 50%,
      rgba(10,8,5,0.28) 100%
    );
  }

  /* Individual card backgrounds */
  .feature-cell:nth-child(1)::before {
    background-image: url('img/buns.png');
  }
  .feature-cell:nth-child(2)::before {
    background-image: url('img/beef-patties-grill.png');
  }
  .feature-cell:nth-child(3)::before {
    background-image: url('img/IMG_3157.HEIC');
  }
  .feature-cell:nth-child(4)::before {
    background-image: url('img/byob.png');
  }

  /* Fallback gradient backgrounds if image missing */
  .feature-cell:nth-child(1) { background-color: #3a2010; }
  .feature-cell:nth-child(2) { background-color: #2a1005; }
  .feature-cell:nth-child(3) { background-color: #1a2a10; }
  .feature-cell:nth-child(4) { background-color: #1a1a2a; }

  /* Text content sits above overlays */
  .feature-text-wrap {
    position: relative; z-index: 2;
  }

  /* Tag label */
  .feature-tag {
    display: inline-block;
    font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); border: 1px solid var(--gold);
    padding: 3px 10px; margin-bottom: 16px;
    font-weight: 500;
  }

  .feature-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 2.2vw, 32px);
    font-weight: 900;
    color: #fff;
    line-height: 1.0;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .feature-desc {
    font-size: 14px;
    color: rgba(245,240,232,0.78);
    line-height: 1.65;
    font-weight: 400;
    max-width: 220px;
  }

  /* Hover: slide up a small indicator line */
  .feature-line {
    width: 0; height: 2px; background: var(--gold);
    margin-top: 20px;
    transition: width 0.4s ease;
  }
  .feature-cell:hover .feature-line { width: 40px; }

  /* Responsive */
  @media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2,1fr); min-height: auto; }
    .feature-cell { min-height: 360px; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .feature-cell:nth-child(2) { border-right: none; }
  }
  @media (max-width: 600px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-cell { min-height: 260px; border-right: none; }
    .feature-cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  }

  /* ── MENU SECTION ── */
  .menu-section { background: var(--charcoal); color: var(--cream); padding: 80px 0; }
  .menu-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
  .menu-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }
  .menu-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
  .menu-h2 { font-size: clamp(40px,6vw,72px); }
  .tab-group { display: flex; gap: 8px; }
  .tab-btn {
    padding: 10px 24px; font-family: 'DM Sans', sans-serif; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
    border: 1.5px solid var(--cream); background: transparent; color: var(--cream);
    transition: all 0.15s cubic-bezier(0.34,1.56,0.64,1);
  }
  .tab-btn.active { background: var(--cream); color: var(--charcoal); }
  .tab-btn:hover:not(.active) { transform: scale(1.06); background: rgba(245,240,232,.12); }
  .menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
  .menu-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; }
  .menu-card {
    padding: 20px; position: relative;
    background: var(--card); color: var(--charcoal);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
    display: flex; gap: 16px; align-items: center;
  }
  .menu-card:hover { transform: translateY(-5px) rotate(0.4deg); box-shadow: 0 16px 40px rgba(0,0,0,.14); }
  .menu-card.dark { background: #6c0000; color: var(--cream); }
  .mc-img {
    width: 150px; height: 200px; object-fit: cover;
    border-radius: 4px; flex-shrink: 0;
    background: #f5f0e8; aspect-ratio: 1/2;
  }
  /* Burger images - 3:4 ratio */
  #panel-burgers .mc-img {
    width: 180px; height: 240px;
    aspect-ratio: 3/4;
  }
  /* Hotdog images - 4:3 ratio */
  #panel-hotdogs .mc-img,
  #panel-sandwiches .mc-img,
  #panel-breakfast .mc-img,
  #panel-salads .mc-img,
  #panel-fries .mc-img,
  #panel-ricebowls .mc-img {
    width: 240px; height: 180px;
    aspect-ratio: 4/3;
  }

  .mc-content {
    flex: 1; display: flex; flex-direction: column;
  }
  .mc-en { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
  .mc-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 8px; }
  .mc-desc { font-size: 13px; color: #666; line-height: 1.5; margin-bottom: 16px; }
  .menu-card.dark .mc-en { color: #aaa; }
  .menu-card.dark .mc-desc { color: #bbb; }
  .mc-price { font-family: ui-monospace, 'Courier New', monospace; font-size: 20px; font-weight: 700; }

  /* Price row with patty icons */
  .mc-price-row {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: auto;
  }
  .mc-price-pill {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--mid); border: 1px solid var(--border);
    padding: 5px 10px; border-radius: 0;
  }
  .menu-card.dark .mc-price-pill {
    background: rgba(245,240,232,0.08); border-color: rgba(245,240,232,0.15);
  }
  .mpp-icon {
    font-size: 13px; line-height: 1;
  }
  .mpp-label {
    font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 500;
  }
  .menu-card.dark .mpp-label { color: rgba(245,240,232,0.45); }
  .mpp-price {
    font-family: ui-monospace, 'Courier New', monospace; font-size: 15px; font-weight: 700;
    color: var(--charcoal); line-height: 1;
  }
  .menu-card.dark .mpp-icon img { filter: invert(1); }
  .menu-card.dark .mpp-price { color: var(--cream); }

  /* Single price (no patty choice) */
  .mc-price-single {
    font-family: ui-monospace, 'Courier New', monospace; font-size: 20px; font-weight: 700;
    color: var(--charcoal); margin-top: auto;
  }
  .menu-card.dark .mc-price-single { color: var(--cream); }

  /* Two-option price (e.g. chicken only, or Single/Double) */
  .mc-price-duo {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-top: auto;
  }
  .mc-tag {
    position: absolute; top: 20px; left: 20px;
    font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 2px 8px; background: var(--charcoal); color: var(--cream);
  }
  .menu-card.dark .mc-tag { background: var(--cream); color: var(--charcoal); }
  .menu-note { margin-top: 32px; text-align: center; font-size: 13px; color: var(--muted); letter-spacing: 0.08em; line-height: 1.8; }
  .menu-note a { color: var(--gold); text-decoration: none; }

  /* Menu CTA buttons */
  .menu-cta {
    display: flex; justify-content: center; gap: 16px;
    margin-top: 40px; flex-wrap: wrap;
  }
  .menu-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 28px; font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
    text-decoration: none; text-transform: uppercase;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s;
  }
  .menu-cta-btn:hover { transform: translateY(-3px) scale(1.04); }
  .menu-cta-btn:active { transform: scale(0.97); }
  .menu-cta-call {
    background: var(--charcoal); color: var(--cream);
  }
  .menu-cta-call:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
  .menu-cta-grab {
    background: #00B14F; color: #fff;
  }
  .menu-cta-grab:hover { box-shadow: 0 8px 24px rgba(0,177,79,0.35); }
  .panel { display: none; }
  .panel.active { display: block; }

  /* ── TESTIMONIALS ── */
  .testimonials-section {
    padding: 100px 24px; background: var(--cream);
  }
  .testimonials-inner { max-width: 1200px; margin: 0 auto; }
  .testimonials-header { text-align: center; margin-bottom: 60px; }
  .testimonials-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
  .testimonials-h2 { font-size: clamp(40px,6vw,64px); margin-bottom: 16px; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px;
  }
  @media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
  .testimonial-card {
    background: var(--card); padding: 32px; border-radius: 8px;
    border: 1.5px solid var(--charcoal); position: relative;
  }
  .testimonial-stars { color: #ffc107; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
  .testimonial-card blockquote {
    font-family: 'Playfair Display', serif; font-size: 18px; line-height: 1.6;
    color: var(--charcoal); margin-bottom: 20px; font-style: italic;
  }
  .testimonial-source { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
  .testimonial-platform { color: var(--muted); font-weight: 500; }
  .testimonial-author { color: var(--charcoal); font-style: italic; }
  .testimonials-cta { text-align: center; }

  /* ── REVIEW PLATFORM CARDS ── */
  .testimonials-sub { font-size: 14px; color: var(--muted); margin-top: 8px; }
  .testimonials-trust-badges {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }
  .trust-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--card);
    border: 1px solid rgba(26,26,26,0.35);
    padding: 6px 12px;
    border-radius: 999px;
  }
  .featured-reviews {
    margin: 40px auto 0;
    max-width: 980px;
  }
  .featured-reviews-head {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }
  .featured-reviews-title {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
  }
  .review-filter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
  }
  .review-filter-chip {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(26,26,26,0.45);
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
  }
  .review-filter-chip:hover {
    transform: translateY(-1px);
    background: rgba(26,26,26,0.06);
  }
  .review-filter-chip.active {
    background: var(--charcoal);
    color: var(--cream);
  }
  .featured-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .featured-review-card {
    border: 1.5px solid var(--charcoal);
    background: var(--card);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 220px;
  }
  .featured-review-card.is-hidden {
    display: none;
  }
  .fr-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .fr-chip {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid rgba(26,26,26,0.32);
    padding: 4px 8px;
    border-radius: 999px;
  }
  .fr-source {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .fr-quote {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.01em;
  }
  .fr-stars { font-size: 12px; letter-spacing: 1px; color: #ffc107; }
  .fr-meta {
    margin-top: auto;
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.5;
  }
  .fr-author-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
  .fr-author { font-weight: 600; color: var(--charcoal); }
  .fr-date { color: var(--muted); }
  .fr-source-link {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--charcoal);
    text-decoration: none;
  }
  .fr-source-link:hover { text-decoration: underline; }
  .fr-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 0;
    font-size: 13px;
    color: var(--muted);
  }
  .fr-fallback {
    grid-column: 1 / -1;
    text-align: center;
    padding: 24px 0;
    font-size: 13px;
    color: var(--muted);
  }
  .fr-fallback a { color: var(--charcoal); font-weight: 600; }
  .testimonials-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
  .testimonials-cta--read {
    margin-top: 30px;
  }
  .testimonials-cta--mt {
    margin-top: 14px;
  }
  .testimonials-bridge {
    margin-top: 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .testimonials-bridge-label {
    font-size: 13px;
    color: var(--muted);
  }
  .testimonials-bridge-link {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 700;
  }
  .testimonials-bridge-link:hover { text-decoration: underline; }
  @media (max-width: 960px) {
    .featured-reviews-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 640px) {
    .featured-reviews-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 12px;
      padding-bottom: 6px;
    }
    .featured-review-card {
      flex: 0 0 86%;
      min-height: auto;
      scroll-snap-align: start;
    }
  }

  /* ── FACEBOOK EMBED ── */
  .fb-embed-wrap { display: flex; flex-direction: column; align-items: center; gap: 24px; }

  /* ── WHAT'S NEW (updated) ── */
  .whats-new-section {
    padding: 100px 24px; background: var(--charcoal); color: var(--cream);
  }
  .whats-new-inner { max-width: 1200px; margin: 0 auto; }
  .whats-new-header { text-align: center; margin-bottom: 60px; }
  .whats-new-eyebrow { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #888; margin-bottom: 12px; }
  .whats-new-h2 { font-size: clamp(40px,6vw,64px); margin-bottom: 16px; color: var(--cream); }
  .whats-new-sub { font-size: 14px; color: #aaa; }
  .whats-new-sub a { color: var(--cream); text-decoration: underline; }
  /* 4×1 uniform grid */
  .facebook-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  /* ── Card ── */
  .facebook-post-card {
    height: 480px;
    background: #fff; color: #1a1a1a; border-radius: 12px;
    display: flex; flex-direction: column;
    text-decoration: none; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .facebook-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
  }

  /* ── Image area (top 60% = 288px) ── */
  .fb-post-img {
    width: 100%; height: 288px; flex-shrink: 0;
    object-fit: cover; object-position: center; display: block;
  }

  /* ── Fallback placeholder ── */
  .fb-post-placeholder {
    width: 100%; height: 288px; flex-shrink: 0;
    background: #1a1a1a;
    display: flex; align-items: center; justify-content: center;
  }
  .fb-post-placeholder img { height: 40px; object-fit: contain; filter: invert(1); opacity: .7; }

  /* ── Text area (bottom 40% = 192px) ── */
  .fb-post-body {
    height: 192px; padding: 14px 16px;
    display: flex; flex-direction: column; justify-content: space-between;
    overflow: hidden; background: #fff;
  }
  .fb-post-date { font-size: 11px; color: #888; margin-bottom: 4px; flex-shrink: 0; }
  .fb-post-content { font-size: 0.88rem; line-height: 1.5; color: #1a1a1a; flex: 1; overflow: hidden; }
  .fb-post-link { font-size: 11px; color: #6c0000; font-weight: 500; flex-shrink: 0; margin-top: 8px; }
  .facebook-post-card:hover .fb-post-link { text-decoration: underline; }

  /* ── CTA row ── */
  .fb-cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 36px; }
  .fb-follow-btn { color: var(--cream); border-color: var(--cream); display: inline-flex; align-items: center; gap: 8px; }
  .fb-follow-btn:hover { background: var(--cream); color: var(--charcoal); }
  .fb-sub-note { font-size: 13px; color: #888; font-style: italic; }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .facebook-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .facebook-post-card { height: 420px; }
    .fb-post-img, .fb-post-placeholder { height: 230px; }
    .fb-post-body { height: 190px; }
  }
  @media (max-width: 600px) {
    .facebook-posts-grid { grid-template-columns: 1fr; }
  }

  /* ── QUOTE ── */
  .quote-section {
    border-top: 1.5px solid var(--charcoal); border-bottom: 1.5px solid var(--charcoal);
    padding: 80px 24px; text-align: center; background: var(--mid);
  }
  .quote-inner { max-width: 800px; margin: 0 auto; }
  blockquote {
    font-family: 'Playfair Display', serif; font-weight: 700;
    font-size: clamp(28px,5vw,52px); line-height: 1.1;
    letter-spacing: -0.02em; margin: 20px 0;
  }
  .quote-line1 {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(13px, 1.8vw, 18px);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
  }
  .quote-attr { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-top: 24px; }

  /* ── LOCATION ── */
  .location-section { padding: 0; overflow: hidden; }
  .location-map-wrap { width: 100%; height: 420px; overflow: hidden; }
  .location-map-wrap iframe { width: 100%; height: 100%; display: block; }
  .location-info-bar {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border-top: 1px solid #e0ddd6;
  }
  .loc-col { padding: 36px 40px; border-right: 1px solid #e0ddd6; }
  .loc-col:last-child { border-right: none; }
  .loc-eyebrow { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin-bottom: 8px; }
  .loc-h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1.1; margin: 0 0 12px; }
  .loc-addr { font-size: 0.9rem; color: #444; line-height: 1.6; margin-bottom: 10px; }
  .loc-landmarks { display: flex; flex-direction: column; gap: 4px; font-size: 0.82rem; color: #888; }
  .loc-info { display: flex; flex-direction: column; gap: 10px; font-size: 0.88rem; line-height: 1.6; }
  .loc-info a { color: inherit; text-decoration: underline; }
  .loc-rules-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: #888; margin-bottom: 10px; }
  .loc-rules-body { font-size: 0.88rem; line-height: 2; color: #444; }

  /* ── FOOTER ── */
  footer { border-top: 1.5px solid var(--charcoal); background: var(--charcoal); color: var(--cream); overflow: hidden; position: relative; }
  .footer-bg-text {
    position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; font-family: 'Playfair Display', serif; font-weight: 900;
    font-size: clamp(60px,18vw,200px); line-height: 0.8; letter-spacing: -0.05em;
    color: var(--cream); opacity: 0.06; pointer-events: none; user-select: none;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 24px 40px; position: relative; z-index: 1; }
  .footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; }
  .footer-logo { height: 34px; object-fit: contain; filter: invert(1); margin-bottom: 16px; display: block; }
  .footer-tagline { font-size: 13px; color: #888; max-width: 280px; line-height: 1.7; }
  .footer-cols { display: flex; gap: 48px; }
  .footer-col-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: #666; margin-bottom: 16px; }
  .footer-col-body { font-size: 13px; color: #aaa; line-height: 2; }
  .footer-col-body a { color: #aaa; text-decoration: none; }
  .footer-bottom { border-top: 1px solid #333; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
  .footer-copy { font-size: 11px; color: #666; letter-spacing: 0.08em; }
  .footer-cat { display: flex; align-items: center; gap: 10px; }
  .footer-cat-text { font-size: 11px; color: #666; font-style: italic; }

  /* ── MOBILE NAV ── */
  .nav-hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 4px;
  }
  .nav-hamburger span {
    display: block; width: 24px; height: 2px; background: var(--charcoal);
    transition: all 0.25s ease;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav-drawer {
    display: none; flex-direction: column;
    background: var(--cream); border-top: 1px solid var(--border);
    padding: 20px 24px 24px; gap: 16px;
  }
  .mobile-nav-drawer.open { display: flex; }
  .mobile-nav-drawer .nav-link { font-size: 13px; }
  .mobile-nav-drawer .btn { text-align: center; }

  /* ── OPENING HOURS (defined in nav section above) ── */

  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ══════════════════════════════════════
     RESPONSIVE — consolidated breakpoints
     ══════════════════════════════════════ */

  /* ── Small desktop (≤1024px) ── */
  @media (max-width: 1024px) {
    .badge-rotate { display: none; }
    .hero-content-wrap { padding: 0 32px 60px; }
  }

  /* ── Tablet (≤900px) ── */
  @media (max-width: 900px) {
    /* Nav */
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }

    /* Hero */
    .hero-content-wrap { grid-template-columns: 1fr; padding: 0 24px 56px; }
    .hero-grid { display: contents; }
    .burger-wrap { display: none; }
    .hero { min-height: 80vh; }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .hero-bg-text { font-size: clamp(60px, 12vw, 140px); }

    /* Menu */
    .menu-grid { grid-template-columns: repeat(2,1fr); }
    .menu-grid-2 { grid-template-columns: 1fr; }
    .menu-header { flex-direction: column; align-items: flex-start; gap: 24px; }
    .tab-group { flex-wrap: wrap; }
    .tab-btn { padding: 8px 16px; font-size: 10px; }

    /* Location */
    .location-map-wrap { height: 320px; }

    /* Footer */
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-cols { flex-wrap: wrap; gap: 32px; }
  }

  /* ── Tablet-narrow (≤768px) ── */
  @media (max-width: 768px) {
    /* Hours strip */
    .hours-strip { gap: 8px; font-size: 10px; padding: 6px 16px; }
    .hours-strip .hours-dot { display: none; }

    /* Hero */
    .hero-p { font-size: 14px; }
    .hero-stat-num { font-size: 22px; }

    /* Menu card images — shrink for tighter layout */
    .mc-img { width: 120px; height: 160px; }
    #panel-burgers .mc-img { width: 140px; height: 186px; }
    #panel-hotdogs .mc-img,
    #panel-sandwiches .mc-img,
    #panel-breakfast .mc-img,
    #panel-salads .mc-img,
    #panel-fries .mc-img,
    #panel-ricebowls .mc-img { width: 160px; height: 120px; }

    /* Testimonials — handled by existing 768px rule above */
    .testimonials-section { padding: 60px 16px; }
    .testimonial-card blockquote { font-size: 16px; }

    /* Quote */
    .quote-section { padding: 60px 16px; }
  }

  /* ── Mobile-large (≤600px) ── */
  @media (max-width: 600px) {
    /* Menu */
    .menu-grid { grid-template-columns: 1fr; }

    /* Menu cards — stack vertically */
    .menu-card { flex-direction: column; }
    .mc-img,
    #panel-burgers .mc-img,
    #panel-hotdogs .mc-img,
    #panel-sandwiches .mc-img,
    #panel-breakfast .mc-img,
    #panel-salads .mc-img,
    #panel-fries .mc-img,
    #panel-ricebowls .mc-img {
      width: 100%; height: 220px; aspect-ratio: auto;
    }

    /* Footer */
    .footer-cols { flex-direction: column; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  }

  /* ── Mobile-small (≤480px) ── */
  @media (max-width: 480px) {
    /* Hours strip */
    .hours-strip { font-size: 9px; gap: 4px; padding: 15px 10px; }

    /* Nav */
    .nav-inner { height: 52px; padding: 0 16px; }
    .nav-logo { height: 26px; }

    /* Mobile drawer touch targets */
    .mobile-nav-drawer .nav-link {
      padding: 12px 0; min-height: 44px;
      display: flex; align-items: center;
    }
    .mobile-nav-drawer .btn { min-height: 44px; display: flex; align-items: center; justify-content: center; }

    /* Hero */
    .hero { min-height: 70vh; }
    .hero-content-wrap { padding: 0 16px 36px; }
    .hero-h1 { margin-bottom: 20px; }
    .hero-p { max-width: 100%; margin-bottom: 24px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; width: 100%; }
    .hero-stats { gap: 12px; }
    .hero-stat-num { font-size: 20px; }
    .hero-stat-label { font-size: 9px; }
    .hero-divider { height: 28px; }

    /* Menu */
    .menu-section { padding: 48px 0; }
    .menu-inner { padding: 0 16px; }
    .menu-header { gap: 16px; }
    .tab-group { gap: 4px; }
    .tab-btn { padding: 7px 10px; font-size: 9px; letter-spacing: 0.06em; }
    .mc-name { font-size: 18px; }
    .mc-desc { font-size: 12px; }
    .mc-price-row { gap: 6px; }
    .menu-cta { flex-direction: column; align-items: stretch; gap: 10px; padding: 0 16px; }
    .menu-cta-btn { justify-content: center; }
    .menu-note { padding: 0 16px; }

    /* Testimonials */
    .testimonials-section { padding: 48px 12px; }
    .testimonial-card { padding: 20px; }

    /* What's New */
    .whats-new-section { padding: 48px 16px; }
    .whats-new-header { margin-bottom: 36px; }
    .facebook-post-card { height: auto; }
    .fb-post-img, .fb-post-placeholder { height: 200px; }
    .fb-post-body { height: auto; }

    /* Quote */
    .quote-section { padding: 40px 16px; }

    /* Location */
    .location-map-wrap { height: 280px; }
    .location-info-bar { grid-template-columns: 1fr; }
    .loc-col { padding: 24px 20px; border-right: none; border-bottom: 1px solid #e0ddd6; }
    .loc-col:last-child { border-bottom: none; }

    /* Footer */
    .footer-inner { padding: 32px 16px 20px; }
    .footer-tagline { max-width: 100%; }
    .footer-col-body { line-height: 2.4; }
    .footer-col-body a { display: inline-block; min-height: 44px; line-height: 44px; }
    .footer-copy { font-size: 10px; }
  }

  /* ══════════════════════════════════════
     Mobile menu cards — horizontal split
     ══════════════════════════════════════ */
  @media (max-width: 768px) {
    .menu-card {
      flex-direction: row;
      align-items: stretch;
      gap: 0;
      min-height: 110px;
      height: auto;
      border-radius: 10px;
      overflow: hidden;
      padding: 0;
    }

    .mc-img,
    #panel-burgers .mc-img,
    #panel-hotdogs .mc-img,
    #panel-sandwiches .mc-img,
    #panel-breakfast .mc-img,
    #panel-salads .mc-img,
    #panel-fries .mc-img,
    #panel-ricebowls .mc-img {
      width: 120px;
      height: auto;
      flex-shrink: 0;
      aspect-ratio: auto;
      object-fit: cover;
      object-position: center;
      border-radius: 0;
      align-self: stretch;
    }

    .mc-content {
      padding: 12px 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
      min-width: 0;
    }

    .mc-tag {
      position: static;
      margin-bottom: 4px;
      font-size: 8px;
      padding: 2px 6px;
      align-self: flex-start;
    }

    .mc-en { font-size: 9px; margin-bottom: 2px; }

    .mc-name {
      font-size: 0.95rem;
      font-weight: bold;
      margin-bottom: 4px;
    }

    .mc-desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.4;
      margin-bottom: 8px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .mc-price-row,
    .mc-price-single,
    .mc-price-duo {
      margin-top: auto;
    }

    .mc-price-pill { padding: 3px 8px; }
    .mpp-price { font-size: 13px; }
    .mc-price-single { font-size: 16px; }
  }

  /* ── Hero cat SVG ── */
  .hero-cat { flex-shrink: 0; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }

  /* ── Inline icon shrink ── */
  .icon-shrink { flex-shrink: 0; }

  /* ── Fade-up stagger delays ── */
  .fade-up--d1 { transition-delay: .08s; }
  .fade-up--d2 { transition-delay: .16s; }
  .fade-up--d3 { transition-delay: .24s; }

  /* ── Testimonials CTA spacing ── */
  .testimonials-cta--mt { margin-top: 48px; }

  /* ── FB loading state ── */
  .fb-loading { text-align: center; color: #888; }

  /* ── FB fallback ── */
  .fb-fallback { text-align: center; padding: 40px 0; }
  .fb-fallback-msg { color: #aaa; margin-bottom: 20px; font-size: 14px; }

  /* ── Quote section icon ── */
  .quote-icon { display: block; margin: 0 auto 16px; }

  /* ── Footer quick actions ── */
  .footer-actions {
    display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
    padding: 16px 24px; border-bottom: 1px solid #333; position: relative; z-index: 1;
  }
  .footer-action-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 20px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--cream); border: 1px solid #444; text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
  }
  .footer-action-btn:hover { background: rgba(245,240,232,0.1); border-color: var(--cream); }
