/* ═══════════════════════════════════════════════════
   ABBASI CAFE — TASTE THE FLAME
   Enhanced Visual Design
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Core palette */
  --forest:    #0e2a09;
  --forest-2:  #163d10;
  --forest-3:  #1e5218;
  --heading:   #c49a22;
  --gold:      #d4a82a;
  --gold-pale: #e8c96a;
  --flame:     #c94b1a;
  --ember:     #e05c20;
  --ink:       #1c160e;
  --muted:     #7a6e5e;
  --ivory:     #fff9ed;
  --ivory-2:   #fbf2de;
  --ivory-3:   #f5e8ca;
  --sand:      #ead7b4;
  --sand-2:    #d8ba88;
  --cream:     #fdf6e8;
  --card:      rgba(255, 252, 242, 0.94);
  --line:      rgba(36, 29, 20, 0.12);
  --gold-line: rgba(196, 154, 34, 0.28);

  /* Typography */
  --display: 'Cinzel', Copperplate, Georgia, serif;
  --serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --body:    'Inter', Avenir, 'Helvetica Neue', Arial, sans-serif;

  /* Shadows */
  --shadow:      0 32px 80px rgba(14, 42, 9, 0.22);
  --soft-shadow: 0 16px 44px rgba(14, 42, 9, 0.12);
  --glow:        0 0 48px rgba(212, 168, 42, 0.18);

  /* Transitions */
  --ease: cubic-bezier(0.22, 0.68, 0, 1.2);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  max-width: 100vw;
  overflow-x: clip;
  color: var(--forest);
  background: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

/* ── Texture overlay on body ────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 58px);
  height: 68px;
  background: rgba(14, 42, 9, 0.97);
  border-bottom: 1px solid rgba(196, 154, 34, 0.2);
  backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(196, 154, 34, 0.12), 0 4px 24px rgba(0,0,0,0.18);
}

/* Gold line accent under header */
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(212, 168, 42, 0.4));
}

.brand strong,
.brand small,
.hero-label strong,
.hero-label small { display: block; }

.brand strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small,
.footer span,
.hero-label small {
  color: var(--ember);
  font-family: 'Cormorant Garamond', cursive;
  font-size: 0.92rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  color: rgba(255, 249, 237, 0.72);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.22s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--ember));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.nav a:hover { color: var(--gold-pale); }
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--gold); }

.header-cta {
  padding: 9px 20px;
  color: var(--forest);
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(196, 154, 34, 0.3);
}
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 154, 34, 0.4);
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.22s var(--ease), box-shadow 0.22s ease;
}

.btn:hover { transform: translateY(-3px); }

.primary {
  color: var(--forest);
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 60%, var(--heading) 100%);
  border: none;
  box-shadow: 0 8px 28px rgba(196, 154, 34, 0.35);
}
.primary:hover {
  box-shadow: 0 14px 40px rgba(196, 154, 34, 0.5);
}

.ghost {
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(255, 249, 237, 0.3);
}
.ghost:hover {
  background: rgba(255, 249, 237, 0.08);
  border-color: rgba(255, 249, 237, 0.5);
}

.ghost.dark {
  color: var(--ivory);
  border-color: rgba(255, 249, 237, 0.25);
}

/* ══════════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════════ */
.home-section, .section { scroll-margin-top: 78px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1;
  color: var(--forest);
}

h1 {
  font-size: clamp(46px, 5.5vw, 72px);
  letter-spacing: 0.04em;
  line-height: 0.96;
}

h2 {
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: 0.06em;
}

h3 { font-size: 1.35rem; letter-spacing: 0.05em; }

/* ══════════════════════════════════════════════════
   HERO — full-bleed grill background (CSS bg-image)
══════════════════════════════════════════════════ */
.home-section { background: #060e04; }

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92vh;
  padding: clamp(56px, 8vw, 100px) clamp(32px, 6vw, 96px) clamp(72px, 8vw, 104px);
  overflow: hidden;

  /*
   * Background: sizzling skewers / choma on the grill.
   * Using Pexels direct image (publicly accessible, no auth required).
   * Photo 1860208 = close-up of grilled meat skewers, charcoal and flames.
   */
  /*
   * Pexels 410648 — close-up of beef/chicken skewers on a charcoal grill,
   * dark coals glowing orange, smoke rising. Perfect grill restaurant feel.
   */
  background-image:
    linear-gradient(108deg,
      rgba(3, 10, 2, 0.90)  0%,
      rgba(5, 18, 3, 0.82) 30%,
      rgba(7, 22, 4, 0.46) 55%,
      rgba(3,  9, 2, 0.16) 100%
    ),
    linear-gradient(180deg,
      rgba(22, 9, 2, 0.44)  0%,
      rgba(40, 16, 3, 0.10) 50%,
      rgba(12, 5, 1, 0.55) 100%
    ),
    url('sizzling-meat-kebabs-fiery-grill.jpg');
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
}

/* Gold shimmer rule at the hero's bottom edge */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--gold) 35%, var(--ember) 65%, transparent 100%);
  opacity: 0.45;
  z-index: 2;
  pointer-events: none;
}

/* Text layer */
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-mark {
  width: 52px;
  filter: drop-shadow(0 0 20px rgba(212, 168, 42, 0.55));
}

.hero-label strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-label small {
  color: var(--ember) !important;
  font-family: var(--serif) !important;
  font-size: 0.96rem !important;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}

h1 {
  color: var(--ivory);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.hero-subheading {
  margin: 22px 0 14px;
  color: var(--gold-pale);
  font-family: var(--serif);
  font-size: clamp(17px, 1.9vw, 21px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.46;
}

.hero-text,
.section p,
.visit-details,
.menu-note {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.hero-text {
  max-width: 490px;
  margin: 0 0 30px;
  color: rgba(255, 249, 237, 0.66);
  font-size: 15px;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-highlights span {
  padding: 7px 15px;
  color: var(--gold-pale);
  background: rgba(255, 249, 237, 0.06);
  border: 1px solid rgba(196, 154, 34, 0.28);
  border-radius: 2px;
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

/* Hide elements not used in this layout */
.hero-bg, .hero-bg-img, .hero-bg-overlay,
.hero-art, .hero-dish-card { display: none; }

/* ── Intro strip ───────────────────────────────── */
.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(255,249,237,0.95), rgba(251,242,222,0.8));
}

.intro-section > div:last-child { max-width: 640px; }

.intro-section p:last-child {
  font-size: 16px;
  line-height: 1.78;
}

.intro-art {
  position: relative;
  padding: 14px;
  background: rgba(255, 252, 244, 0.94);
  border: 1px solid rgba(36, 29, 20, 0.08);
  box-shadow: 0 16px 40px rgba(14, 42, 9, 0.08);
}

/* L-shaped gold corner accent */
.intro-art::after {
  content: '';
  position: absolute;
  right: -16px; bottom: -16px;
  width: 30%; height: 26%;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  opacity: 0.18;
  pointer-events: none;
}

.intro-art img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ══════════════════════════════════════════════════
   MENU SECTION
══════════════════════════════════════════════════ */
.section {
  padding: clamp(64px, 7.5vw, 112px) clamp(22px, 5.5vw, 88px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 32px;
  align-items: end;
  max-width: 1120px;
  margin-bottom: 32px;
}

.section-head p, .section-head h2 { grid-column: 1; }

.text-link {
  grid-column: 2;
  grid-row: 2 / span 2;
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--gold); }

.menu-section {
  background:
    linear-gradient(180deg, var(--cream) 0%, #fffaf0 100%);
  border-block: 1px solid var(--line);
}

/* Category filter chips */
.menu-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 26px;
}

.chip {
  flex: 0 0 auto;
  padding: 8px 16px;
  color: var(--forest-2);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 29, 20, 0.1);
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease-out);
}

.chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--forest);
  box-shadow: 0 6px 18px rgba(14, 42, 9, 0.08);
}

.chip.active {
  color: var(--ivory);
  background: var(--forest);
  border-color: var(--forest);
  box-shadow: 0 8px 22px rgba(14, 42, 9, 0.22);
}

/* Menu layout */
.menu-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

/* ── Menu item card ─────────────────────────────── */
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
  min-height: 88px;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid rgba(36, 29, 20, 0.07);
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 10px rgba(14, 42, 9, 0.04);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease, border-color 0.22s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 34, 0.5);
  box-shadow: 0 12px 32px rgba(14, 42, 9, 0.1);
}

.menu-item small {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-item h3 {
  margin: 3px 0 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.18;
  text-transform: uppercase;
}

.price {
  color: var(--heading);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Spice indicators */
.spice-row {
  grid-column: 1;
  display: flex;
  gap: 3px;
  align-items: center;
  margin-top: 2px;
}

.chilli {
  display: inline-grid;
  width: 12px;
  height: 15px;
  place-items: center;
  opacity: 0.42;
  transition: opacity 0.2s ease;
}

.chilli.active { opacity: 1; }

.chilli svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: rgba(109, 98, 83, 0.36);
}

.chilli .chilli-stem {
  fill: none;
  stroke: rgba(14, 42, 9, 0.34);
  stroke-linecap: round;
  stroke-width: 1.5;
}

.chilli.active svg {
  fill: var(--flame);
}

.chilli.active .chilli-stem {
  stroke: var(--forest-3);
}

.menu-preview {
  position: absolute;
  right: 10px;
  bottom: calc(100% + 10px);
  z-index: 30;
  display: grid;
  width: min(310px, calc(100vw - 44px));
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 11px;
  padding: 10px;
  color: var(--forest);
  background: rgba(255, 252, 244, 0.98);
  border: 1px solid rgba(171, 128, 23, 0.24);
  box-shadow: 0 18px 42px rgba(35, 24, 9, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s var(--ease-out);
}

.menu-item:hover .menu-preview {
  opacity: 1;
  transform: translateY(0);
}

.menu-preview img {
  width: 78px;
  height: 78px;
  object-fit: cover;
  border: 1px solid rgba(36, 29, 20, 0.1);
}

.menu-preview span {
  display: block;
  margin-bottom: 3px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-preview strong {
  display: block;
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.menu-preview p {
  margin: 5px 0 7px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.38;
}

.preview-spice {
  display: flex;
  gap: 3px;
}

/* Add button */
.add-btn {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: end;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ember), var(--flame));
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(201, 75, 26, 0.28);
  transition: transform 0.18s var(--ease), box-shadow 0.18s ease;
}
.add-btn:hover {
  transform: scale(1.18);
  box-shadow: 0 8px 22px rgba(201, 75, 26, 0.4);
}
.add-btn:active { transform: scale(0.94); }

.menu-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}

/* ── Order panel (cart) ─────────────────────────── */
.order-panel {
  padding: 18px;
  background: rgba(255, 252, 244, 0.98);
  border: 1px solid rgba(36, 29, 20, 0.08);
  box-shadow: 0 16px 40px rgba(14, 42, 9, 0.08);
}

.menu-cart {
  position: sticky;
  top: 90px;
}

.cart-head {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-head .eyebrow { margin-bottom: 6px; }

.cart-head h3 { color: var(--heading); font-size: 1.2rem; }

.order-items {
  min-height: 90px;
  max-height: 310px;
  overflow: auto;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.order-items li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.order-items .empty {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.55;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.cart-line strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cart-line small {
  color: var(--heading);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.cart-controls {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn, .remove-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.qty-btn {
  width: 26px;
  height: 26px;
  font-size: 0.88rem;
}
.qty-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--ivory);
}

.cart-controls span {
  min-width: 22px;
  text-align: center;
  font-family: var(--display);
  font-size: 0.8rem;
  font-weight: 700;
}

.remove-btn {
  margin-left: auto;
  padding: 4px 10px;
  color: var(--flame);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.remove-btn:hover {
  background: var(--flame);
  border-color: var(--flame);
  color: #fff;
}

.cart-totals {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-block: 1px solid var(--line);
  color: var(--forest);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-totals div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-note {
  margin: 10px 0 18px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  line-height: 1.5;
}

.full { width: 100%; }

/* ══════════════════════════════════════════════════
   STORY SECTION
══════════════════════════════════════════════════ */
.story-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: clamp(44px, 6vw, 90px);
  align-items: center;
  background:
    radial-gradient(ellipse 60% 50% at 92% 20%, rgba(201, 75, 26, 0.08), transparent 40%),
    linear-gradient(180deg, var(--sand) 0%, var(--ivory) 100%);
}

.story-section h2 { color: var(--forest); }

.story-copy { max-width: 780px; }

.story-copy p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.8;
  margin-top: 18px;
}

.story-gallery {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 252, 244, 0.95);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.story-gallery img {
  width: 100%;
  height: 100%;
  min-height: 195px;
  object-fit: cover;
}

.feature-dish { grid-row: span 2; }

/* ══════════════════════════════════════════════════
   ORDER SECTION
══════════════════════════════════════════════════ */
.order-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: clamp(36px, 5.5vw, 80px);
  align-items: center;
  background:
    linear-gradient(108deg,
      rgba(4, 14, 2, 0.92) 0%,
      rgba(6, 20, 4, 0.85) 35%,
      rgba(8, 24, 5, 0.60) 65%,
      rgba(4, 12, 2, 0.82) 100%
    ),
    url('delicious-street-food-still-life.jpg')
    center 60% / cover no-repeat;
}

.order-section h2 { color: var(--gold); }
.order-section .eyebrow { color: var(--ember); }
.order-section p { color: rgba(255, 249, 237, 0.8); font-size: 16px; line-height: 1.76; }

.order-copy { max-width: 640px; }

.order-feature {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 249, 237, 0.15);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.order-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.order-feature div {
  position: absolute;
  right: 0; bottom: 0; left: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(10, 30, 6, 0.94));
}

.order-feature span, .order-feature strong { display: block; }

.order-feature span {
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.order-feature strong {
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
}

/* ══════════════════════════════════════════════════
   VISIT SECTION
══════════════════════════════════════════════════ */
.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 0.56fr) minmax(300px, 0.9fr);
  gap: 16px;
  align-items: stretch;
  max-width: 1260px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.94), rgba(250, 241, 220, 0.7));
}

.visit-card, .qr, .location-panel {
  padding: 26px;
  background: rgba(255, 252, 244, 0.95);
  border: 1px solid rgba(36, 29, 20, 0.08);
  box-shadow: 0 12px 30px rgba(14, 42, 9, 0.06);
}

.visit-card h2 { color: var(--forest); font-size: clamp(26px, 2.8vw, 38px); }

.visit-details {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  font-size: 14px;
}

.visit-details div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.visit-details dt {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-details dd {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin: 5px 0 0;
  color: var(--forest);
  font-size: 14px;
}

.visit-details a {
  color: var(--forest-3);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.18s ease;
}
.visit-details a:hover { color: var(--gold); }

/* QR card */
.qr {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
}

.qr h3 { color: var(--heading); }

.qr img {
  width: min(130px, 72%);
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(36, 29, 20, 0.08);
  box-shadow: 0 8px 20px rgba(14, 42, 9, 0.06);
}

.qr span {
  max-width: 180px;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}

/* Location panel */
.location-panel {
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  gap: 10px;
  min-height: 320px;
}

.location-panel .eyebrow { margin-bottom: 4px; }
.location-panel h3 { color: var(--forest); }
.location-panel p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.location-map {
  display: block;
  height: 220px;
  margin-top: 4px;
  overflow: hidden;
  border: 1px solid rgba(36, 29, 20, 0.1);
  border-radius: 2px;
  background: var(--sand);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.85) contrast(1.05);
}




.map-link {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 16px;
  color: var(--forest);
  background: var(--ivory);
  border: 1px solid rgba(14, 42, 9, 0.14);
  border-radius: 2px;
  font-family: var(--display);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.map-link:hover {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(22px, 5.5vw, 88px);
  color: var(--ivory);
  background: linear-gradient(135deg, #071505, #0e2a09);
  border-top: 1px solid rgba(196, 154, 34, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer { position: relative; }

.footer img {
  width: 46px;
  filter: drop-shadow(0 0 8px rgba(212, 168, 42, 0.3));
}

.footer p {
  margin: 0 auto 0 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer span {
  display: block;
  color: var(--ember);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer a {
  color: rgba(255, 249, 237, 0.5);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.footer a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════
   MOBILE CART
══════════════════════════════════════════════════ */
.mobile-cart-bar, .cart-drawer { display: none; }

.quick-view {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  align-items: end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.quick-view.open {
  pointer-events: auto;
  opacity: 1;
}

.quick-view-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.46);
}

.quick-view-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 14px;
  padding: 14px;
  color: var(--forest);
  background: var(--ivory);
  border: 1px solid rgba(171, 128, 23, 0.24);
  box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.28);
  transform: translateY(18px);
  transition: transform 0.22s var(--ease-out);
}

.quick-view.open .quick-view-panel { transform: translateY(0); }

.quick-view-close {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 34px;
  padding: 8px 12px;
  color: var(--forest);
  background: rgba(255, 249, 237, 0.86);
  border: 1px solid rgba(36, 29, 20, 0.12);
  cursor: pointer;
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-view-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid rgba(36, 29, 20, 0.1);
}

.quick-view-category {
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-view-title {
  margin: 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-view-description {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.quick-view-spice {
  display: flex;
  gap: 4px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1220px) {
  .menu-shell { grid-template-columns: minmax(0, 1fr) 296px; }
  .menu-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .visit-section { grid-template-columns: minmax(0, 1fr) 240px; }
  .location-panel { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .hero, .intro-section, .story-section, .order-section, .visit-section {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 100svh;
    grid-template-columns: 1fr;
    padding: 80px 22px 60px;
    align-items: flex-end;
  }
  .hero-copy { max-width: 100%; }
  .menu-shell { grid-template-columns: 1fr; }
  .menu-cart { display: none; }
  .menu-preview { display: none; }
  .story-gallery { grid-template-columns: 1fr; }
  .feature-dish { grid-row: auto; }
  .visit-section, .location-panel { grid-column: auto; }

  .mobile-cart-bar {
    position: fixed;
    right: 14px; bottom: 14px; left: 14px;
    z-index: 90;
    display: block;
  }
  .mobile-cart-bar[hidden] { display: none; }
  .mobile-cart-bar button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    color: var(--ivory);
    background: linear-gradient(135deg, var(--forest-2), var(--forest));
    border: 1px solid rgba(196, 154, 34, 0.25);
    border-radius: 6px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    cursor: pointer;
  }
  .mobile-cart-bar strong, .mobile-cart-bar small, .mobile-cart-bar em {
    display: block;
    font-style: normal;
  }
  .mobile-cart-bar strong { font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.06em; }
  .mobile-cart-bar small { color: var(--gold-pale); font-size: 0.78rem; margin-top: 2px; }
  .mobile-cart-bar em {
    color: var(--gold);
    font-family: var(--display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    align-items: end;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease;
  }
  .cart-drawer.open { pointer-events: auto; opacity: 1; }

  .cart-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.48);
    cursor: default;
  }

  .cart-drawer-panel {
    position: relative;
    z-index: 1;
    max-height: 84vh;
    overflow: auto;
    padding: 24px;
    background: var(--ivory);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(24px);
    transition: transform 0.24s var(--ease-out);
  }
  .cart-drawer.open .cart-drawer-panel { transform: translateY(0); }

  .drawer-close {
    float: right;
    padding: 8px 14px;
    color: var(--forest);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--display);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
}

@media (max-width: 720px) {
  .site-header { gap: 10px; padding-inline: 14px; }
  .brand img { width: 34px; height: 34px; }
  .brand strong { font-size: 0.72rem; }
  .brand small { font-size: 0.78rem; }
  .nav { gap: 12px; max-width: 50vw; overflow-x: auto; font-size: 0.6rem; }
  .header-cta { padding: 8px 14px; font-size: 0.6rem; }

  .hero { gap: 22px; padding: 72px 18px 44px; }
  .hero h1 { font-size: 36px; }
  h2 { font-size: 24px; }
  .hero-subheading { margin-top: 14px; font-size: 18px; }
  .hero-text, .section p, .visit-details, .menu-note { font-size: 15px; }
  .hero-text { margin-bottom: 22px; }
  .hero-highlights { margin-top: 14px; }
  .hero-art { padding: 10px; }
  .btn { width: 100%; font-size: 0.72rem; }
  .section { padding: 62px 18px; }
  .section-head, .menu-list { grid-template-columns: 1fr; }
  .text-link { grid-column: 1; grid-row: auto; }
  .menu-controls { flex-wrap: wrap; overflow: visible; }
  .menu-item { min-height: 90px; }
  .footer { align-items: flex-start; flex-direction: column; padding-bottom: 96px; }
  .story-copy p { font-size: 15px; }
}
