/* ============================================================
   Chatori Chaat — Design System
   Colors and type are locked to the approved brand system.
   ============================================================ */

:root {
  --chili:        #E1442F;
  --chili-deep:   #B92F1E;
  --turmeric:     #F5A623;
  --mint:         #3F8E4F;
  --charcoal:     #241A14;
  --cream:        #FDF6E9;

  --ink:          var(--charcoal);
  --paper:        var(--cream);
  --white:        #FFFFFF;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    "Space Mono", "Courier New", monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --shadow-card: 0 12px 28px rgba(36, 26, 20, 0.14);
  --shadow-card-hover: 0 18px 36px rgba(36, 26, 20, 0.20);

  --wrap-max: 1180px;
  --header-h: 76px;
}

/* Street-cart awning stripe — a recurring color divider between sections */
.spice-divider {
  height: 14px;
  background: repeating-linear-gradient(
    45deg,
    var(--chili) 0 24px,
    var(--turmeric) 24px 48px,
    var(--mint) 48px 72px,
    var(--chili-deep) 72px 96px
  );
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body, h1, h2, h3, p, ul, figure, table, th, td { margin: 0; padding: 0; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
table { border-collapse: collapse; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
iframe { border: 0; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }

/* Visible, high-contrast focus ring everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--chili);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  background: var(--charcoal);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

.wrap {
  max-width: var(--wrap-max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 640px) {
  .wrap { padding-inline: 2rem; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chili-deep);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.eyebrow--light { color: var(--turmeric); }

.section-title {
  font-size: clamp(1.9rem, 3.2vw + 1rem, 2.75rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  max-width: 20ch;
}
.section-title--light { color: var(--cream); }

.section-lede {
  font-size: 1.05rem;
  max-width: 62ch;
  color: rgba(36, 26, 20, 0.78);
  margin-bottom: 2.5rem;
}
.section-lede--light { color: rgba(253, 246, 233, 0.82); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn__icon { width: 1rem; height: 1rem; flex-shrink: 0; }

.btn--primary {
  background: var(--chili);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(225, 68, 47, 0.35);
}
.btn--primary:hover { background: var(--chili-deep); box-shadow: 0 10px 24px rgba(185, 47, 30, 0.45); }

.btn--secondary {
  background: var(--mint);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(63, 142, 79, 0.32);
}
.btn--secondary:hover { filter: brightness(0.9); box-shadow: 0 10px 24px rgba(63, 142, 79, 0.42); }

.btn--ghost-dark {
  background: transparent;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  padding: 0.7rem 1.3rem;
}
.btn--ghost-dark:hover { background: var(--charcoal); color: var(--cream); }

.btn--text {
  background: none;
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0.85rem 0.25rem;
}

.coming-soon-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(245, 166, 35, 0.18);
  border: 1px dashed rgba(245, 166, 35, 0.6);
  padding: 0.5rem 1rem;
  border-radius: 999px;
}
.coming-soon-pill--dark {
  color: var(--charcoal);
  background: rgba(245, 166, 35, 0.16);
  border-color: rgba(245, 166, 35, 0.5);
}
/* Sprinkle-burst particles — spawned by main.js on primary/secondary button clicks */
.sprinkle-particle {
  position: fixed;
  top: 0; left: 0;
  width: var(--sp-size, 6px);
  height: var(--sp-size, 6px);
  border-radius: 50%;
  background: var(--sp-color, var(--turmeric));
  pointer-events: none;
  z-index: 500;
  opacity: 1;
  transform: translate(0, 0);
  animation: sprinkle-fly var(--sp-duration, 0.6s) cubic-bezier(.2,.8,.4,1) forwards;
}
@keyframes sprinkle-fly {
  to {
    transform: translate(var(--sp-x, 40px), var(--sp-y, -40px)) scale(0.4);
    opacity: 0;
  }
}

.coming-soon-pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--turmeric);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 233, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(36, 26, 20, 0.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.brand__logo { border-radius: 50%; object-fit: cover; }

.nav { display: none; }
.nav__list { display: flex; gap: 2rem; }
.nav__list a {
  font-weight: 500;
  font-size: 0.98rem;
  position: relative;
  padding: 0.3rem 0;
}
.nav__list a::after {
  content: "";
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6'%3E%3Cpath d='M0 3 Q3 0 6 3 T12 3' stroke='%23E1442F' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 12px 6px;
  transition: width 0.25s ease;
}
.nav__list a:hover::after,
.nav__list a[aria-current="true"]::after { width: 100%; }
.nav__list a[aria-current="true"] { color: var(--chili-deep); }

.header-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle__bar {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .nav { display: block; }
  .header-cta { display: block; }
  .nav-toggle { display: none; }
}

/* Mobile drawer — oversized torn ticket */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(36, 26, 20, 0.55);
  display: flex;
  justify-content: flex-end;
}
.mobile-drawer[hidden] { display: none; }

.mobile-drawer__ticket {
  position: relative;
  width: min(360px, 86vw);
  height: 100%;
  background: var(--cream);
  padding: 5rem 2rem 2.5rem;
  box-shadow: -20px 0 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  clip-path: polygon(
    5% 0%, 15% 1.5%, 25% 0%, 35% 1.5%, 45% 0%, 55% 1.5%, 65% 0%, 75% 1.5%, 85% 0%, 95% 1.5%, 100% 0%,
    100% 100%, 0% 100%
  );
}

.mobile-drawer__perf {
  position: absolute;
  top: 4.2rem; left: 0; right: 0;
  height: 0;
  border-top: 3px dashed rgba(36, 26, 20, 0.25);
}

.mobile-drawer__close {
  position: absolute;
  top: 1.3rem; right: 1.3rem;
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chili-deep);
  margin-bottom: 1.5rem;
}

.mobile-drawer__list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: auto; }
.mobile-drawer__list a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
}
.mobile-drawer__list a[aria-current="true"] { color: var(--chili); }

.mobile-drawer__cta { margin-top: 2rem; justify-content: center; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background-color: var(--charcoal);
  background-image: url("../assets/images/hero-splash.jpg");
  background-size: cover;
  background-position: center right;
  color: var(--cream);
  overflow: hidden;
  padding-block: 5rem;
  min-height: 520px;
  display: flex;
  align-items: center;
}

/* Static dark scrim so hero copy stays legible over the photo — no motion, per client request */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(36, 26, 20, 0.94) 0%,
    rgba(36, 26, 20, 0.82) 35%,
    rgba(36, 26, 20, 0.35) 65%,
    rgba(36, 26, 20, 0.05) 88%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw + 1rem, 4.6rem);
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  max-width: 48ch;
  color: rgba(253, 246, 233, 0.85);
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero__actions .btn--text { color: var(--cream); }

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 1.5rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(253,246,233,0.6);
  border-radius: 14px;
  z-index: 2;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--turmeric);
  border-radius: 2px;
  transform: translateX(-50%);
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    background-position: 72% center;
  }
  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(36, 26, 20, 0.9) 0%,
      rgba(36, 26, 20, 0.88) 55%,
      rgba(36, 26, 20, 0.8) 100%
    );
  }
}

/* ============================================================
   Ticket card component — shared by Menu + Reviews
   ============================================================ */
.ticket-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  padding: 1.75rem 1.5rem 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ticket-card:hover,
.ticket-card:focus-within {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow-card-hover);
}

/* Steam wisps — only on hot-food categories, only while hovered/focused */
.steam {
  position: absolute;
  top: -2px;
  width: 3px;
  height: 18px;
  background: linear-gradient(to top, transparent, rgba(36, 26, 20, 0.28));
  border-radius: 50%;
  filter: blur(1.5px);
  opacity: 0;
  pointer-events: none;
}
.ticket-card:hover .steam,
.ticket-card:focus-within .steam {
  animation: steam-rise 1.8s ease-in-out infinite;
}
@keyframes steam-rise {
  0%   { transform: translateY(0) scaleX(1); opacity: 0; }
  30%  { opacity: 0.6; }
  100% { transform: translateY(-22px) scaleX(1.6); opacity: 0; }
}

.ticket-card__tear {
  position: absolute;
  top: 0; left: 0; right: 0; height: 10px;
  background: var(--paper);
  clip-path: polygon(
    0% 100%, 5% 30%, 10% 100%, 15% 30%, 20% 100%, 25% 30%, 30% 100%, 35% 30%,
    40% 100%, 45% 30%, 50% 100%, 55% 30%, 60% 100%, 65% 30%, 70% 100%, 75% 30%,
    80% 100%, 85% 30%, 90% 100%, 95% 30%, 100% 100%, 100% 0%, 0% 0%
  );
  transform: translateY(-9px);
}
.ticket-card__tear--bottom {
  top: auto;
  bottom: 0;
  transform: translateY(9px) scaleY(-1);
}

.ticket-card__no {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(36, 26, 20, 0.45);
  margin: 0 0 0.4rem;
}

.ticket-card__perf {
  border-top: 2px dashed rgba(36, 26, 20, 0.2);
  margin: 1rem 0;
  position: relative;
}
.ticket-card__perf::before,
.ticket-card__perf::after {
  content: "";
  position: absolute;
  top: -6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--charcoal);
}
.reviews-section .ticket-card__perf::before,
.reviews-section .ticket-card__perf::after { background: var(--charcoal); }
.ticket-card__perf::before { left: -1.5rem; }
.ticket-card__perf::after  { right: -1.5rem; }

/* ---------- Menu ---------- */
.menu-section { padding-block: 5.5rem; }

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.menu-filter {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.55rem 1.1rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.menu-filter:hover { background: rgba(36,26,20,0.06); }
.menu-filter[aria-selected="true"] {
  background: var(--chili-deep);
  border-color: var(--chili-deep);
  color: var(--white);
}
/* Category color-coding — cycles chili / turmeric / mint per category index */
.menu-filter[data-accent="turmeric"][aria-selected="true"] {
  background: var(--turmeric);
  border-color: var(--turmeric);
  color: var(--charcoal);
}
.menu-filter[data-accent="mint"][aria-selected="true"] {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--white);
}
@keyframes chip-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.12); }
  100% { transform: scale(1); }
}
.menu-filter.chip-pop { animation: chip-pop 0.3s ease; }

.ticket-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.ticket-grid .ticket-card { border-left: 5px solid var(--chili); }
.ticket-grid[data-accent="turmeric"] .ticket-card { border-left-color: var(--turmeric); }
.ticket-grid[data-accent="mint"] .ticket-card { border-left-color: var(--mint); }

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.menu-item__desc {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(36,26,20,0.75);
  min-height: 2.9em;
}

.menu-item__footer {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.menu-item__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(63, 142, 79, 0.12);
  color: var(--charcoal);
  border: 1px solid rgba(63, 142, 79, 0.45);
}
.tag--spicy { background: rgba(225, 68, 47, 0.1); color: var(--chili-deep); border-color: rgba(225,68,47,0.35); display: inline-block; }
.tag--spicy:hover { animation: chili-wiggle 0.4s ease-in-out; }
@keyframes chili-wiggle {
  0%, 100% { transform: rotate(0deg); }
  25%      { transform: rotate(-10deg); }
  75%      { transform: rotate(10deg); }
}
.tag--popular { background: rgba(245, 166, 35, 0.16); color: #8a5a10; border-color: rgba(245,166,35,0.45); }

.menu-item__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-mono);
  border-top: 1px solid rgba(36, 26, 20, 0.15);
  padding-top: 0.6rem;
}
.menu-item__total-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(36, 26, 20, 0.55);
}
.menu-item__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: var(--chili-deep);
  white-space: nowrap;
}

.menu-footnote {
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(36,26,20,0.6);
  max-width: 68ch;
}

/* ============================================================
   Gallery — moving marquee of real photography
   ============================================================ */
.gallery-section {
  padding-block: 1rem 5.5rem;
  background: var(--white);
  overflow: hidden;
}
.gallery-section .section-lede { margin-bottom: 2.5rem; }

.marquee {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.marquee + .marquee { margin-top: 1.5rem; }
.marquee.is-dragging { cursor: grabbing; }

.marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-block: 0.75rem;
  will-change: transform;
}

.marquee__item {
  flex: 0 0 auto;
  background: var(--white);
  padding: 8px 8px 22px;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}
.marquee__item:nth-child(odd)  { transform: rotate(-1.4deg); }
.marquee__item:nth-child(even) { transform: rotate(1.4deg); }
.marquee__item:nth-child(3n+2) { background: #fdf0d9; }
.marquee__item:nth-child(3n)   { background: #e9f2ea; }

.marquee__item img {
  display: block;
  height: 220px;
  width: auto;
  border-radius: 2px;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

@media (min-width: 640px) {
  .marquee__item img { height: 260px; }
}

/* ============================================================
   Story
   ============================================================ */
.story-section { padding-block: 5.5rem; background: var(--white); }
.story-section__inner {
  display: grid;
  gap: 3rem;
}
.story-section__copy p { margin-bottom: 1.1rem; max-width: 62ch; }
.story-section__copy p:last-child { margin-bottom: 0; }

@media (min-width: 900px) {
  .story-section__inner { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
}

/* Illustrated placeholder figure (used until real photography is supplied) */
.photo-placeholder {
  position: relative;
  background: linear-gradient(135deg, rgba(245,166,35,0.18), rgba(225,68,47,0.14));
  border: 2px dashed rgba(36,26,20,0.25);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1.5rem;
  color: var(--chili-deep);
  aspect-ratio: 4 / 3;
}
.photo-placeholder--tall { aspect-ratio: 3 / 4; }
.photo-placeholder__art { width: 96px; height: 96px; }
.photo-placeholder figcaption {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-align: center;
  color: rgba(36,26,20,0.55);
  max-width: 24ch;
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-section {
  background: var(--charcoal);
  padding-block: 5.5rem;
  color: var(--cream);
}
.reviews-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 1rem;
}
.ticket-card--review { padding-top: 2rem; }
.ticket-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--charcoal);
  padding-right: 4.75rem;
}
.ticket-card__author {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  color: rgba(36,26,20,0.7);
}
.ticket-card__rating { color: var(--turmeric); letter-spacing: 0.1em; }

.stamp {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 72px; height: 72px;
  border: 3px double var(--mint);
  border-radius: 50%;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-10deg);
  opacity: 0.85;
  mix-blend-mode: multiply;
}
.stamp--tilt2 { transform: rotate(7deg); }
.stamp--tilt3 { transform: rotate(-4deg); }

/* ============================================================
   Find Us
   ============================================================ */
.find-us-section { padding-block: 5.5rem; }
.find-us__inner {
  display: grid;
  gap: 3rem;
}
.info-block { margin-bottom: 1.75rem; }
.info-block h3 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chili-deep);
  margin-bottom: 0.5rem;
}
.info-block a:hover { text-decoration: underline; }

.hours-ticket__table { width: 100%; font-family: var(--font-mono); font-size: 0.95rem; }
.hours-ticket__table th { text-align: left; font-weight: 700; padding: 0.35rem 0; }
.hours-ticket__table td { text-align: right; padding: 0.35rem 0; }
.hours-ticket__table tr:not(:last-child) { border-bottom: 1px dashed rgba(36,26,20,0.2); }
.hours-ticket__note { margin-top: 0.75rem; font-size: 0.82rem; color: rgba(36,26,20,0.6); }

.find-us__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.find-us__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 340px;
}
.find-us__map iframe { width: 100%; height: 100%; min-height: 340px; }

@media (min-width: 900px) {
  .find-us__inner { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(253, 246, 233, 0.85);
  padding-block: 3rem 1.5rem;
}
.site-footer__inner {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(253,246,233,0.12);
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}
.site-footer__brand img { border-radius: 50%; }
.site-footer__list { display: flex; flex-direction: column; gap: 0.6rem; }
.site-footer__list a:hover { text-decoration: underline; }
.site-footer__contact p { margin-bottom: 0.4rem; font-size: 0.92rem; }
.site-footer__contact a:hover { text-decoration: underline; }
.site-footer__social { display: flex; gap: 1.25rem; font-size: 0.92rem; }
.site-footer__social a:hover { text-decoration: underline; }

.site-footer__fine-print {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(253,246,233,0.5);
  margin-top: 1.5rem;
}

@media (min-width: 700px) {
  .site-footer__inner { grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr; }
}

/* ============================================================
   Sticky mobile order bar
   ============================================================ */
.mobile-order-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: var(--cream);
  border-top: 3px dashed rgba(36, 26, 20, 0.25);
  box-shadow: 0 -8px 24px rgba(36, 26, 20, 0.18);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-order-bar.is-visible { transform: translateY(0); }
.mobile-order-bar__btn { flex: 1 1 auto; justify-content: center; }
.mobile-order-bar__btn[aria-label="Get Directions"] { flex: 0 0 auto; width: 52px; padding-inline: 0; }

@media (min-width: 900px) {
  .mobile-order-bar { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-order-bar { transition: none; }
}

/* ============================================================
   Scroll-reveal base states (animated via GSAP; static fallback otherwise)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.reveal--ready { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .steam { display: none; }
  .menu-filter.chip-pop { animation: none; }
  .tag--spicy:hover { animation: none; }
  .sprinkle-particle { display: none; }
}
