/* ========================================
   Grillbird — Design System
   ======================================== */

/* ---------- display face ---------- */
@font-face {
  font-family: 'Vintage';
  src: url('../fonts/Vintage.otf') format('opentype'),
       url('../fonts/Vintage.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gracio';
  src: url('../fonts/Gracio.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ---------- custom properties ---------- */
:root {
  /* Palette — Warm Ember */
  --red:       #C8321C;   /* red-orange accent — outlines, headings, buttons, chips */
  --mark-red:  #C8321C;   /* brand marks — unified to brand red 2026-08 */
  --calrose:   #fdece7;   /* ground / blush — page background */
  --tamari:    #443b36;   /* ink — dark surfaces only (footer bg, active tabs) */
  --body:      #C8321C;   /* body text */
  --btn:       #C8321C;   /* button fill */
  --btn-hover: #B02D19;   /* button hover */

  /* Type faces */
  --display: 'Vintage', Impact, sans-serif;
  --clear:   'Gracio', system-ui, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--clear);
  background: var(--calrose);
  color: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--red);
}

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  top: -50px;
  left: 16px;
  background: var(--red);
  color: #fff;
  font-family: var(--clear);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 0 0 4px 4px;
  z-index: 1000;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

/* ---------- layout ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.col  { max-width: 720px;  margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }
section { padding: clamp(21px, 3vw, 40px) 0 0; }
.section-head { margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 12px 0; }
.section-head p { color: var(--body); font-size: 18px; }
.center { text-align: center; }

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--red);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--clear);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-order { background: var(--btn); color: #fff; border-color: var(--btn); }
.btn-order:hover { transform: translateY(-1px); background: var(--btn-hover); border-color: var(--btn-hover); }
.btn-ghost { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: #fff; }
.btn-cream { background: var(--calrose); color: var(--body); border-color: var(--calrose); }
.btn-cream:hover { transform: translateY(-1px); }

/* ---------- photo placeholders — wireframe ---------- */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--calrose);
  border: 1.5px solid rgba(68,59,54,.22);
}
.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom right, transparent calc(50% - .75px), rgba(68,59,54,.18) calc(50% - .75px), rgba(68,59,54,.18) calc(50% + .75px), transparent calc(50% + .75px)),
    linear-gradient(to bottom left,  transparent calc(50% - .75px), rgba(68,59,54,.18) calc(50% - .75px), rgba(68,59,54,.18) calc(50% + .75px), transparent calc(50% + .75px));
}
.photo::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-family: var(--clear);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(68,59,54,.42);
  max-width: 70%;
}

/* ---------- hours strip ---------- */
#hours-strip { background: var(--calrose); }
.hours-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
  padding-bottom: 12px;
  max-width: 720px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}
.hours-stores { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.store-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-family: var(--clear);
  color: var(--body);
  line-height: 1;
  text-decoration: none;
}
.store-status strong { font-weight: 600; transition: color .15s; }
.store-status:hover strong { color: var(--red); }
.status-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--body); opacity: .35;
}
.status-dot.is-open {
  background: var(--red); opacity: 1;
  animation: dot-pulse 2.4s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.78); }
}
@media (prefers-reduced-motion: reduce) { .status-dot.is-open { animation: none; } }
.meal-prompt {
  font-size: 16px; color: var(--body);
  font-family: var(--display); font-weight: 400;
  white-space: nowrap; margin: 0; opacity: .80;
  text-align: center;
}
@media (max-width: 600px) { .meal-prompt { display: none; } }

/* ---------- header ---------- */
header {
  position: sticky;
  top: 28px;
  margin-top: 28px;
  z-index: 50;
  background: transparent;
  padding: 0 clamp(20px, 5vw, 48px);
  will-change: transform;   /* eliminates sticky-layer paint-seam artifact */
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  max-width: none;
  height: 60px;
  border: 1.5px solid var(--red);
  border-radius: 100px;
  background: var(--calrose);
  padding: 0 8px 0 20px;
  gap: 28px;
}
.brand { display: flex; align-items: center; }
.brand .word { height: 24px; width: auto; display: block; }
nav.links { display: flex; gap: 22px; align-items: center; }
nav.links a { font-weight: 500; font-size: 15px; }
nav.links a:hover { color: var(--red); }
nav.links a[aria-current="page"] { color: var(--red); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-weight: 600; font-size: 14px; color: var(--body); opacity: .75; }
@media (max-width: 860px) {
  nav.links, .nav-phone { display: none; }
  .nav { width: 100%; }
}

/* ---------- hero ---------- */
.hero-copy h1 { font-size: clamp(34px, 5vw, 65px); margin: 0 0 36px; max-width: 22ch; line-height: 1.05; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- our story split ---------- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(380px, 55vw, 680px);
}
.story-split__photo { overflow: hidden; }
.story-split__photo picture,
.story-split__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.story-split__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(32px, 5vw, 64px);
}
.story-split__copy p {
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  color: var(--body);
  font-family: var(--clear);
  max-width: 52ch;
  margin-bottom: 1.25em;
}
.story-split__copy p:last-child { margin-bottom: 0; }
@media (max-width: 700px) {
  .story-split { grid-template-columns: 1fr; }
  .story-split__photo { min-height: 280px; }
}

/* ---------- section bands ---------- */
.band { display: block; padding: clamp(21px, 3vw, 40px) 0 0; }
.band .photo { display: none; }
.band .panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}
.band.sage .panel { background: transparent; color: var(--tamari); }
.band.sage .eyebrow { color: var(--red); }
.band.dark .panel {
  background: var(--red);
  color: #fff;
  border-radius: 20px;
  padding: clamp(36px, 5vw, 60px);
}
.band.dark .eyebrow { color: #fff; opacity: .80; }
.band.dark .btn-order { background: #fff; color: var(--red); border-color: #fff; }
.band.dark .btn-order:hover { transform: translateY(-1px); opacity: .92; }
.band.dark .btn-ghost { color: #fff; border-color: rgba(255,255,255,.55); }
.band.dark .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: #fff; }
.band .panel h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 14px 0 20px; }
.band .panel p { font-size: 17px; max-width: 46ch; margin-bottom: 14px; }
.band .panel p:last-of-type { margin-bottom: 0; }
.band .panel .cta { margin-top: 26px; }
.band .panel .row { margin-top: 26px; }
/* GF dark box — explicit white (heading base is --red = invisible on red bg); compact spacing */
.band.dark .panel h2 { color: #fff; font-size: clamp(24px, 2.8vw, 34px); margin: 6px 0 8px; }
.band.dark .panel .gf-kicker { font-weight: 600; font-size: 17px; margin-bottom: 10px; }
.band.dark .panel p { margin-bottom: 8px; }
.band.dark .panel p:last-of-type { margin-bottom: 0; }
.band.dark .panel .row { margin-top: 14px; }
.band .panel .fine-print { font-size: 14px; opacity: .7; margin-top: 6px; margin-bottom: 0; }

/* ---------- row utility ---------- */
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ---------- feature (centered copy block) ---------- */
.feature { text-align: center; }
.feature .eyebrow { display: block; margin-bottom: 12px; }
.feature h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 0 0 18px; }
.feature p { font-size: 18px; color: var(--body); margin-bottom: 24px; }

/* ---------- menu cards ---------- */
.cats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 38px; }
.cats a {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(68,59,54,.08);
  color: var(--body);
  transition: background .15s, color .15s;
}
.cats a:hover { background: rgba(68,59,54,.14); }
.cats a.active, .cats a[aria-current] { background: var(--tamari); color: var(--calrose); }

.cats-sticky {
  position: sticky;
  top: 70px;
  z-index: 40;
  background: rgba(253,236,231,.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(68,59,54,.10);
  padding: 12px 0;
}

.menu-block { margin-bottom: 54px; scroll-margin-top: 136px; }
.menu-block > h3 {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(68,59,54,.12);
}
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 28px 24px; }
.card {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  padding-bottom: 28px;
}
.card .body { padding: 0; }
.card h4 { font-size: 18px; margin-bottom: 7px; color: var(--red); }
.card p { font-family: var(--clear); font-size: 14px; line-height: 1.5; color: var(--body); margin-bottom: 12px; }
.chips { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-family: var(--clear);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.chip.gf         { background: transparent; border: 1.5px solid var(--red); color: var(--red); opacity: .75; }
.chip.gf-option  { background: transparent; border: 1.5px solid var(--red); color: var(--red); opacity: .55; }
.chip.spicy      { background: var(--red); color: #fff; }
.chip.very-spicy { background: #8B1A0A; color: #fff; }
.chip.vegan      { background: transparent; border: 1.5px solid var(--body); color: var(--body); opacity: .70; }
.chip.veg        { background: transparent; border: 1.5px solid var(--body); color: var(--body); opacity: .70; }
.menu-foot  { margin-top: 32px; }

.home-clip { max-width: 720px; margin: clamp(21px,3vw,40px) auto 0; padding: 0 clamp(20px, 4vw, 40px); }
.home-clip__video { width: 100%; height: auto; display: block; border-radius: 20px; }

.photo-carousel { position: relative; width: calc(100% - 2 * clamp(20px, 4vw, 40px)); max-width: calc(720px - 2 * clamp(20px, 4vw, 40px)); margin: clamp(21px,3vw,40px) auto 0; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; }
.photo-carousel__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .25s ease; }
.photo-carousel__slide.is-active { opacity: 1; }
.photo-carousel__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }

.allergy-legend {
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 20px;
  padding: 22px 28px;
  margin: 0 0 48px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.allergy-legend p { font-size: 14px; color: var(--body); margin: 0; }
.legend-item { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--body); }

/* ---------- locations ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.loc {
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 20px;
  overflow: hidden;
}
.loc .photo { height: 200px; border-radius: 0; }
.loc .body { padding: 26px 28px 30px; }
.loc h3 { font-size: 26px; margin-bottom: 12px; }
.loc .meta { font-size: 15px; color: var(--body); line-height: 1.7; margin-bottom: 4px; }
.loc .meta b { color: var(--red); font-weight: 600; }
.loc .hours { color: var(--red); font-weight: 600; font-size: 15px; margin-bottom: 18px; display: block; }
.loc .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 20px; }
.loc .map-link { font-size: 14px; font-weight: 600; color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.loc-note { font-size: 14px; color: var(--body); margin-top: 10px; }
@media (max-width: 760px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- app + catering tiles ---------- */
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.tile { background: transparent; border: 1.5px solid var(--red); color: var(--body); border-radius: 20px; padding: clamp(30px, 4vw, 46px); }
.tile .eyebrow { color: var(--red); opacity: 1; }
.tile h3 { font-size: clamp(24px, 2.8vw, 34px); margin: 12px 0 14px; }
.tile p { font-size: 16px; opacity: .90; max-width: 40ch; margin-bottom: 22px; }
.tile .row { display: flex; gap: 12px; flex-wrap: wrap; }
.tile-locs { display: flex; flex-direction: column; gap: 16px; }
.tile-loc > strong { display: block; font-size: 11px; font-family: var(--display); letter-spacing: .08em; text-transform: uppercase; opacity: .60; margin-bottom: 8px; }
.tile-loc .row { flex-wrap: wrap; }
#catering .tile { padding-bottom: clamp(24px, 3vw, 36px); }
@media (max-width: 760px) { .two { grid-template-columns: 1fr; } }

/* ---------- location cards + contact ---------- */
.tile address { font-style: normal; font-size: 15px; line-height: 1.7; color: var(--body); margin-top: 8px; display: block; letter-spacing: -0.06em; }
.tile address a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.owner-email { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 28px; margin-bottom: clamp(21px, 3vw, 40px); font-size: 16px; }
.owner-icon { height: 40px; width: auto; border-radius: 50%; flex-shrink: 0; }
.owner-email a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.band.dark .owner-email { justify-content: flex-start; margin-bottom: 0; }
.band.dark .owner-email a { color: #fff; }
#making-it-right .panel { padding-bottom: clamp(48px, 6vw, 72px); }

/* ---------- catering steps ---------- */
.catering-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 54px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 20px;
  padding: 28px 28px 32px;
}
.step .num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 400;
  color: rgba(200,50,28,.22);
  line-height: 1;
  margin-bottom: 14px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p  { font-family: var(--clear); font-size: 15px; color: var(--body); line-height: 1.6; }

/* ---------- catering large-format ---------- */
.catering-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 54px;
}
.catering-item {
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: 20px;
  overflow: hidden;
}
.catering-item .photo { height: 180px; border-radius: 0; }
.catering-item .body { padding: 24px 26px 28px; }
.catering-item h3 { font-size: 22px; margin-bottom: 8px; }
.catering-item p { font-family: var(--clear); font-size: 15px; color: var(--body); line-height: 1.6; }
@media (max-width: 700px) { .catering-items { grid-template-columns: 1fr; } }

/* ---------- story page ---------- */
.story-body { font-size: 18px; line-height: 1.75; color: var(--body); max-width: 66ch; margin: 0 auto; }
.story-body p { margin-bottom: 22px; }
.story-body h2 { color: var(--red); font-size: clamp(26px, 3vw, 40px); margin: 48px 0 18px; }
.story-body h3 { color: var(--red); font-size: 20px; margin: 36px 0 14px; }

/* ---------- FAQ ---------- */
.faq-page { padding-bottom: clamp(56px, 8vw, 96px); }
.faq { margin: 0; }
details { border-bottom: 1px solid rgba(68,59,54,.14); padding: 6px 0; }
summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  color: var(--red);
}
summary::-webkit-details-marker { display: none; }
summary .plus {
  font-family: var(--clear);
  font-weight: 400;
  color: var(--red);
  font-size: 26px;
  line-height: 1.05;
  flex-shrink: 0;
  transition: transform .2s;
}
details[open] summary .plus { transform: rotate(45deg); }
details p { padding: 4px 0 24px; font-family: var(--clear); color: var(--body); font-size: 16px; max-width: 70ch; line-height: 1.65; }
details p a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- forms ---------- */
.form-page { max-width: 640px; border: 1.5px solid var(--red); border-radius: 24px; padding: clamp(28px, 4vw, 48px); margin-top: 8px; }
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-family: var(--clear);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="date"],
input[type="tel"],
select,
textarea {
  width: 100%;
  font-family: var(--clear);
  font-size: 16px;
  color: var(--tamari);
  background: rgba(68,59,54,.05);
  border: 1.5px solid rgba(68,59,54,.18);
  border-radius: 6px;
  padding: 13px 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1.5;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,50,28,.14);
}
textarea { resize: vertical; min-height: 140px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2340352B' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: rgba(68,59,54,.05);
  padding-right: 40px;
}
.form-submit { margin-top: 34px; }
.form-note { font-size: 14px; color: rgba(68,59,54,.70); margin-top: 14px; }

/* ---------- page intro (interior pages) ---------- */
.page-intro {
  padding: clamp(48px, 7vw, 96px) 0 clamp(36px, 5vw, 60px);
}
.page-intro .eyebrow { display: block; margin-bottom: 14px; }
.page-intro h1 { font-size: clamp(34px, 5vw, 62px); max-width: 22ch; margin-bottom: 18px; line-height: 1.1; }
.page-intro p.intro-lede { font-size: 18px; max-width: 54ch; color: rgba(68,59,54,.72); line-height: 1.6; }

/* ---------- legal pages ---------- */
.legal-body { max-width: 72ch; }
.legal-body h2 { font-size: 22px; margin: 36px 0 12px; }
.legal-body p { font-family: var(--clear); font-size: 16px; color: rgba(68,59,54,.78); margin-bottom: 16px; line-height: 1.7; }
.legal-body ul { font-family: var(--clear); font-size: 16px; color: rgba(68,59,54,.78); line-height: 1.7; padding-left: 22px; margin-bottom: 16px; }
.legal-body a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }

/* ---------- footer ---------- */
footer { background: var(--red); color: #fff; padding: clamp(21px, 3vw, 40px) 0 0; overflow: hidden; }
.foot-main { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 36px; padding-bottom: 44px; }

.foot-col-heading { font-family: var(--display); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255,255,255,.55); margin-bottom: 14px; }

.foot-mark { height: 36px; width: auto; margin-bottom: 10px; display: block; }
.foot-word { height: 20px; width: auto; display: block; }
.foot-tagline { opacity: .65; font-size: 13px; max-width: 28ch; margin-top: 10px; line-height: 1.6; }

.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.foot-nav a { opacity: .72; font-size: 14px; transition: opacity .15s; }
.foot-nav a:hover { opacity: 1; }

.foot-locs { display: flex; flex-direction: column; gap: 20px; }
.foot-loc { display: flex; flex-direction: column; gap: 3px; font-size: 13px; line-height: 1.55; }
.foot-loc strong { color: #fff; font-weight: 600; font-size: 13px; margin-bottom: 4px; display: block; }
.foot-loc span { opacity: .65; }
.foot-loc-hours { font-style: italic; }
.foot-loc a { opacity: .70; text-decoration: underline; text-underline-offset: 2px; transition: opacity .15s; }
.foot-loc a:hover { opacity: 1; }

.foot-nl-heading { font-size: clamp(20px, 2vw, 26px); color: #fff; margin-bottom: 8px; }
.foot-nl-sub { font-size: 14px; opacity: .62; margin-bottom: 20px; max-width: 28ch; line-height: 1.65; }

@media (max-width: 900px) { .foot-main { grid-template-columns: 1fr 1fr; gap: 36px 32px; } }
@media (max-width: 520px) { .foot-main { grid-template-columns: 1fr; } }

/* real logo bleed — Surella footer moment */
.foot-logo-bleed {
  width: 100vw;
  height: 14vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  line-height: 0;
  margin-top: 0;
  pointer-events: none;
  user-select: none;
}
.wordmark-mask {
  width: 100vw;
  height: 27.25vw;
  background-color: var(--calrose);
  -webkit-mask-image: url('/assets/img/Grillbird_word-white.svg');
  mask-image: url('/assets/img/Grillbird_word-white.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  transform-origin: 50% 0%;
}

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.20);
  padding: 26px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: .62;
}

/* ---------- scroll reveals ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

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

/* ---------- mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 4px;
  margin-left: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tamari);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;          /* hidden above hamburger breakpoint — no layout strip */
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, border-color .25s ease;
  background: transparent;   /* no cream until drawer is open */
  border: 1.5px solid transparent;
  border-radius: 20px;
  /* margin-top and backdrop-filter only when open — see .is-open below */
}
.mobile-nav.is-open {
  max-height: 440px;
  border-color: var(--red);
  background: rgba(253,236,231,.98);
  margin-top: 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mobile-nav-inner {
  padding-bottom: 20px;
}
.mobile-nav-link {
  display: block;
  padding: 15px clamp(20px, 5vw, 56px);
  font-weight: 500;
  font-size: 17px;
  border-bottom: 1px solid rgba(68,59,54,.08);
  color: var(--tamari);
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--red); }
.mobile-nav-link[aria-current="page"] { color: var(--red); }
.mobile-nav-cta {
  padding: 18px clamp(20px, 5vw, 56px) 0;
}

/* ---------- cat note ---------- */
.cat-note {
  font-size: 13px;
  opacity: .7;
  margin: -12px 0 20px;
  font-style: italic;
}

/* ---------- menu list (homepage) ---------- */
[id="menu"] { scroll-margin-top: 90px; }

/* genie effect: title stays pinned, box rises over it */
#menu .section-head { position: sticky; top: 96px; z-index: 1; }
#menu .menu-outline-box { position: relative; z-index: 2; background: var(--calrose); }
@media (prefers-reduced-motion: reduce) { #menu .section-head { position: static; } }

.menu-outline-box {
  border: 1.5px solid var(--red);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 48px) clamp(24px, 4vw, 48px) 0;
  margin-top: 32px;
}
.menu-outline-box .menu-block { margin-bottom: 40px; }
.menu-outline-box .menu-block:last-of-type { margin-bottom: 0; }
.menu-list { list-style: none; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0 40px; }
.menu-list-item { padding: 16px 0; }
.menu-item-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.menu-item-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--tamari);
  line-height: 1.2;
}
.menu-item-desc {
  font-size: 14px;
  color: rgba(68,59,54,.65);
  line-height: 1.5;
  margin: 0;
  max-width: 56ch;
}

/* ---------- splash screen ---------- */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--calrose);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
#splash.splash-out {
  opacity: 0;
  transition: opacity .4s ease;
}
#splash-bird {
  position: absolute;
  height: 85vmin;
  width: auto;
  opacity: 0;
  transform: scale(0);
  will-change: transform, opacity;
}
#splash-bird.splash-scale {
  animation: splash-bird-zoom 2s cubic-bezier(.16,1,.3,1) forwards;
}
@keyframes splash-bird-zoom {
  0%   { transform: scale(0.15); opacity: 1; }
  75%  { transform: scale(1);    opacity: 1; }
  100% { transform: scale(1);    opacity: 0; }
}
#splash-word {
  position: absolute;
  width: clamp(180px, 55vw, 560px);
  opacity: 0;
  will-change: opacity;
}
#splash-word.splash-show {
  opacity: 1;
  transition: opacity .2s ease;
}
@media (prefers-reduced-motion: reduce) {
  #splash { display: none; }
}

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

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }  /* restore so open/close transition works */
}

/* ---------- allergy list ---------- */
.al-controls {
  padding-top: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.al-search-row { display: flex; flex-direction: column; gap: 8px; }
.al-search-label {
  font-family: var(--display); font-size: 12px;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--body);
}
.al-search {
  width: 100%; max-width: 400px;
  border: 1.5px solid var(--red); border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--clear); font-size: 16px; color: var(--tamari);
  background: var(--calrose);
  outline: none;
  -webkit-appearance: none;
}
.al-search:focus { border-color: var(--tamari); }
.al-search::placeholder { opacity: .45; }

.al-chip-group { display: flex; flex-direction: column; gap: 10px; }
.al-chip-heading {
  font-family: var(--display); font-size: 12px;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--body); margin: 0;
}
.al-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.al-chip {
  padding: 7px 14px;
  border: 1.5px solid var(--red); border-radius: 999px;
  background: transparent; color: var(--red);
  font-family: var(--clear); font-size: 14px;
  cursor: pointer; line-height: 1;
  transition: background .15s, color .15s;
}
.al-chip:hover { background: rgba(200,50,28,.09); }
.al-chip.is-on { background: var(--red); color: #fff; }

.al-bar {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.al-count {
  font-family: var(--clear); font-size: 14px;
  color: var(--body); opacity: .75; min-height: 1em;
}
.al-bar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.al-reset { font-size: 14px; padding: 8px 16px; }

.al-view-toggle {
  display: flex;
  border: 1.5px solid var(--red); border-radius: 999px; overflow: hidden;
}
.al-view-btn {
  padding: 7px 16px; border: none; background: transparent;
  color: var(--red); font-family: var(--clear); font-size: 14px;
  cursor: pointer; line-height: 1;
  transition: background .15s, color .15s;
}
.al-view-btn.is-on { background: var(--red); color: #fff; }
.al-view-btn:hover:not(.is-on) { background: rgba(200,50,28,.09); }

/* List view */
.al-list-wrap { padding-bottom: clamp(40px, 5vw, 64px); }
.al-section { margin-top: clamp(36px, 4.5vw, 56px); }
.al-section-head {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(18px, 2vw, 24px); color: var(--red);
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1.5px solid rgba(200,50,28,.35);
}
.al-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.al-card {
  border: 1.5px solid var(--red); border-radius: 16px;
  padding: clamp(16px, 2vw, 24px);
  background: var(--calrose);
  display: flex; flex-direction: column; gap: 8px;
}
.al-card-head { display: flex; flex-direction: column; gap: 6px; }
.al-item-name {
  font-family: var(--display); font-weight: 400;
  font-size: 16px; color: var(--tamari);
  text-transform: uppercase; letter-spacing: .03em;
  margin: 0; line-height: 1.25;
}
.al-card--varies .al-item-name { font-size: 14px; }
.al-varies-note {
  font-family: var(--clear); font-size: 14px;
  color: var(--body); opacity: .65; margin: 0;
}

.al-diet-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.al-pill {
  font-family: var(--clear); font-size: 11px; font-weight: 600;
  padding: 3px 8px; border-radius: 999px; line-height: 1;
}
.al-pill--gf    { background: rgba(200,50,28,.13); color: var(--red); }
.al-pill--veg   { background: rgba(68,59,54,.09);   color: var(--tamari); }
.al-pill--vegan { background: rgba(68,59,54,.09);   color: var(--tamari); }

.al-contains, .al-side, .al-clean {
  font-family: var(--clear); font-size: 13px; color: var(--body);
  margin: 0; line-height: 1.5;
}
.al-clean { opacity: .55; }
.al-label { font-weight: 700; }
.al-side-note {
  font-family: var(--clear); font-size: 13px; color: var(--tamari);
  background: rgba(200,50,28,.11);
  border-radius: 8px; padding: 8px 12px;
  margin-top: 4px; line-height: 1.5;
}

.al-empty {
  font-family: var(--clear); font-size: 16px;
  color: var(--body); opacity: .55; margin-top: 40px;
}

/* Full map */
.al-map-wrap { padding-bottom: clamp(40px, 5vw, 64px); }
.al-legend {
  font-family: var(--clear); font-size: 13px;
  color: var(--body); opacity: .65; margin: 24px 0 16px;
}
.al-sym--dot   { color: var(--red); }
.al-sym--ring  { color: var(--body); }
.al-sym--check { color: var(--red); }

.al-map-scroll {
  overflow-x: auto;
  border: 1.5px solid rgba(200,50,28,.25); border-radius: 12px;
}
.al-table {
  border-collapse: collapse; white-space: nowrap;
  min-width: 100%; font-family: var(--clear); font-size: 13px;
}
.al-table thead tr { background: var(--red); }
.al-table th {
  padding: 10px 8px; font-weight: 400;
  font-family: var(--display); font-size: 11px;
  text-transform: uppercase; letter-spacing: .07em; color: #fff;
}
.al-th-name  { min-width: 160px; text-align: left; padding-left: 16px; }
.al-th-al    { min-width: 58px; text-align: center; }
.al-th-diet  { min-width: 72px; text-align: center; opacity: .85; }
.al-tr-section { background: rgba(200,50,28,.08); }
.al-tr-section td {
  padding: 8px 16px;
  font-family: var(--display); font-size: 11px;
  text-transform: uppercase; letter-spacing: .09em; color: var(--red);
}
.al-tr-item { border-bottom: 1px solid rgba(200,50,28,.12); }
.al-tr-item:hover { background: rgba(200,50,28,.04); }
.al-td-name {
  padding: 10px 8px 10px 16px;
  color: var(--tamari); font-size: 13px;
}
.al-td-cell   { padding: 8px; text-align: center; color: var(--red); }
.al-td-diet   { color: var(--body); }
.al-td-varies {
  padding: 10px 8px; color: var(--body);
  opacity: .5; font-style: italic;
}

/* Disclaimer */
.al-disclaimer { margin-top: clamp(32px, 4vw, 52px); }
/* (0,3,0) beats .band (0,1,0) — gives the band itself bottom space before the footer */
.band.dark.al-disclaimer { padding-bottom: clamp(56px, 6vw, 80px); }
/* Needs (0,4,0) to beat .band.dark .panel at (0,3,0) */
.band.dark.al-disclaimer .panel {
  padding: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(64px, 8vw, 88px);
}

/* .al-card sets display:flex which beats the UA [hidden] rule — restore it */
.al-card[hidden] { display: none; }

/* ─── Allergy demo — homepage ──────────────────────── */
#allergy-demo { padding-bottom: clamp(21px, 3vw, 40px); }
.al-demo-head { margin-bottom: 24px; }
.al-demo-head h2 { margin: 10px 0 12px; }
.al-demo-head p { max-width: 44ch; opacity: .75; }
.al-demo-filters {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 20px;
  pointer-events: none; user-select: none;
}
.al-demo-cta { margin-top: 24px; }
.al-demo-tile .al-cards { grid-template-columns: repeat(2, 1fr); }
.al-demo-tile .al-card p { max-width: none; margin-bottom: 0; }

@media (max-width: 600px) {
  .al-cards { grid-template-columns: 1fr; }
  .al-demo-tile .al-cards { grid-template-columns: 1fr; }
  .al-bar   { flex-direction: column; align-items: flex-start; }
  /* Match .wrap gutter so the orange box insets to align with the cards above */
  .band.dark.al-disclaimer {
    padding-left:  clamp(20px, 5vw, 56px);
    padding-right: clamp(20px, 5vw, 56px);
  }
}
