/* ============================================================
   Chan's Peking Kitchen — Main Stylesheet
   ============================================================ */

/* ── Reset & Root ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* 60% dominant — warm cream */
  --cream:      #faf8f4;
  --cream-mid:  #f2efe8;
  --white:      #ffffff;

  /* 30% brand — deep crimson anchored to #9E0B0F */
  --red:        #9E0B0F;  /* brand primary — AAA on cream (7.89:1) */
  --red-bright: #B8151A;  /* hover states */
  --red-dark:   #7A080C;  /* pressed/active */
  --red-light:  #fdecea;  /* tinted backgrounds */

  /* Neutral ink — warm-toned to complement crimson */
  --ink:        #1c1a18;
  --ink-mid:    #5a5652;
  --ink-light:  #9a9490;
  --border:     rgba(28,26,24,0.1);

  /* Typography */
  --serif: 'EB Garamond', 'Garamond', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;

  /* Layout */
  --radius: 10px;
  --max:    1040px;
}

html {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  scroll-behavior: smooth;
  font-size: 17px;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); }


/* ============================================================
   Navigation
   ============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Brand */
.nav-brand {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

/* EB Garamond 800 — heaviest available weight */
.nav-brand-en {
  font-family: 'EB Garamond', 'Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--red);
  line-height: 1;
  text-transform: uppercase;
}

.nav-brand-sub {
  font-size: 0.54rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-family: var(--sans);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

/* Desktop actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

/* Phone — PRIMARY: solid brand red pill */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--red);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.nav-phone svg { flex-shrink: 0; }

.nav-phone:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(158,11,15,0.25);
}

/* Order Online — SECONDARY: muted red outline */
.nav-order {
  background: transparent;
  color: #8B0A0E;
  border: 1.5px solid rgba(158,11,15,0.45);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.nav-order:hover {
  background: rgba(158,11,15,0.07);
  border-color: rgba(158,11,15,0.65);
  color: #6B0709;
}

/* Hamburger — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(250,248,244,0.98);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0 1rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  padding: 0.75rem 2rem;
  transition: color 0.2s, background 0.2s;
}

.nav-mobile a:hover { color: var(--ink); background: rgba(0,0,0,0.03); }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem 2rem 0.5rem;
}

.nav-mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white) !important;
  background: var(--red);
  padding: 0.75rem 1.25rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  transition: background 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
  text-decoration: none;
}

.nav-mobile-phone:hover { background: var(--red-bright); }

.nav-mobile-order {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8B0A0E;
  background: transparent;
  border: 1.5px solid rgba(158,11,15,0.45);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  box-sizing: border-box;
}

.nav-mobile-order:hover {
  background: rgba(158,11,15,0.07);
  border-color: rgba(158,11,15,0.65);
  color: #6B0709;
}


/* ============================================================
   Page System
   ============================================================ */
.page { display: none; }
.page.active { display: block; }


/* ============================================================
   Home — Hero
   ============================================================ */
.hero {
  min-height: calc(100vh - 66px);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 2.5rem 2rem 4rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 22px;
  height: 1.5px;
  background: var(--red);
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

/* Primary CTA */
/* Delivery buttons */
.delivery-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  margin-bottom: 0.75rem;
}

.delivery-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.del-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--sans);
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.2s;
  cursor: pointer;
}

.del-btn svg { flex-shrink: 0; }

.del-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* DoorDash — brand red #ff3008 */
.del-btn--dd {
  color: #ff3008;
  border-color: rgba(255,48,8,0.2);
}
.del-btn--dd:hover { border-color: rgba(255,48,8,0.4); }

/* Grubhub — brand orange-red #f63440 */
.del-btn--gh {
  color: #f63440;
  border-color: rgba(246,52,64,0.2);
}
.del-btn--gh:hover { border-color: rgba(246,52,64,0.4); }

/* ── Hero address block (above h1) ── */
.hero-address {
  margin-bottom: 0.65rem;
}

.hero-address .address-note {
  margin-top: 0.4rem;
}

/* ── Open/Closed badge — standalone clickable pill above h1 ── */
.hours-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  margin-bottom: 1.1rem;
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--sans);
}

.hours-status-badge:hover {
  background: rgba(0,0,0,0.03);
  border-color: var(--ink-mid);
}

.hours-badge-main {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
}

.hours-badge-hint {
  font-size: 0.85rem;
  color: var(--ink-mid);
  font-weight: 400;
  white-space: nowrap;
}

/* Chevron circle — hidden on desktop, shown on mobile */
.hours-badge-chevron {
  display: none;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  color: var(--ink-mid);
  flex-shrink: 0;
  margin-left: auto;
}

/* ── Hours Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,26,24,0.55);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(3px);
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: 18px;
  padding: 1.75rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  animation: modalIn 0.2s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.96) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.modal-header h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-mid);
  cursor: pointer;
  padding: 0.1rem 0.4rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: var(--cream-mid); color: var(--ink); }

.modal-status {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

/* contact-bar, c-item, address, hours styles → see Hero Logo / Open-Closed section above */

/* Hero right panel — floating logo, no box */
/* ── Hero brand logo — standalone row ── */
.hero-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 4px 12px rgba(158,11,15,0.15));
  animation: float 5s ease-in-out infinite;
}

/* ── Hero right panel — food photo ── */
.hero-panel {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.hero-photo-wrap {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream-mid);
  border: 1px solid var(--border);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder shown until real photo is added */
.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-light);
  text-align: center;
  padding: 2rem;
}

.hero-photo-icon { font-size: 3rem; }

.hero-photo-placeholder p {
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-photo-hint {
  font-size: 0.72rem !important;
  opacity: 0.6;
}

.hero-photo-hint code {
  font-family: monospace;
  background: var(--border);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}


/* ── Open/Closed/Lunch-break status (inline inside toggle button) ── */
.hours-status-inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.status--open   { color: #1a6b35; }
.status--break  { color: #7a5200; }
.status--closed { color: #9E0B0F; }

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  align-self: center;
}

.status--open .status-dot {
  background: #28a85a;
  box-shadow: 0 0 0 2px rgba(40,168,90,0.25);
  animation: pulse-green 2s ease-in-out infinite;
}

.status--break .status-dot {
  background: #c47f00;
}

.status--closed .status-dot {
  background: #9E0B0F;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 2px rgba(40,168,90,0.25); }
  50%       { box-shadow: 0 0 0 5px rgba(40,168,90,0.1); }
}

.status-text   { font-weight: 700; font-size: 0.95rem; }
.status-detail { opacity: 0.75; font-weight: 400; font-size: 0.88rem; }


/* ── Hero action buttons — mirror navbar style exactly ── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Phone — PRIMARY: large red pill */
.hero-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--red);
  padding: 0.85rem 1.75rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

.hero-phone svg { flex-shrink: 0; width: 16px; height: 16px; }

.hero-phone:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158,11,15,0.25);
}

/* Order Online — SECONDARY: large muted red outline */
.hero-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: transparent;
  color: #8B0A0E;
  border: 1.5px solid rgba(158,11,15,0.45);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-sizing: border-box;
}

.hero-order svg { flex-shrink: 0; }

.hero-order:hover {
  background: rgba(158,11,15,0.07);
  border-color: rgba(158,11,15,0.65);
  color: #6B0709;
}


/* ── Contact bar ── */
.contact-bar {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 1.5rem;
}

.c-item label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.4rem;
}

/* Address block */
.c-item--address {
  grid-column: 1 / -1;
}

.address-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  margin-bottom: 0.65rem;
  width: fit-content;
  transition: color 0.2s;
}

.address-link:hover { color: var(--ink); }

.address-pin { color: var(--red); flex-shrink: 0; }

.address-arrow {
  color: var(--ink-light);
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.address-link:hover .address-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.address-text {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 1px;
}

.address-link:hover .address-text { border-color: var(--ink-mid); }

/* Show full address on desktop, short on mobile */
.address-short { display: none; }
.address-full  { display: inline; }

.address-note {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.6;
  background: #fff8e1;
  border: 1px solid #f0d060;
  border-left: 3px solid #c8a000;
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  margin-top: 1.5rem;
}

.address-note strong { color: var(--ink); }

/* Mini hours in contact bar */
.hours-mini {
  margin-bottom: 0.5rem;
}

.mini-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--ink-mid);
}

.mini-row--today .mini-day,
.mini-row--today .mini-time {
  color: var(--ink);
  font-weight: 600;
}

.mini-row--closed .mini-time { color: var(--ink-light); }

.mini-day {
  width: 2.8rem;
  flex-shrink: 0;
  font-weight: 500;
  color: var(--ink);
}

.hours-toggle-btn {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--red);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.hours-toggle-btn:hover { opacity: 0.7; }


/* ── Expandable full hours panel ── */
.hours-panel {
  display: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 0.75rem;
}

.hours-panel--open { display: block; }

.hours-grid { display: flex; flex-direction: column; gap: 0.2rem; margin-bottom: 0.75rem; }

.hours-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
}

.hours-row--today {
  background: var(--red-light);
}

.hours-row--today .day { color: var(--red); font-weight: 600; }

.day {
  width: 6rem;
  flex-shrink: 0;
  font-weight: 500;
  color: var(--ink);
}

.time { color: var(--ink-mid); font-weight: 300; }
.closed-label { color: var(--ink-light); font-style: italic; }

.hours-note {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}


/* ── Footer extras ── */
.footer-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-phone {
  color: rgba(255,255,255,0.7) !important;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-phone:hover { color: rgba(255,255,255,1) !important; }

.footer-hours p {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 0.25rem !important;
}

.footer-hours em { color: rgba(255,255,255,0.3) !important; }


/* ============================================================
   Shared — Page Header (dark banner used by About/Menu/Gallery)
   ============================================================ */
.page-header {
  background: var(--ink);
  color: var(--white);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}

.page-header-inner {
  max-width: 600px;
  margin: 0 auto;
}

.page-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
  display: block;
}

.page-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.page-header p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  font-weight: 300;
}

.hero-pdf-btn {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.4rem 1rem;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.hero-pdf-btn:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* Menu hero more compact than About/Gallery */
#page-menu .page-header {
  padding: 3rem 2rem 2.5rem;
}

/* ============================================================
   About Page
   ============================================================ */
.about-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: 16px;
  display: block;
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.about-img-caption {
  font-size: 0.78rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: 0.6rem;
  letter-spacing: 0.04em;
  font-style: italic;
}

.about-img-credit {
  font-size: 0.65rem;
  color: var(--ink-light);
  text-align: center;
  margin-top: 0.25rem;
  letter-spacing: 0.03em;
}

.about-img-placeholder {
  aspect-ratio: 3/4;
  border-radius: 16px;
  background: var(--cream-mid);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--ink-light);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 2rem;
}

.about-img-placeholder::before {
  content: '📷';
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.25rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.about-text h3 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
}

.about-text h3 em {
  color: var(--red);
  font-style: italic;
}

.about-rule {
  width: 36px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-mid);
  font-weight: 300;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pillar .p-icon {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  display: block;
}

.pillar h4 {
  font-family: var(--serif);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* ── About page: awards + reviews sections ── */
.about-awards,
.about-reviews {
  border-top: 1px solid var(--border);
  padding-top: 3rem;
  margin-top: 3rem;
}

.about-section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

/* Awards — 4 column grid */
.about-awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.about-award-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-award-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.about-award-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Reviews */
.about-reviews-stars {
  font-size: 1rem;
  color: #f5a623;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.about-reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (max-width: 760px) {
  .about-awards-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-reviews-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   Menu Page
   ============================================================ */
.menu-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 2rem;
}

/* Upload zone */
.upload-zone {
  background: var(--white);
  border: 2px dashed rgba(158,11,15,0.2);
  border-radius: 18px;
  padding: 3.5rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 2.5rem;
}

.upload-zone.dragover {
  border-color: var(--red);
  background: var(--red-light);
}

.u-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.upload-zone h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.upload-zone p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.upload-btn {
  background: var(--red);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.upload-btn:hover { background: var(--red-bright); transform: translateY(-1px); }

#menuFileInput { display: none; }

.upload-hint {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--ink-light);
}

/* AI Processing state */
.ai-processing {
  display: none;
  text-align: center;
  padding: 3.5rem;
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

.ai-processing h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.ai-processing p {
  font-size: 0.875rem;
  color: var(--ink-mid);
  font-weight: 300;
}

/* Menu viewer */
.menu-viewer { display: none; }
#page-menu .menu-viewer { display: block; }

.menu-viewer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.menu-viewer-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-viewer-title-row {
  display: contents; /* lets the PDF link sit inline with h3 in the flex row */
}

.spicy-legend {
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
  white-space: nowrap;
}

.menu-viewer-top h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Plain text PDF link */
.menu-pdf-text-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  border-bottom: 1px solid rgba(158,11,15,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.menu-pdf-text-btn:hover { color: var(--red-bright); border-color: var(--red-bright); }
.menu-pdf-text-btn svg { flex-shrink: 0; }

/* Sticky phone bar — hidden on desktop, fixed bottom on mobile */
.menu-sticky-phone {
  display: none;
}

@media (max-width: 860px) {
  .menu-sticky-phone {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 200;
  }

  .menu-mobile-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--red);
    color: var(--white) !important;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .menu-mobile-phone:hover { background: var(--red-bright); }

  /* Pad bottom of menu so content isn't hidden behind sticky bar */
  #page-menu .menu-body { padding-bottom: 5rem; }
}

.menu-search {
  flex: 1;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.menu-search:focus { border-color: rgba(158,11,15,0.4); }

.menu-viewer-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.reset-btn {
  font-size: 0.82rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--ink-mid);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
}

.reset-btn:hover { border-color: var(--red); color: var(--red); }

.cat-tabs-wrap {
  position: relative;
  margin-bottom: 1rem;
}

@media (max-width: 860px) {
  .cat-tabs-wrap {
    position: sticky;
    top: 66px;
    z-index: 100;
    background: var(--cream);
    padding: 0.75rem 0 0;
    border-bottom: none;
  }

  .menu-viewer-controls {
    position: sticky;
    top: calc(66px + var(--chips-height, 48px));
    z-index: 99;
    background: var(--cream);
    padding: 0.5rem 0 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }
}

/* Fade edge — desktop hidden, mobile shown */
.cat-tabs-wrap::after {
  content: '';
  display: none;
  position: absolute;
  top: 0; right: 0;
  width: 4rem;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--cream));
  pointer-events: none;
  z-index: 1;
}

.cat-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cat-tab {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--ink-mid);
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-tab.active { background: var(--red); color: var(--white); border-color: var(--red); }
.cat-tab:hover:not(.active) { border-color: var(--ink-mid); color: var(--ink); }

@media (max-width: 760px) {
  .cat-tabs-wrap::after { display: block; }

  .cat-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .cat-tabs::-webkit-scrollbar { display: none; }
}

.menu-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.section-title-wrap { margin-bottom: 1rem; }

.section-note {
  font-size: 0.78rem;
  color: var(--ink-mid);
  font-style: italic;
  margin-top: 0.3rem;
  line-height: 1.5;
  font-weight: 300;
}

.section-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.section-title::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 0.65rem;
}

/* Sub-category blocks (Lunch Specials) */
.subcat-block {
  margin-bottom: 1.75rem;
}
.subcat-block:last-child { margin-bottom: 0; }

.subcat-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink-mid);
  padding: 0.25rem 0 0.5rem 0;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.subcat-title::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.6;
}


.menu-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-item:hover {
  border-color: rgba(158,11,15,0.25);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.item-num { font-size: 0.65rem; color: var(--ink-light); margin-bottom: 0.2rem; font-weight: 500; }
.item-name { font-size: 0.92rem; font-weight: 500; line-height: 1.35; margin-bottom: 0.2rem; }
.item-name--spicy { color: var(--red); }
.spicy-badge { font-size: 0.75rem; margin-right: 0.3rem; vertical-align: middle; }
.item-desc { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.55; font-weight: 300; }
.item-price { font-family: var(--serif); font-size: 1rem; color: var(--red); white-space: nowrap; font-weight: 500; display: block; }
.item-price2 { font-family: var(--serif); font-size: 1rem; color: var(--red); white-space: nowrap; font-weight: 500; display: block; margin-top: 0.15rem; }
.item-prices { text-align: right; flex-shrink: 0; }
.no-results { text-align: center; padding: 3rem; color: var(--ink-mid); font-size: 0.9rem; }


/* ============================================================
   Gallery Page
   ============================================================ */
.gallery-body {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.gallery-body h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.gallery-body p { color: var(--ink-mid); font-size: 0.9rem; font-weight: 300; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
}

.gallery-cell {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-mid);
  position: relative;
  cursor: pointer;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-cell:hover img {
  transform: scale(1.05);
}

/* ── Lightbox ── */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,26,24,0.88);
  z-index: 600;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-card {
  position: relative;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modalIn 0.22s ease;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(28,26,24,0.5);
  color: var(--white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(28,26,24,0.75); }

/* Prev / Next chevron buttons */
.lightbox-nav {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}

.lightbox-nav:hover { background: rgba(255,255,255,0.28); }

@media (max-width: 600px) {
  .lightbox-nav { display: none; } /* hidden on mobile — swipe instead */
  .lightbox-overlay { padding: 1rem; gap: 0; }
}

.lightbox-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-mid);
  position: relative;
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.25s ease;
}

.lightbox-img-wrap img.fading {
  opacity: 0;
}

.lightbox-info {
  padding: 1.25rem 1.5rem 1.5rem;
}

.lightbox-info h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.lightbox-info p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.65;
  font-weight: 300;
}


/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 3.5rem 2rem 2rem;
  margin-top: 4rem;
}

.footer-inner { max-width: var(--max); margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #d44;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-col a,
.footer-col p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }


/* ============================================================
   Phone CTA — legacy small pill (kept for reference)
   ============================================================ */


/* ============================================================
   Menu Page — EzOrder CTA block
   ============================================================ */
/* ── Menu page two-section layout ── */
.menu-section-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* PDF hero card — slightly more prominent */
.menu-pdf-hero {
  padding: 3.5rem 3rem;
}

/* Two-column ordering options */
.menu-order-options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.menu-order-option {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.menu-order-option p {
  font-size: 0.88rem;
  color: var(--ink-mid);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
  max-width: 280px;
}

/* Vertical divider between the two options */
.menu-order-divider {
  width: 1px;
  background: var(--border);
  margin: 1.5rem 0;
}

@media (max-width: 600px) {
  .menu-section-card  { padding: 1.75rem; }
  .menu-pdf-hero      { padding: 2rem 1.75rem; }
  .menu-order-options {
    grid-template-columns: 1fr;
  }
  .menu-order-divider {
    width: 100%;
    height: 1px;
    margin: 0 1.5rem;
  }
  .menu-order-option  { padding: 1.5rem 1.75rem; }
  .menu-browse-call   { flex-direction: column; }
  .menu-pdf-btn,
  .menu-call-btn      { width: 100%; justify-content: center; }
}

.menu-section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.menu-section-card h3,
.menu-pdf-hero h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.menu-section-card > p,
.menu-pdf-hero > p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 1.5rem;
}
.menu-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  color: var(--ink-mid);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.menu-divider::before,
.menu-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* EzOrder button */
.menu-ezorder-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 0.75rem;
}

.menu-ezorder-btn:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(158,11,15,0.2);
}

.menu-ezorder-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  display: block;
}

/* Browse & Call row */
.menu-browse-call {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  justify-content: center;
}

.menu-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #8B0A0E;
  border: 1.5px solid rgba(158,11,15,0.45);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  box-sizing: border-box;
}

.menu-pdf-btn:hover {
  background: rgba(158,11,15,0.06);
  border-color: rgba(158,11,15,0.7);
}

.menu-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white) !important;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-sizing: border-box;
}

.menu-call-btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(158,11,15,0.2);
}

.menu-pdf-note {
  font-size: 0.75rem;
  color: var(--ink-light);
  font-style: italic;
  display: block;
}

/* Mobile: stack browse+call buttons full width */
@media (max-width: 600px) {
  .menu-section-card  { padding: 1.75rem; }
  .menu-browse-call   { flex-direction: column; }
  .menu-pdf-btn,
  .menu-call-btn      { width: 100%; justify-content: center; }
}

/* Admin/staff section divider */
.menu-admin-section {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.menu-admin-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-admin-label::before,
.menu-admin-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}


/* ============================================================
   Animations
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

#page-home .hero-left > * { animation: fadeUp 0.6s ease both; }
#page-home .hero-eyebrow  { animation-delay: 0.05s; }
#page-home h1             { animation-delay: 0.12s; }
#page-home .hero-sub      { animation-delay: 0.20s; }
#page-home .hero-actions   { animation-delay: 0.27s; }
#page-home .delivery-label{ animation-delay: 0.33s; }
#page-home .delivery-row  { animation-delay: 0.37s; }
#page-home .contact-bar   { animation-delay: 0.43s; }
#page-home .hero-panel    { animation: fadeUp 0.8s ease 0.3s both; }


/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 860px) {
  /* Hide desktop nav links and actions, show hamburger */
  .nav-links  { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 760px) {
  .hero                  { grid-template-columns: 1fr; padding: 1rem 2rem 3rem; }
  .hero-panel            { aspect-ratio: 4/3; }
  .about-grid            { grid-template-columns: 1fr; }
  .about-img-wrap        { max-width: 400px; margin: 0 auto; }
  .about-img-placeholder { display: none; }
  .footer-top            { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-grid          { grid-template-columns: repeat(2, 1fr); }
  .contact-bar           { grid-template-columns: 1fr; }
  .c-item--address       { grid-column: auto; }

  .hero-brand-logo { width: 80px; height: 80px; }

  /* H1 restored to original clamp on mobile */
  .hero h1 { font-size: clamp(2rem, 4vw, 3rem); }

  /* Address — show short version, no zip, hide arrow */
  .address-full  { display: none; }
  .address-short { display: inline; }
  .address-arrow { display: none; }

  /* Tighten gap between address and hours badge */
  .hero-address  { margin-bottom: 0.35rem; }

  /* Badge full width on mobile — single row with chevron right-aligned */
  .hours-status-badge {
    flex-direction: row;
    align-items: center;
    border-radius: 12px;
    padding: 0.65rem 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hours-badge-hint { display: none; }

  .hours-badge-chevron {
    display: inline-flex;
  }

  /* Hero buttons: stack vertically, full width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .hero-phone,
  .hero-order {
    width: 100%;
    justify-content: center;
  }
}
