/* =====================================================================
   Nate's Pizza — production stylesheet
   Mobile-first, plain CSS custom properties, WCAG 2.1 AA contrast.
   ===================================================================== */

:root {
  --bg: #ffffff;
  --card: #ffffff;
  --foreground: #0a0a0a;
  --muted: #f5f5f5;
  --muted-foreground: #595959;        /* 7.0:1 on #fff — exceeds AA */
  --primary: #b91c1c;                 /* 5.94:1 on #fff — exceeds AA for normal text */
  --primary-foreground: #ffffff;
  --primary-hover: #991b1b;
  --primary-soft: #fef2f2;
  --primary-border: #fee2e2;
  --accent: #b45309;                  /* amber-ish, 4.8:1 on #fff */
  --accent-soft: #fef3c7;
  --accent-foreground: #78350f;
  --destructive: #b91c1c;
  --border: #e5e5e5;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --radius-full: 9999px;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --container-max: 64rem;

  /* Fluid spacing scale — interpolates from a 360px reference up to 1280px.
     The min value is what a small phone gets; the max is the desktop cap. */
  --space-3xs: clamp(0.25rem, 0.22rem + 0.13vw, 0.375rem);    /*  4 →  6 */
  --space-2xs: clamp(0.5rem,  0.43rem + 0.33vw, 0.75rem);     /*  8 → 12 */
  --space-xs:  clamp(0.75rem, 0.62rem + 0.65vw, 1.125rem);    /* 12 → 18 */
  --space-s:   clamp(1rem,    0.83rem + 0.87vw, 1.5rem);      /* 16 → 24 */
  --space-m:   clamp(1.25rem, 0.98rem + 1.30vw, 2rem);        /* 20 → 32 */
  --space-l:   clamp(1.75rem, 1.32rem + 2.17vw, 3rem);        /* 28 → 48 */
  --space-xl:  clamp(2.5rem,  1.85rem + 3.26vw, 4.375rem);    /* 40 → 70 */
  --space-2xl: clamp(3.5rem,  2.41rem + 5.43vw, 6.625rem);    /* 56 → 106 */

  /* Fluid type scale (only for elements that benefit) */
  --fs-h2: clamp(1.5rem,  1.32rem + 0.87vw, 2rem);
  --fs-h3: clamp(1.125rem,1.06rem + 0.33vw, 1.3125rem);

  /* Container padding — minimum 1.5rem so text never kisses the edge,
     plus iOS safe-area handling for notched phones. */
  --container-pad: clamp(1.5rem, 1.13rem + 1.84vw, 2.5rem);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0a0a;
    --card: #171717;
    --foreground: #fafafa;
    --muted: #1f1f1f;
    --muted-foreground: #b3b3b3;       /* 8.4:1 on #0a0a0a */
    --primary: #f87171;                /* 6.5:1 on #0a0a0a */
    --primary-foreground: #0a0a0a;
    --primary-hover: #fca5a5;
    --primary-soft: #2a1414;
    --primary-border: #3a1f1f;
    --accent: #fbbf24;
    --accent-soft: #2a1f10;
    --accent-foreground: #fde68a;
    --border: #2a2a2a;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  }
}

/* ---------- Reset / base ---------- */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
blockquote { margin: 0; }

/* ---------- A11y helpers ---------- */

.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: 0; top: 0;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.75rem 1rem;
  font-weight: 700;
  transform: translateY(-110%);
  z-index: 100;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { transform: translateY(0); text-decoration: none; }

/* Focus ring — visible, never removed silently */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav-cta:focus-visible {
  outline-offset: 3px;
}

/* ---------- Layout primitives ---------- */

/* Hard cap so any content that escapes a container still has a gutter. */
html, body { overflow-x: hidden; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-left: max(var(--container-pad), env(safe-area-inset-left));
  padding-right: max(var(--container-pad), env(safe-area-inset-right));
}

/* Full-bleed section backgrounds (hero/header/footer) span edge-to-edge,
   but any inner content uses .container for the same gutter. */
.full-bleed { width: 100%; }

.page-stack > * + * { margin-top: var(--space-2xl); }
.page-stack { padding-block: var(--space-2xl); }

.muted { color: var(--muted-foreground); }
.color-primary { color: var(--primary); }

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--foreground);
  font-weight: 700;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--muted);
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  letter-spacing: -0.01em;
}

.primary-nav { display: flex; align-items: center; }
.nav-toggle {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.nav-toggle-icon::before { position: absolute; top: -6px; left: 0; width: 20px; height: 2px; background: currentColor; }
.nav-toggle-icon::after  { position: absolute; top:  6px; left: 0; width: 20px; height: 2px; background: currentColor; }

.nav-list {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%; right: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  min-width: 12rem;
  box-shadow: var(--shadow-md);
}
.primary-nav { position: relative; }
.nav-list[data-open="true"] { display: flex; }
.nav-list a {
  display: block;
  padding: 0.625rem 0.875rem;
  color: var(--foreground);
  font-weight: 500;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-list a:hover { background: var(--muted); text-decoration: none; }

.nav-cta {
  background: var(--primary);
  color: var(--primary-foreground) !important;
}
.nav-cta:hover { background: var(--primary-hover); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-list {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    min-width: 0;
    box-shadow: none;
    gap: 0.25rem;
  }
  .nav-list a { padding: 0.5rem 0.875rem; }
  .nav-cta {
    margin-left: 0.5rem;
    border-radius: var(--radius-full);
    padding-inline: 1.25rem !important;
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--muted); }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding-inline: 2rem;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.btn-outline-light:focus-visible {
  outline-color: #ffffff;
}

.btn-block { width: 100%; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(28rem, 70vh, 50rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.1) 100%);
  z-index: -1;
}
.hero-content {
  padding-top: clamp(5rem, 4rem + 5vw, 8rem);
  padding-bottom: var(--space-xl);
  color: #ffffff;
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-s);
}
.hero-status-time {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
}
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.hero-title {
  font-size: clamp(3.5rem, 2rem + 10vw, 7.5rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 var(--space-s);
}
.hero-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.25rem);
  max-width: 32rem;
  margin: 0 0 var(--space-m);
  line-height: 1.5;
}
.hero-location {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
  margin: 0 0 var(--space-l);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: var(--radius-full);
  padding: 0.55rem 0.95rem;
  color: #ffffff;
  font-size: 0.875rem;
}
.chip strong { font-weight: 700; }
.chip .muted { color: rgba(255, 255, 255, 0.65); }
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-star { color: #f59e0b; }

/* ---------- Featured review ---------- */

.featured-review blockquote {
  background: var(--primary-soft);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);
  padding: var(--space-m);
  text-align: center;
}
.featured-review p {
  font-style: italic;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  max-width: 42rem;
  margin: 0 auto;
  color: var(--foreground);
  line-height: 1.6;
}
.featured-review footer {
  margin-top: var(--space-xs);
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* ---------- Section heading ---------- */

.section-heading {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-s);
}
.section-heading h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
}
.section-sub {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin: 0 0 var(--space-l);
  line-height: 1.55;
}

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  margin-bottom: var(--space-s);
}
.card-heading h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
}

.pill-card { margin-top: var(--space-s); padding: var(--space-m); }
.pill-card h3 { font-size: var(--fs-h3); font-weight: 800; margin-bottom: var(--space-s); }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2xs);
}
.pill {
  display: inline-block;
  padding: 0.45rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
}
.pill-primary { background: var(--primary-soft); color: var(--primary); border: 1px solid var(--primary-border); }
.pill-accent  { background: var(--accent-soft);  color: var(--accent-foreground); }

/* ---------- Favorites grid ---------- */

.favorites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xs);
}
@media (min-width: 640px) {
  .favorites-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.favorite-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.favorite-card:hover { border-color: var(--primary-border); box-shadow: var(--shadow-md); }
.favorite-icon { font-size: 1.875rem; display: block; margin-bottom: var(--space-xs); line-height: 1; }
.favorite-card h3 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 0.25rem; line-height: 1.3; }
.favorite-card p  { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.5; }

/* ---------- Full menu ---------- */

.menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
}
@media (min-width: 768px) {
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-m); }
  .menu-wide { grid-column: 1 / -1; }
}
.menu-category {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
}
.menu-category > header { margin-bottom: var(--space-s); }
.menu-category h3 {
  font-size: var(--fs-h3);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  line-height: 1.25;
}
.cat-emoji { font-size: 1.5rem; line-height: 1; }
.menu-subtitle {
  margin-top: var(--space-2xs);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.55;
}
.menu-items > li + li { margin-top: var(--space-xs); padding-top: var(--space-xs); border-top: 1px dashed var(--border); }
.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-xs);
}
.menu-name { font-weight: 700; font-size: 0.9375rem; line-height: 1.4; }
.menu-price {
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9375rem;
  white-space: nowrap;
}
.menu-desc {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.55;
  margin-top: 0.25rem;
}
.menu-note {
  margin-top: var(--space-s);
  padding-top: var(--space-s);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.menu-items-cols { display: grid; grid-template-columns: 1fr; gap: 0; }
.menu-items-cols > li + li { padding-top: 0.875rem; margin-top: 0.875rem; }
@media (min-width: 640px) {
  .menu-items-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.5rem; }
  .menu-items-cols > li + li { border-top: 0; }
  .menu-items-cols > li:nth-child(n+3) { border-top: 1px dashed var(--border); }
  .menu-items-cols > li:nth-child(2) { border-top: 0; padding-top: 0; margin-top: 0; }
}

/* ---------- Wings ---------- */

.wings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}
@media (min-width: 640px) { .wings-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-s); } }
.wings-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
  text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wings-tile:hover { border-color: var(--primary-border); box-shadow: var(--shadow-md); }
.wings-count {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 1.5rem + 1.5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  margin: 0;
  line-height: 1;
}
.wings-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin: 0.25rem 0 var(--space-s);
  letter-spacing: 0.02em;
}
.wings-prices { display: flex; flex-direction: column; gap: var(--space-2xs); }
.wings-prices > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--muted);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.875rem;
  font-size: 0.875rem;
}
.wings-prices dt { font-weight: 500; margin: 0; }
.wings-prices dd { margin: 0; font-weight: 700; }

/* ---------- Subs ---------- */

.subs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}
@media (min-width: 640px) { .subs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-s); } }
.sub-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.sub-card:hover { border-color: var(--primary-border); box-shadow: var(--shadow-md); }

/* ---------- Reviews ---------- */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-m);
  transition: box-shadow 0.15s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-2xs);
  margin-bottom: var(--space-2xs);
}
.review-name { font-weight: 700; font-size: 0.875rem; }
.review-loc  { font-size: 0.75rem; color: var(--muted-foreground); }
.review-date { font-size: 0.75rem; color: var(--muted-foreground); white-space: nowrap; }
.stars { color: #d97706; font-size: 1rem; margin: 0 0 var(--space-2xs); letter-spacing: 0.05em; }
.review-text { font-size: 0.875rem; line-height: 1.6; color: var(--foreground); }

/* ---------- Visit (hours/amenities/map) ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
}
@media (min-width: 1024px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr 1.2fr;
    align-items: start;
    gap: var(--space-m);
  }
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  font-size: 0.9375rem;
  padding: 0.65rem 0.875rem;
  font-weight: 500;
}
.hours-table th { color: var(--foreground); }
.hours-table td { color: var(--muted-foreground); text-align: right; }
.hours-table td.closed { color: var(--destructive); }
.hours-table tr.is-today {
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
}
.hours-table tr.is-today th { color: var(--primary); font-weight: 700; }
.hours-table tr.is-today td { color: var(--primary); font-weight: 700; }
.hours-table tr.is-today td.closed { color: var(--destructive); }
.hours-table td .today-tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hours-table tr {
  border-radius: var(--radius-sm);
}

.amenities-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xs);
}
@media (min-width: 420px) {
  .amenities-list { grid-template-columns: 1fr 1fr; }
}
.amenities-list li {
  display: flex;
  align-items: center;
  gap: var(--space-2xs);
  font-size: 0.875rem;
  background: var(--muted);
  padding: 0.7rem 0.875rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
}
.amenity-icon { font-size: 1rem; }

.location-card { padding: 0; overflow: hidden; }
.map-wrap { width: 100%; aspect-ratio: 16 / 9; background: var(--muted); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.location-body { padding: var(--space-m); }
.location-addr {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2xs);
  margin-bottom: var(--space-s);
  font-size: 0.875rem;
}
.location-addr svg { margin-top: 0.15rem; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--muted);
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
}
.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  align-items: flex-start;
}
@media (min-width: 640px) {
  .site-footer-inner { flex-direction: row; justify-content: space-between; align-items: center; gap: var(--space-m); }
}
.footer-brand { font-family: var(--font-heading); font-weight: 800; font-size: 1.125rem; margin-bottom: 0.25rem; }
.footer-copy { font-size: 0.75rem; }
.site-footer a { color: var(--primary); }

/* ---------- Motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */

@media print {
  .site-header, .site-footer, .nav-toggle, .hero-cta, .btn { display: none !important; }
  .hero { min-height: auto; padding: 1rem 0; }
  .hero-image, .hero-overlay { display: none; }
  .hero-content { color: var(--foreground); padding: 0; }
  .hero-title { color: var(--foreground); }
  .hero-tagline, .hero-location, .chip, .hero-status-time { color: var(--foreground); }
  body { background: #ffffff; color: #000000; }
  .card, .menu-category, .favorite-card, .sub-card, .review-card, .wings-tile { box-shadow: none; border-color: #ccc; break-inside: avoid; }
  a::after { content: " (" attr(href) ")"; font-size: 0.7em; color: #666; }
  a.brand::after, .hours-table a::after { content: ""; }
}
