/* =====================================================
   TACOS UP — premium taqueria
   Vanilla CSS · cinematic · Apple-inspired
   ===================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ink:        #0a0a0a;
  --ink-2:      #111111;
  --ink-3:      #1a1a1a;
  --char:       #2a2a2a;
  --cream:      #f6f1e7;
  --cream-2:    #efe5d2;
  --bone:       #fbf7ee;
  --paper:      #ffffff;

  --orange:     #e9651f;
  --orange-2:   #f37a35;
  --orange-3:   #ffb27a;
  --green:      #28402f;
  --green-2:    #3a5b46;
  --shell:      #c89968;
  --crema:      #f1e2c4;

  --text-ink:   #f5f3ee;
  --text-mute:  rgba(245, 243, 238, 0.66);
  --text-low:   rgba(245, 243, 238, 0.42);
  --text-dark:  #1a1614;
  --text-dark-mute: rgba(26, 22, 20, 0.66);

  /* Lines */
  --line:       rgba(255, 255, 255, 0.10);
  --line-dark:  rgba(10, 10, 10, 0.10);

  /* Shape */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-1: 0 8px 24px rgba(0, 0, 0, .15);
  --shadow-2: 0 24px 60px rgba(0, 0, 0, .28);
  --shadow-3: 0 40px 100px rgba(0, 0, 0, .35);
  --shadow-glow: 0 20px 60px -10px rgba(233, 101, 31, 0.45);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Fraunces", "Inter", serif;

  /* Spacing */
  --pad-x: clamp(20px, 4vw, 64px);
  --max-w: 1280px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--text-ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }

::selection { background: var(--orange); color: #fff; }

.skip-link {
  position: absolute; top: -100px; left: 16px;
  background: var(--orange); color: #fff;
  padding: 10px 14px; border-radius: 8px; z-index: 999;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor; opacity: .6;
}
.eyebrow--light { color: var(--orange-3); }

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
  font-size: clamp(40px, 6.2vw, 92px);
  margin: 0 0 24px;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.display .muted { color: var(--text-mute); }
.display--xl {
  font-size: clamp(48px, 8vw, 132px);
}

.muted { color: var(--text-mute); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .35s var(--ease), border-color .25s var(--ease);
  will-change: transform;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--sm { padding: 10px 16px; font-size: 13.5px; }
.btn--lg { padding: 18px 28px; font-size: 16px; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 28px 70px -10px rgba(233, 101, 31, 0.6);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  color: var(--text-ink);
  border-color: rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.04);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  background: transparent;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__brand img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
}
.nav__wordmark { font-size: 17px; }

.nav__links {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.nav__links a {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(245,243,238,0.78);
  border-radius: var(--r-pill);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav__links a:hover { color: var(--text-ink); background: rgba(255,255,255,0.05); }
.nav__links a.is-active { color: var(--text-ink); background: rgba(255,255,255,0.06); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  display: block; width: 16px; height: 1.5px; background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Status pill ---------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: rgba(245,243,238,0.86);
}
.status__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #9aa39c;
  position: relative;
}
.status[data-state="open"] .status__dot {
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: pulse 2.2s infinite;
}
.status[data-state="opening"] .status__dot,
.status[data-state="closing"] .status__dot {
  background: #f59e0b;
}
.status[data-state="closed"] .status__dot { background: #ef4444; }

.status--lg {
  padding: 14px 22px;
  font-size: 14px;
  margin-top: 22px;
}
.status--lg .status__dot { width: 10px; height: 10px; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.mobile-menu__inner {
  padding: 110px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
}
.mobile-menu__inner a {
  font-family: var(--font-display);
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mobile-menu__inner a:hover { color: var(--orange); padding-left: 6px; }
.mobile-menu__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--pad-x) clamp(80px, 12vh, 140px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.25) 30%, rgba(10,10,10,0.45) 65%, rgba(10,10,10,0.92) 100%),
    linear-gradient(90deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0) 60%);
}
.hero__vignette {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% 60%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--orange);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 8.6vw, 132px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  max-width: 16ch;
  text-shadow: 0 1px 1px rgba(0,0,0,0.25);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--orange-3);
}
.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(255,255,255,0.84);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.hero__scroll-line {
  width: 1.5px; height: 56px;
  background: rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero__scroll-line i {
  position: absolute;
  top: -50%;
  left: 0; right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--orange));
  animation: scrollPing 2s var(--ease) infinite;
}
@keyframes scrollPing {
  0%   { top: -50%; }
  100% { top: 110%; }
}

.hero--contact { min-height: 84vh; min-height: 84svh; }
.hero--contact .hero__title { max-width: 14ch; }

/* ---------- Intro ---------- */
.intro {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(90px, 14vw, 180px) 0;
  position: relative;
}
.intro .container { max-width: 1100px; }
.intro .eyebrow { color: var(--orange); }
.intro .display { color: var(--text-dark); max-width: 18ch; }
.intro .display .muted { color: rgba(26,22,20,0.4); }
.intro__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  max-width: 980px;
}
.intro__body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-dark-mute);
  margin: 0;
}

/* ---------- Section head ---------- */
.section-head {
  margin: 0 auto 64px;
  max-width: 760px;
}
.section-head .display { margin-bottom: 16px; }
.section-head__lede {
  font-size: 18px;
  color: var(--text-mute);
  max-width: 56ch;
  margin: 0;
}

/* ---------- Favorites ---------- */
.favorites {
  background: var(--ink);
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  isolation: isolate;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: var(--shadow-3);
}
.card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 50%, rgba(10,10,10,0.6) 100%);
  pointer-events: none;
}

.card__body {
  position: relative;
  padding: 28px 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card__tag {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-3);
  margin-bottom: 14px;
  font-weight: 500;
}
.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.card p {
  color: var(--text-mute);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 22px;
  flex: 1;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-2);
  transition: gap .3s var(--ease), color .25s var(--ease);
}
.card__link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.card__link:hover { color: var(--orange-3); gap: 12px; }
.card__link:hover svg { transform: translateX(4px); }

/* ---------- Cinematic parallax ---------- */
.cinematic {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
}
.cinematic__bg {
  position: absolute;
  inset: -8% 0;
  z-index: -1;
  will-change: transform;
}
.cinematic__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cinematic__scrim {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55), rgba(10,10,10,0.25) 35%, rgba(10,10,10,0.45) 65%, rgba(10,10,10,0.9));
}
.cinematic__content {
  padding: clamp(80px, 14vw, 180px) var(--pad-x);
  position: relative;
}
.cinematic__sub {
  color: rgba(255,255,255,0.78);
  font-size: clamp(16px, 1.4vw, 20px);
  max-width: 52ch;
  margin-top: 24px;
}

/* ---------- Order CTA ---------- */
.order-cta {
  background: var(--ink-2);
  padding: clamp(90px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
}
.order-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.order-cta__copy .display { margin-bottom: 24px; }
.order-cta__copy p {
  font-size: 17px;
  color: var(--text-mute);
  max-width: 48ch;
  margin: 0 0 32px;
  line-height: 1.65;
}
.order-cta__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow-3);
}
.order-cta__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.order-cta__media:hover img { transform: scale(1.05); }
.order-cta__badge {
  position: absolute;
  left: 20px; bottom: 20px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column;
  gap: 2px;
  color: #fff;
}
.order-cta__badge span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-3);
}
.order-cta__badge strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* ---------- Visit ---------- */
.visit {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(90px, 12vw, 160px) 0;
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.visit .eyebrow { color: var(--orange); }
.visit .display { color: var(--text-dark); margin-bottom: 36px; }
.visit__list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.visit__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}
.visit__label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,22,20,0.5);
  font-weight: 600;
}
.visit__list a { color: var(--text-dark); }
.visit__list a:hover { color: var(--orange); }

.visit__hours {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-1);
}
.visit__hours h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0 0 16px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.hours th, .hours td {
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line-dark);
}
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours th {
  font-weight: 600;
  color: var(--text-dark);
  width: 38%;
}
.hours td {
  color: var(--text-dark-mute);
}
.hours tr.is-today th { color: var(--orange); }
.hours tr.is-today td {
  color: var(--text-dark);
  font-weight: 500;
}
.hours tr.is-today {
  background: linear-gradient(90deg, rgba(233,101,31,0.06), transparent);
}

.visit__social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.visit__social a {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(26,22,20,0.06);
  color: var(--text-dark);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.visit__social a:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.visit__social svg { width: 18px; height: 18px; }

.visit__map {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 560px;
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-2);
}
.visit__map iframe {
  width: 100%; height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(0.85) contrast(1.02);
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(60% 80% at 50% 0%, rgba(233,101,31,0.12), transparent 60%),
    radial-gradient(80% 60% at 50% 100%, rgba(40,64,47,0.16), transparent 60%),
    var(--ink);
  padding: clamp(100px, 14vw, 200px) 0;
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta .container { max-width: 980px; }
.final-cta .eyebrow {
  justify-content: center;
  display: inline-flex;
}
.final-cta .display { margin: 0 auto 24px; }
.final-cta__sub {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-mute);
  max-width: 52ch;
  margin: 0 auto 40px;
}
.final-cta__buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- Hero reviews (avatars widget) ---------- */
.hero__reviews {
  margin-top: 28px;
  min-height: 52px;
}
.hero__reviews emr-avatars {
  display: block;
}

/* ---------- Homepage reviews carousel ---------- */
.reviews-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
}
.reviews-section .eyebrow { color: var(--orange); }
.reviews-section .display { color: var(--text-dark); }
.reviews-section .section-head__lede { color: var(--text-dark-mute); }

.reviews-carousel {
  margin: 56px auto 0;
  max-width: 1100px;
  min-height: 220px;
}
.reviews-carousel emr-simple-carousel {
  display: block;
}

.reviews-aside {
  text-align: center;
  margin: 36px 0 0;
  font-size: 15px;
  color: var(--text-dark-mute);
  font-family: var(--font-display);
  font-style: italic;
}
.reviews-aside a {
  color: var(--orange);
  font-weight: 600;
  font-style: normal;
  font-family: var(--font-sans);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.reviews-aside a:hover {
  border-color: var(--orange);
}

/* ---------- Catering page — feature splits ---------- */
.feature {
  padding: clamp(90px, 12vw, 160px) 0;
  position: relative;
}
.feature--dark { background: var(--ink); color: var(--text-ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature--light { background: var(--cream); color: var(--text-dark); }
.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.feature__grid--reverse { grid-template-columns: 1.05fr 1fr; }
.feature__grid--reverse .feature__media { order: -1; }

.feature__copy .eyebrow { color: var(--orange); }
.feature--dark .eyebrow { color: var(--orange-3); }
.feature__copy .display { margin-bottom: 22px; }
.feature--light .feature__copy .display { color: var(--text-dark); }
.feature__copy p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 56ch;
  color: var(--text-mute);
}
.feature--light .feature__copy p { color: var(--text-dark-mute); }

.feature__list {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
}
.feature__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.feature--light .feature__list li { color: var(--text-dark); }
.feature__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 10px rgba(233,101,31,0.5);
  flex-shrink: 0;
}

.feature__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-3);
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.feature__media:hover img { transform: scale(1.05); }
.feature__media-tag {
  position: absolute;
  left: 22px; bottom: 22px;
  padding: 12px 16px;
  border-radius: var(--r-md);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  display: flex; flex-direction: column;
  gap: 2px;
}
.feature__media-tag span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-3);
}
.feature__media-tag strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .feature__grid,
  .feature__grid--reverse { grid-template-columns: 1fr; }
  .feature__grid--reverse .feature__media { order: 0; }
  .feature__list { grid-template-columns: 1fr; }
  .feature__media { aspect-ratio: 4 / 3; }
}

/* ---------- Feedback page ---------- */
.feedback-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(80px, 12vw, 160px) 0;
}
.feedback-section .eyebrow { color: var(--orange); }
.feedback-section .display { color: var(--text-dark); }
.feedback-section .section-head__lede { color: var(--text-dark-mute); }

.feedback-form {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-2);
  max-width: 820px;
  margin: 56px auto 0;
}
.feedback-form emr-collect-review-form {
  display: block;
  min-height: 220px;
}
.feedback-note {
  text-align: center;
  margin: 26px auto 0;
  color: rgba(26,22,20,0.5);
  font-size: 13.5px;
  font-family: var(--font-display);
  font-style: italic;
  max-width: 56ch;
}

.thanks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.thanks-card {
  background: rgba(26,22,20,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform .4s var(--ease), background .4s var(--ease);
}
.thanks-card:hover { transform: translateY(-4px); background: var(--paper); }
.thanks-card__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}
.thanks-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text-dark);
}
.thanks-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-dark-mute);
  margin: 0;
}
@media (max-width: 820px) {
  .thanks-grid { grid-template-columns: 1fr; }
}

/* ---------- Platform landing pages (DoorDash / UberEats / Toast) ---------- */
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #fff;
}
.platform-chip__mark {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  line-height: 1;
}
.platform-chip__mark--doordash { background: #ef3b24; }
.platform-chip__mark--ubereats { background: #06c167; color: #0a0a0a; }
.platform-chip__mark--toast    { background: #ff4c00; }

.compare {
  background: var(--ink);
  padding: clamp(90px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.compare::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 0% 0%, rgba(233,101,31,0.10), transparent 70%),
    radial-gradient(60% 70% at 100% 100%, rgba(40,64,47,0.18), transparent 70%);
  pointer-events: none;
}
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.compare-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 36px 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  display: flex;
  flex-direction: column;
  min-height: 480px;
  overflow: hidden;
}
.compare-card--direct {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(233,101,31,0.16), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border-color: rgba(233,101,31,0.32);
  box-shadow: 0 30px 80px -20px rgba(233,101,31,0.32);
}
.compare-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.compare-card__label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-low);
  font-weight: 600;
}
.compare-card--direct .compare-card__label { color: var(--orange-3); }
.compare-card__badge {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: #fff;
  font-weight: 600;
}
.compare-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 34px);
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  line-height: 1.1;
}
.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-mute);
}
.compare-card--direct li { color: var(--text-ink); }
.compare-card .check, .compare-card .minus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.compare-card .check {
  background: rgba(233,101,31,0.18);
  color: var(--orange-2);
}
.compare-card .minus {
  background: rgba(255,255,255,0.06);
  color: var(--text-low);
}
.compare-card .check svg,
.compare-card .minus svg { width: 12px; height: 12px; }
.compare-card__cta {
  margin-top: auto;
}
.compare-card__note {
  font-size: 13px;
  color: var(--text-low);
  font-family: var(--font-display);
  font-style: italic;
  margin-top: 16px;
}

/* Value props strip */
.value-props {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(80px, 10vw, 140px) 0;
}
.value-props .eyebrow { color: var(--orange); }
.value-props .display { color: var(--text-dark); margin-bottom: 16px; }
.value-props .section-head__lede { color: var(--text-dark-mute); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.value-card__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--text-dark);
}
.value-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: var(--text-dark-mute);
}

/* Steps (Toast page) */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.step {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.22); }
.step__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-3);
  margin-bottom: 16px;
  display: block;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.step p {
  font-size: 15px;
  color: var(--text-mute);
  line-height: 1.6;
  margin: 0;
}

/* Footer platforms strip */
.footer__platforms {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-low);
}
.footer__platforms span { color: var(--text-low); }
.footer__platforms a {
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  color: var(--text-mute);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  font-weight: 600;
}
.footer__platforms a:hover {
  color: var(--text-ink);
  border-color: rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.04);
}

/* Responsive */
@media (max-width: 980px) {
  .compare-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}

/* ---------- Delivery (Bismarck page) ---------- */
.delivery {
  background: var(--ink-2);
  padding: clamp(90px, 12vw, 160px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.delivery::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 100% 0%, rgba(233,101,31,0.10), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(40,64,47,0.18), transparent 70%);
  pointer-events: none;
}
.delivery__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.delivery__copy .display { margin-bottom: 24px; }
.delivery__copy p {
  font-size: 17px;
  color: var(--text-mute);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 52ch;
}
.delivery__copy p strong { color: var(--text-ink); font-weight: 600; }
.delivery__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 22px;
}
.delivery__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-ink);
}
.delivery__bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
  flex-shrink: 0;
}
.delivery__note {
  font-size: 14.5px !important;
  color: var(--text-low) !important;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 32px !important;
}

/* Radius map visual */
.delivery__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 520px;
}
.radius-map {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radius-map__pin {
  position: absolute;
  z-index: 4;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(233,101,31,0.55), 0 0 0 8px rgba(233,101,31,0.18);
  animation: pinPulse 3.4s var(--ease) infinite;
}
.radius-map__pin img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(233,101,31,0.5), 0 0 0 8px rgba(233,101,31,0.18); }
  50%      { box-shadow: 0 12px 40px rgba(233,101,31,0.5), 0 0 0 14px rgba(233,101,31,0.06); }
}
.radius-map__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(233,101,31,0.35);
}
.radius-map__ring--1 { width: 40%; height: 40%; border-style: solid; border-color: rgba(233,101,31,0.55); background: radial-gradient(circle, rgba(233,101,31,0.10), rgba(233,101,31,0.02)); }
.radius-map__ring--2 { width: 66%; height: 66%; }
.radius-map__ring--3 {
  width: 96%; height: 96%;
  border-color: rgba(233,101,31,0.55);
  background: radial-gradient(circle, rgba(233,101,31,0.05) 30%, rgba(233,101,31,0.01) 70%, transparent 100%);
  animation: ringPulse 5s var(--ease) infinite;
}
@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.03); opacity: 0.85; }
}
.radius-map__label {
  position: absolute;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,243,238,0.78);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 3;
}
.radius-map__label--n { top: 2%; left: 50%; transform: translateX(-50%); }
.radius-map__label--e { top: 50%; right: 0; transform: translateY(-50%); }
.radius-map__label--s { bottom: 2%; left: 50%; transform: translateX(-50%); }
.radius-map__label--w { top: 50%; left: 0; transform: translateY(-50%); }

.radius-map__badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: 5;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: rgba(10,10,10,0.65);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column;
  gap: 2px;
  text-align: right;
}
.radius-map__badge strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--orange-3);
  line-height: 1;
}
.radius-map__badge span {
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- Contact page: cards ---------- */
.contact-cards {
  background: var(--ink);
  padding: clamp(90px, 12vw, 160px) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  min-height: 240px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 30% 0%, rgba(233,101,31,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.22);
  box-shadow: var(--shadow-2);
}
.contact-card:hover::before { opacity: 1; }

.contact-card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(233,101,31,0.12);
  color: var(--orange-2);
  margin-bottom: 22px;
}
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-low);
  margin-bottom: 8px;
}
.contact-card__value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-ink);
  margin-bottom: 18px;
}
.contact-card__link {
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--orange-2);
  transition: color .25s var(--ease);
}
.contact-card:hover .contact-card__link { color: var(--orange-3); }

/* ---------- Contact page: hours section ---------- */
.hours-section {
  background: var(--cream);
  color: var(--text-dark);
  padding: clamp(90px, 12vw, 160px) 0;
}
.hours-section .eyebrow { color: var(--orange); }
.hours-section .display { color: var(--text-dark); }
.hours-section p { color: var(--text-dark-mute); max-width: 48ch; }
.hours-section .status {
  background: rgba(26,22,20,0.06);
  border-color: rgba(26,22,20,0.08);
  color: var(--text-dark);
}
.hours-section .status--lg { padding: 14px 22px; }
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}
.hours-grid__table {
  background: var(--paper);
  border-radius: var(--r-xl);
  padding: 36px 40px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-1);
}
.hours--full { font-size: 17px; }
.hours--full th, .hours--full td { padding: 16px 0; }
.hours--full th {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.hours__slot { white-space: nowrap; }
.hours__slot--late { color: var(--orange); font-weight: 500; }
.hours__divider { color: rgba(26,22,20,0.3); margin: 0 8px; }

/* ---------- Map + Socials ---------- */
.map-section {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
}
.map-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}
.map-grid__embed {
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 520px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.map-grid__embed iframe {
  width: 100%; height: 100%;
  min-height: 520px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6) contrast(0.92);
}
.map-grid__side .display { margin-bottom: 20px; }
.map-grid__side p { color: var(--text-mute); margin-bottom: 32px; max-width: 42ch; }

.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.socials__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  font-weight: 500;
  font-size: 15px;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.socials__item svg { width: 20px; height: 20px; color: var(--orange-2); }
.socials__item:hover {
  transform: translateX(4px);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

/* ---------- Footer ---------- */
.footer {
  background: #050505;
  color: var(--text-ink);
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__brand img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}
.footer__tag {
  color: var(--text-mute);
  max-width: 30ch;
  font-size: 15px;
  margin: 0;
}
.footer__col h4 {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-3);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer__col p {
  color: var(--text-mute);
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.7;
}
.footer__col a:hover { color: var(--orange-2); }
.footer__col--cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__social {
  display: flex; gap: 8px;
}
.footer__social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer__social a:hover { background: var(--orange); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }

.footer__base {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer__base-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-low);
}
.footer__signoff {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--text-mute);
}
.footer__powered {
  margin: 0;
}
.footer__powered a {
  color: var(--text-mute);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.footer__powered a:hover {
  color: var(--orange-2);
  border-color: var(--orange-2);
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 60;
  padding: 16px 22px;
  border-radius: var(--r-pill);
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  text-align: center;
  align-items: center; justify-content: center;
  gap: 10px;
  box-shadow: 0 18px 50px rgba(233,101,31,0.4);
  transform: translateY(120%);
  transition: transform .35s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-stagger="1"] { transition-delay: 0.08s; }
[data-stagger="2"] { transition-delay: 0.16s; }
[data-stagger="3"] { transition-delay: 0.24s; }
[data-stagger="4"] { transition-delay: 0.32s; }
[data-stagger="5"] { transition-delay: 0.40s; }
[data-stagger="6"] { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img, .cinematic__bg, .card__media img, .order-cta__media img { animation: none !important; transform: none !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .map-grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 420px; }
  .visit__map iframe { min-height: 420px; }
  .hours-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__cta .status { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__inner { grid-template-columns: 1fr auto auto; gap: 14px; }
  .sticky-cta { display: inline-flex; }

  .intro__body { grid-template-columns: 1fr; gap: 20px; }
  .order-cta__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__title { letter-spacing: -0.03em; }
  .hero { padding-bottom: 110px; }
  .hero__scroll { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }

  .delivery__grid { grid-template-columns: 1fr; gap: 60px; }
  .delivery__visual { min-height: 380px; }
  .radius-map { width: min(100%, 380px); }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .visit__list li { grid-template-columns: 1fr; gap: 4px; }
  .visit__hours { padding: 22px; }
  .hours-grid__table { padding: 24px 22px; }
  .hours--full th { font-size: 17px; }
  .hours--full td { font-size: 15px; }
  .nav__wordmark { display: none; }
  .nav__cta .btn--sm { padding: 9px 14px; }
  .final-cta__buttons { width: 100%; }
  .final-cta__buttons .btn { flex: 1; }
  .order-cta__media { aspect-ratio: 4 / 3; }

  .delivery__list { grid-template-columns: 1fr; }
  .radius-map__label { font-size: 10px; padding: 4px 9px; }
  .radius-map__badge { right: 0; bottom: -6px; padding: 10px 14px; }
  .radius-map__badge strong { font-size: 20px; }
}

/* Safari touch — disable hover transforms on touch */
@media (hover: none) {
  .card:hover { transform: none; }
  .card:hover .card__media img { transform: none; }
  .order-cta__media:hover img { transform: none; }
}
