/* ============================================
   Happy Wife Burgers & Pizza — Design System
   Lahore's most trusted neighbourhood kitchen
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Core palette */
  --ink:        #110E0A;   /* deep grill black */
  --ink-soft:   #1E1811;   /* lifted dark panel */
  --ink-card:   #251D14;   /* card surfaces */
  --cream:      #FFF6E0;   /* warm paper */
  --cream-dim:  #C8BA9A;   /* muted secondary text */
  --cream-faint:#3D3121;   /* very subtle cream on dark */
  --amber:      #F5AC00;   /* primary accent — gold */
  --amber-deep: #C77800;   /* hover amber */
  --amber-glow: rgba(245,172,0,0.18);
  --brick:      #C0281E;   /* sauce-red */
  --brick-deep: #8C1B17;
  --brick-glow: rgba(192,40,30,0.2);
  --green:      #25D366;   /* WhatsApp */
  --line:       rgba(255,246,224,0.10);
  --line-med:   rgba(255,246,224,0.18);

  /* Typography */
  --font-display: "Anton", "Archivo Black", sans-serif;
  --font-script:  "Caveat", cursive;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono:    "Space Mono", "Courier New", monospace;

  /* Layout */
  --container: 1160px;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
}

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

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

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 640px) { .wrap { padding: 0 32px; } }
@media (min-width: 1024px) { .wrap { padding: 0 40px; } }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* Focus */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ============================================
   Shared typography helpers
   ============================================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.script {
  font-family: var(--font-script);
  text-transform: none;
  color: var(--amber);
  line-height: 1;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-whatsapp {
  background: var(--green);
  color: #062e15;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover {
  background: #1eb859;
  box-shadow: 0 8px 28px rgba(37,211,102,0.42);
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 4px 20px var(--amber-glow);
}
.btn-primary:hover {
  background: var(--amber-deep);
  box-shadow: 0 8px 28px rgba(245,172,0,0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--line-med);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.84rem;
  min-height: 38px;
}

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 14, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--amber);
  line-height: 1;
}
.brand-sub {
  font-family: var(--font-display);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: var(--cream-dim);
  text-transform: uppercase;
}

/* Desktop nav */
.main-nav { display: none; }
.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--cream-dim);
  transition: color 0.18s ease, background 0.18s ease;
}
.main-nav a:hover { color: var(--cream); background: rgba(255,246,224,0.06); }
.main-nav a.active { color: var(--amber); }

/* Header CTA */
.header-cta { display: none; }

/* Hamburger toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-med);
  border-radius: var(--radius-sm);
  color: var(--cream);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.nav-toggle:hover { background: var(--cream-faint); border-color: var(--amber); }
.nav-toggle svg { width: 20px; height: 20px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding: 0 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav ul { list-style: none; padding: 6px 0 20px; }
.mobile-nav li { border-top: 1px solid var(--line); }
.mobile-nav li:first-child { border-top: none; }
.mobile-nav a {
  display: block;
  padding: 14px 4px;
  font-weight: 600;
  color: var(--cream-dim);
  transition: color 0.15s ease;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--amber); }
.mobile-nav .btn {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
}

@media (min-width: 900px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}

/* multi-layer atmospheric gradient */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 70% at 70% -10%, rgba(245,172,0,0.13) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 110%, rgba(192,40,30,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(245,172,0,0.06) 0%, transparent 50%);
  pointer-events: none;
}

/* subtle diagonal texture */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,246,224,0.012) 0 1px,
    transparent 1px 28px
  );
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  width: 100%;
}

.hero-copy { max-width: 620px; }

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 5px var(--amber-glow);
  flex-shrink: 0;
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px var(--amber-glow); }
  50%       { box-shadow: 0 0 0 10px rgba(245,172,0,0.06); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.93;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero h1 .script-line {
  display: block;
  font-family: var(--font-script);
  text-transform: none;
  color: var(--amber);
  font-size: 0.42em;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-lede {
  max-width: 48ch;
  font-size: 1.05rem;
  color: var(--cream-dim);
  margin: 22px 0 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

/* info chips */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--cream-dim);
  background: rgba(255,246,224,0.05);
  border: 1px solid var(--line-med);
  border-radius: 999px;
  padding: 7px 14px;
}
.hero-chip svg { width: 13px; height: 13px; color: var(--amber); flex-shrink: 0; }

/* Illustrated burger */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger-illustration {
  width: min(340px, 85vw);
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.6));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-badge {
  position: absolute;
  top: -6px;
  right: 4%;
  width: 94px; height: 94px;
  border: 2px solid var(--brick);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-14deg);
  background: rgba(192,40,30,0.10);
  backdrop-filter: blur(4px);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(-14deg) rotate(360deg); }
}
.hero-badge span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--brick);
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  animation: counter-spin 20s linear infinite;
}
@keyframes counter-spin {
  to { transform: rotate(-360deg); }
}

@media (min-width: 860px) {
  .hero .wrap {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 96px;
  }
  .hero { min-height: auto; }
}

/* ============================================
   Stats bar
   ============================================ */
.stats-bar {
  background: var(--amber);
  padding: 0;
  overflow: hidden;
}
.stats-bar .wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  border-right: 1px solid rgba(0,0,0,0.12);
  flex: 1 1 200px;
  min-width: 160px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--ink);
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(17,14,10,0.72);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   Featured section
   ============================================ */
.featured {
  padding: 96px 0 80px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245,172,0,0.06), transparent 65%);
  pointer-events: none;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 52px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.section-header p {
  color: var(--cream-dim);
  max-width: 52ch;
  font-size: 1rem;
  margin-top: 6px;
}

/* Order-ticket cards */
.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 24px;
}

.ticket {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 26px 22px 22px;
  transform: rotate(var(--tilt, -1.2deg));
  box-shadow: 0 20px 40px rgba(0,0,0,0.38), 0 2px 0 rgba(255,246,224,0.05);
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.55s ease, translate 0.55s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.ticket.in-view { opacity: 1; translate: 0 0; }
.ticket:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 28px 50px rgba(0,0,0,0.45);
}
.ticket:nth-child(2) { --tilt:  1.1deg; }
.ticket:nth-child(3) { --tilt: -0.5deg; }
.ticket:nth-child(4) { --tilt:  1.8deg; }

/* perforated edge */
.ticket::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 12px;
  background-image: radial-gradient(circle, #2A2018 3.5px, transparent 4px);
  background-size: 18px 12px;
  background-position: 4px 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.ticket-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brick-deep);
  background: rgba(192,40,30,0.1);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  margin: 14px 0 12px;
}
.ticket h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 8px;
  line-height: 1.05;
}
.ticket p {
  font-size: 0.87rem;
  color: #5a4e3e;
  margin-bottom: 18px;
  line-height: 1.5;
}
.ticket-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px dashed #cdbfa0;
  padding-top: 16px;
}
.ticket-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}
.ticket-price::before { content: "Rs "; font-size: 0.72em; color: #9a8d76; font-weight: 400; }
.ticket-add {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 40px;
  transition: background 0.18s ease, transform 0.15s ease;
}
.ticket-add:hover { background: var(--brick-deep); transform: scale(1.04); }

@media (min-width: 600px)  { .ticket-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .ticket-grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   Deals banner
   ============================================ */
.deals-banner {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(120deg, var(--brick-deep) 0%, var(--brick) 40%, #D44F1B 100%);
  overflow: hidden;
}
.deals-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.04) 0 2px,
    transparent 2px 22px
  );
  pointer-events: none;
}
.deals-banner::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.deals-banner .wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.deals-banner h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 6.5vw, 3rem);
  color: var(--cream);
  line-height: 0.97;
  letter-spacing: -0.01em;
}
.deals-banner h2 .script {
  display: block;
  font-family: var(--font-script);
  text-transform: none;
  font-size: 0.48em;
  color: rgba(255,246,224,0.72);
  margin-bottom: 4px;
  font-weight: 600;
}

.deals-banner p {
  max-width: 46ch;
  color: rgba(255,246,224,0.85);
  font-size: 1rem;
  line-height: 1.6;
}

.deals-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.deals-pills span {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  background: rgba(17,14,10,0.25);
  border: 1px solid rgba(255,246,224,0.28);
  color: var(--cream);
  padding: 7px 14px;
  border-radius: 999px;
}

.deals-banner .btn-outline {
  border-color: rgba(255,246,224,0.6);
  color: var(--cream);
  align-self: flex-start;
}
.deals-banner .btn-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
}

@media (min-width: 780px) {
  .deals-banner .wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  .deals-copy { max-width: 58%; }
  .deals-banner .btn-outline { white-space: nowrap; align-self: center; }
}

/* ============================================
   About / location strip
   ============================================ */
.about-strip {
  padding: 96px 0;
  background: var(--ink);
}
.about-strip .wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy .eyebrow { margin-bottom: 18px; }

.about-copy h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  margin-bottom: 18px;
  line-height: 1;
}

.about-copy p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 50ch;
}

.hours-table {
  margin-top: 28px;
  border: 1px solid var(--line-med);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--cream-dim); }
.hours-row .time { color: var(--amber); font-weight: 700; }
.hours-note {
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--cream-dim);
  opacity: 0.65;
  font-style: italic;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-med);
  background: var(--ink-card);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}
.map-card iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: contrast(1.05) saturate(0.95);
  display: block;
}
.map-card-foot {
  padding: 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.map-card-foot svg {
  width: 18px; height: 18px;
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (min-width: 900px) {
  .about-strip .wrap { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Social proof strip
   ============================================ */
.social-strip {
  background: var(--ink-soft);
  padding: 64px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.social-strip .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.social-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  text-transform: uppercase;
}
.social-strip p { color: var(--cream-dim); max-width: 50ch; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: #0B0806;
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--amber);
  display: block;
  line-height: 1;
}
.footer-brand p {
  color: var(--cream-dim);
  font-size: 0.88rem;
  max-width: 30ch;
  margin-top: 14px;
  line-height: 1.65;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  color: var(--cream-dim);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--cream-dim);
  opacity: 0.7;
}

.footer-credit {
  margin-top: 18px;
  text-align: center;
  font-size: 0.74rem;
  color: var(--cream-dim);
  opacity: 0.55;
}
.footer-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--line);
  transition: color 0.15s ease, opacity 0.15s ease;
}
.footer-credit a:hover { color: var(--amber); opacity: 1; }

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
}

/* ============================================
   Page intro (menu/deals/etc)
   ============================================ */
.page-intro {
  padding: 64px 0 24px;
  background:
    radial-gradient(ellipse 60% 55% at 90% 0%, rgba(245,172,0,0.12), transparent 58%),
    var(--ink);
  border-bottom: 1px solid var(--line);
}
.page-intro .wrap { max-width: 760px; }
.page-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--amber);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.page-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--amber);
}
.page-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  line-height: 0.97;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.page-title .script-line {
  display: block;
  font-family: var(--font-script);
  text-transform: none;
  color: var(--amber);
  font-size: 0.46em;
  line-height: 1.4;
  margin-bottom: 4px;
}
.page-lede {
  color: var(--cream-dim);
  max-width: 60ch;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}
.page-lede a { color: var(--amber); text-decoration: underline; }

/* ============================================
   Quick-jump chips (menu page)
   ============================================ */
.quick-jump-bar {
  position: sticky;
  top: 70px;
  z-index: 40;
  background: rgba(17,14,10,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.quick-jump {
  display: flex;
  gap: 6px;
  padding: 12px 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.quick-jump::-webkit-scrollbar { display: none; }
.quick-jump a {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-med);
  color: var(--cream-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.quick-jump a:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.quick-jump a.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  font-weight: 700;
}

/* ============================================
   Menu sections + item cards
   ============================================ */
.menu-section {
  padding: 56px 0 64px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 130px;
}
.menu-section:first-of-type { border-top: none; padding-top: 40px; }

.menu-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.menu-section-head h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  letter-spacing: -0.01em;
  line-height: 1;
}
.menu-section-head .item-count {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--cream-dim);
  background: var(--cream-faint);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-med);
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 560px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }

.menu-item {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.menu-item:hover {
  box-shadow: 0 20px 42px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}

.menu-item h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1.1;
  margin: 4px 0 0;
}
.menu-item .desc {
  font-size: 0.85rem;
  color: #5a4e3e;
  line-height: 1.55;
  flex-grow: 0;
}

/* Size pills */
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.size-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background: transparent;
  border: 1.5px solid #c8b896;
  color: #5a4e3e;
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  min-height: 34px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.size-pill:hover { border-color: var(--ink); }
.size-pill[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}

/* Item footer */
.item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1.5px dashed #c8b896;
  padding-top: 16px;
  margin-top: auto;
  flex-wrap: wrap;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid #c8b896;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.qty-btn:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.qty-value {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 20px;
  text-align: center;
  color: var(--ink);
}

.item-price-add {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ticket-price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.ticket-price::before { content: "Rs "; font-size: 0.72em; color: #9a8d76; font-weight: 400; }

.add-to-order {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  min-height: 40px;
  white-space: nowrap;
  transition: background 0.18s ease, transform 0.15s ease;
}
.add-to-order:hover { background: var(--brick-deep); transform: scale(1.04); }

/* ============================================
   Sticky order bar
   ============================================ */
.order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: var(--ink-soft);
  border-top: 1px solid var(--line-med);
  box-shadow: 0 -12px 36px rgba(0,0,0,0.4);
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.order-bar.is-visible { transform: translateY(0); }
.order-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.order-bar-info {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cream-dim);
  line-height: 1.4;
}
.order-bar-info strong {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  display: block;
}
.order-bar .btn { flex-shrink: 0; }

body.cart-has-items { padding-bottom: 82px; }
@media (min-width: 640px) { body.cart-has-items { padding-bottom: 90px; } }

/* ============================================
   Toast
   ============================================ */
.hw-toast {
  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 120;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 88vw;
  text-align: center;
  white-space: nowrap;
}
.hw-toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================================
   Nav active states
   ============================================ */
.main-nav a.active,
.mobile-nav a.active { color: var(--amber); }
