/* =========================================================
   HABIBI SHAWARMA — STYLES
   Aesthetic: bright white canvas, near-black text,
   warm orange accents. Refined serif display + clean
   sans body. Inspired by the menu boards.
   ========================================================= */

:root {
  --app-height: 100vh;
  --hero-mobile-extra: 2.5rem;

  /* Palette (light theme — black & orange on white) */
  --coal:        #1a1a1a;        /* dark text + text on orange buttons */
  --coal-2:      #fff8ef;        /* warm-cream alt section background */
  --coal-3:      #fff1e0;        /* cards / image placeholders */
  --ash:         #e0cdb3;        /* warm tan borders/dividers */
  --cream:       #1a1a1a;        /* primary text on light bg (now dark) */
  --cream-dim:   #4a4239;        /* secondary text */
  --cream-muted: #8a7f6c;        /* tertiary */
  --ember:       #c63d2f;        /* deep red-orange accent */
  --ember-2:     #e85a3c;        /* warm red-orange */
  --flame:       #e8893b;        /* primary orange accent */
  --leaf:        #e8893b;        /* re-mapped to orange (black & orange theme) */
  --leaf-bright: #d97a1f;        /* deeper orange for kickers/labels */
  --gold:        #d97a1f;        /* deeper orange for prices */

  /* Type */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-body:    'Outfit', system-ui, -apple-system, sans-serif;
  --f-arabic:  'Amiri', serif;

  /* Layout */
  --maxw: 1240px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 14px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  background: #ffffff;
  color: var(--cream);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* Subtle global noise texture for warmth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- SHARED HEADINGS ---------- */
.section__kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  font-weight: 500;
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--cream);
}
.section__title em {
  font-style: italic;
  color: var(--flame);
  font-weight: 400;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 16px var(--pad-x);
  background: linear-gradient(to bottom, rgba(255,255,255,0.92), rgba(255,255,255,0.55) 70%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--ash);
  box-shadow: 0 6px 24px -16px rgba(26,26,26,0.18);
  padding: 10px var(--pad-x);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand img {
  height: 56px;
  width: auto;
  transition: height 0.3s ease;
}
.nav.is-scrolled .nav__brand img { height: 44px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  position: relative;
  transition: color 0.2s ease;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--flame);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav__links a:not(.nav__cta):hover {
  color: var(--cream);
}
.nav__links a:not(.nav__cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  padding: 10px 22px;
  border: 1px solid var(--flame);
  border-radius: 999px;
  color: var(--flame) !important;
  transition: background 0.25s ease, color 0.25s ease;
  font-weight: 500;
}
.nav__cta:hover {
  background: var(--flame);
  color: var(--coal) !important;
}

/* Burger */
.nav__burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: linear-gradient(160deg, #ffffff 0%, #fff1e0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--ash);
  color: var(--cream);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mobile-menu__close:hover {
  border-color: var(--flame);
  color: var(--flame);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.mobile-menu__nav a {
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.mobile-menu__cta {
  margin-top: 16px;
  padding: 14px 36px !important;
  border: 1px solid var(--flame);
  border-radius: 999px;
  color: var(--flame) !important;
  font-family: var(--f-body) !important;
  font-size: 1rem !important;
}
.mobile-menu__foot {
  position: absolute;
  bottom: 32px;
  font-size: 0.85rem;
  color: var(--cream-muted);
  letter-spacing: 0.08em;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px var(--pad-x) 80px;
  overflow: hidden;
  background: #ffffff;
}
/* Hero appears smoothly after initial lock + hero image ready */
.hero {
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.is-hero-ready .hero {
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  animation: fadeUp 1s ease 0.1s backwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 24px;
  position: relative;
  padding: 0 30px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--leaf);
}
.hero__eyebrow::before { left: 0; }
.hero__eyebrow::after  { right: 0; }

.hero__logo {
  height: clamp(180px, 28vw, 280px);
  width: auto;
  margin: 0 auto 8px;
  filter: drop-shadow(0 0 40px rgba(232,90,60,0.25));
  animation: fadeUp 1s ease 0.3s backwards;
}

.hero__tagline {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  line-height: 1;
  margin: 0 0 18px;
  color: var(--cream);
  letter-spacing: -0.01em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  align-items: center;
  animation: fadeUp 1s ease 0.5s backwards;
}
.hero__tagline .amp {
  font-style: italic;
  color: var(--flame);
  font-size: 0.9em;
  font-family: var(--f-display);
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--cream-dim);
  margin: 0 0 36px;
  font-style: italic;
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  animation: fadeUp 1s ease 0.7s backwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.9s backwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn--primary {
  background: var(--flame);
  color: var(--coal);
  box-shadow: 0 12px 36px -10px rgba(240,160,75,0.5);
}
.btn--primary:hover {
  background: var(--ember-2);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px -10px rgba(232,90,60,0.7);
}
.btn--ghost {
  border: 1px solid var(--ash);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--flame);
  color: var(--flame);
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream-dim);
  transition: color 0.2s ease;
}
.scroll-indicator:hover { color: var(--flame); }

.scroll-indicator__label {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-dim);
  padding-left: 0.35em;
}

.scroll-indicator__line {
  position: relative;
  width: 1px;
  height: 60px;
  background: rgba(26, 26, 26, 0.18);
  overflow: hidden;
}
.scroll-indicator__line::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, currentColor);
  animation: scrollLine 2s cubic-bezier(.7, 0, .3, 1) infinite;
}

@keyframes scrollLine {
  0%   { transform: translateY(0);    opacity: 0;   }
  20%  {                              opacity: 1;   }
  80%  {                              opacity: 1;   }
  100% { transform: translateY(250%); opacity: 0;   }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--pad-x) clamp(40px, 6vw, 70px);
  background:
    linear-gradient(to bottom, #ffffff 0, transparent 160px),
    var(--coal-2);
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(198,61,47,0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.about__head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.about__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--coal-3);
  aspect-ratio: 4 / 5;
  max-height: min(620px, 72vh);
  width: 100%;
}
.about__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about__media:hover img { transform: scale(1.04); }
.about__text {
  padding: 12px 0 0;
}
.about__text .lead {
  font-family: var(--f-display);
  font-size: 1.45rem;
  line-height: 1.45;
  color: var(--cream);
  font-weight: 400;
  margin: 0 0 22px;
}
.about__text .lead strong {
  color: var(--flame);
  font-weight: 500;
}
.about__text p {
  color: var(--cream-dim);
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
}
.about__text p em {
  font-style: italic;
  color: var(--leaf-bright);
}
.about__chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  margin-top: 24px;
  counter-reset: chip;
}
.about__chips span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--cream-dim);
  counter-increment: chip;
}
.about__chips span::before {
  content: counter(chip, decimal-leading-zero);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--flame);
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .about__chips {
    gap: 8px 14px;
  }
  .about__chips span {
    gap: 6px;
    padding-bottom: 7px;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }
  .about__chips span::before { font-size: 0.82rem; }
}

/* =========================================================
   MENU
   ========================================================= */
.menu {
  position: relative;
  padding: clamp(48px, 7vw, 90px) var(--pad-x) clamp(80px, 12vw, 140px);
  background:
    linear-gradient(to bottom, var(--coal-2) 0, transparent 160px),
    radial-gradient(ellipse at top right, rgba(198,61,47,0.07), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(232,137,59,0.06), transparent 60%),
    #ffffff;
}
.menu__head {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}
.menu__legend-intro {
  margin: 22px auto 0;
  color: var(--cream-muted);
  font-size: 0.92rem;
  max-width: 540px;
}

/* ----- Category tabs ----- */
.menu__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: var(--maxw);
  margin: 0 auto 36px;
  padding: 0 var(--pad-x);
}
.menu__tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--ash);
  background: #ffffff;
  font-family: var(--f-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream-dim);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.menu__tab:hover {
  border-color: var(--flame);
  color: var(--flame);
}
.menu__tab.is-active {
  background: var(--flame);
  border-color: var(--flame);
  color: #ffffff;
}

/* ----- Tabbed panels (one shown at a time) ----- */
.menu__panels {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.menu__category {
  display: none;
  margin: 0;
  animation: panelFade 0.35s ease;
}
.menu__category.is-active {
  display: block;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 720px) {
  .menu__tabs {
    flex-wrap: wrap;
    justify-content: center;
    overflow: visible;
    gap: 8px;
    margin: 0 auto 28px;
    padding: 0 var(--pad-x);
  }
  .menu__tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }
}
.menu__cat-title {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-align: center;
  margin: 0 0 36px;
  color: var(--cream);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.menu__cat-title::before,
.menu__cat-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--ash), transparent);
  max-width: 120px;
}
.menu__cat-title span {
  position: relative;
  padding: 0 8px;
}
.menu__cat-title span::before {
  content: '◆';
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--flame);
  font-size: 0.55em;
}
.menu__cat-title span::after {
  content: '◆';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--flame);
  font-size: 0.55em;
}

.menu__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px dashed rgba(26, 26, 26, 0.12);
}
.menu__list li:last-child { border-bottom: none; }

.menu__name {
  flex: 0 1 auto;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.menu__name em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
  margin-left: 4px;
}
.menu__desc {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: var(--cream-muted);
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

.menu__dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(26, 26, 26, 0.22);
  margin-bottom: 6px;
  min-width: 20px;
  align-self: flex-end;
  position: relative;
  top: -3px;
}

.menu__price {
  flex: 0 0 auto;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Allergens */
.menu__allergens {
  max-width: 880px;
  margin: 60px auto 0;
  padding: 28px 32px;
  border: 1px solid var(--ash);
  border-radius: var(--radius);
  background: var(--coal-2);
}
.menu__allergens h4 {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin: 0 0 18px;
  font-weight: 500;
}
.menu__allergens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px 22px;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.menu__allergens-grid b {
  color: var(--flame);
  font-weight: 600;
  margin-right: 6px;
}

/* =========================================================
   FIND US
   ========================================================= */
.find {
  position: relative;
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  background:
    linear-gradient(to bottom, #ffffff 0, transparent 160px),
    var(--coal-2);
}
.find__head {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  text-align: center;
}
.find__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: stretch;
}

.find__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.find__block {
  border-left: 2px solid var(--ash);
  padding-left: 22px;
  transition: border-color 0.25s ease;
}
.find__block:hover {
  border-left-color: var(--flame);
}
.find__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--leaf-bright);
  margin-bottom: 10px;
  font-weight: 500;
}
.find__value {
  font-family: var(--f-display);
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--cream);
  transition: color 0.2s ease;
}
a.find__value:hover { color: var(--flame); }

.find__hours {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.find__hours td {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--cream-dim);
  border-bottom: 1px dashed rgba(26, 26, 26, 0.12);
}
.find__hours td:first-child {
  color: var(--cream);
  font-weight: 500;
}
.find__hours td:last-child {
  text-align: right;
  font-family: var(--f-display);
  font-size: 1.05rem;
  color: var(--gold);
}
.find__hours tr:last-child td { border-bottom: none; }
.find__hours .closed {
  color: var(--ember-2);
  font-style: italic;
  font-family: var(--f-display);
}

.find__socials {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.find__socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ash);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.find__socials a:hover {
  border-color: var(--flame);
  color: var(--flame);
  transform: translateY(-2px);
}

.find__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ash);
  min-height: 480px;
  position: relative;
  background: var(--coal-3);
}
.find__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background:
    linear-gradient(to bottom, var(--coal-2) 0, transparent 140px),
    #ffffff;
  padding: 60px var(--pad-x) 40px;
  text-align: center;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.footer__logo {
  height: 64px;
  width: auto;
  margin: 0 auto 20px;
  opacity: 0.9;
}
.footer__line {
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin: 0 0 6px;
  letter-spacing: 0.04em;
}
.footer__copy {
  color: var(--cream-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin: 18px 0 0;
}

/* =========================================================
   REVEAL ANIMATIONS (scroll-triggered)
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.2,.6,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about__media {
    aspect-ratio: auto;
    max-height: none;
    background: transparent;
  }
  .about__media img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .find__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .find__map { min-height: 360px; }
  .find__map iframe { min-height: 360px; }
}

@media (max-width: 860px) {
  .footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px) + 2.75rem);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(var(--app-height) + var(--hero-mobile-extra));
  }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__brand img { height: 46px; }
  .nav.is-scrolled .nav__brand img { height: 38px; }

  .hero { padding-top: 100px; padding-bottom: 100px; }
  .hero__eyebrow {
    white-space: nowrap;
    font-size: clamp(0.55rem, 2.6vw, 0.78rem);
    letter-spacing: 0.22em;
    padding: 0 22px;
  }
  .hero__eyebrow::before,
  .hero__eyebrow::after { width: 14px; }
  .hero__tagline {
    flex-wrap: nowrap;
    gap: 8px;
    white-space: nowrap;
    font-size: clamp(1.4rem, 6vw, 2.6rem);
  }
  .hero__sub { font-size: 1.15rem; }

  .menu__list li {
    flex-wrap: wrap;
    gap: 6px;
  }
  .menu__name { flex: 1 1 70%; }
  .menu__price { flex: 0 0 auto; margin-left: auto; }
  .menu__dots { display: none; }

  .menu__allergens { padding: 22px 20px; }

  .footer__logo { height: 52px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; max-width: 280px; margin: 0 auto; }
  .btn { width: 100%; }

  .scroll-indicator { bottom: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
