/* =========================================================================
   BIRRIERIA TIJUANA — Design System
   Palette extracted from the brand logo:
     Maroon ring   -> primary brand color
     Gold/amber    -> secondary / accent
     Charcoal ink  -> text, the cow-head silhouette
     Warm parchment-> background, echoes the paper trays & tortas
   ========================================================================= */

:root {
  /* ---- Brand colors (from logo) ---- */
  --maroon-900: #4a0a04;
  --maroon-800: #63100a;
  --maroon-700: #7c1610;
  --maroon-600: #8f1c10;   /* primary brand red */
  --maroon-500: #a8291a;
  --maroon-400: #c14a34;

  --gold-700: #a66a06;
  --gold-600: #c47f0a;    /* accessible accent on cream */
  --gold-500: #e0930e;
  --gold-400: #eea325;    /* decorative / gradient highlight */
  --gold-300: #f4bb5c;

  --ink-900: #211712;      /* near-black warm text */
  --ink-700: #3c2c22;
  --ink-500: #6b5647;
  --ink-300: #a6907e;

  --cream-100: #fdf9f2;
  --cream-200: #faf1e2;    /* primary page background */
  --cream-300: #f3e5cc;
  --paper: #ffffff;

  --success: #3a6f43;

  /* ---- Type ---- */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* ---- Elevation ---- */
  --shadow-sm: 0 1px 3px rgba(33, 23, 18, 0.08), 0 1px 2px rgba(33, 23, 18, 0.06);
  --shadow-md: 0 6px 20px rgba(33, 23, 18, 0.10), 0 2px 6px rgba(33, 23, 18, 0.06);
  --shadow-lg: 0 20px 50px rgba(33, 23, 18, 0.16), 0 6px 16px rgba(33, 23, 18, 0.08);

  /* ---- Radius ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  /* ---- Layout ---- */
  --maxw: 1240px;
  --header-h: 84px;
}

/* ---------------------------------------------------------------------- */
/* Reset                                                                   */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-200);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0 0 0.5em; color: var(--ink-900); line-height: 1.15; font-weight: 600; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

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

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--maroon-600);
  color: #fff;
  padding: 12px 20px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------- */
/* Utility                                                                 */
/* ---------------------------------------------------------------------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--cream { background: var(--cream-200); }
.section--paper { background: var(--paper); }
.section--maroon {
  background: linear-gradient(155deg, var(--maroon-700), var(--maroon-900));
  color: var(--cream-100);
}
.section--maroon h2, .section--maroon h3 { color: var(--cream-100); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-500);
  display: inline-block;
}
.section--maroon .eyebrow { color: var(--gold-300); }
.section--maroon .eyebrow::before { background: var(--gold-300); }

.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { color: var(--ink-500); font-size: 1.08rem; }
.section--maroon .section-head p { color: rgba(253, 249, 242, 0.82); }

.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;
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--maroon-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--maroon-700); box-shadow: var(--shadow-md); }

.btn--gold { background: var(--gold-500); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-400); box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; border-color: rgba(253,249,242,0.55); color: var(--cream-100); }
.btn--outline:hover { background: rgba(253,249,242,0.14); border-color: var(--cream-100); }

.btn--outline-dark { background: transparent; border-color: var(--ink-900); color: var(--ink-900); }
.btn--outline-dark:hover { background: var(--ink-900); color: var(--cream-100); }

.btn--ghost { background: var(--paper); color: var(--maroon-600); border-color: var(--cream-300); }
.btn--ghost:hover { border-color: var(--maroon-500); }

.btn--sm { padding: 10px 18px; font-size: 0.88rem; min-height: 40px; }
.btn--full { width: 100%; }
.btn--icon svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------------------------------------------------------------------- */
/* Header / Nav                                                            */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--cream-200);
  border-bottom: 1px solid rgba(33,23,18,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink-900); }
.brand img { width: 46px; height: 46px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand span { display: block; line-height: 1.1; }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--maroon-600); margin-top: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--maroon-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--maroon-600); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta { display: inline-flex; }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span { margin: 6px 0; }
.nav-toggle[aria-expanded="true"] { position: relative; }

@media (max-width: 960px) {
  .nav-links { position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--cream-100); flex-direction: column; justify-content: flex-start; align-items: stretch; padding: 30px 24px; gap: 4px; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: 16px 4px; border-bottom: 1px solid var(--cream-300); font-size: 1.1rem; }
  .nav-links .nav-cta { margin-top: 18px; }
  .nav-toggle { display: flex; }
  .nav-actions .btn--primary.desktop-only { display: none; }
}
@media (min-width: 961px) {
  .nav-links .nav-cta { display: none; }
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(33,17,10,0.55) 0%, rgba(33,17,10,0.35) 38%, rgba(20,10,6,0.86) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px 96px;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s ease forwards 0.1s;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-300); }
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: #fff;
  max-width: 15ch;
  margin-bottom: 22px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.25s;
}
.hero p.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  max-width: 46ch;
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero .btn-row { opacity: 0; animation: fadeUp 0.8s ease forwards 0.55s; }

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

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.75s;
}
.scroll-cue .dot-track { width: 2px; height: 34px; background: rgba(255,255,255,0.28); border-radius: 2px; overflow: hidden; }
.scroll-cue .dot-track span { display: block; width: 100%; height: 10px; background: var(--gold-300); animation: scrollDot 2s ease-in-out infinite; }
@keyframes scrollDot { 0% { transform: translateY(-10px); } 50% { transform: translateY(34px); } 100% { transform: translateY(-10px); } }

/* ---------------------------------------------------------------------- */
/* Ticket / Perforated card — signature motif                              */
/* ---------------------------------------------------------------------- */
.ticket {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.ticket:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.ticket::before {
  content: "";
  position: absolute;
  left: 20px; right: 20px; top: 0;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--cream-300) 0 10px, transparent 10px 18px);
}
.ticket-notch {
  position: absolute; top: -9px;
  width: 18px; height: 18px;
  background: var(--cream-200);
  border-radius: 50%;
}
.ticket-notch.left { left: 6px; }
.ticket-notch.right { right: 6px; }

/* ---------------------------------------------------------------------- */
/* Location Finder                                                         */
/* ---------------------------------------------------------------------- */
.finder {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  margin-top: -140px;
  position: relative;
  z-index: 2;
}
@media (max-width: 720px) {
  .finder { padding: 26px 20px; margin-top: -90px; border-radius: var(--radius-md); }
}
.finder-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.finder-head h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 4px; }
.finder-head p { color: var(--ink-500); margin: 0; }
.finder-count { font-weight: 700; color: var(--maroon-600); white-space: nowrap; }

.finder-search { position: relative; margin-bottom: 22px; }
.finder-search input {
  width: 100%;
  padding: 17px 20px 17px 52px;
  border-radius: 999px;
  border: 2px solid var(--cream-300);
  background: var(--cream-100);
  font-size: 1.02rem;
  color: var(--ink-900);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.finder-search input:focus { border-color: var(--maroon-500); background: #fff; outline: none; }
.finder-search svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--ink-500); }

.finder-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.chip {
  border: 1.5px solid var(--cream-300);
  background: var(--cream-100);
  color: var(--ink-700);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--maroon-500); color: var(--maroon-600); }
.chip.active { background: var(--maroon-600); border-color: var(--maroon-600); color: #fff; }

.finder-empty { text-align: center; padding: 40px 20px; color: var(--ink-500); display: none; }
.finder-empty.show { display: block; }

.finder-suggest { display: none; margin-top: 8px; }
.finder-suggest.show { display: block; }
.finder-suggest__loading { color: var(--ink-500); font-style: italic; padding: 12px 4px; }
.finder-suggest__label { color: var(--ink-700); font-size: 1rem; padding: 0 2px; }
.finder-suggest__label strong { color: var(--maroon-600); }
.finder-suggest__more { margin-top: 14px; color: var(--ink-500); font-size: 0.9rem; padding: 0 2px; }
.finder-suggest__more a { color: var(--maroon-600); font-weight: 700; text-decoration: underline; }

/* ---------------------------------------------------------------------- */
/* Location cards                                                          */
/* ---------------------------------------------------------------------- */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; margin-top: 28px; }
.loc-card { padding: 26px 24px 24px; }
.loc-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.loc-card__name { font-size: 1.2rem; margin-bottom: 2px; }
.loc-card__badge {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold-500); color: var(--ink-900); padding: 5px 10px; border-radius: 999px; white-space: nowrap;
}
.loc-card__addr { color: var(--ink-500); font-size: 0.95rem; margin-bottom: 4px; }
.loc-card__meta { display: flex; align-items: center; gap: 8px; color: var(--ink-700); font-size: 0.92rem; margin-bottom: 4px; }
.loc-card__meta svg { width: 16px; height: 16px; color: var(--maroon-500); flex-shrink: 0; }
.loc-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.loc-card__actions .btn { flex: 1; min-width: 118px; }

/* ---------------------------------------------------------------------- */
/* Stylized WA map                                                         */
/* ---------------------------------------------------------------------- */
.wa-map-wrap { background: var(--paper); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 28px; }
.wa-map { width: 100%; max-width: 460px; height: auto; display: block; margin: 0 auto; }
.wa-map .ocean { fill: #e8f0f2; }
.wa-map .land { fill: var(--cream-300); stroke: var(--maroon-700); stroke-width: 1.6; stroke-linejoin: round; }
.wa-map .sound { fill: #bcd9e2; stroke: #93bcc8; stroke-width: 1; }
.wa-map .islands circle { fill: var(--cream-300); stroke: var(--maroon-700); stroke-width: 0.8; }
.wa-map .map-watermark { fill: var(--maroon-700); opacity: 0.07; font-family: var(--font-display); font-weight: 700; letter-spacing: 4px; }
.wa-map .sound-label { fill: #5c8a97; font-family: var(--font-body); font-style: italic; font-weight: 600; }
.wa-map .compass text { fill: var(--ink-500); font-family: var(--font-body); font-weight: 700; }
.wa-map .compass line, .wa-map .compass path { stroke: var(--ink-500); }

.wa-map .pin { cursor: pointer; }
.wa-map .pin-marker { fill: var(--maroon-600); stroke: var(--cream-100); stroke-width: 1.2; transition: fill 0.15s ease, transform 0.15s ease; transform-origin: center; }
.wa-map .pin-dot { fill: var(--cream-100); pointer-events: none; }
.wa-map .pin.active .pin-marker { fill: var(--gold-500); }
.wa-map .pin:hover .pin-marker, .wa-map .pin:focus .pin-marker { fill: var(--gold-500); transform: scale(1.15) translateY(-1px); }
.wa-map .pin-label-bg { fill: rgba(253, 249, 242, 0.94); stroke: var(--cream-300); stroke-width: 0.6; pointer-events: none; }
.wa-map .pin-label {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  fill: var(--ink-700);
  pointer-events: none;
}
.wa-map .pin:hover .pin-label, .wa-map .pin:focus .pin-label,
.wa-map .pin:hover .pin-label-bg, .wa-map .pin:focus .pin-label-bg { fill: var(--maroon-600); }
.wa-map .pin:focus-visible { outline: none; }
.wa-map .pin:focus-visible .pin-label-bg { stroke: var(--gold-500); stroke-width: 1.2; }
.wa-map-caption { text-align: center; color: var(--ink-500); font-size: 0.82rem; margin-top: 14px; }

/* ---------------------------------------------------------------------- */
/* Menu                                                                    */
/* ---------------------------------------------------------------------- */
.menu-nav {
  position: sticky; top: var(--header-h);
  z-index: 100;
  background: var(--cream-200);
  border-bottom: 1px solid var(--cream-300);
  padding: 16px 0;
  overflow-x: auto;
}
.menu-nav-inner { display: flex; gap: 10px; }
.menu-nav a {
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-300);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink-700);
  background: var(--paper);
}
.menu-nav a:hover, .menu-nav a.active { background: var(--maroon-600); border-color: var(--maroon-600); color: #fff; }

.menu-legend { display: flex; gap: 22px; flex-wrap: wrap; color: var(--ink-500); font-size: 0.92rem; margin-bottom: 8px; }
.menu-legend b { color: var(--ink-900); }

.menu-category { padding: 64px 0; border-bottom: 1px solid var(--cream-300); }
.menu-category:last-child { border-bottom: none; }
.menu-category-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 34px; }
.menu-category-head h2 { margin: 0; }
.menu-category-head .line { flex: 1; height: 1px; background: var(--cream-300); }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.menu-grid.featured { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }

.menu-item { display: flex; gap: 16px; padding: 20px; align-items: flex-start; }
.menu-item__photo { width: 84px; height: 84px; border-radius: 14px; object-fit: cover; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.menu-item__body { flex: 1; }
.menu-item__title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.menu-item__title-row h3 { font-size: 1.05rem; margin: 0; }
.menu-item__desc { color: var(--ink-500); font-size: 0.9rem; margin: 0; }

.tag {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 3px 7px; border-radius: 6px; line-height: 1;
}
.tag--gf { background: #e7f1e6; color: var(--success); }
.tag--v { background: #eef2e2; color: #5a7a2a; }

.menu-feature-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.menu-feature-card img { width: 100%; height: 320px; object-fit: cover; }
.menu-feature-card__overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,10,6,0.85), rgba(20,10,6,0.05) 55%); display: flex; align-items: flex-end; padding: 26px; color: #fff; }
.menu-feature-card__overlay h3 { color: #fff; margin-bottom: 4px; }
.menu-feature-card__overlay p { color: rgba(255,255,255,0.85); margin: 0; font-size: 0.92rem; }

.notice-banner {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--cream-300);
  border-left: 4px solid var(--maroon-600);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-bottom: 34px;
}
.notice-banner svg { width: 22px; height: 22px; color: var(--maroon-600); flex-shrink: 0; margin-top: 2px; }
.notice-banner p { margin: 0; color: var(--ink-700); }
.notice-banner strong { color: var(--ink-900); }

/* ---------------------------------------------------------------------- */
/* Cards general (why choose us, features)                                 */
/* ---------------------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.feature-card { padding: 32px 26px; text-align: left; }
.feature-card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream-300);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 26px; height: 26px; color: var(--maroon-600); }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--ink-500); font-size: 0.92rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Order online cards                                                      */
/* ---------------------------------------------------------------------- */
.order-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.order-card {
  padding: 40px 32px;
  text-align: center;
  border-top: 6px solid var(--brand-color, var(--maroon-600));
}
.order-card__logo { width: 64px; height: 64px; border-radius: 18px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; background: var(--brand-color, var(--maroon-600)); }
.order-card h3 { margin-bottom: 8px; }
.order-card p { color: var(--ink-500); font-size: 0.92rem; }

/* ---------------------------------------------------------------------- */
/* Gallery                                                                  */
/* ---------------------------------------------------------------------- */
.masonry {
  columns: 4 260px;
  column-gap: 18px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
}
.masonry-item img { width: 100%; height: auto; transition: transform 0.4s ease; display: block; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item__caption {
  position: absolute; inset: auto 0 0 0;
  padding: 16px 16px 12px;
  background: linear-gradient(0deg, rgba(20,10,6,0.78), transparent);
  color: #fff; font-size: 0.85rem; font-weight: 600;
  opacity: 0; transition: opacity 0.25s ease;
}
.masonry-item:hover .masonry-item__caption { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,10,6,0.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-caption { color: #fff; text-align: center; margin-top: 16px; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.12); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.24); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox-prev, .lightbox-next { width: 40px; height: 40px; } }

/* ---------------------------------------------------------------------- */
/* Our Story                                                                */
/* ---------------------------------------------------------------------- */
.story-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story-hero__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.story-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.story-hero__text h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.story-signature { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--maroon-600); margin-top: 24px; }
@media (max-width: 860px) {
  .story-hero { grid-template-columns: 1fr; gap: 34px; }
}

.timeline { display: grid; gap: 26px; }
.timeline-row { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; }
.timeline-row .year { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--maroon-600); }
.timeline-row .body { padding-bottom: 26px; border-bottom: 1px solid var(--cream-300); }
.timeline-row .body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.timeline-row .body p { color: var(--ink-500); margin: 0; }
@media (max-width: 560px) { .timeline-row { grid-template-columns: 1fr; gap: 6px; } }

/* ---------------------------------------------------------------------- */
/* Press / Seattle Times feature                                           */
/* ---------------------------------------------------------------------- */
.press {
  display: flex; align-items: center; gap: 40px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px;
}
.press__mark {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--ink-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; text-align: center; line-height: 1.2;
}
.press__body h3 { margin-bottom: 10px; }
.press__body p { color: var(--ink-500); margin-bottom: 18px; }
@media (max-width: 720px) { .press { flex-direction: column; text-align: center; padding: 34px 26px; } }

/* ---------------------------------------------------------------------- */
/* Testimonial / quote strip                                               */
/* ---------------------------------------------------------------------- */
.quote-strip { text-align: center; max-width: 780px; margin: 0 auto; }
.quote-strip p.quote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.8rem); color: var(--cream-100); line-height: 1.5; }
.quote-strip .who { color: var(--gold-300); font-weight: 700; letter-spacing: 0.04em; }

/* ---------------------------------------------------------------------- */
/* Contact / Catering                                                      */
/* ---------------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: grid; gap: 18px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px; }
.info-row svg { width: 22px; height: 22px; color: var(--maroon-600); flex-shrink: 0; margin-top: 2px; }
.info-row h4 { margin: 0 0 4px; font-family: var(--font-body); font-size: 0.98rem; }
.info-row p { margin: 0; color: var(--ink-500); font-size: 0.92rem; }
.info-row a:hover { color: var(--maroon-600); }

.social-row { display: flex; gap: 12px; margin-top: 10px; }
.social-row a {
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream-300);
  display: flex; align-items: center; justify-content: center; color: var(--ink-900);
  transition: background 0.2s ease, color 0.2s ease;
}
.social-row a:hover { background: var(--maroon-600); color: #fff; }
.social-row svg { width: 20px; height: 20px; }

.field { display: grid; gap: 8px; margin-bottom: 20px; }
.field label { font-weight: 700; font-size: 0.9rem; color: var(--ink-700); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-300);
  background: var(--cream-100);
  font-size: 0.98rem;
  color: var(--ink-900);
  transition: border-color 0.2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--maroon-500); outline: none; background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.82rem; color: var(--ink-500); margin-top: -8px; }

.cta-band {
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(253,249,242,0.85); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-phone {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; color: var(--gold-300);
  display: block; margin: 18px 0 26px;
}

/* ---------------------------------------------------------------------- */
/* Catering list                                                            */
/* ---------------------------------------------------------------------- */
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.event-chip {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper); padding: 16px 18px; border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
  font-weight: 600; font-size: 0.94rem;
}
.event-chip svg { width: 20px; height: 20px; color: var(--maroon-600); flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                   */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--ink-900); color: rgba(253,249,242,0.78); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: #fff; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a:hover { color: var(--gold-300); }
.footer-desc { font-size: 0.92rem; max-width: 34ch; margin-bottom: 20px; }
.footer-bottom { border-top: 1px solid rgba(253,249,242,0.14); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--gold-300); }

/* ---------------------------------------------------------------------- */
/* Reveal-on-scroll                                                         */
/* ---------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.visible { transition-delay: 0.08s; }
.reveal-delay-2.visible { transition-delay: 0.16s; }
.reveal-delay-3.visible { transition-delay: 0.24s; }

/* ---------------------------------------------------------------------- */
/* Page hero (interior pages)                                              */
/* ---------------------------------------------------------------------- */
.page-hero {
  padding: 64px 0 56px;
  background: linear-gradient(155deg, var(--maroon-700), var(--maroon-900));
  color: #fff;
  text-align: center;
}
.page-hero .eyebrow { color: var(--gold-300); justify-content: center; }
.page-hero .eyebrow::before { background: var(--gold-300); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.4vw, 3.1rem); max-width: 26ch; margin: 0 auto 16px; }
.page-hero p { color: rgba(253,249,242,0.85); max-width: 60ch; margin: 0 auto; font-size: 1.08rem; }

/* ---------------------------------------------------------------------- */
/* Misc components                                                          */
/* ---------------------------------------------------------------------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { border: 1.5px solid var(--cream-300); border-radius: 999px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600; color: var(--ink-700); background: var(--paper); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 100%; object-fit: cover; }

.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.stat-row .stat b { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--maroon-600); }
.stat-row .stat span { color: var(--ink-500); font-size: 0.88rem; }

/* toppings bar highlight card */
.highlight-card {
  display: flex; align-items: center; gap: 26px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 40px 0;
}
.highlight-card__icon { width: 60px; height: 60px; flex-shrink: 0; background: rgba(255,255,255,0.35); border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.highlight-card__icon svg { width: 30px; height: 30px; }
.highlight-card h3 { margin-bottom: 6px; }
.highlight-card p { margin: 0; }
@media (max-width: 640px) { .highlight-card { flex-direction: column; text-align: center; } }

/* breadcrumb */
.breadcrumb { display: flex; gap: 8px; align-items: center; color: rgba(253,249,242,0.7); font-size: 0.85rem; justify-content: center; margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold-300); }
