/* ============================================================
   Taqueria Freedah — Jumeirah 3, Dubai
   Design language: retro fast-casual (ref: CRAV / Paput),
   brand palette from the Freedah logo: cream / teal / chili red.
   ============================================================ */

:root {
  --cream: #f2e6c9;
  --cream-soft: #f7efdf;
  --ink: #2a211c;
  --teal: #2e8388;
  --teal-deep: #175e63;
  --chili: #c6392b;
  --chili-deep: #97202b;
  --mustard: #efb53f;
  --paper: #fdf9ee;
  --shadow: 5px 6px 0 rgba(42, 33, 28, 0.9);
  --radius-card: 18px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-script: "Yellowtail", cursive;
  --font-body: "Archivo", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; }

/* ---------- shared type ---------- */

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--chili-deep);
  transform: rotate(-3deg);
  display: inline-block;
  margin-bottom: 0.25rem;
}

.script-cream { color: var(--cream); }
.script-ink { color: var(--ink); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--teal-deep);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-copy {
  max-width: 34rem;
  font-weight: 500;
}

/* ---------- pills & stickers ---------- */

.pill {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(42, 33, 28, 0.85);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pill:hover {
  transform: translate(2px, 2px) rotate(-1deg);
  box-shadow: 1px 1px 0 rgba(42, 33, 28, 0.85);
}

.pill-mustard { background: var(--mustard); color: var(--ink); }
.pill-chili { background: var(--chili); color: var(--cream); }
.pill-outline { background: transparent; color: var(--cream); border-color: var(--cream); box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35); }
.pill-lg { font-size: 1.1rem; padding: 0.9rem 1.8rem; }

.sticker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.15rem);
  letter-spacing: 0.09em;
  padding: 0.55rem 1.1rem;
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
  text-transform: uppercase;
  white-space: nowrap;
}

.sticker-mustard { background: var(--mustard); color: var(--ink); }
.sticker-teal { background: var(--teal); color: var(--cream); transform: rotate(3deg); }
.sticker-chili { background: var(--chili); color: var(--cream); }
.sticker-cream { background: var(--cream); color: var(--ink); }

.tilt-l { transform: rotate(-3deg); }
.tilt-r { transform: rotate(2.5deg); }
.tilt-l2 { transform: rotate(-1.5deg); }
.tilt-r2 { transform: rotate(4deg); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: rgba(242, 230, 201, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 3px 0 rgba(42, 33, 28, 0.9);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.wordmark {
  position: relative;
  text-decoration: none;
  line-height: 1;
}

.wordmark-main {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.wordmark-script {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  color: var(--chili-deep);
  position: absolute;
  right: -0.5rem;
  bottom: -0.85em;
  transform: rotate(-6deg);
}

.header-nav { display: flex; gap: 0.75rem; }

.pill-menu {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  cursor: pointer;
}

/* ---------- menu overlay ---------- */

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40; /* below the header so the Close pill stays sharp and clickable */
  background: rgba(42, 33, 28, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-card {
  position: absolute;
  top: 5.5rem;
  right: clamp(1rem, 4vw, 3rem);
  background: var(--chili);
  border: 3px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 2rem 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 16rem;
}

.menu-link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.15s ease, transform 0.15s ease;
}

.menu-link:hover {
  color: var(--mustard);
  transform: translateX(6px) rotate(-1deg);
}

.menu-rule {
  border: none;
  border-top: 2px solid rgba(242, 230, 201, 0.4);
  margin: 0.9rem 0 0.75rem;
}

.menu-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--cream);
  opacity: 0.85;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1rem 4rem;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: -0.5rem;
  z-index: 3;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 13.5vw, 12.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--chili);
  letter-spacing: 0.005em;
  z-index: 1;
  user-select: none;
}

.hero-title .outline-word {
  position: relative;
  display: block;
}

.hero-title .outline-word::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-stroke: 0.09em var(--cream);
  z-index: -1;
}

/* second line drops behind the dish */
.hero-title .outline-word:nth-child(2) { z-index: 1; }

.hero-dish {
  position: relative;
  z-index: 2;
  width: clamp(220px, 29vw, 400px);
  margin: clamp(-1.5rem, -3.5vw, -3rem) auto 0;
  animation: bob 6s ease-in-out infinite;
}

.hero-dish img {
  border-radius: 50%;
  border: 8px solid var(--paper);
  box-shadow: 0 18px 40px rgba(42, 33, 28, 0.35), var(--shadow);
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(1.5deg); }
}

.hero-sticker-left,
.hero-sticker-right { position: absolute; z-index: 4; }

.hero-sticker-left { top: 24%; left: clamp(0.5rem, 8vw, 12rem); }
.hero-sticker-right { top: 60%; right: clamp(0.5rem, 7vw, 10rem); }

.hero-note {
  position: absolute;
  bottom: 3.5rem;
  max-width: 15rem;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 3;
}

.hero-note-left { left: clamp(1rem, 5vw, 4rem); text-align: left; }
.hero-note-right { right: clamp(1rem, 5vw, 4rem); text-align: right; }

/* keep the whole hero above the fold on shorter desktop viewports */
@media (max-height: 980px) and (min-width: 641px) {
  .hero { padding-top: 6rem; }
  .hero-title { font-size: clamp(4rem, 11vw, 10rem); }
  .hero-dish { width: clamp(210px, 25vw, 340px); margin-top: -2.5rem; }
  .hero-note { bottom: 2rem; }
}

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

/* tilted full-bleed bands (ref: Paput) */
.marquee-tilt-l,
.marquee-tilt-r {
  position: relative;
  z-index: 5;
  width: 106%;
  margin-left: -3%;
}

.marquee-tilt-l { transform: rotate(-1.4deg); margin-top: -0.75rem; margin-bottom: -0.75rem; }
.marquee-tilt-r { transform: rotate(1.4deg); margin-top: -0.5rem; margin-bottom: -0.5rem; }

.marquee-teal { background: var(--teal); color: var(--cream); }
.marquee-chili { background: var(--chili); color: var(--cream); }

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-x 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
  padding: 0.7rem 0;
  white-space: nowrap;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- tradition ---------- */

.tradition {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem) clamp(3.5rem, 8vw, 6rem);
  text-align: center;
}

.tradition .section-copy { margin: 0 auto 2.5rem; }

.photo-row {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.photo-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: var(--radius-card);
  padding: 0.7rem 0.7rem 0.5rem;
  box-shadow: var(--shadow);
  max-width: 280px;
  transition: transform 0.25s ease;
}

.photo-card img {
  border-radius: calc(var(--radius-card) - 8px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
}

.photo-card figcaption {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.25rem 0.3rem;
  text-transform: uppercase;
}

.photo-card:hover { transform: rotate(0deg) scale(1.03) !important; }

/* ---------- low & slow ---------- */

.lowslow {
  position: relative;
  background: var(--chili);
  color: var(--cream);
  text-align: center;
}

.wave { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.wave path { fill: var(--chili); }
.wave-top { transform: translateY(1px); background: var(--cream); }
.wave-bottom { transform: translateY(-1px); background: var(--cream); }
.noresos .wave path { fill: var(--mustard); }

.lowslow-inner {
  padding: clamp(2rem, 6vw, 5rem) 1.5rem clamp(3rem, 7vw, 5.5rem);
  max-width: 60rem;
  margin: 0 auto;
}

.lowslow-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.lowslow-copy {
  max-width: 32rem;
  margin: 1.5rem auto 2rem;
  font-weight: 500;
  font-size: 1.1rem;
}

.eyes {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.eye {
  width: clamp(56px, 7vw, 84px);
  height: clamp(72px, 9vw, 108px);
  background: var(--paper);
  border-radius: 50%;
  border: 4px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: blink 5.5s infinite;
  overflow: hidden;
}

.pupil {
  width: 34%;
  height: 27%;
  background: var(--ink);
  border-radius: 50%;
  transition: transform 0.12s linear;
}

@keyframes blink {
  0%, 91%, 100% { transform: scaleY(1); }
  93%, 95% { transform: scaleY(0.08); }
}

/* ---------- every taco (giant outlined statement) ---------- */

.everytaco {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1rem;
  text-align: center;
  overflow: hidden;
}

.everytaco-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 10.5vw, 9.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--chili);
  user-select: none;
}

.everytaco-title .outline-word {
  position: relative;
  display: block;
}

.everytaco-title .outline-word::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  -webkit-text-stroke: 0.085em var(--cream);
  z-index: -1;
}

.chip {
  position: absolute;
  display: block;
  width: clamp(90px, 12vw, 170px);
  height: clamp(90px, 12vw, 170px);
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--paper);
  box-shadow: var(--shadow);
  z-index: 2;
}

.chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chip-1 { top: 8%; left: clamp(2%, 12vw, 16%); transform: rotate(-8deg); }
.chip-2 { bottom: 10%; right: clamp(2%, 10vw, 14%); transform: rotate(6deg); }
.chip-3 { top: 38%; right: clamp(1%, 4vw, 6%); transform: rotate(-4deg); }

/* ---------- doodle arrow ---------- */

.doodle-arrow {
  display: block;
  width: 90px;
  height: 45px;
  margin: 0 auto 0.5rem;
}

.doodle-stroke {
  stroke: var(--chili-deep);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- specials ---------- */

.specials {
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 5vw, 4rem);
  max-width: 78rem;
  margin: 0 auto;
}

.specials-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 2.5rem;
}

.specials-list { list-style: none; }

.special {
  padding: 1.4rem 0;
  border-bottom: 3px solid rgba(42, 33, 28, 0.25);
}

.special:first-child { border-top: 3px solid rgba(42, 33, 28, 0.25); }

.special h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  letter-spacing: 0.02em;
  color: var(--teal-deep);
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.special:hover h3 { color: var(--chili); transform: translateX(6px) rotate(-0.5deg); }

.special p { margin-top: 0.35rem; max-width: 36rem; font-weight: 500; }

.specials-photo {
  display: grid;
  justify-items: center;
  gap: 0;
}

.specials-photo .photo-card { max-width: 330px; }

.specials-photo .stack-up { margin-top: -3.5rem; }

.specials-photo .photo-card:nth-child(2) { justify-self: start; }
.specials-photo .photo-card:nth-child(3) { justify-self: end; }

.specials-photo .sticker { margin-top: 1.75rem; }

.specials-note {
  margin-top: 2.5rem;
  text-align: center;
  font-weight: 600;
}

/* ---------- press strip ---------- */

.press {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 5vw, 4rem);
  border-top: 3px solid rgba(42, 33, 28, 0.15);
  flex-wrap: wrap;
}

.press-photo {
  width: clamp(140px, 16vw, 200px);
  flex-shrink: 0;
  transform: rotate(-4deg);
}

.press-photo img {
  border-radius: 50%;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow);
}

.press-copy { max-width: 30rem; }

.press-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.specials-note a { color: var(--chili-deep); }

/* ---------- no resos ---------- */

.noresos {
  position: relative;
  background: var(--mustard);
  text-align: center;
}

.noresos-inner {
  position: relative;
  padding: clamp(2rem, 6vw, 4.5rem) 1.5rem clamp(3rem, 7vw, 5.5rem);
  max-width: 62rem;
  margin: 0 auto;
}

.noresos-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.92;
  color: var(--ink);
}

.noresos-copy {
  max-width: 34rem;
  margin: 1.5rem auto 2rem;
  font-weight: 600;
}

.noresos-stickers {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gato {
  position: absolute;
  right: clamp(0.5rem, 6vw, 5rem);
  bottom: -3.5rem;
  width: clamp(110px, 14vw, 170px);
  transform: rotate(6deg);
  z-index: 5;
}

.gato img {
  border-radius: 50%;
  border: 5px solid var(--paper);
  box-shadow: var(--shadow);
}

.gato figcaption {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--ink);
  margin-top: 0.3rem;
}

/* ---------- gallery marquee ---------- */

.gallery-marquee {
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.gallery-track {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  width: max-content;
  animation: scroll-x 45s linear infinite;
  padding-left: 1rem;
}

.gallery-track .photo-card {
  width: clamp(200px, 24vw, 300px);
  flex-shrink: 0;
}

.gallery-marquee:hover .gallery-track,
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- find us ---------- */

.findus {
  background: var(--teal-deep);
  color: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 6vw, 5rem);
  border-top: 4px solid var(--ink);
}

.findus-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  margin-bottom: 2rem;
}

.findus-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.findus-details dt {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  font-size: 1rem;
  color: var(--mustard);
  margin-bottom: 0.4rem;
}

.findus-details dd { font-weight: 500; }

.findus-details a { color: var(--mustard); }

.findus-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.findus-photo { justify-self: center; max-width: 340px; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  overflow: hidden;
}

.footer-mega {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2.5rem, 6vw, 5rem);
}

.footer-wordmark { position: relative; display: inline-block; line-height: 1; }

.footer-wordmark .wordmark-main {
  font-size: clamp(3.5rem, 13vw, 12rem);
  color: var(--teal);
  letter-spacing: 0.1em;
}

.footer-wordmark .wordmark-script {
  font-size: clamp(2.5rem, 8vw, 7rem);
  color: var(--chili);
  right: -1.5rem;
  bottom: -0.7em;
}

.footer-mega .chip { width: clamp(70px, 9vw, 130px); height: clamp(70px, 9vw, 130px); }
.chip-f1 { top: 0; left: clamp(4%, 12vw, 16%); transform: rotate(-9deg); }
.chip-f2 { bottom: 6%; right: clamp(4%, 11vw, 15%); transform: rotate(7deg); }

.footer-emoji {
  position: absolute;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  filter: drop-shadow(3px 4px 0 rgba(0, 0, 0, 0.45));
}

.footer-emoji-1 { top: 12%; right: 22%; transform: rotate(14deg); }
.footer-emoji-2 { bottom: 4%; left: 24%; transform: rotate(-12deg); }
.footer-emoji-3 { top: 42%; left: 7%; transform: rotate(8deg); }

.footer-tag { margin: 1.5rem 0; font-weight: 500; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.75rem;
}

.footer-links a {
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--mustard);
  padding-bottom: 2px;
}

.footer-links a:hover { color: var(--mustard); }

.footer-legal { font-size: 0.85rem; opacity: 0.7; }

/* ---------- taco travel path (yellow band) ---------- */

.taco-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.taco-path path {
  fill: none;
  stroke: rgba(42, 33, 28, 0.45);
  stroke-width: 3;
  stroke-dasharray: 2 14;
  stroke-linecap: round;
}

.noresos-inner > *:not(.taco-path) { position: relative; z-index: 1; }

.taco-flyer {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(3px 4px 0 rgba(42, 33, 28, 0.35));
}

@media (max-width: 640px) {
  .taco-path, .taco-flyer { display: none; }
}

/* ---------- reveal animations ---------- */

.reveal,
.reveal-pop {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-pop { transform: translateY(36px) scale(0.85) rotate(-4deg); }

.reveal.visible,
.reveal-pop.visible {
  opacity: 1;
  transform: none;
}

/* keep tilts after reveal */
.reveal-pop.visible.tilt-l { transform: rotate(-3deg); }
.reveal-pop.visible.tilt-r { transform: rotate(2.5deg); }
.reveal-pop.visible.tilt-l2 { transform: rotate(-1.5deg); }
.reveal-pop.visible.tilt-r2 { transform: rotate(4deg); }

/* ---------- accessibility ---------- */

:focus-visible {
  outline: 3px solid var(--chili);
  outline-offset: 3px;
  border-radius: 4px;
}

/* When GSAP drives the motion, disable the CSS reveal system entirely */
html.gsap-on .reveal,
html.gsap-on .reveal-pop {
  opacity: 1;
  transform: none;
  transition: none;
}

/* GSAP owns the dish transforms (bob is replaced by a tween) */
html.gsap-on .hero-dish { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .gallery-track, .hero-dish { animation: none !important; }
  .reveal, .reveal-pop { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .specials-layout { grid-template-columns: 1fr; }
  .specials-photo { position: static; }
  .findus { grid-template-columns: 1fr; }
  .findus-photo { max-width: 300px; }
}

@media (max-width: 640px) {
  .hero { padding-top: 6rem; min-height: 0; }
  .hero-dish { width: 50vw; margin-top: -1.25rem; }
  .hero-note { position: static; max-width: 20rem; margin: 0.75rem auto 0; text-align: center; }
  .hero-note-left { margin-top: 2.5rem; }
  .hero-sticker-left { top: 24%; left: 0.25rem; }
  .hero-sticker-right { top: auto; bottom: 38%; right: 0.5rem; }
  .gato { position: static; margin: 3rem auto 0; transform: rotate(4deg); }
  .footer-links { gap: 1.1rem; flex-wrap: wrap; }
  .menu-card { right: 0.75rem; left: 0.75rem; top: 5rem; }
  .chip-3 { display: none; }
  .everytaco .chip { width: 70px; height: 70px; border-width: 4px; }
  .chip-1 { top: 1%; left: 2%; }
  .chip-2 { bottom: 1%; right: 2%; }
  .header-nav .pill-mustard { display: none; }
}
