/* ============================================================================
   Alom's Kitchen — Stylesheet
   Mobile-first, responsive. Warm, spice-toned South Asian theme.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ---------------------------- Design tokens ------------------------------- */
:root {
  /* Spice palette */
  --maroon:     #6e130e;   /* deep header/footer red */
  --red:        #9a2417;   /* primary brand red */
  --red-dark:   #7a1a11;
  --orange:     #d2691e;   /* warm spice orange */
  --paprika:    #c2410c;
  --gold:       #e0a106;   /* turmeric gold */
  --gold-deep:  #b8810a;
  --gold-soft:  #f7d98a;

  /* Warm neutrals — noticeably warmer than before, not white */
  --bg:         #f5ead6;   /* page background (warm sand) */
  --bg-2:       #efe0c8;   /* tinted sections */
  --surface:    #fffaf1;   /* cards (soft warm off-white) */
  --line:       #e4d2b4;   /* hairlines on warm bg */

  --ink:        #2a1c12;   /* warm near-black text */
  --ink-soft:   #6f5a45;
  --green:      #3f6e29;   /* veg/vegan tag */

  --shadow:     0 14px 34px rgba(74, 30, 8, 0.16);
  --shadow-sm:  0 4px 14px rgba(74, 30, 8, 0.10);
  --radius:     16px;
  --radius-sm:  10px;
  --maxw:       1140px;

  --font-head: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ------------------------------- Reset ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  /* layered warmth: soft radial glows + a faint spice-dot texture */
  background-image:
    radial-gradient(1100px 520px at 85% -8%, rgba(224, 161, 6, 0.16), transparent 60%),
    radial-gradient(900px 520px at -5% 8%, rgba(154, 36, 23, 0.10), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill='%23b8810a' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='1.6'/%3E%3Ccircle cx='0' cy='0' r='1.6'/%3E%3Ccircle cx='40' cy='0' r='1.6'/%3E%3Ccircle cx='0' cy='40' r='1.6'/%3E%3Ccircle cx='40' cy='40' r='1.6'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed, fixed, scroll;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.18; color: var(--ink); letter-spacing: .2px; }

.container { width: min(100% - 2rem, var(--maxw)); margin-inline: auto; }
.muted { color: var(--ink-soft); }
.section { padding: clamp(2.75rem, 6vw, 5.5rem) 0; }
.section--tint {
  background: linear-gradient(180deg, var(--bg-2), #ead8bd);
  border-block: 1px solid var(--line);
}
.section__head { text-align: center; max-width: 660px; margin: 0 auto 2.75rem; }
.section__head h2 { font-size: clamp(1.9rem, 4.4vw, 2.6rem); margin: 0 0 .6rem; }
.section__head p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }

/* Little decorative spice divider under headings */
.section__head h1::after,
.section__head h2::after {
  content: ""; display: block; width: 74px; height: 4px; margin: .7rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--paprika));
}

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------- Buttons ---------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font: inherit; font-weight: 600; cursor: pointer;
  padding: .85rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: linear-gradient(135deg, var(--red), var(--paprika));
  color: #fff; box-shadow: 0 6px 18px rgba(154, 36, 23, .35);
}
.btn--primary:hover { box-shadow: 0 10px 24px rgba(154, 36, 23, .45); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold), #d39307);
  color: #3a2a05; box-shadow: 0 6px 18px rgba(184, 129, 10, .4);
}
.btn--gold:hover { box-shadow: 0 10px 24px rgba(184, 129, 10, .5); }
.btn--ghost { background: transparent; border-color: currentColor; color: var(--red); }
.btn--ghost:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn--small { padding: .55rem 1.1rem; font-size: .9rem; }

/* ------------------------------- Header ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28, 15, 8, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(224, 161, 6, 0.28);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .5rem 0; min-height: 66px;
}
.nav__brand {
  display: flex; align-items: center; text-decoration: none;
}
.nav__logo { height: 58px; width: auto; display: block; }
.nav__menu {
  display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0;
}
.nav__menu a {
  display: block; padding: .5rem .85rem; border-radius: 9px;
  color: #f3e7d6; text-decoration: none; font-weight: 500; position: relative;
}
.nav__menu a:not(.btn):hover { background: rgba(255, 255, 255, .10); color: #fff; }
.nav__menu a[aria-current="page"]:not(.btn) { color: var(--gold-soft); font-weight: 600; }
.nav__menu a[aria-current="page"]:not(.btn)::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .2rem;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.nav__menu .btn { color: #fff; padding: .55rem 1.15rem; }
.nav__menu .btn:hover { color: #fff; }

.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .4rem; border-radius: 8px;
}
.nav__toggle span {
  display: block; width: 26px; height: 3px; margin: 5px 0;
  background: var(--gold-soft); border-radius: 2px; transition: .25s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: #1c0f08; border-bottom: 1px solid rgba(224, 161, 6, 0.28);
    padding: .6rem 1rem 1rem; box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .2s ease;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__menu .btn { justify-content: center; margin-top: .4rem; }
  .nav__menu a[aria-current="page"]:not(.btn)::after { display: none; }
}

/* --------------------------------- Hero ----------------------------------- */
.hero {
  position: relative; color: #fff; text-align: center; overflow: hidden;
  background:
    radial-gradient(closest-side at 50% 42%, rgba(24, 9, 4, .62), rgba(24, 9, 4, 0) 80%),
    linear-gradient(rgba(44, 9, 5, .68), rgba(44, 9, 5, .80)),
    url("../images/hero.jpg") center/cover no-repeat,
    linear-gradient(135deg, #3d0c06 0%, var(--red) 50%, var(--paprika) 100%);
  padding: clamp(3.75rem, 12vw, 7.5rem) 0;
}
/* warm glow + very faint pattern so it looks rich even with no photo */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(224, 161, 6, .22), transparent 70%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.025' stroke-width='1.2'%3E%3Cpath d='M30 8l5 12 13 1-10 9 3 13-11-7-11 7 3-13-10-9 13-1z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { position: relative; max-width: 740px; margin: 0 auto; }
.hero__eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; font-size: .78rem;
  color: var(--gold-soft); margin: 0 0 1rem;
  padding: .4rem 1rem; border: 1px solid rgba(247, 217, 138, .45); border-radius: 999px;
}
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 7.5vw, 4.4rem); font-weight: 800; margin: 0 0 .5rem;
  text-shadow: 0 3px 18px rgba(0,0,0,.45);
}
.hero__logo-wrap { margin: 0 0 1rem; }
.hero__logo {
  width: min(480px, 84%); height: auto; margin: 0 auto; display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5));
}
.hero__tagline {
  font-family: var(--font-head); font-style: italic;
  font-size: clamp(1.15rem, 2.8vw, 1.6rem); font-weight: 600;
  color: var(--gold-soft); margin: 0 0 1.1rem;
}
.hero__intro { font-size: 1.08rem; color: #f6ecdc; margin: 0 auto 1.9rem; max-width: 580px; }
.hero__stall-lead {
  margin: 1.4rem auto .2rem; max-width: 600px; font-size: 1.06rem; color: #f6ecdc;
}
.hero__stall-lead strong { color: #fff; }
.hero__stall-date {
  display: block; margin-top: .3rem; font-family: var(--font-head);
  font-size: clamp(1.1rem, 3vw, 1.45rem); font-weight: 700; color: var(--gold-soft);
}
.hero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ---------------------------- Event banner -------------------------------- */
.event-banner {
  position: relative; text-align: center; color: #fff;
  background: linear-gradient(90deg, var(--maroon), var(--paprika), var(--gold-deep));
  padding: .9rem 1rem; font-weight: 500; letter-spacing: .2px;
}
.event-banner a {
  color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px;
  white-space: nowrap; margin-left: .4rem;
}

/* ----------------------------- Intro / About ------------------------------ */
.prose { max-width: 700px; margin-inline: auto; font-size: 1.06rem; }
.prose p { margin: 0 0 1rem; }

.feature-row {
  display: grid; gap: 1.3rem; margin-top: 2.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.feature {
  background: var(--surface); border-radius: var(--radius); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line); text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature .ic {
  font-size: 1.7rem; width: 64px; height: 64px; margin: 0 auto .8rem;
  display: grid; place-items: center; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--bg-2));
  box-shadow: inset 0 0 0 2px var(--gold-soft);
}
.feature h3 { margin: .2rem 0 .35rem; font-size: 1.2rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* -------------------------------- Menu ------------------------------------ */
.menu-note {
  display: flex; align-items: center; gap: .6rem; justify-content: center;
  background: var(--surface); border: 1px solid var(--gold-deep);
  border-left: 5px solid var(--gold);
  color: var(--ink); border-radius: var(--radius-sm);
  padding: .9rem 1.1rem; margin: 0 auto 2.75rem; max-width: 660px; text-align: center;
  box-shadow: var(--shadow-sm);
}
/* ---- Menu switcher (Catering / Market stall) ---- */
.menu-tabs {
  display: grid; gap: .75rem; max-width: 640px; margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.menu-tab {
  font: inherit; cursor: pointer; text-align: center;
  padding: .95rem 1.1rem; border-radius: var(--radius);
  background: var(--surface); color: var(--ink);
  border: 2px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .16s ease,
              border-color .16s ease, background .16s ease, color .16s ease;
}
.menu-tab:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.menu-tab:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.menu-tab__title {
  display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--maroon);
}
.menu-tab__sub {
  display: block; margin-top: .15rem; font-size: .84rem; color: var(--ink-soft);
}
.menu-tab[aria-selected="true"] {
  background: linear-gradient(135deg, var(--red), var(--paprika));
  border-color: transparent; box-shadow: 0 8px 22px rgba(154, 36, 23, .35);
}
.menu-tab[aria-selected="true"] .menu-tab__title,
.menu-tab[aria-selected="true"] .menu-tab__sub { color: #fff; }

.menu-category { margin-bottom: 3rem; }
.menu-category__title {
  font-size: 1.75rem; margin: 0 0 1.3rem; padding-bottom: .45rem;
  display: inline-block; position: relative; color: var(--maroon);
}
.menu-category__title::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px;
}
.menu-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.dish-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-left-color: var(--paprika); }
.dish-card__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--bg-2); }
.dish-card__body { padding: 1.05rem 1.2rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.dish-card__head {
  display: flex; align-items: baseline; gap: .45rem; margin-bottom: .25rem;
}
.dish-card__name { margin: 0; font-size: 1.18rem; color: var(--maroon); }
.dish-card__dots {
  flex: 1; min-width: 24px; margin-bottom: .3rem;
  border-bottom: 2px dotted #cdb491;
}
.dish-card__price {
  flex: none; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  color: var(--paprika); white-space: nowrap;
}
.dish-card__portion {
  margin: 0 0 .5rem; font-size: .78rem; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; color: var(--gold-deep);
}
.dish-card__desc { margin: 0 0 .7rem; color: var(--ink-soft); font-size: .95rem; flex: 1; }
.dish-card__pricenote {
  margin: 0 0 .7rem; font-size: .82rem; color: var(--ink-soft); font-style: italic;
}
.dish-card__pricenote::before { content: "+ "; font-style: normal; color: var(--paprika); font-weight: 700; }

.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.tag {
  font-size: .76rem; font-weight: 600; padding: .28rem .6rem; border-radius: 999px;
  background: var(--bg-2); color: var(--ink-soft); white-space: nowrap;
}
.tag--vegetarian, .tag--vegan { background: #e7f0df; color: var(--green); }
.tag--spicy { background: #fbe0d8; color: var(--paprika); }
.tag--gluten-free { background: #f6ecd2; color: #8a6d1f; }
.tag--nuts, .tag--dairy { background: #f1e6d6; color: #7a5a3a; }

/* -------------------------------- Events ---------------------------------- */
.events-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  max-width: 920px; margin-inline: auto;
}
.event-card {
  position: relative; background: var(--surface); border-radius: var(--radius); padding: 1.75rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  border-top: 5px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)),
                    linear-gradient(90deg, var(--red), var(--gold));
  background-origin: border-box; background-clip: padding-box, border-box;
}
.event-card__badge {
  display: inline-block; background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #5a4205;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px; margin-bottom: .7rem;
}
.event-card__title { margin: 0 0 1rem; font-size: 1.4rem; color: var(--maroon); }
.event-card__meta { margin: 0 0 1rem; display: grid; gap: .55rem; }
.event-card__meta > div { display: grid; grid-template-columns: 64px 1fr; gap: .5rem; align-items: baseline; }
.event-card__meta dt { font-weight: 700; color: var(--gold-deep); font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.event-card__meta dd { margin: 0; }
.event-card__note { color: var(--ink-soft); font-style: italic; margin: 0 0 1rem; }

/* -------------------------------- Contact --------------------------------- */
.contact-grid {
  display: grid; gap: 1.3rem; margin-bottom: 2.75rem;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}
.contact-card {
  background: var(--surface); border-radius: var(--radius); padding: 1.75rem; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  text-decoration: none; color: var(--ink); display: block;
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-card:hover { transform: translatey(-5px); box-shadow: var(--shadow); }
.contact-card .ic {
  width: 60px; height: 60px; margin: 0 auto .8rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: radial-gradient(circle at 35% 30%, var(--gold-soft), var(--orange));
  color: #fff; box-shadow: 0 6px 16px rgba(210, 105, 30, .35);
}
.contact-card h3 { margin: 0 0 .25rem; font-size: 1.15rem; color: var(--maroon); }
.contact-card span { display: block; color: var(--ink); font-size: 1rem; font-weight: 600; word-break: break-word; }
.contact-card .contact-card__note { margin-top: .35rem; color: var(--ink-soft); font-size: .85rem; font-weight: 400; }

.contact-note {
  text-align: center; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); border-left: 5px solid var(--red);
  padding: 1.1rem; margin-bottom: 2.75rem; color: var(--ink); box-shadow: var(--shadow-sm);
}

/* Form */
.contact-form {
  max-width: 580px; margin-inline: auto; display: grid; gap: 1rem;
  background: var(--surface); padding: 1.75rem; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.field { display: grid; gap: .35rem; }
.field label { font-weight: 600; font-size: .92rem; }
.field input, .field textarea {
  font: inherit; padding: .75rem .9rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold);
}
.contact-form .btn { justify-self: start; }

/* -------------------------------- Footer ---------------------------------- */
.site-footer {
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(224,161,6,.14), transparent 60%),
    linear-gradient(180deg, #3a1108, #240a05);
  color: #ecdcc6; padding: 3rem 0 1.5rem; margin-top: auto;
  border-top: 4px solid var(--gold);
}
.footer-grid {
  display: grid; gap: 1.8rem; margin-bottom: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.site-footer h3 { color: #fff; font-size: 1.2rem; margin: 0 0 .75rem; }
.footer__logo { height: 86px; width: auto; margin: 0 0 .6rem; display: block; }
.site-footer a { color: var(--gold-soft); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.social-links { display: flex; gap: .7rem; margin-top: .3rem; }
.social-links a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); text-decoration: none;
  transition: background .18s ease, transform .18s ease;
}
.social-links a svg { width: 20px; height: 20px; fill: #f3e7d6; transition: fill .18s ease; }
.social-links a:hover { background: var(--gold); transform: translateY(-3px); }
.social-links a:hover svg { fill: #3a2a05; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.25rem;
  text-align: center; font-size: .88rem; color: #cdb89e;
}

/* page wrapper so footer sits at bottom on short pages */
.page { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ============================ MARKET STALL ================================= */
/*  Poster-inspired: near-black ground, ember orange accents.                  */
:root {
  --stall-ink:    #12100e;
  --stall-ink-2:  #1c1815;
  --stall-orange: #e8791e;
  --stall-amber:  #f5a742;
  --stall-line:   rgba(232, 121, 30, .38);
}

.stall-section {
  position: relative; color: #f6ece0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(232, 121, 30, .16), transparent 65%),
    linear-gradient(180deg, var(--stall-ink) 0%, #0c0a09 100%);
  border-block: 3px solid var(--stall-orange);
  padding: clamp(2.75rem, 7vw, 5rem) 0;
}
/* Two dark sections back to back shouldn't show a doubled divider */
.stall-section + .stall-section { border-top: none; }
.stall-section h1, .stall-section h2, .stall-section h3 { color: #fff; }
.stall-section .section__head p { color: #d9c7b3; }
.stall-section .section__head h2::after {
  background: linear-gradient(90deg, var(--stall-amber), var(--stall-orange));
}

.stall-eyebrow {
  display: inline-block; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  font-size: .75rem; color: var(--stall-amber);
  border: 1px solid var(--stall-line); border-radius: 999px; padding: .4rem 1rem;
  margin-bottom: .9rem;
}

/* ---- Countdown ---- */
.countdown {
  display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center;
  margin: 1.4rem 0 1.6rem; padding: 0; list-style: none;
}
.countdown__unit {
  min-width: 84px; padding: .85rem .7rem .7rem;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--stall-line); border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.countdown__num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.9rem, 5vw, 2.6rem); line-height: 1; color: var(--stall-amber);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block; margin-top: .35rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: #cdb69c;
}
.countdown--live { display: block; }
.countdown__live {
  margin: 1.2rem auto 1.4rem; max-width: 520px;
  font-size: 1.15rem; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--stall-orange), #c2410c);
  padding: .9rem 1.4rem; border-radius: 999px;
  box-shadow: 0 10px 26px rgba(232, 121, 30, .4);
}

/* ---- Stall details strip ---- */
.stall-facts {
  display: grid; gap: 1rem; margin: 0 auto 1.75rem; max-width: 780px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stall-fact {
  background: rgba(255,255,255,.045); border: 1px solid var(--stall-line);
  border-radius: 14px; padding: 1rem 1.1rem; text-align: center;
}
.stall-fact__label {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stall-amber); margin-bottom: .3rem;
}
.stall-fact__value { display: block; color: #f6ece0; font-weight: 500; }

/* ---- Stall menu items (poster style) ---- */
.stall-menu {
  display: grid; gap: .85rem; max-width: 760px; margin: 0 auto;
  padding: 0; list-style: none;
}
.stall-item {
  display: flex; align-items: flex-start; gap: 1rem; text-align: left;
  background: rgba(255,255,255,.04); border: 1px solid rgba(232,121,30,.22);
  border-radius: 14px; padding: 1rem 1.15rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.stall-item:hover {
  transform: translateY(-3px); border-color: var(--stall-orange);
  background: rgba(255,255,255,.07);
}
.stall-item__num {
  flex: none; width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--stall-amber), var(--stall-orange));
  color: #2a1405; font-family: var(--font-head); font-weight: 800; font-size: 1.15rem;
}
/* When a dish has a photo, the number rides on the thumbnail instead */
.stall-item--has-photo > .stall-item__num { display: none; }
.stall-item__thumb {
  position: relative; flex: none; width: 96px; height: 96px;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(232,121,30,.35); background: #241d17;
}
.stall-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stall-item__num--onphoto {
  position: absolute; top: -1px; left: -1px; width: 30px; height: 30px;
  font-size: .95rem; border-radius: 12px 0 12px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
}
@media (max-width: 480px) {
  .stall-item__thumb { width: 76px; height: 76px; }
}
.stall-item__body { flex: 1; min-width: 0; }
.stall-item__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: .8rem; flex-wrap: wrap;
}
.stall-item__namewrap { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.stall-item__name {
  margin: 0; font-size: 1.15rem; color: #fff; text-transform: uppercase;
  letter-spacing: .01em;
}
.stall-item__price {
  flex: none; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  color: var(--stall-amber);
}
.stall-item__portion {
  margin: .25rem 0 0; font-size: .74rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--stall-orange);
}
.stall-item__desc { margin: .3rem 0 0; color: #cdbba7; font-size: .93rem; }
.stall-item__allergy {
  margin: .35rem 0 0; font-size: .8rem; color: var(--stall-amber); font-weight: 500;
}

/* ---- Extra sauces ---- */
.extras {
  max-width: 760px; margin: 1.5rem auto 0; padding: 1.1rem 1.3rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .75rem 1.1rem;
  background: rgba(255,255,255,.04);
  border: 1px dashed var(--stall-line); border-radius: 14px;
}
.extras__title {
  margin: 0; font-size: 1.05rem; font-style: italic; color: var(--stall-amber);
  text-transform: uppercase; letter-spacing: .04em;
}
.extras__list { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; margin: 0; padding: 0; }
.extras__item {
  font-size: .85rem; font-weight: 600; padding: .3rem .8rem; border-radius: 999px;
  background: rgba(255,255,255,.08); color: #f6ece0;
}
.extras__price {
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: var(--stall-amber);
}

/* ---- Printed menu poster ---- */
.stall-poster { max-width: 620px; margin: 2.5rem auto 0; }
.stall-poster__img {
  width: 100%; height: auto; border-radius: 14px;
  border: 1px solid var(--stall-line); box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.stall-poster__cap {
  margin: .8rem 0 0; font-size: .88rem; color: #cdbba7; text-align: center;
}

.stall-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  padding: .2rem .5rem; border-radius: 999px; white-space: nowrap;
}
.stall-badge--vegetarian, .stall-badge--vegan { background: #2f6b34; color: #eafce9; }
.stall-badge--spicy { background: #a12f12; color: #ffe9df; }

/* ---- Allergy box ---- */
.allergy-box {
  max-width: 760px; margin: 2rem auto 0; padding: 1.25rem 1.4rem;
  background: rgba(232, 121, 30, .1);
  border: 1px solid var(--stall-line); border-radius: 14px; text-align: center;
}
.allergy-box h3 {
  margin: 0 0 .5rem; font-size: 1.1rem; color: var(--stall-amber);
  text-transform: uppercase; letter-spacing: .05em;
}
.allergy-box p { margin: 0 0 .8rem; color: #d9c7b3; font-size: .93rem; }
.allergen-list {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  list-style: none; margin: 0; padding: 0;
}
.allergen {
  font-size: .82rem; font-weight: 600; padding: .3rem .75rem; border-radius: 999px;
  background: rgba(255,255,255,.08); color: #f6ece0;
  border: 1px solid rgba(255,255,255,.12);
}

/* Buttons sitting on the dark stall ground */
.stall-section .btn--ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.stall-section .btn--ghost:hover { background: #fff; color: var(--stall-ink); border-color: #fff; }

/* Gentle scroll-in reveal (added by JS; skipped for reduced-motion users) */
.reveal {
  opacity: 0; translate: 0 16px;
  transition: opacity .55s ease, translate .55s ease,
              transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.reveal.is-visible { opacity: 1; translate: 0 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  body { background-attachment: scroll, scroll, scroll; }
}
