:root {
  --cream: #F5EFE1;
  --cream-2: #EBE3D2;
  --cream-3: #E0D6C2;
  --ink: #1A1410;
  --ink-soft: #5A4F3F;
  --muted: #8A7F6D;
  --gold: #C9A961;
  --gold-bright: #D4B483;
  --red: #E31837;
  --red-deep: #C9142F;
  --dark: #1A1410;
  --green: #1F8A4C;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;

  /* Radius + cards */
  --radius: 22px;
  --radius-sm: 14px;
  --card-radius: var(--radius-sm);
  --card-radius-lg: var(--radius);
  --card-bg: var(--cream-2);
  --card-border: 1px solid rgba(26, 20, 16, 0.08);
  --card-shadow: 0 10px 28px rgba(26, 20, 16, 0.08);
  --card-shadow-lift: 0 18px 40px rgba(26, 20, 16, 0.14);
  --shadow: 0 18px 50px rgba(26, 20, 16, 0.12);
  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --card-pad: var(--space-5);
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");

  /* Buttons */
  --btn-h: 44px;
  --btn-h-lg: 52px;
  --btn-pad-x: 1.35rem;

  --header-h: 72px;
  --header-h-scrolled: 58px;
  --promo-h: 42px;
  --dock-h: 64px;
  --section-y: var(--space-8);
  --section-y-sm: 3.5rem;
  --head-gap: 0.85rem;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --script: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
/* Author display rules (e.g. .btn) otherwise override the UA [hidden] stylesheet */
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
/* Leaflet tiles break if global img { max-width:100% } applies */
.leaflet-container img.leaflet-tile,
.leaflet-container .leaflet-tile-pane img,
.leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.wrap { width: min(1180px, calc(100% - 2.5rem)); margin-inline: auto; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip {
  position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip:focus { left: 1rem; top: 1rem; }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 .75rem;
}
.gold { color: var(--gold); }
.red { color: var(--red); }
.section { padding: var(--section-y) 0; }
.section-title, .display-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
}
.section-title { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.display-title { font-size: clamp(2.8rem, 7vw, 5rem); }
.display-title em, .section-title em, h2 em, .hero-title em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  color: var(--gold);
  letter-spacing: 0;
}
.sec-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}
.sec-lead { margin: 0; color: var(--ink-soft); font-size: 1.05rem; max-width: 36ch; }
.display-title + p,
.section-title + p,
.story-copy h2 + p,
.home-action .display-title + p {
  margin-top: var(--head-gap);
}

/* Buttons ? Primary red / Secondary dark outline / Tertiary text + arrow */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border-radius: 999px; border: 1.5px solid transparent;
  min-height: var(--btn-h);
  padding: 0 var(--btn-pad-x); font-weight: 600; font-size: .82rem;
  letter-spacing: .06em; text-transform: uppercase; cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease-out-expo), background .25s var(--ease-out-expo), color .25s var(--ease-out-expo), border-color .25s var(--ease-out-expo), box-shadow .25s var(--ease-out-expo);
}
.btn:active { transform: scale(0.98); }
.btn-lg { min-height: var(--btn-h-lg); padding: 0 1.6rem; font-size: .86rem; }
.btn-block { width: 100%; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red .btn-arrow,
.btn-red > span[aria-hidden="true"] { display: inline-block; transition: transform .25s var(--ease-out-expo); }
@media (hover: hover) {
  .btn-red:hover { background: var(--red-deep); border-color: var(--red-deep); box-shadow: 0 12px 30px rgba(227,27,35,.28); transform: translateY(-2px); }
  .btn-red:hover .btn-arrow,
  .btn-red:hover > span[aria-hidden="true"] { transform: translateX(4px); }
}
.btn-ghost {
  background: transparent; border-color: rgba(26,20,18,.35); color: var(--ink);
}
@media (hover: hover) {
  .btn-ghost:hover { border-color: var(--ink); background: rgba(26,20,18,.04); transform: translateY(-2px); }
}
.btn-outline-light {
  background: transparent; border-color: rgba(255,255,255,.55); color: #fff;
}
@media (hover: hover) {
  .btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }
}
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 0;
  border: 0;
  background: none;
  border-radius: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s var(--ease-out-expo);
}
.btn-link span { transition: transform .25s var(--ease-out-expo); }
@media (hover: hover) {
  .btn-link:hover { color: var(--red); }
  .btn-link:hover span { transform: translateX(4px); }
}
.btn-link-light { color: rgba(255,255,255,.88); }
.btn-link-light:hover { color: #fff; }
/* Legacy aliases ? Primary / Secondary */
.btn-dark { background: transparent; border-color: rgba(26,20,18,.35); color: var(--ink); }
@media (hover: hover) {
  .btn-dark:hover { border-color: var(--ink); background: rgba(26,20,18,.04); }
}
.btn-gold,
.btn-cream { background: var(--red); color: #fff; border-color: var(--red); }
@media (hover: hover) {
  .btn-gold:hover,
  .btn-cream:hover {
    background: var(--red-deep); border-color: var(--red-deep);
    box-shadow: 0 12px 30px rgba(227,27,35,.28);
    transform: translateY(-2px);
  }
}

/* Promo + header ? one sticky stack so the logo never slides under the banner */
.site-top {
  position: sticky;
  top: 0;
  z-index: 60;
}
.promo {
  position: relative;
  z-index: 2;
  background: var(--dark); color: var(--gold-bright);
  min-height: var(--promo-h);
  display: flex; align-items: center; justify-content: center;
  padding: .55rem 2.5rem; text-align: center; font-size: .88rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.promo a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.promo-close {
  position: absolute; right: 1rem; background: none; border: 0; color: var(--gold); font-size: 1.4rem; cursor: pointer;
}
.promo-star { margin-right: .35rem; }
body.promo-hidden .promo,
body.flow-page .promo { display: none; }
body.promo-hidden .site-header { top: auto; }
body:not(.promo-hidden) .site-header { top: auto; }

.site-header {
  position: relative;
  z-index: 1;
  background: rgba(245, 239, 225, .78);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid rgba(26, 20, 16, .08);
  box-shadow: 0 8px 24px rgba(26, 20, 16, .06);
  transition: box-shadow .3s ease, padding .25s ease, background .3s ease;
  padding: .65rem 0;
  color: var(--ink);
}
.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(245, 239, 225, .94);
  box-shadow: 0 8px 24px rgba(26, 20, 16, .08);
  padding: .35rem 0;
}
.header-inner {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1rem;
  transition: min-height .25s ease;
}
.site-header.is-scrolled .header-inner,
body.nav-open .site-header .header-inner {
  min-height: var(--header-h-scrolled);
}
.logo {
  display: flex; align-items: center;
  line-height: 0;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  flex-shrink: 0;
  overflow: visible;
}
.logo img {
  width: auto;
  height: 58px;
  max-width: 210px;
  display: block;
  background: transparent;
  object-fit: contain;
  object-position: center;
  filter: none;
  transition: height .25s ease, max-width .25s ease, filter .3s ease;
}
.site-header.is-scrolled .logo img,
body.nav-open .site-header .logo img {
  filter: none;
  height: 46px;
  max-width: 170px;
}
.header-actions {
  display: flex; align-items: center; gap: .55rem;
  flex-shrink: 0;
}
.header-actions .btn {
  min-height: 40px;
  padding: 0 1.1rem;
}
.header-order-pill .pill-label-short,
.header-nearest .pill-label-short { display: none; }
.header-nearest {
  gap: .4rem;
  white-space: nowrap;
}
.site-header.is-scrolled .header-order-pill,
body.nav-open .header-order-pill,
.page-inner .header-order-pill {
  min-height: 38px;
  padding: 0 1rem;
  box-shadow: 0 8px 20px rgba(227, 24, 55, 0.22);
}
.site-header.is-scrolled .header-order-pill .pill-label-full,
body.nav-open .header-order-pill .pill-label-full,
.page-inner .header-order-pill .pill-label-full,
.site-header.is-scrolled .header-nearest .pill-label-full,
body.nav-open .header-nearest .pill-label-full,
.page-inner .header-nearest .pill-label-full { display: none; }
.site-header.is-scrolled .header-order-pill .pill-label-short,
body.nav-open .header-order-pill .pill-label-short,
.page-inner .header-order-pill .pill-label-short,
.site-header.is-scrolled .header-nearest .pill-label-short,
body.nav-open .header-nearest .pill-label-short,
.page-inner .header-nearest .pill-label-short { display: inline; }
.nav {
  display: flex; gap: 1.25rem; margin-left: auto; margin-right: 1rem;
}
.nav-home {
  display: inline;
}
.nav a {
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft); position: relative;
  text-shadow: none;
  transition: color .25s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active {
  color: var(--ink);
}
.nav a.is-active::after { transform: scaleX(1); }
/* Softer peer to Franchise ? findable, not a primary CTA */
.nav a.nav-quiet {
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(26, 20, 18, .55);
}
.nav a.nav-quiet:hover,
.nav a.nav-quiet.is-active {
  color: var(--ink);
}
.site-header.is-scrolled .nav a.nav-quiet,
body.nav-open .site-header .nav a.nav-quiet {
  color: rgba(26, 20, 18, .55);
}
.site-header.is-scrolled .nav a.nav-quiet:hover,
body.nav-open .site-header .nav a.nav-quiet:hover,
.site-header.is-scrolled .nav a.nav-quiet.is-active,
body.nav-open .site-header .nav a.nav-quiet.is-active {
  color: var(--ink);
}
.site-header.is-scrolled .nav a,
body.nav-open .site-header .nav a {
  color: var(--ink-soft);
}
.site-header.is-scrolled .nav a:hover,
body.nav-open .site-header .nav a:hover,
.site-header.is-scrolled .nav a.is-active,
body.nav-open .site-header .nav a.is-active {
  color: var(--ink);
}
.header-actions .btn-ghost {
  display: none;
  border-color: rgba(26,20,18,.25);
  color: var(--ink);
}
.header-actions .btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
}
.site-header.is-scrolled .header-actions .btn-ghost,
body.nav-open .site-header .btn-ghost {
  border-color: rgba(26,20,18,.25);
  color: var(--ink);
}
.site-header.is-scrolled .header-actions .btn-ghost:hover,
body.nav-open .site-header .header-actions .btn-ghost:hover {
  border-color: var(--ink);
  background: transparent;
}
@media (min-width: 1100px) {
  .header-actions .btn-ghost { display: inline-flex; }
  .nav-order { display: none; }
}
.nav-toggle {
  display: none; width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(26, 20, 16, .22); background: rgba(26, 20, 16, .06); cursor: pointer;
  place-items: center; gap: 5px; flex-direction: column;
  transition: background .25s ease, border-color .25s ease;
}
.nav-toggle span {
  display: block; width: 16px; height: 2px; background: var(--ink); transition: .25s ease;
}
.site-header.is-scrolled .nav-toggle,
body.nav-open .site-header .nav-toggle {
  background: rgba(26, 20, 16, .06);
  border-color: rgba(26, 20, 16, .22);
}
.site-header.is-scrolled .nav-toggle span,
body.nav-open .site-header .nav-toggle span {
  background: var(--ink);
}

/* Hero ? full-bleed food */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0E0B0A;
  overflow: hidden;
  padding: 7.5rem 0 3.5rem;
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  -webkit-mask-image: none;
  mask-image: none;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%;
  display: block;
  transform: scale(1.02);
}
.hero-fade {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14,11,10,.55) 0%, rgba(14,11,10,.2) 38%, rgba(14,11,10,.72) 72%, rgba(14,11,10,.92) 100%),
    linear-gradient(90deg, rgba(14,11,10,.55) 0%, transparent 45%);
}
.hero-content {
  position: relative; z-index: 2;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  max-width: 640px;
  margin-left: max(1.25rem, calc((100% - 1180px) / 2));
  padding-bottom: 0.5rem;
  color: #fff;
}
.hero-eyebrow {
  margin: 0 0 0.85rem;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-bright);
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(3.6rem, 10vw, 7rem);
  line-height: .88;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,.35);
}
.hero-title .accent { color: var(--red); }
.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.88);
  max-width: 28ch;
  margin: 0 0 1.5rem;
  line-height: 1.45;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: .65rem;
}
.hero-ctas .btn {
  min-height: 3.15rem;
  padding-inline: 1.45rem;
}
.hero-rewards-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  color: var(--gold-bright);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.hero-rewards-link span {
  transition: transform .25s ease;
}
.hero-rewards-link:hover {
  color: #fff;
}
.hero-rewards-link:hover span {
  transform: translateX(3px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.hero-stats strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: .35rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Path section ? one job */
.path-sec {
  background: var(--cream);
  padding: 3.5rem 0;
}
.path-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: center;
}
.path-photo {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 560px;
}
.path-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.path-copy p {
  color: var(--ink-soft);
  max-width: 36ch;
  font-size: 1.05rem;
}
.path-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}

.trust-strip {
  padding: var(--space-5) 0;
  background: var(--cream-2);
  border-top: var(--card-border);
  border-bottom: var(--card-border);
}
.trust-inner {
  display: flex;
  justify-content: center;
}
.trust-inner .ck-stats,
.trust-inner .hero-stats {
  width: min(720px, 100%);
}

/* Shared stats strip (Home / Franchise) */
.ck-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-4);
  width: 100%;
}
.ck-stats--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ck-stats-item {
  text-align: center;
}
.ck-stats-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  line-height: 1;
  letter-spacing: .03em;
}
.ck-stats-item span {
  display: block;
  margin-top: .35rem;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.ck-stats--dark .ck-stats-item {
  background: #1f1916;
  border: 1px solid rgba(212,180,131,.28);
  border-radius: var(--card-radius);
  padding: 1.1rem 1rem;
}
.ck-stats--dark .ck-stats-item strong { color: var(--gold-bright); }
.ck-stats--dark .ck-stats-item span { color: rgba(255,255,255,.72); }

/* Two separate award badges */
.award-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
  margin-top: 0;
  max-width: none;
}
.award-badge {
  border: 1px solid rgba(201,169,97,.45);
  background: rgba(26,20,16,.88);
  color: #fff;
  border-radius: 16px;
  padding: 1rem 1.05rem;
  display: grid;
  gap: .2rem;
  transition: transform .3s ease, border-color .3s ease;
}
.award-badge:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.award-badge.light {
  background: #fff;
  color: var(--ink);
  border-color: rgba(26,20,16,.12);
  box-shadow: 0 8px 24px rgba(26,20,16,.06);
}
.award-year {
  font-family: var(--display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--gold);
  letter-spacing: .04em;
}
.award-badge.light .award-year { color: var(--red); }
.award-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.award-org {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .65;
}
.award-pair-story { max-width: none; margin: 1.5rem 0 1.25rem; }
.award-pair-dark {
  max-width: none;
  margin-top: 1rem;
}
.award-pair-dark .award-badge {
  background: rgba(245,239,225,.05);
  border-color: rgba(201,169,97,.35);
}

/* Marquee ? full-bleed strip under hero (in flow, not absolute) */
.marquee {
  position: relative;
  left: auto; right: auto; bottom: auto;
  width: 100%;
  margin: 0;
  background: var(--ink);
  border-top: 0;
  border-bottom: 1px solid rgba(245,239,225,.1);
  overflow: hidden;
  padding: .95rem 0;
  z-index: 3;
}
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 2.2rem;
  padding-inline: 1.1rem;
  white-space: nowrap;
}
.marquee-group span:not(.mq-star) {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.mq-star {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.scroll-hint { display: none; }

.story { background: var(--cream-2); }
.story-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}
.story-visuals { position: relative; }
.story-main {
  margin: 0; border-radius: 28px; overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow);
}
.story-main img, .story-inset img { width: 100%; height: 100%; object-fit: cover; }
.story-inset {
  position: absolute; right: -8%; bottom: 8%;
  width: 46%; margin: 0; border-radius: 20px; overflow: hidden;
  aspect-ratio: 1; border: 6px solid var(--cream); box-shadow: var(--shadow);
  animation: floatY 5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.story-copy h2 {
  font-family: var(--display); font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: .95; text-transform: uppercase; margin: 0 0 1rem;
}
.proof-row {
  list-style: none; padding: 0; margin: 1.75rem 0 1.75rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.proof-row li {
  border-left: 1px solid var(--cream-3); padding-left: 1rem;
  display: grid; gap: .2rem;
}
.proof-row strong { font-size: .92rem; }
.proof-row span:last-child { font-size: .8rem; color: var(--ink-soft); }
.proof-icon { color: var(--red); font-size: 1.1rem; }

/* Menu */
.mobile-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(26,20,16,.14);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231A1410' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") right 1rem center / 12px no-repeat;
  border-radius: 14px;
  padding: 1rem 2.5rem 1rem 1.1rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0;
  box-shadow: 0 8px 22px rgba(26,20,16,.05);
}
.mobile-select-wrap {
  display: none;
}
.menu-filters-sticky {
  position: sticky;
  top: calc(var(--header-h) + var(--promo-h) + .35rem);
  z-index: 30;
  margin: 0 0 1.5rem;
  padding: .65rem 0 .55rem;
  background: linear-gradient(180deg, var(--cream) 55%, rgba(250,246,240,0));
}
body.promo-hidden .menu-filters-sticky {
  top: calc(var(--header-h) + .35rem);
}
.menu-catalog.menu-swap-in {
  animation: menuSwap .45s cubic-bezier(.16,1,.3,1) both;
}
@keyframes menuSwap {
  from { opacity: 0; transform: translateY(14px) scale(.985); }
  to { opacity: 1; transform: none; }
}
.menu-filters {
  display: flex; flex-wrap: wrap; gap: .55rem; margin-bottom: 0;
}
.chip {
  border-radius: 999px; border: 1px solid rgba(26,20,18,.14);
  background: #fff; padding: .65rem 1rem;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: .25s ease;
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.menu-feature {
  display: block;
  min-height: 0;
}
.menu-catalog {
  display: grid;
  gap: 1.35rem;
}
.menu-cat-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  align-items: stretch;
  background: var(--cream-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,20,16,.06);
}
.menu-cat-copy {
  padding: 1.5rem 1.45rem;
  display: grid;
  align-content: center;
  gap: .45rem;
}
.menu-cat-copy h3 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0;
  letter-spacing: .02em;
  line-height: .95;
}
.menu-cat-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 36ch;
}
.menu-cat-photo {
  margin: 0;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.menu-cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.menu-dish-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(26,20,16,.1);
}
.menu-dish {
  padding: 1.05rem 1rem 1.1rem 0;
  border-bottom: 1px solid rgba(26,20,16,.1);
  display: grid;
  gap: .35rem;
}
/* Keep dish names aligned when the category has any photos */
.menu-dish-list.has-photos .menu-dish {
  grid-template-columns: 72px 1fr;
  gap: .75rem 1rem;
  align-items: start;
}
.menu-dish-photo-slot {
  display: block;
  width: 72px;
  min-height: 0;
  pointer-events: none;
}
.menu-dish:nth-child(odd) {
  padding-right: 1.25rem;
  border-right: 1px solid rgba(26,20,16,.08);
}
.menu-dish:nth-child(even) {
  padding-left: 1.25rem;
}
.menu-dish-photo {
  width: 72px;
  height: 72px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream-2);
  flex-shrink: 0;
}
.menu-dish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.menu-dish-photo:hover img,
.menu-dish-photo:focus-visible img {
  transform: scale(1.06);
}
.menu-dish-photo:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.menu-dish-body {
  display: grid;
  gap: .35rem;
  min-width: 0;
}
.menu-dish-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem .65rem;
}
.menu-dish h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .03em;
  line-height: 1.1;
}
.menu-dish p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.45;
  max-width: 42ch;
}
.menu-photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
  background: rgba(20, 14, 10, .78);
  cursor: zoom-out;
}
.menu-photo-lightbox.is-open {
  display: flex;
}
.menu-photo-lightbox-img {
  max-width: min(920px, 100%);
  max-height: min(85vh, 100%);
  border-radius: 18px;
  object-fit: contain;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  cursor: default;
}
.menu-photo-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: #1a1410;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}
.menu-dish-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .3rem;
}
.menu-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .2rem .55rem;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(26,20,16,.06);
  color: var(--ink);
}
.menu-badge-best,
.menu-badge-chef,
.menu-badge-recommend,
.menu-badge-popular {
  background: var(--red);
  color: #fff;
}
.menu-badge-veg {
  background: #1f6b3a;
  color: #fff;
}
.menu-badge-spicy {
  background: #b54708;
  color: #fff;
}
.menu-badge-new {
  background: var(--ink);
  color: #fff;
}
.menu-dish-sizes {
  margin-left: auto;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}
.menu-note {
  margin: 1.25rem 0 0; font-size: .85rem; color: var(--ink-soft);
  background: var(--cream-2); border-radius: 16px; padding: .85rem 1.1rem; display: block;
  line-height: 1.45;
}
.menu-unavailable {
  margin: 0;
  padding: 1.5rem 1.1rem;
  font-size: 1rem;
  color: var(--ink-soft);
  text-align: center;
}
.menu-note a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Order online */
.order-sec { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.order-panel {
  background: #fff;
  border-radius: 28px;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
}
.order-steps {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
  max-width: 520px;
}
.order-step {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--muted);
}
.order-step i {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; font-style: normal;
  background: var(--cream-2); color: var(--ink); font-size: .8rem;
}
.order-step.is-active { color: var(--ink); }
.order-step.is-active i { background: var(--red); color: #fff; }
.order-step-line {
  flex: 1; min-width: 24px; max-width: 100px; height: 1px; background: rgba(26,20,16,.12);
}
.order-grid {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.25rem; align-items: stretch;
}
.order-store-col {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.order-store-col h3, .order-selected h3 {
  font-family: var(--display); font-size: 1.55rem; margin: 0 0 .85rem; letter-spacing: .04em;
}
.order-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .55rem;
  align-items: stretch;
  margin-bottom: .65rem;
}
.order-search-row .order-search { margin-bottom: 0; min-width: 0; }
#orderNearestBtn {
  white-space: nowrap;
  gap: .4rem;
  padding-left: .95rem;
  padding-right: .95rem;
}
.order-store-list {
  display: grid;
  gap: .45rem;
  flex: 1 1 auto;
  min-height: 320px;
  max-height: none;
  overflow: auto;
  padding-right: .25rem;
  align-content: start;
}
#orderNearestStatus,
#resNearestStatus {
  margin: 0 0 .55rem;
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.35;
}
#orderNearestStatus.is-error,
#resNearestStatus.is-error {
  color: #9b1c1c;
}
.order-store-btn {
  width: 100%; text-align: left; border: 1px solid rgba(26,20,16,.1);
  background: var(--cream); border-radius: 14px; padding: .85rem 1rem;
  cursor: pointer; transition: .25s ease;
  display: flex; justify-content: space-between; align-items: center; gap: .75rem;
}
.order-store-btn:hover { border-color: var(--ink); background: #fff; }
.order-store-btn.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.order-store-btn.is-nearest:not(.is-active) {
  border-color: rgba(201,169,97,.55);
  box-shadow: inset 3px 0 0 var(--gold);
}
.order-store-btn strong {
  display: block; font-family: var(--display); font-size: 1.15rem; letter-spacing: .04em; font-weight: 400;
}
.order-store-btn span { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.order-store-btn .store-dist {
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: none;
  opacity: .85;
  white-space: nowrap;
}
.order-empty {
  flex: 1;
  min-height: 0;
  display: grid;
  place-content: start center;
  text-align: center;
  gap: .5rem;
  padding: 1rem 1.25rem 1.25rem;
}
.order-flow-col {
  background: var(--cream); border-radius: 22px; padding: 1.35rem; min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.order-empty[hidden],
.order-active[hidden] {
  display: none !important;
}
.order-flow-col:has(.order-active:not([hidden])) .order-empty {
  display: none !important;
}
.order-active {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.order-empty-icon {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto .5rem;
  display: grid; place-items: center; background: #fff; color: var(--red); font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(26,20,16,.08);
}
.order-empty h3 { font-family: var(--display); font-size: 1.8rem; margin: 0; letter-spacing: .04em; }
.order-empty p { margin: 0; color: var(--ink-soft); max-width: 32ch; }
.order-selected {
  margin-bottom: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .85rem;
}
.order-selected .eyebrow { margin: 0; width: 100%; }
.order-selected h3 {
  margin: 0;
  flex: 1 1 auto;
}
.order-selected .linkish {
  background: none; border: 0; padding: 0; cursor: pointer;
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--red);
}
.order-mode {
  display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-bottom: 1.1rem;
}
.order-mode-btn {
  text-align: left; border: 1px solid rgba(26,20,16,.12);
  background: #fff; border-radius: 16px; padding: 1rem; cursor: pointer; transition: .25s ease;
  display: grid; gap: .35rem;
}
.order-mode-btn:hover { border-color: var(--ink); }
.order-mode-btn.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.om-top {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  flex-wrap: wrap;
}
.om-title {
  display: block; font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em;
}
.om-sub { display: block; font-size: .78rem; opacity: .7; line-height: 1.35; }
.order-mode-btn .soon-pill {
  background: var(--gold);
  color: var(--ink);
  margin: 0;
}
.order-mode-btn.is-active .soon-pill {
  background: var(--gold);
  color: var(--ink);
}
.order-pane[hidden] { display: none !important; }
.coming-soon-card {
  background: #fff; border-radius: 18px; padding: 1.4rem 1.35rem;
  border: 1px dashed rgba(201,169,97,.55);
}
.soon-pill {
  display: inline-flex; background: var(--gold); color: var(--ink);
  border-radius: 999px; padding: .3rem .7rem;
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 800;
}
.coming-soon-card h4 {
  font-family: var(--display); font-size: 2rem; margin: .75rem 0 .45rem; letter-spacing: .03em;
}
.coming-soon-card p { margin: 0 0 1rem; color: var(--ink-soft); }
.soon-list {
  list-style: none; padding: 0; margin: 0 0 1.25rem;
  display: grid; gap: .45rem;
}
.soon-list li {
  padding-left: 1.1rem; position: relative; font-size: .92rem;
}
.soon-list li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.delivery-lead { margin: 0 0 1rem; color: var(--ink-soft); }
.platform-grid {
  display: grid; grid-template-columns: 1fr; gap: .7rem;
}
.platform-card {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  background: #fff; border-radius: 16px; padding: .95rem 1.1rem;
  border: 1px solid rgba(26,20,16,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.platform-name {
  font-family: var(--display); font-size: 1.35rem; letter-spacing: .04em;
}
.platform-cta {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; color: var(--ink-soft);
}
.platform-card.uber:hover { border-color: #06C167; }
.platform-card.deliveroo:hover { border-color: #00CCBC; }
.platform-card.justeat:hover { border-color: #FF8000; }
.platform-note {
  margin: 1rem 0 0; font-size: .78rem; color: var(--muted);
}

/* Ranges */
.range-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.range-card {
  background: var(--card-bg); border-radius: var(--card-radius-lg); overflow: hidden;
  border: var(--card-border);
  transition: transform .35s ease, box-shadow .35s ease;
}
.range-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.range-card img { aspect-ratio: 3 / 4; width: 100%; object-fit: cover; }
.range-body { padding: 1.1rem 1.15rem 1.3rem; }
.range-body .tag {
  margin: 0 0 .25rem; font-size: .68rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); font-weight: 600;
}
.range-body h3 {
  font-family: var(--display); font-size: 1.7rem; margin: 0 0 .2rem; letter-spacing: .03em;
}
.range-body p { margin: 0; color: var(--ink-soft); font-size: .9rem; }
.food-mosaic {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.food-mosaic figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream-2);
}
.food-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.food-mosaic figure:hover img { transform: scale(1.05); }

/* Sauces */
.sauce-panel {
  display: grid; grid-template-columns: 1.1fr .9fr; border-radius: 28px; overflow: hidden;
  min-height: 520px; background: var(--dark);
}
.sauce-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.sauce-copy { padding: 2.4rem 2.2rem; color: #fff; }
.sauce-copy h2 {
  font-family: var(--display); font-size: clamp(2.6rem, 4vw, 3.8rem);
  margin: 0 0 1rem; letter-spacing: .02em; text-transform: uppercase;
}
.sauce-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.sauce-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .92rem; letter-spacing: .06em; text-transform: uppercase;
  gap: 1rem;
}
.heat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  min-width: 76px;
  justify-content: flex-end;
}
.heat .flame {
  width: 14px;
  height: 14px;
  display: block;
  color: rgba(245,239,225,.22);
}
.heat .flame.is-on {
  color: var(--red);
}
.heat .flame svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* News */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
}
.news-card {
  background: var(--card-bg); border-radius: var(--card-radius-lg); padding: var(--space-5);
  border: var(--card-border);
  display: grid; gap: .7rem; transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow); }
.news-meta { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; color: var(--ink-soft); }
.badge {
  background: var(--red); color: #fff; border-radius: 999px;
  padding: .3rem .65rem; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.news-card h3 {
  font-family: var(--display); font-size: 1.55rem; margin: 0; letter-spacing: .03em; line-height: 1.05;
}
.news-card p { margin: 0; color: var(--ink-soft); font-size: .92rem; }
.news-card a { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

/* Locations */
.store-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(220px, 28vw);
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
.store-showcase figure {
  margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 260px;
}
.store-showcase figure:first-child {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}
.store-showcase img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
  position: absolute; inset: 0;
}
.store-showcase figure:hover img { transform: scale(1.05); }
.store-showcase figcaption {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem; color: #fff; z-index: 1;
  margin: 0;
  padding: 0;
  font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.45rem); letter-spacing: .04em;
  line-height: 1.15;
  text-shadow: 0 6px 20px rgba(0,0,0,.5);
}
.store-showcase figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26,20,16,.72) 100%);
  pointer-events: none;
}
.store-tools { display: grid; gap: 1rem; margin-bottom: 1.5rem; }
.store-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
}
.store-search-row .search { min-width: 0; }
#findNearestBtn {
  white-space: nowrap;
  gap: .45rem;
}
.nearest-ico {
  width: .85rem;
  height: .85rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px transparent;
  position: relative;
  flex-shrink: 0;
}
.nearest-ico::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
}
.nearest-status {
  margin: -.35rem 0 0;
  font-size: .88rem;
  color: var(--ink-soft);
}
.nearest-status.is-error { color: #9b1c1c; }
.store-dist {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.badge-nearest {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .5rem;
  border-radius: 999px;
}
.store-card.is-nearest {
  background: #fff;
  box-shadow: 0 12px 30px rgba(26, 20, 16, .1);
  outline: 2px solid rgba(227, 24, 55, .18);
}
.search input {
  width: 100%; border: 0; background: var(--cream-2); border-radius: 999px;
  padding: 1rem 1.25rem; outline: none;
}
.search input:focus { box-shadow: 0 0 0 2px var(--gold); }
.region-filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.store-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
  align-items: stretch;
}
.store-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}
.store-more-wrap .btn {
  min-width: 180px;
  background: #fff;
  border-color: rgba(26,20,16,.18);
}
.store-more-wrap .btn:hover {
  border-color: var(--ink);
  background: var(--cream-2);
}
.store-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-soft);
  background: var(--cream-2);
  border-radius: var(--radius-sm);
}
.store-card {
  background: var(--card-bg); border-radius: var(--card-radius); padding: 1.15rem 1.2rem;
  border: var(--card-border);
  display: flex; flex-direction: column; gap: .55rem;
  min-width: 0;
  height: 100%;
  transition: background .3s ease, box-shadow .3s ease;
  transform: none;
}
.store-card:hover {
  transform: none;
  background: #fff;
  box-shadow: var(--card-shadow);
}
.store-card-top { display: flex; justify-content: space-between; align-items: center; }
.pin {
  width: 12px; height: 12px; border-radius: 50% 50% 50% 0;
  background: var(--red); transform: rotate(-45deg);
  display: inline-block;
}
.status { font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--green); }
.status.soon {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: .28rem .7rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 2px 8px rgba(201, 169, 97, .35);
}
.store-card h3 {
  font-family: var(--display); font-size: 1.55rem; margin: 0; letter-spacing: .04em;
}
.store-card-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem .55rem;
}
.store-card .region { font-size: .78rem; color: var(--ink-soft); letter-spacing: .08em; text-transform: uppercase; }
.store-service {
  margin: 0; font-size: .78rem; font-weight: 600; color: var(--ink-soft);
  letter-spacing: .04em;
}
.store-meta {
  list-style: none; margin: .15rem 0 0; padding: 0; display: grid; gap: .45rem;
}
.store-meta li {
  display: grid; gap: .1rem; font-size: .84rem; color: var(--ink-soft); line-height: 1.35;
}
.store-meta strong {
  font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
}
.store-meta-link { color: var(--ink); font-weight: 600; }
.store-meta-link:hover { color: var(--red); }
.store-card .actions {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; padding-top: .5rem;
}
.store-card .linkish {
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.badge-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: max-content;
  flex: 0 0 auto;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: .22rem .55rem;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

/* Reservations */
.reservations { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%); }
.res-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start;
}
.feature-list {
  list-style: none; padding: 0; margin: 1.5rem 0;
  display: grid; gap: .85rem;
}
.feature-list li { padding-left: 0; color: var(--ink-soft); }
.feature-list strong { display: block; color: var(--ink); }
.res-photo {
  margin: 1.5rem 0 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10;
}
.res-photo img { width: 100%; height: 100%; object-fit: cover; }
.res-form, .dark-form {
  background: #fff; border-radius: 28px; padding: 1.75rem;
  box-shadow: var(--shadow);
}
.app-form {
  padding: 1.35rem 1.35rem 1.5rem;
}
.app-form-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .85rem 1rem;
  margin-bottom: 1.15rem;
}
.app-form-kicker {
  margin: 0 0 .2rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
}
.app-form-top h3 {
  margin: 0;
}
.app-steps {
  display: inline-flex;
  gap: .35rem;
  padding: .28rem;
  border-radius: 999px;
  background: var(--cream);
}
.app-step {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .55rem .85rem;
  border-radius: 999px;
  cursor: pointer;
}
.app-step.is-active {
  background: var(--ink);
  color: #fff;
}
.app-panel { display: grid; gap: .15rem; }
.app-panel[hidden] { display: none !important; }
.app-form-nav {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .65rem;
  margin-top: .35rem;
}
.app-form-nav .btn-red { width: 100%; }
.time-picks,
.invest-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}
.sitting-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem;
  padding: .28rem;
  border-radius: 14px;
  background: var(--cream);
  margin-bottom: .65rem;
}
.sitting-btn {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  padding: .55rem .45rem;
  border-radius: 11px;
  cursor: pointer;
  display: grid;
  gap: .1rem;
  justify-items: center;
}
.sitting-name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sitting-range {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  opacity: .75;
}
.sitting-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(26,20,16,.08);
}
.sitting-btn.is-active .sitting-range { opacity: .9; }
.store-pick-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .55rem;
  align-items: stretch;
  min-width: 0;
}
.store-pick-row select,
.store-combo {
  min-width: 0;
}
.store-combo {
  position: relative;
}
.store-combo input[type="text"] {
  width: 100%;
}
.store-combo-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 40;
  margin: 0;
  padding: .35rem 0;
  list-style: none;
  max-height: 240px;
  overflow: auto;
  background: #fff;
  border: 1.5px solid rgba(26, 20, 16, .14);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(26, 20, 16, .12);
}
.store-combo-list[hidden] { display: none; }
.store-combo-list > li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.store-combo-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  width: 100%;
  padding: .7rem 1rem;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.25;
}
.store-combo-option:hover,
.store-combo-option.is-active {
  background: rgba(26, 20, 16, .06);
}
.store-combo-name {
  display: block;
  font-weight: 700;
}
.store-combo-city {
  display: block;
  font-weight: 500;
  font-size: .78rem;
  color: var(--ink-soft);
}
.store-combo-empty {
  padding: .85rem 1rem;
  color: var(--ink-soft);
  font-size: .88rem;
  list-style: none;
}
#resNearestBtn,
#careNearestBtn {
  white-space: nowrap;
  gap: .4rem;
  padding-left: .95rem;
  padding-right: .95rem;
}
#resNearestStatus.is-error,
#careNearestStatus.is-error {
  color: #9b1c1c;
}
.date-quick {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: .55rem;
}
.date-quick-btn {
  border: 1.5px solid rgba(26,20,16,.12);
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  padding: .45rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
}
.date-quick-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.field-hint {
  margin: .4rem 0 0;
  font-size: .82rem;
  color: var(--ink-soft);
}
.time-empty-msg {
  grid-column: 1 / -1;
  margin: .15rem 0 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(196, 54, 46, .08);
  border: 1.5px solid rgba(196, 54, 46, .22);
  display: grid;
  gap: .35rem;
  text-align: left;
}
.time-empty-msg strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--ink);
  line-height: 1.25;
}
.time-empty-msg span {
  display: block;
  font-size: .95rem;
  line-height: 1.4;
  color: var(--ink-soft);
}
.booking-summary {
  margin: 0 0 1rem;
  padding: .9rem 1rem;
  border-radius: 14px;
  background: var(--cream);
  font-size: .92rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.booking-summary strong {
  color: var(--ink);
}
#resDate,
.field input[type="date"] {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 3.1rem;
  font-size: 1.05rem;
  box-sizing: border-box;
  overflow: hidden;
}
.date-field-shell {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}
#resDate::-webkit-date-and-time-value {
  text-align: left;
}
#resDate::-webkit-datetime-edit,
#resDate::-webkit-datetime-edit-fields-wrapper {
  min-width: 0;
  max-width: 100%;
  padding: 0;
}
.chip-pick {
  border: 1.5px solid rgba(26,20,16,.12);
  background: var(--cream);
  color: var(--ink);
  border-radius: 14px;
  padding: .75rem .55rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}
.chip-pick:hover:not(:disabled) { border-color: var(--ink); }
.chip-pick.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.chip-pick.is-past,
.chip-pick:disabled {
  opacity: .42;
  text-decoration: line-through;
  cursor: not-allowed;
  background: rgba(26,20,16,.04);
  color: var(--ink-soft);
}
.invest-picks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.res-form h3, .dark-form h3 {
  font-family: var(--display); font-size: 1.9rem; margin: 0 0 .35rem; letter-spacing: .04em;
}
.form-sub { margin: 0 0 1.2rem; color: var(--ink-soft); font-size: .92rem; }
.field { display: grid; gap: .35rem; margin-bottom: .9rem; min-width: 0; }
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: .8rem;
}
.field input, .field select, .field textarea,
.dark-form input, .dark-form select, .dark-form textarea {
  border: 0; background: var(--cream); border-radius: 14px; padding: .9rem 1rem; outline: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.field label, .party legend, .dark-form label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.opt { opacity: .55; text-transform: none; letter-spacing: 0; font-weight: 500; }
.field-label {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.file-upload {
  display: block;
  cursor: pointer;
}
.file-upload-input {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.file-upload-ui {
  display: flex; align-items: center; gap: .85rem;
  background: var(--cream);
  border-radius: 14px;
  padding: .55rem .65rem .55rem .55rem;
  border: 1.5px dashed rgba(26,20,16,.18);
  transition: border-color .2s ease, background .2s ease;
}
.file-upload:hover .file-upload-ui,
.file-upload:focus-within .file-upload-ui {
  border-color: var(--ink);
  background: #fff;
}
.file-upload-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.file-upload:hover .file-upload-btn {
  background: var(--red);
}
.file-upload-name {
  font-size: .88rem;
  color: var(--ink-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.file-upload.has-file .file-upload-name {
  color: var(--ink);
  font-weight: 600;
}
.file-upload.has-file .file-upload-ui {
  border-style: solid;
  border-color: rgba(31, 138, 76, .35);
  background: #F3FBF6;
}
.field input:focus, .field select:focus, .field textarea:focus,
.dark-form input:focus, .dark-form textarea:focus {
  box-shadow: 0 0 0 2px var(--gold);
}
.party { border: 0; padding: 0; margin: 0 0 1rem; }
.party-picks {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .55rem;
}
.party-picks button {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  border-radius: 50%;
  border: 1px solid rgba(26,20,18,.15);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: .88rem;
  line-height: 1;
  transition: .2s ease;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.party-picks button.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.form-foot { font-size: .75rem; color: var(--ink-soft); margin: .85rem 0 0; }
.powered-by-satai {
  margin: .85rem 0 0;
  text-align: center;
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--ink-soft);
}
.powered-by-satai a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: .12em;
}
.powered-by-satai a:hover { color: var(--ink); }
.form-success {
  margin-top: 1rem;
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #F3FBF6 0%, #E8F6EE 100%);
  color: #14532D;
  border: 1px solid rgba(31, 138, 76, .18);
  text-align: center;
  /* Clear sticky header when scrolling to success */
  scroll-margin-top: calc(var(--header-h-scrolled, 58px) + 1rem);
}
.form-success::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto .85rem;
  border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center / 1.15rem no-repeat;
}
.form-success:has(.success-check)::before { display: none; }
.form-success strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: .04em;
  margin-bottom: .35rem;
  color: var(--ink);
}
.form-success p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.45;
}
.form-success-note {
  margin-top: .65rem !important;
  padding: .7rem .85rem;
  border-radius: 12px;
  background: rgba(26, 20, 16, .05);
  color: var(--ink) !important;
  font-size: .88rem !important;
  font-weight: 600;
}
.form-success .form-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  justify-content: center;
  margin-top: 1rem;
}
.form-error {
  margin-top: .85rem; padding: .85rem 1rem; border-radius: 14px;
  background: #FDECEC; color: #7F1D1D; font-size: .9rem;
}
.ck-turnstile {
  margin: .85rem 0 1rem;
  min-height: 65px;
}
.dark-form .form-error {
  background: #FDECEC; color: #7F1D1D;
}
/* .dark-form is a white card on dark sections ? keep success/error text dark for contrast */
.dark-form .form-success {
  background: linear-gradient(160deg, #F3FBF6 0%, #E8F6EE 100%);
  border-color: rgba(31, 138, 76, .18);
  color: #14532D;
}
.dark-form .form-success strong { color: var(--ink); }
.dark-form .form-success p { color: var(--ink-soft); }
.form.is-sent .form-success { margin-top: 0; }
.form.is-sent > :not(.form-success) { display: none; }
.app-form.is-sent > :not(.form-success) { display: none; }

/* Reviews */
.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 2rem 3rem;
  align-items: center;
  margin-bottom: 2rem;
}
.reviews-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .92;
  font-size: clamp(2.8rem, 7vw, 5rem);
  display: grid;
  gap: .05em;
}
.reviews-title .rt-top,
.reviews-title .rt-bot { display: block; }
.reviews-title .rt-em {
  display: block;
  font-family: var(--script);
  font-style: italic;
  font-weight: 600;
  font-size: .38em;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  color: var(--gold);
  margin: .08em 0 .02em;
}
.review-stats {
  display: flex;
  gap: 2.25rem;
  align-items: flex-end;
  justify-self: end;
}
.review-stat {
  display: grid;
  gap: .28rem;
  min-width: 7.5rem;
}
.review-stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3rem);
  line-height: 1;
}
.review-stat .stars {
  font-size: .85rem;
  letter-spacing: 2px;
  line-height: 1;
}
.review-stat .stat-label {
  font-size: .72rem;
  color: var(--ink-soft);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.reviews-layout {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 1rem;
  align-items: stretch;
}
.review-side {
  display: grid;
  gap: 1rem;
}
.review-card {
  margin: 0;
  background: var(--dark);
  color: #fff;
  border-radius: 28px;
  padding: 1.65rem 1.6rem 1.45rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.review-card--feature {
  padding: 2rem 2.1rem 1.7rem;
  min-height: 320px;
}
.review-card--feature p {
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.28;
  max-width: 22ch;
  margin: 1rem 0 auto;
  flex: 1;
}
.review-card p {
  font-size: 1.05rem;
  line-height: 1.4;
  margin: .85rem 0 1.15rem;
  flex: 1;
}
.review-card em { font-family: var(--script); color: var(--gold-bright); font-style: italic; }
.review-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: .35rem;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}
.avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .78rem; letter-spacing: .02em;
  flex-shrink: 0; line-height: 1; color: #fff;
  text-align: center;
}
.reviewer strong { display: block; font-size: .95rem; }
.reviewer span { display: block; font-size: .78rem; opacity: .7; }
.review-tag {
  flex-shrink: 0;
  font-family: var(--script);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--gold);
  white-space: nowrap;
}
.review-card::after {
  content: "\201C";
  position: absolute;
  right: 1.2rem;
  top: .15rem;
  font-family: var(--script);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201,169,97,.16);
  pointer-events: none;
}

.featured { padding: var(--space-6) 0; border-top: var(--card-border); border-bottom: var(--card-border); }
.featured-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 1.25rem 1.75rem; margin-top: .75rem;
}
.featured-logo {
  display: inline-flex; align-items: center; justify-content: center;
  opacity: .88; transition: opacity .2s ease;
}
.featured-logo:hover { opacity: 1; }
.featured-logo img {
  height: 36px; width: auto; max-width: 150px; object-fit: contain;
  filter: none;
}
.featured-award {
  font-family: var(--display); font-style: normal; font-size: .95rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  border: var(--card-border); border-radius: 999px; padding: .55rem 1rem;
  background: #fff;
}
.featured-award strong { color: var(--red); }

/* Franchise */
.franchise {
  background: #16110f;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.franchise::before {
  content: none;
}
.fran-proof {
  position: relative;
  margin-bottom: var(--space-6);
}
.fran-proof .ck-stats {
  gap: .75rem;
}
.fran-proof-item {
  background: #1f1916;
  border: 1px solid rgba(212,180,131,.28);
  border-radius: var(--card-radius);
  padding: 1.1rem 1rem;
  text-align: center;
}
.fran-proof-item strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--gold-bright);
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: .35rem;
}
.fran-proof-item span {
  display: block;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.fran-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 2.25rem;
  align-items: start;
}
.fran-heading {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 .75rem;
}
.fran-copy > p {
  margin: 0 0 1.35rem;
  color: rgba(255,255,255,.82);
  max-width: 40ch;
  font-size: 1.05rem;
  line-height: 1.55;
}
.fran-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .75rem;
}
.fran-benefits li {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.fran-benefits strong {
  display: block;
  color: #fff;
  font-size: .95rem;
  margin-bottom: .25rem;
}
.fran-benefits span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
  line-height: 1.45;
}
.fran-jobs-note {
  margin: 1.25rem 0 0;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  max-width: none;
  line-height: 1.45;
}
.fran-jobs-note a {
  color: rgba(255,255,255,.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fran-jobs-note a:hover {
  color: #fff;
}
.fran-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.75rem 0 0;
}
.fran-stats div {
  border: 1px solid rgba(184,149,106,.35); border-radius: 16px; padding: 1rem;
  text-align: center;
}
.fran-stats strong {
  display: block; font-family: var(--display); font-size: 2rem; color: var(--gold-bright);
}
.fran-stats span { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; opacity: .75; }
.fran-quote {
  border-left: 3px solid var(--gold); padding-left: 1rem; color: rgba(255,255,255,.75); margin: 0;
}
.dark-form {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 0;
}
.dark-form h3 { color: var(--ink); }
.dark-form input, .dark-form textarea { background: var(--cream); color: var(--ink); }
.dark-form .form-sub, .dark-form .form-foot { color: var(--ink-soft); }
.dark-form .form-foot a { color: var(--red); font-weight: 600; }
.dark-form label { color: var(--ink); }

/* Careers */
.care-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
}
.role-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: 1.4rem 0;
}
.role-cards div {
  background: var(--cream-2); border-radius: 16px; padding: 1rem;
}
.role-cards strong {
  display: block; font-family: var(--display); font-size: 1.2rem; letter-spacing: .04em;
}
.role-cards span { font-size: .78rem; color: var(--ink-soft); }
.perks {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .9rem;
}
.perks li::before {
  content: "\2713"; color: var(--red); font-weight: 700; margin-right: .4rem;
}

/* Loyalty */
.loyalty { background: var(--cream); }
.loy-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center;
  margin-bottom: 2rem;
}
.loy-join {
  display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.4rem 0 .8rem;
}
.loy-join input {
  flex: 1; min-width: 220px; border: 0; background: #fff; border-radius: 999px;
  padding: 1rem 1.2rem; box-shadow: 0 0 0 1px rgba(26,20,18,.08); outline: none;
}
.loy-join input:focus { box-shadow: 0 0 0 2px var(--gold); }
.loy-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;
  margin-top: .75rem; font-size: .8rem; color: var(--ink-soft);
}
.loy-meta a { font-weight: 700; color: var(--ink); }
.form-success-actions { flex-wrap: wrap; }
.form-success-actions .btn { min-width: 0; }
.mc-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin: 1.5rem 0; }
.mc-stats span { display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; opacity: .65; }
.mc-stats strong { font-size: 1.2rem; }
.loy-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.loy-features article {
  background: var(--cream-2); border-radius: var(--radius-sm); padding: 1.25rem;
}
.loy-features h3 {
  font-family: var(--display); font-size: 1.45rem; margin: 0 0 .4rem; letter-spacing: .03em;
}
.loy-features p { margin: 0; color: var(--ink-soft); font-size: .9rem; }

/* CTA + footer */
.cta-band { background: var(--dark); color: #fff; padding: var(--section-y) 0; }
.cta-inner {
  display: flex; justify-content: space-between; gap: 2rem; align-items: center; flex-wrap: wrap;
}
.cta-actions { display: grid; gap: .7rem; min-width: min(320px, 100%); }
.site-footer {
  background: #12100E;
  color: rgba(245, 239, 225, .78);
  padding: 3.25rem 0 1.35rem;
  border-top: 1px solid rgba(201, 169, 97, .18);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, .7fr));
  gap: 2.5rem 3rem;
  align-items: start;
  margin-bottom: 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 34ch; }
.footer-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 1rem;
}
.footer-logo {
  width: auto;
  height: 52px;
  max-width: 170px;
  display: block;
  background: transparent;
}
.footer-blurb {
  margin: 0 0 .85rem;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(245, 239, 225, .72);
}
.footer-col h4,
.footer-grid h4 {
  margin: 0 0 1rem;
  color: var(--gold-bright);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-col a,
.footer-grid .footer-col a {
  display: block;
  margin: 0 0 .55rem;
  font-size: .92rem;
  color: rgba(245, 239, 225, .72);
  transition: color .2s ease;
}
.footer-col a:hover,
.footer-grid .footer-col a:hover {
  color: #fff;
}
.footer-mail {
  margin-top: .85rem !important;
  color: var(--gold-bright) !important;
  font-weight: 600;
}
.draft-note {
  margin: 0;
  font-size: .72rem;
  letter-spacing: .04em;
  color: rgba(245, 239, 225, .38);
}
.tagline-foot {
  margin: 0 0 1.15rem;
  font-family: var(--script);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.2;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 0;
}
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  min-height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 225, .16);
  font-size: 0;
  background: rgba(245, 239, 225, .04);
  transition: .2s ease;
  line-height: 1;
  color: rgba(245, 239, 225, .88);
}
.social-btn .social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; flex-shrink: 0;
  border-radius: 50%; background: transparent; color: inherit;
  margin: 0;
}
.social-btn .social-icon svg {
  display: block; width: 16px; height: 16px;
  flex-shrink: 0;
}
.social-btn .social-label {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.social-btn.social-instagram,
.social-btn.social-facebook,
.social-btn.social-tiktok {
  color: rgba(245, 239, 225, .88);
  border-color: rgba(245, 239, 225, .16);
}
.social-btn.social-instagram .social-icon,
.social-btn.social-facebook .social-icon,
.social-btn.social-tiktok .social-icon { background: transparent; }
.social-btn:hover {
  transform: translateY(-1px);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(201, 169, 97, .1);
  box-shadow: none;
}
.footer-social .social-btn {
  background: rgba(245, 239, 225, .04);
  border-color: rgba(245, 239, 225, .16);
  color: rgba(245, 239, 225, .88);
}
.footer-social .social-btn.social-instagram,
.footer-social .social-btn.social-facebook,
.footer-social .social-btn.social-tiktok {
  color: rgba(245, 239, 225, .88);
}
.footer-social .social-btn:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(201, 169, 97, .1);
}
.allergen-banner {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid rgba(26,20,16,.08);
  box-shadow: 0 10px 28px rgba(26, 20, 16, .05);
}
.allergen-banner strong {
  display: block;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.allergen-banner p {
  margin: 0;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}
.allergen-banner .btn {
  justify-self: start;
}
.faq-list { display: grid; gap: .75rem; max-width: 860px; }
.faq-item {
  background: var(--cream-2); border-radius: var(--radius-sm); padding: .35rem 1.15rem;
  border: 1px solid rgba(26,20,16,.06);
}
.faq-item summary {
  cursor: pointer; list-style: none; font-weight: 700; padding: .95rem 0;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; float: right; color: var(--red); font-weight: 700;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0 0 1rem; color: var(--ink-soft); }
.faq-item a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.contact-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: stretch;
}
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 1rem; }
.contact-list strong {
  display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem;
}
.contact-list a { font-weight: 600; }
.contact-list a:hover { color: var(--red); }
.contact-photo {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative; min-height: 320px;
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.contact-photo figcaption {
  position: absolute; left: 1rem; bottom: 1rem; color: #fff;
  font-family: var(--script); font-style: italic; font-size: 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.privacy-sec { background: var(--cream-2); }
.privacy-panel {
  max-width: 68ch;
}
.privacy-copy p { color: var(--ink-soft); margin: 0 0 1rem; max-width: 62ch; }
.privacy-copy ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  max-width: 62ch;
  color: var(--ink-soft);
}
.privacy-copy li { margin: 0 0 .45rem; }
.privacy-copy li strong { color: var(--ink); font-weight: 600; }
.privacy-copy a { color: var(--red); font-weight: 600; }
.footer-bottom {
  border-top: 0;
  padding-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(245, 239, 225, .48);
}
.footer-bottom p { margin: 0; }
.footer-copy { color: rgba(245, 239, 225, .58); }
.footer-awards {
  color: rgba(212, 180, 131, .75);
  letter-spacing: .04em;
}
@media (max-width: 700px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .footer-brand { max-width: none; }
}

/* Reveal motion ? fade + 16px rise, 500ms, staggered children */
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s var(--ease-out-expo), transform .5s var(--ease-out-expo);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 980px) {
  .hero-content {
    margin-left: auto; margin-right: auto; max-width: 640px;
    width: min(1180px, calc(100% - 2.5rem));
  }
  .path-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .path-photo {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }
  .sec-head, .story-grid, .sauce-panel, .res-grid, .fran-grid, .care-grid, .loy-grid, .footer-grid, .order-grid {
    grid-template-columns: 1fr;
  }
  .menu-cat-head { grid-template-columns: 1fr; }
  .order-mode { grid-template-columns: 1fr; }
  .order-store-list { max-height: none; }
  .range-grid, .store-grid, .loy-features { grid-template-columns: repeat(2, 1fr); }
  .food-mosaic { grid-template-columns: repeat(2, 1fr); }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .review-stats { justify-self: start; }
  .review-side { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .store-showcase {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
  }
  .store-showcase figure:first-child {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 0;
  }
  .store-showcase figure:nth-child(n+5) { display: none; }
  .story-inset { right: 4%; width: 42%; }
  .proof-row, .fran-stats, .role-cards, .award-pair { grid-template-columns: 1fr; }
  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav {
    order: 20;
    flex: 1 1 100%;
    width: 100%;
    position: static;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    transform: none;
    transition: max-height .35s cubic-bezier(.16,1,.3,1), opacity .25s ease, padding .25s ease;
    z-index: auto;
  }
  body.promo-hidden .nav { top: auto; }
  .nav.is-open {
    max-height: min(70vh, 28rem);
    opacity: 1;
    pointer-events: auto;
    padding: .35rem 0 .85rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-home { display: block; }
  .nav a {
    font-size: .9rem;
    padding: .9rem 0;
    border-bottom: 1px solid rgba(26, 20, 16, .08);
    color: var(--ink);
    text-shadow: none;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .nav a:active { color: var(--red); }
  .nav-toggle { display: inline-grid; }
  .header-actions .btn-red { display: none; }
  .logo {
    margin-right: 0;
  }
  .header-actions {
    margin-left: auto;
  }
}
@media (max-width: 640px) {
  .wrap { width: min(1180px, calc(100% - 1.5rem)); }
  .section { padding: var(--section-y-sm) 0; }
  .promo {
    font-size: .78rem;
    letter-spacing: .06em;
    padding: .5rem 2.4rem .5rem .85rem;
    line-height: 1.2;
  }
  .promo p {
    gap: .35rem;
  }
  .promo-star {
    width: 11px;
    height: 11px;
    margin-right: .2rem;
  }
  .site-header {
    padding: .55rem 0;
    background: rgba(245, 239, 225, .97);
    border-bottom: 1px solid rgba(26, 20, 16, .08);
    box-shadow: 0 8px 24px rgba(26, 20, 16, .06);
  }
  .site-header.is-scrolled,
  body.nav-open .site-header {
    padding: .55rem 0;
    background: rgba(245, 239, 225, .97);
    border-bottom: 1px solid rgba(26, 20, 16, .08);
    box-shadow: 0 8px 24px rgba(26, 20, 16, .08);
  }
  .header-inner {
    min-height: 58px;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .logo {
    margin-right: 0;
  }
  .logo img {
    height: 48px;
    max-width: 170px;
  }
  .header-actions {
    margin-left: auto;
    gap: 0;
  }
  .header-actions .btn-ghost,
  .header-actions .btn-red { display: none; }
  .nav-toggle {
    width: 44px;
    height: 44px;
    place-content: center;
    place-items: center;
    gap: 5px;
    background: rgba(26, 20, 16, .06);
    border-color: rgba(26, 20, 16, .22);
    box-shadow: none;
    flex-shrink: 0;
    position: relative;
  }
  .nav-toggle span {
    width: 15px;
    background: var(--ink);
    transition: transform .28s ease, opacity .2s ease;
  }
  .site-header.is-scrolled .nav-toggle,
  body.nav-open .site-header .nav-toggle {
    background: rgba(26, 20, 16, .06);
    border-color: rgba(26, 20, 16, .22);
  }
  .site-header.is-scrolled .nav-toggle span,
  body.nav-open .site-header .nav-toggle span {
    background: var(--ink);
  }
  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
  }
  .nav-toggle.is-open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  body.nav-open {
    overflow: hidden;
  }
  body.nav-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(26,20,16,.45);
    z-index: 40;
    animation: fadeScrim .28s ease both;
  }
  @keyframes fadeScrim {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .hero {
    min-height: 78vh;
    padding: 6.5rem 0 2.75rem;
    justify-content: flex-end;
  }
  .hero-photo {
    opacity: 1;
    inset: 0;
    height: auto;
  }
  .hero-content {
    max-width: none;
    padding-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .motion-ready .hero-content > * {
    opacity: 0;
  }
  .motion-ready .hero-eyebrow {
    animation: heroCopyIn .7s cubic-bezier(.16, 1, .3, 1) .08s both;
  }
  .motion-ready .hero-title {
    animation: heroCopyIn .75s cubic-bezier(.16, 1, .3, 1) .16s both;
  }
  .motion-ready .hero-lead {
    animation: heroCopyIn .7s cubic-bezier(.16, 1, .3, 1) .28s both;
  }
  .motion-ready .hero-ctas {
    animation: heroCopyIn .7s cubic-bezier(.16, 1, .3, 1) .38s both;
  }
  .motion-ready .hero-rewards-link {
    animation: heroCopyIn .7s cubic-bezier(.16, 1, .3, 1) .48s both;
  }
  .hero-eyebrow {
    color: var(--gold-bright);
  }
  .hero-title {
    font-size: clamp(3.2rem, 15vw, 4.4rem);
    margin-bottom: 0.75rem;
    color: #fff;
  }
  .hero-lead {
    font-size: 1rem;
    max-width: 26ch;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,.88);
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }
  .hero-ctas .btn {
    width: 100%;
    min-height: 3rem;
    padding-inline: .75rem;
    font-size: .78rem;
    border-radius: 12px;
  }
  .hero-rewards-link {
    margin-top: .9rem;
    font-size: .74rem;
  }
  .path-sec { padding: 2.5rem 0; }
  .path-photo {
    aspect-ratio: 5 / 4;
    max-height: 280px;
    border-radius: 18px;
  }
  .path-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .path-ctas .btn { width: 100%; justify-content: center; }
  .trust-inner .hero-stats,
  .trust-inner .ck-stats {
    max-width: none;
  }
  .story-copy p { font-size: .98rem; }
  .proof-row {
    margin: 1.25rem 0;
  }
  .section { padding: var(--section-y-sm) 0; }
  .section + .section {
    border-top: 1px solid rgba(26,20,16,.05);
  }
  .hero-proof {
    max-width: none;
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    gap: 1rem;
  }
  .hero-stats,
  .ck-stats,
  .ck-stats--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .hero-stats strong,
  .ck-stats-item strong {
    font-size: 1.7rem;
  }
  .hero-stats span,
  .ck-stats-item span {
    letter-spacing: .1em;
    font-size: .62rem;
  }
  .award-pair {
    gap: .55rem;
  }
  .award-badge { padding: .85rem .8rem; }
  .award-year { font-size: 1.7rem; }
  .award-label { font-size: .7rem; }
  .award-org { font-size: .6rem; }

  .marquee {
    margin-top: 0;
    padding: .85rem 0;
  }
  .marquee-group {
    gap: 1.5rem;
    padding-inline: .75rem;
  }
  .marquee-group span:not(.mq-star) {
    font-size: 1.05rem;
    letter-spacing: .1em;
  }

  .store-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: .75rem;
  }
  .store-showcase figure,
  .store-showcase figure:first-child {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    height: 100%;
  }
  .store-showcase figure:nth-child(n+4) { display: none; }
  .store-showcase figcaption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.2rem;
  }

  .menu-filters,
  .region-filters {
    display: none !important;
  }
  .mobile-select-wrap {
    display: block;
    margin-bottom: .35rem;
  }
  .region-select-wrap {
    margin-top: .35rem;
  }

  .menu-cat-head { grid-template-columns: 1fr; }
  .menu-cat-photo { min-height: 180px; order: -1; }
  .menu-dish-list { grid-template-columns: 1fr; }
  .menu-dish:nth-child(odd),
  .menu-dish:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: 0;
  }
  .menu-dish-list.has-photos .menu-dish {
    grid-template-columns: 64px 1fr;
  }
  .menu-dish-photo,
  .menu-dish-photo-slot {
    width: 64px;
  }
  .menu-dish-photo {
    height: 64px;
  }
  .menu-dish-sizes { margin-left: 0; width: 100%; }

  .store-grid, .range-grid, .food-mosaic { grid-template-columns: 1fr; }
  .range-card { border-radius: 18px; }
  .food-mosaic { gap: .75rem; }
  .food-mosaic figure:nth-child(n+3) { display: none; }

  .store-card {
    padding: 1.1rem 1.1rem 1.15rem;
    border-radius: 18px;
  }
  .store-more-wrap .btn {
    width: 100%;
    max-width: 280px;
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    border-radius: 14px;
  }
  .store-more-wrap .btn:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
  }

  .order-mode-btn {
    border-radius: 16px;
  }
  .order-mode-btn .soon-pill,
  .coming-soon-card .soon-pill {
    border-radius: 8px;
  }

  .sauce-panel {
    min-height: 0;
    border-radius: 22px;
  }
  .sauce-photo img {
    min-height: 280px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .sauce-copy {
    padding: 1.5rem 1.25rem 1.75rem;
  }
  .sauce-copy h2 {
    font-size: clamp(2.2rem, 10vw, 2.8rem);
  }
  .sauce-list li {
    padding: .75rem 0;
    font-size: .82rem;
  }

  .review-side { grid-template-columns: 1fr; }
  .review-card--feature { min-height: 0; }
  .reviews-title { font-size: clamp(2.4rem, 12vw, 3.4rem); }
  .allergen-banner {
    gap: .9rem;
    padding: 1.1rem 1.15rem;
  }
  .allergen-banner .btn { width: 100%; justify-self: stretch; }

  .sec-head { margin-bottom: 1.75rem; gap: 1rem; }
  .display-title { font-size: clamp(2.4rem, 11vw, 3.4rem); }

  .order-mode { grid-template-columns: 1fr; }
  .platform-grid { grid-template-columns: 1fr; }

  .cta-inner { gap: 1.25rem; }
  .cta-actions { min-width: 0; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .cta-actions .btn-link { width: auto; }
}

/* ========== Polish pass ========== */
::selection { background: var(--red); color: #fff; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.btn:focus-visible, .chip:focus-visible, .order-store-btn:focus-visible, .order-mode-btn:focus-visible {
  outline-offset: 3px;
}

.promo {
  border-bottom: 1px solid rgba(201,169,97,.22);
}
.promo p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: nowrap;
  justify-content: center;
  white-space: nowrap;
  max-width: 100%;
}
.promo a {
  text-decoration: none;
  color: var(--gold);
  transition: color .2s ease;
}
.promo a:hover { color: #fff; }
.promo-arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.promo a:hover .promo-arrow { transform: translateX(3px); }
.promo-star {
  width: 12px; height: 12px; display: inline-block; flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.promo-close {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background .2s ease;
}
.promo-close::before {
  content: "\00D7";
  font-size: 1.15rem;
  line-height: 1;
}
.promo-close:hover { background: rgba(245,239,225,.1); }

.nav a.is-active { color: var(--ink); }
.nav a.is-active::after { transform: scaleX(1); }

.hero-photo img {
  animation: heroDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroDrift {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.2%, 0.8%, 0); }
}
@keyframes heroEnter {
  from { transform: scale(1.14) translate3d(0, 0, 0); }
  to { transform: scale(1.02) translate3d(0, 0, 0); }
}
@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translate3d(0, 1.6rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes heroBtnIn {
  from {
    opacity: 0;
    transform: translate3d(0, 1.1rem, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* Desktop/tablet hero entrance ? keyframes so copy always animates (not just the photo) */
@media (min-width: 641px) {
  .motion-ready .hero-photo img {
    animation:
      heroEnter 1.45s cubic-bezier(.16, 1, .3, 1) both,
      heroDrift 12s ease-in-out 1.35s infinite alternate;
  }
  .motion-ready .hero-fade {
    animation: heroCopyIn 1s ease .12s both;
  }

  .motion-ready .hero-eyebrow,
  .motion-ready .hero-lead,
  .motion-ready .hero-rewards-link,
  .motion-ready .hero-title .hero-line,
  .motion-ready .hero-title .accent,
  .motion-ready .hero-ctas .btn {
    opacity: 0;
  }
  .motion-ready .hero-title .hero-line,
  .motion-ready .hero-title .accent {
    display: inline-block;
  }
  .motion-ready .hero-eyebrow {
    animation: heroCopyIn .85s cubic-bezier(.16, 1, .3, 1) .18s both;
  }
  .motion-ready .hero-title .hero-line {
    animation: heroCopyIn .9s cubic-bezier(.16, 1, .3, 1) .32s both;
  }
  .motion-ready .hero-title .accent {
    animation: heroCopyIn .9s cubic-bezier(.16, 1, .3, 1) .48s both;
  }
  .motion-ready .hero-lead {
    animation: heroCopyIn .85s cubic-bezier(.16, 1, .3, 1) .6s both;
  }
  .motion-ready .hero-ctas .btn:nth-child(1) {
    animation: heroBtnIn .8s cubic-bezier(.16, 1, .3, 1) .72s both;
  }
  .motion-ready .hero-ctas .btn:nth-child(2) {
    animation: heroBtnIn .8s cubic-bezier(.16, 1, .3, 1) .84s both;
  }
  .motion-ready .hero-rewards-link {
    animation: heroCopyIn .8s cubic-bezier(.16, 1, .3, 1) .96s both;
  }
}

.pill-live {
  box-shadow: 0 8px 24px rgba(26,20,16,.04);
}

.award-badge {
  backdrop-filter: blur(6px);
}
.award-badge.light:hover {
  border-color: rgba(227,24,55,.35);
}

.menu-cat-photo,
.range-card,
.store-showcase figure,
.story-main,
.story-inset,
.sauce-photo,
.res-photo {
  overflow: hidden;
}
.menu-cat-photo img,
.range-card img,
.store-showcase img,
.story-main img,
.sauce-photo img,
.res-photo img {
  transition: transform 1.1s cubic-bezier(.16,1,.3,1);
}
.menu-cat-photo:hover img,
.range-card:hover img,
.store-showcase figure:hover img,
.story-visuals:hover .story-main img,
.sauce-panel:hover .sauce-photo img {
  transform: scale(1.05);
}

.chip,
.order-store-btn,
.platform-card,
.news-card,
.range-card {
  will-change: transform;
}

.section {
  position: relative;
}
.section + .section::before {
  content: none;
}

.store-card,
.news-card,
.order-panel,
.res-form,
.coming-soon-card,
.platform-card {
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, background .3s ease, border-color .3s ease;
}

.field input,
.field select,
.field textarea,
.dark-form input,
.dark-form textarea,
.search input,
.loy-join input {
  transition: box-shadow .2s ease, background .2s ease;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(227,24,55,.22), transparent 65%);
  pointer-events: none;
}

.reveal {
  transition: opacity .5s var(--ease-out-expo), transform .5s var(--ease-out-expo);
}
.reveal[data-delay="1"] { transition-delay: .06s; }
.reveal[data-delay="2"] { transition-delay: .12s; }
.reveal[data-delay="3"] { transition-delay: .18s; }
.reveal[data-delay="4"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .btn,
  .chip,
  .range-card,
  .store-card,
  .news-card,
  .platform-card,
  .menu-cat-photo img,
  .range-card img,
  .store-showcase img,
  .story-main img,
  .sauce-photo img,
  .hero-photo img,
  .spin-star,
  .marquee-track,
  .pulse-dot,
  .member-card {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-photo img { transform: none; }
  .motion-ready .hero-fade,
  .hero-in .hero-fade,
  .motion-ready .hero-eyebrow,
  .motion-ready .hero-lead,
  .motion-ready .hero-rewards-link,
  .motion-ready .hero-title .hero-line,
  .motion-ready .hero-title .accent,
  .motion-ready .hero-ctas .btn,
  .motion-ready .hero-content > *,
  .hero-in .hero-content > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ?? Multi-page: inner pages + slim home ?? */
.page-inner .site-header {
  background: rgba(245, 239, 225, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(26, 20, 16, 0.08);
  color: var(--ink);
}
.page-inner .site-header .nav a { color: var(--ink-soft); }
.page-inner .site-header .nav a:hover,
.page-inner .site-header .nav a.is-active { color: var(--ink); }
.page-inner .site-header .btn-ghost {
  color: var(--ink);
  border-color: rgba(26, 20, 18, 0.25);
}
.page-inner .site-header .nav-toggle span { background: var(--ink); }

.page-hero {
  min-height: 0;
  display: flex;
  align-items: flex-start;
  padding: 2rem 0 1.5rem;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(201, 169, 97, 0.14), transparent 55%),
    linear-gradient(180deg, #f7f3ea 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(26, 20, 16, 0.06);
  overflow: hidden;
}
body.promo-hidden .page-hero {
  padding-top: 2rem;
}
.page-hero-dark {
  background: #16110f;
  color: #fff;
  border-bottom: 0;
  min-height: 0;
  position: relative;
}
.page-hero-dark::after {
  content: none;
}
.page-hero-dark .page-hero-inner {
  position: relative;
  z-index: 1;
}
.page-hero-dark .sec-lead { color: rgba(255, 255, 255, 0.72); max-width: 42ch; }
/* Full wrap width ? centered page titles on desktop */
.page-hero-inner {
  max-width: none;
  width: 100%;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero-inner .eyebrow {
  margin-bottom: 0.55rem;
}
.page-hero-inner .display-title,
.page-hero-inner .page-title {
  margin: 0 auto 0.65rem;
  font-size: clamp(2.15rem, 7.5vw, 3.75rem);
  line-height: 0.98;
  max-width: 18ch;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}
/* Inner page heroes: one clean display voice ? no script italic in the H1 */
.page-hero-inner .display-title em,
.page-hero-inner .page-title em {
  font-family: var(--display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--red);
  letter-spacing: inherit;
}
.page-hero-dark .page-hero-inner .display-title em,
.page-hero-dark .page-hero-inner .page-title em {
  color: var(--gold-bright);
}
.page-hero-inner .sec-lead {
  margin: 0 auto;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.5;
}

/* Task pages: tight page title, content starts sooner */
.page-hero-compact {
  padding: 1.35rem 0 0.85rem;
  background: var(--cream);
  border-bottom: 0;
}
body.promo-hidden .page-hero-compact {
  padding-top: 1.35rem;
}
.page-hero-compact .page-hero-inner .eyebrow {
  margin-bottom: 0.3rem;
}
.page-hero-compact .page-hero-inner .display-title,
.page-hero-compact .page-hero-inner .page-title {
  font-size: clamp(1.85rem, 4.2vw, 2.55rem);
  margin-bottom: 0.35rem;
  max-width: 22ch;
}
.page-hero-compact .page-hero-inner .sec-lead {
  font-size: 0.98rem;
  max-width: 46ch;
  color: var(--ink-soft);
}
.page-hero-compact + .section {
  padding-top: 1.25rem;
}

.home-section-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-start;
}
a.range-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
a.range-card:hover { transform: translateY(-3px); }
.home-range-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
  .home-range-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.home-actions { padding-top: var(--section-y); }
.home-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.home-actions-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-action {
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.home-action-rewards {
  background: var(--dark);
  color: #fff;
}
.home-action-rewards p { color: rgba(255,255,255,.72); }
.home-action-rewards .btn-red { align-self: flex-start; }
.home-action .display-title { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.home-action p { margin: 0; color: var(--ink-soft); max-width: 36ch; }
.home-action .btn { align-self: flex-start; margin-top: 0.5rem; }
.home-action-photo {
  margin: -2rem -2rem 0.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.home-action-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .home-actions-grid,
  .home-actions-3 { grid-template-columns: 1fr; }
}

.home-story .proof-row { display: none; }
.home-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.home-review-grid .review-card {
  min-height: 0;
}
@media (max-width: 900px) {
  .home-review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .home-review-grid { grid-template-columns: 1fr; }
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 980px) {
  .review-grid { grid-template-columns: 1fr; }
}

.page-order .page-hero-compact {
  padding: 1rem 0 0.45rem;
}
body.promo-hidden.page-order .page-hero-compact {
  padding-top: 1rem;
}
.page-order .order-sec {
  padding-top: 0.35rem;
}
.page-order .order-panel.is-step-1 .order-grid {
  grid-template-columns: 1fr;
}
.page-order .order-panel.is-step-1 .order-flow-col {
  display: none;
}
.page-order .order-panel.is-step-1 .order-store-list {
  min-height: 0;
  max-height: none;
}

@media (max-width: 980px) {
  .page-order .page-hero,
  .page-order .page-hero-compact {
    padding-top: 1rem;
    padding-bottom: .75rem;
  }
  body.promo-hidden.page-order .page-hero,
  body.promo-hidden.page-order .page-hero-compact {
    padding-top: 1rem;
  }
  .page-order .page-hero-inner .display-title {
    font-size: clamp(1.85rem, 8vw, 2.4rem);
    margin-bottom: .35rem;
  }
  .page-order .page-hero-inner .sec-lead {
    margin: 0 auto;
    font-size: .95rem;
  }
  .page-order .order-sec {
    padding-top: .35rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }
  .page-order .order-panel {
    border-radius: 22px;
    padding: 1rem 1rem 1.15rem;
    display: flex;
    flex-direction: column;
  }
  .page-order .order-panel.is-step-1 {
    min-height: calc(100dvh - var(--header-h) - var(--promo-h) - 9.5rem);
  }
  body.promo-hidden.page-order .order-panel.is-step-1 {
    min-height: calc(100dvh - var(--header-h) - 9.5rem);
  }
  .page-order .order-panel.is-step-2 {
    min-height: 0;
  }
  .page-order .order-grid {
    flex: 1;
    min-height: 0;
  }
  .page-order .order-store-col {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
  }
  .page-order .order-store-col h3 {
    font-size: 1.35rem;
    margin-bottom: .65rem;
  }
  .order-panel {
    scroll-margin-top: calc(var(--header-h) + var(--promo-h) + 12px);
  }
  body.promo-hidden .order-panel {
    scroll-margin-top: calc(var(--header-h) + 12px);
  }
  .order-panel.is-step-1 .order-flow-col {
    display: none;
  }
  .order-panel.is-step-2 .order-store-col,
  .order-panel.is-step-2 .order-empty {
    display: none !important;
  }
  .order-panel.is-step-2 .order-flow-col {
    min-height: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }
  .order-panel.is-step-2 .order-active {
    display: flex;
    flex-direction: column;
    gap: .85rem;
  }
  .order-panel.is-step-2 .order-selected {
    order: 0;
    margin: 0;
    padding: .85rem 1rem;
    background: var(--cream);
    border-radius: 16px;
  }
  .order-panel.is-step-2 .order-selected h3 {
    font-size: 1.35rem;
  }
  .order-panel.is-step-2 .order-mode {
    order: 1;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
    margin: 0;
    padding: .28rem;
    background: var(--cream);
    border-radius: 14px;
  }
  .order-panel.is-step-2 .order-mode-btn {
    padding: .7rem .65rem;
    border-radius: 11px;
    background: transparent;
    border-color: transparent;
  }
  .order-panel.is-step-2 .order-mode-btn.is-active {
    background: #fff;
    color: var(--ink);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(26,20,16,.08);
  }
  .order-panel.is-step-2 .om-title {
    font-size: 1rem;
  }
  .order-panel.is-step-2 .om-sub {
    font-size: .7rem;
  }
  .order-panel.is-step-2 .order-pane {
    order: 2;
  }
  .order-store-list {
    max-height: none;
    flex: 1;
    min-height: 14rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: .35rem;
  }
  .order-steps {
    margin-bottom: .85rem;
  }
  .order-store-btn {
    padding: 1rem 1.05rem;
    min-height: 3.5rem;
  }
  .page-order .platform-grid {
    grid-template-columns: 1fr;
    gap: .65rem;
  }
  .page-order .platform-card {
    min-height: 4.25rem;
    padding: 1.05rem 1.15rem;
  }
  .page-order .delivery-lead {
    margin: 0 0 .65rem;
    font-size: .95rem;
  }

  /* Reservation date overflow on mobile */
  .page-book .res-form,
  .page-book .app-panel,
  .page-book .field {
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }
  .page-book #resDate {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }
  .page-book .store-pick-row {
    max-width: 100%;
  }
}

/* Book page polish */
.page-book .page-hero-photo-mid {
  min-height: min(44vh, 420px);
}
.page-franchise .page-hero {
  padding-bottom: 1.75rem;
}
.page-franchise .franchise {
  padding-top: 2.25rem;
  background: #16110f;
}
.page-franchise .dark-form {
  position: sticky;
  top: calc(var(--header-h) + var(--promo-h) + 1rem);
}
body.promo-hidden.page-franchise .dark-form {
  top: calc(var(--header-h) + 1rem);
}
@media (max-width: 980px) {
  .fran-proof {
    grid-template-columns: 1fr;
  }
  .fran-proof-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: .85rem;
    text-align: left;
    padding: .95rem 1.1rem;
  }
  .fran-proof-item strong {
    margin: 0;
    font-size: 1.75rem;
  }
  .page-franchise .dark-form {
    position: static;
  }
}
.page-careers .page-hero-compact {
  padding-bottom: 1rem;
}
.page-careers .careers {
  padding-top: 2rem;
}
.page-careers .care-copy > .eyebrow,
.page-careers .care-copy > .display-title {
  display: none;
}
@media (max-width: 520px) {
  .page-careers .store-pick-row {
    grid-template-columns: 1fr;
  }
  .page-careers #careNearestBtn {
    width: 100%;
    justify-content: center;
  }
}
.page-book .reservations {
  padding-top: 2rem;
}
.page-book .res-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}
.page-book .res-copy .eyebrow,
.page-book .res-copy .display-title {
  display: none;
}
.page-book .res-copy > p:first-of-type {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0;
}
.page-book .res-form {
  position: sticky;
  top: calc(var(--header-h) + var(--promo-h) + 1rem);
}
body.promo-hidden.page-book .res-form {
  top: calc(var(--header-h) + 1rem);
}
.page-book .app-form-top,
.page-book .field:has(#resName) {
  scroll-margin-top: calc(var(--header-h-scrolled) + var(--promo-h) + 5.5rem);
}
body.promo-hidden.page-book .app-form-top,
body.promo-hidden.page-book .field:has(#resName) {
  scroll-margin-top: calc(var(--header-h-scrolled) + 5.5rem);
}
.page-book .feature-list {
  margin-top: 1.25rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
}
.page-book .feature-list li + li {
  margin-top: .65rem;
  padding-top: .65rem;
  border-top: 1px solid rgba(26,20,16,.08);
}
@media (max-width: 980px) {
  .page-book .res-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .page-book .res-form {
    position: static;
    order: -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .page-book .res-photo {
    display: none;
  }
  .page-book .reservations .wrap {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(1180px, calc(100% - 1.5rem));
  }
  .store-search-row {
    grid-template-columns: 1fr;
  }
  #findNearestBtn { width: 100%; }
  .time-picks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .app-form-top {
    flex-direction: column;
  }
  .app-steps { width: 100%; }
  .app-step { flex: 1; text-align: center; }
  .app-form-nav {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .res-form,
  .dark-form {
    padding: 1.15rem 1rem 1.25rem;
    border-radius: 22px;
    margin-inline: 0;
  }
  .page-book .page-hero-compact,
  .page-hero-compact {
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }
  .page-hero:not(.page-hero-photo) {
    padding-top: 1.25rem;
    padding-bottom: 1.1rem;
  }
  .page-hero-photo-mid {
    min-height: min(42vh, 380px);
    padding: 2.75rem 0 2.25rem;
  }
  .page-book .reservations {
    padding-top: 0.75rem;
    padding-bottom: 1.75rem;
  }
  .page-hero:not(.page-hero-photo) .page-hero-inner .display-title,
  .page-hero:not(.page-hero-photo) .page-hero-inner .page-title {
    font-size: clamp(2rem, 9.5vw, 2.75rem);
    max-width: none;
  }
  .page-hero-photo-mid .page-hero-inner .display-title {
    font-size: clamp(2.1rem, 8vw, 3.2rem);
  }
  .party-picks {
    gap: .4rem;
  }
  .party-picks button {
    width: 2.55rem;
    height: 2.55rem;
    flex-basis: 2.55rem;
    font-size: .82rem;
  }
  .store-pick-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

/* Loyalty ? no duplicate heading */
.page-rewards .loy-copy > .eyebrow,
.page-rewards .loy-copy > .display-title {
  display: none;
}
.page-rewards .loyalty {
  padding-top: 2rem;
}
.page-rewards .page-hero-photo-mid {
  min-height: min(46vh, 440px);
}

.home-franchise.section.franchise {
  padding: var(--section-y) 0;
}
.home-reviews-head {
  display: block;
  margin-bottom: 1.5rem;
  text-align: center;
}
.home-reviews-head .section-title {
  margin: 0 auto;
}

.home-franchise {
  background: var(--dark);
  color: #fff;
  padding: var(--section-y) 0;
}
.home-fran {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.home-fran .display-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
.home-fran p { color: rgba(255, 255, 255, 0.72); max-width: 40ch; margin: 0.75rem 0 0; }

.nav a.is-active::after { transform: scaleX(1); }

/* Home loyalty band */
.home-loyalty {
  background: linear-gradient(135deg, #1A1410 0%, #2A2018 100%);
  color: #fff;
  padding: var(--section-y) 0;
}
.home-loyalty-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
}
.home-loyalty-copy .display-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: .75rem;
}
.home-loyalty-copy p {
  margin: 0;
  color: rgba(255,255,255,.72);
  max-width: 42ch;
}
.home-loyalty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.home-loyalty .btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.home-loyalty .btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.home-loyalty .btn-link-light {
  color: rgba(255,255,255,.88);
}
.home-loyalty .btn-link-light:hover {
  color: #fff;
}
.home-loyalty-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}
.home-loyalty-perks li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.home-loyalty-perks strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  color: var(--gold-bright);
  margin-bottom: .2rem;
}
.home-loyalty-perks span {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
@media (max-width: 800px) {
  .home-loyalty-inner { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Loyalty popup */
.loy-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.loy-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.loy-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 20, 16, .62);
  backdrop-filter: blur(4px);
}
.loy-modal-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: var(--cream);
  color: var(--ink);
  border-radius: 28px;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: 0 24px 60px rgba(26, 20, 16, .28);
  transform: translateY(16px) scale(.98);
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.loy-modal.is-open .loy-modal-card {
  transform: none;
}
.loy-modal-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}
.loy-modal-card .eyebrow { margin-bottom: .5rem; }
.loy-modal-card h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 2.6rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: .95;
  margin: 0 0 .65rem;
}
.loy-modal-card h2 em {
  font-family: var(--script);
  font-style: italic;
  text-transform: none;
  color: var(--gold);
}
.loy-modal-card > p {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
.loy-modal-form {
  display: grid;
  gap: .65rem;
}
.loy-modal-form input {
  border: 0;
  background: #fff;
  border-radius: 14px;
  padding: .95rem 1rem;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(26,20,16,.1);
}
.loy-modal-form input:focus {
  box-shadow: 0 0 0 2px var(--gold);
}
.loy-modal-foot {
  margin: .85rem 0 0;
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
}
.loy-modal-foot a { color: var(--red); font-weight: 700; }
body.loy-modal-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  .loy-modal, .loy-modal-card { transition: none; }
}


/* ===== Modernisation 2026 ? preview-inspired polish ===== */
.hero-proof {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 1.15rem 0 0;
  font-size: .82rem;
  color: rgba(255,255,255,.88);
  letter-spacing: .04em;
}
.hero-stars { color: var(--gold-bright); letter-spacing: .08em; font-size: .9rem; }
.hero-ctas { margin-top: .15rem; }
.hero-content { padding-bottom: 1.25rem; }
.hero-title .accent { color: var(--gold-bright); }

/* Soft glass lift on cream surfaces */
.glass-panel {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow: 0 18px 40px rgba(26,20,16,.08);
}

/* Photo page heroes (franchise + mid variants for book/locations/rewards) */
.page-hero-photo {
  position: relative;
  min-height: min(78vh, 720px);
  display: grid;
  align-items: center;
  padding: 4.5rem 0 4rem;
  background: #16110f;
  border-bottom: 0;
  overflow: hidden;
}
.page-hero-photo-mid {
  min-height: min(48vh, 460px);
  padding: 3.25rem 0 2.75rem;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
.page-hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,10,8,.55) 0%, rgba(14,10,8,.72) 55%, rgba(14,10,8,.88) 100%),
    linear-gradient(90deg, rgba(14,10,8,.35), transparent 55%);
}
.page-hero-scrim-warm {
  background:
    linear-gradient(145deg, rgba(58,10,18,.72) 0%, rgba(14,10,8,.55) 45%, rgba(14,10,8,.88) 100%),
    linear-gradient(180deg, rgba(14,10,8,.35) 0%, rgba(14,10,8,.82) 100%);
}
.page-hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-inline: auto;
  display: grid;
  justify-items: center;
}
.page-hero-photo .page-hero-inner .display-title {
  max-width: 14ch;
  color: #fff;
  font-size: clamp(2.8rem, 9vw, 5.2rem);
}
.page-hero-photo-mid .page-hero-inner .display-title {
  max-width: 16ch;
  font-size: clamp(2.35rem, 7vw, 4.1rem);
}
.page-hero-photo .page-hero-inner .display-title em {
  font-family: var(--script);
  font-style: italic;
  text-transform: none;
  color: var(--gold-bright);
  letter-spacing: 0;
  display: inline-block;
}
.page-hero-photo .sec-lead {
  color: rgba(255,255,255,.86);
  max-width: 38ch;
  margin: 0 0 1.5rem;
}
.page-hero-photo .eyebrow { color: var(--gold-bright); }
.page-hero-photo .hero-ctas {
  margin-top: 0;
  justify-content: center;
}
.page-hero-photo .btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
body.promo-hidden .page-hero-photo { padding-top: 4.5rem; }
body.promo-hidden .page-hero-photo-mid { padding-top: 3.25rem; }
.page-hero-photo-mid + .section {
  padding-top: 2rem;
}

/* Segmented line steppers */
.app-form-top-stack {
  flex-direction: column;
  align-items: stretch;
}
.app-steps-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: .55rem;
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.app-step-line {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: .45rem;
}
.app-step-bar {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(26,20,16,.12);
  transition: background .25s ease;
}
.app-step-line.is-active,
.app-step-line.is-done { color: var(--gold); }
.app-step-line.is-active .app-step-bar,
.app-step-line.is-done .app-step-bar { background: var(--gold); }
.app-form-nav .btn-gold,
.app-form-nav .btn-red { width: 100%; }
.field input,
.field textarea,
.field select {
  background: var(--cream);
  border-radius: 12px;
}
.dark-form .field input,
.dark-form .field textarea,
.dark-form .field select {
  background: #FAF7F2;
  box-shadow: inset 0 0 0 1px rgba(26,20,16,.08);
  border: 0;
  padding: .9rem 1rem;
  border-radius: 12px;
  outline: none;
}
.dark-form .field input:focus,
.dark-form .field textarea:focus {
  box-shadow: 0 0 0 2px var(--gold);
}
.fran-summary {
  margin: 0 0 1.15rem;
  padding: 1.15rem 1.2rem 1.05rem;
  border-radius: 18px;
  background: var(--cream);
  border: 1px solid rgba(26, 20, 16, .06);
  box-shadow: none;
  font-size: inherit;
  color: inherit;
  line-height: 1.4;
}
.fran-summary-kicker {
  margin: 0 0 .85rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.fran-summary-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: .92rem;
}
.fran-summary-list {
  margin: 0;
  display: grid;
  gap: 0;
}
.fran-summary-row {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: .65rem 1rem;
  align-items: start;
  padding: .7rem 0;
  border-top: 1px solid rgba(26, 20, 16, .08);
}
.fran-summary-row:first-child { border-top: 0; padding-top: 0; }
.fran-summary-row:last-child { padding-bottom: 0; }
.fran-summary-row dt {
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .15rem;
}
.fran-summary-row dd {
  margin: 0;
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 520px) {
  .fran-summary-row {
    grid-template-columns: 1fr;
    gap: .2rem;
    padding: .75rem 0;
  }
  .fran-summary-row dt { padding-top: 0; }
}

/* Rewards ? CR80 credit-card loyalty card */
.member-card-stage {
  perspective: 1100px;
  display: grid;
  justify-items: center;
  align-content: start;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  gap: .75rem;
}
.member-card-hint {
  margin: 0;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.member-card {
  /* ISO/IEC 7810 ID-1 (CR80): 85.60 ? 53.98 mm */
  --mc-ratio: 53.98 / 85.60;
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 85.6 / 53.98;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  background: #0c0b0a;
  border: 1px solid rgba(212, 180, 131, .45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .12) inset,
    0 -1px 0 rgba(0, 0, 0, .5) inset,
    0 24px 50px rgba(26, 20, 16, .32);
  transform-style: preserve-3d;
  transition: transform .18s ease-out, box-shadow .25s ease;
  will-change: transform;
}
.member-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(245, 224, 180, .65),
    rgba(201, 169, 97, .15) 40%,
    rgba(255, 255, 255, .06) 60%,
    rgba(201, 169, 97, .4)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
.member-card .mc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(80% 70% at 100% 0%, rgba(201, 169, 97, .28), transparent 50%),
    radial-gradient(70% 80% at 0% 100%, rgba(227, 24, 55, .2), transparent 48%),
    linear-gradient(155deg, #1f1915 0%, #12100e 42%, #080707 100%);
}
.member-card .mc-glow {
  position: absolute;
  width: 55%;
  height: 80%;
  right: -8%;
  top: -25%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 205, 150, .16), transparent 70%);
  transition: transform .25s ease-out;
}
.member-card .mc-bg-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, transparent 34%, rgba(255, 255, 255, .035) 50%, transparent 66%);
}
.member-card .mc-bg-lines {
  position: absolute;
  inset: 0;
  opacity: .4;
  background: repeating-linear-gradient(
    -32deg,
    transparent 0,
    transparent 10px,
    rgba(245, 239, 225, .03) 10px,
    rgba(245, 239, 225, .03) 11px
  );
  mask-image: linear-gradient(100deg, transparent 10%, #000 55%, #000);
}
.member-card .mc-sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, .06) 50%,
    transparent 58%
  );
  transform: translateX(-30%);
  transition: transform .4s var(--ease-out-expo);
}
.member-card:hover .mc-sheen {
  transform: translateX(24%);
}
.member-card .mc-face {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1rem 1.15rem .95rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.mc-top,
.mc-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .85rem;
  flex-wrap: nowrap;
}
.mc-bottom { align-items: flex-end; }
.mc-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .65rem .35rem;
  border-radius: 8px;
  background: #F5EFE1;
  box-shadow:
    0 0 0 1px rgba(201, 169, 97, .45),
    0 4px 12px rgba(0, 0, 0, .28);
}
.mc-logo {
  display: block;
  height: 38px;
  width: auto;
  max-width: 168px;
  object-fit: contain;
  object-position: left center;
}
.mc-badge {
  margin: .2rem 0 0;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245, 239, 225, .72);
  white-space: nowrap;
  flex-shrink: 0;
}
.mc-info {
  min-width: 0;
  display: grid;
  gap: .3rem;
}
.mc-name {
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(1.1rem, 3.2vw, 1.35rem);
  letter-spacing: .01em;
  line-height: 1.1;
  color: #fff;
}
.mc-id {
  margin: .15rem 0 0;
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .16em;
  color: rgba(245, 239, 225, .88);
}
.mc-qr {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 4px;
  border-radius: 6px;
  background: #F5EFE1;
  opacity: .92;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, .08),
    0 6px 14px rgba(0, 0, 0, .3);
}
.mc-qr img,
.mc-qr svg {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

@media (max-width: 480px) {
  .member-card-stage { max-width: 360px; }
  .member-card .mc-face { padding: .85rem .9rem .8rem; }
  .mc-logo { height: 32px; max-width: 140px; }
  .mc-logo-plate { padding: .32rem .5rem .28rem; }
  .mc-badge { font-size: .56rem; letter-spacing: .1em; }
  .mc-qr { width: 48px; height: 48px; padding: 3px; }
  .mc-name { font-size: 1.05rem; }
  .mc-id { font-size: .82rem; letter-spacing: .12em; }
}

.loy-auth-card {
  margin-top: 1.4rem;
  background: #fff;
  border-radius: var(--card-radius-lg);
  padding: var(--space-5);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
}
.loy-signin-link {
  margin: .85rem 0 0;
  text-align: center;
  font-size: .9rem;
  color: var(--ink-soft);
}
.loy-signin-link a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.loy-signin-link a:hover { color: var(--red); }
.loy-join {
  display: grid;
  gap: .65rem;
}
.loy-join input {
  width: 100%;
  min-width: 0;
  border-radius: 12px;
  background: var(--cream);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  background: #16110f;
  color: #fff;
  border-radius: 28px;
  padding: 2rem 1.75rem;
  margin: 2.5rem 0 2rem;
  box-shadow: 0 20px 50px rgba(26,20,16,.18);
  position: relative;
  overflow: hidden;
}
.how-steps::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none;
}
.how-steps article { position: relative; z-index: 1; }
.how-num {
  display: block;
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: .55rem;
}
.how-steps h3 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 .45rem;
  color: var(--cream);
}
.how-steps p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  line-height: 1.45;
  max-width: 28ch;
}

/* Locations ? image cards + map */
.store-map-shell {
  position: relative;
  margin: 0 0 1.75rem;
  border-radius: 24px;
  overflow: hidden;
  background: #e8e4de;
  box-shadow: 0 16px 40px rgba(26,20,16,.08);
  border: 1px solid rgba(26,20,16,.08);
}
.store-map {
  height: min(420px, 58vh);
  width: 100%;
  background: #e8e4de;
  z-index: 0;
}
.store-map.leaflet-container {
  font: inherit;
}
/* Never filter Leaflet panes ? CSS filters hide marker dots in Chrome/Safari */
.store-map .leaflet-marker-pane,
.store-map .leaflet-shadow-pane {
  z-index: 660 !important;
}
.store-map .leaflet-control-zoom a {
  color: #1a1410;
  text-decoration: none;
}
.leaflet-container .ck-store-pin.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
  width: 22px !important;
  height: 22px !important;
  margin-left: -11px !important;
  margin-top: -11px !important;
}
.ck-store-pin-dot {
  display: block;
  width: 16px;
  height: 16px;
  margin: 3px;
  border-radius: 50%;
  background: #E31837;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 10px rgba(26, 20, 16, .45);
  box-sizing: border-box;
}
.ck-store-pin.is-active .ck-store-pin-dot {
  width: 18px;
  height: 18px;
  margin: 2px;
  background: #C41E3A;
  box-shadow: 0 0 0 4px rgba(227, 24, 55, .28), 0 3px 12px rgba(26, 20, 16, .45);
}
.store-map-nearest {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 800;
  box-shadow: 0 10px 24px rgba(26,20,16,.18);
}
.leaflet-popup-content-wrapper {
  border-radius: 16px !important;
  box-shadow: 0 14px 34px rgba(26,20,16,.18) !important;
  padding: 0;
  overflow: hidden;
}
.leaflet-popup-content {
  margin: 0 !important;
  min-width: 180px;
}
.ck-map-popup {
  padding: .95rem 1rem 1rem;
}
.ck-map-popup h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 .25rem;
}
.ck-map-popup p {
  margin: 0 0 .7rem;
  color: var(--ink-soft);
  font-size: .85rem;
}
.ck-map-popup a {
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.store-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  gap: 0;
}
.store-card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #1a1410;
  border-bottom: 1px solid rgba(26, 20, 16, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.store-card-media.is-logo {
  background: #fff;
  padding: 1.35rem 1.4rem 2.9rem;
}
.store-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.store-card-media.is-logo img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 58%;
  object-fit: contain;
}
.store-card:hover .store-card-media.has-photo img { transform: scale(1.04); }
.store-card-media::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.92) 55%, #fff 100%);
  pointer-events: none;
}
.store-card-media.has-photo::after {
  background: linear-gradient(180deg, rgba(26,20,16,0) 0%, rgba(26,20,16,.35) 55%, rgba(26,20,16,.72) 100%);
}
.store-card-media.has-photo .store-card-badge {
  color: rgba(255, 255, 255, .88);
}
.store-card-media.has-photo .store-card-name {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .35);
}
.store-card-badge {
  position: absolute;
  z-index: 2;
  top: .75rem;
  left: .85rem;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.store-card-badge.is-soon {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: .28rem .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  box-shadow: 0 2px 8px rgba(201, 169, 97, .35);
}
.store-card-media.has-photo .store-card-badge.is-soon {
  color: var(--ink);
  background: var(--gold);
}
.store-card-name {
  position: absolute;
  z-index: 2;
  left: .95rem;
  right: .95rem;
  bottom: .7rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.1vw, 1.45rem);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.05;
}
.store-card-body {
  padding: 1rem 1.1rem 1.15rem;
  display: grid;
  gap: .55rem;
  flex: 1;
}
.store-card .store-meta {
  margin: 0;
}
.store-card .actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: .25rem;
}
.store-card .actions .btn {
  width: 100%;
  justify-content: center;
  padding-inline: .7rem;
  font-size: .72rem;
}
.store-card .actions .btn-ghost {
  background: #fff;
}
.store-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .5rem;
}

/* Mobile review reel */
.review-reel-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 0;
  background: var(--dark);
  color: #fff;
}
.review-reel-media {
  display: none;
}
.review-quote {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 .85rem;
  position: relative;
  z-index: 1;
}
.review-reel-body { padding: 1.35rem 1.3rem 1.2rem; position: relative; z-index: 1; }
.review-reel-body footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
}

/* Privacy editorial */
.page-hero-legal .legal-title {
  max-width: 12ch;
}
.page-hero-legal .legal-title em {
  font-family: var(--script) !important;
  font-style: italic !important;
  text-transform: none !important;
  color: var(--gold) !important;
  letter-spacing: 0 !important;
}
body[data-page="rewards"] .page-hero-inner .display-title em,
body[data-page="locations"] .page-hero-inner .display-title em {
  font-family: var(--script) !important;
  font-style: italic !important;
  text-transform: none !important;
  color: var(--gold) !important;
  letter-spacing: 0 !important;
}
.legal-updated {
  margin: .35rem 0 0;
  font-size: .82rem;
  color: var(--muted);
}
.privacy-sec { background: var(--cream); }
.privacy-block {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(26,20,16,.1);
}
.privacy-block h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin: 0 0 .65rem;
}
.privacy-block p { margin: 0; max-width: 62ch; }

/* Modal polish */
.loy-modal-card {
  background: #F5F1E5;
  border: 1px solid rgba(26,20,16,.08);
}
.loy-modal-form input {
  background: #fff;
  border-radius: 10px;
}
.loy-modal-form .btn-gold,
.loy-modal-form .btn-red { border-radius: 12px; }

@media (max-width: 980px) {
  .how-steps { grid-template-columns: 1fr; gap: 1.35rem; padding: 1.6rem 1.35rem; }
  .store-map { height: 320px; }
  .page-hero-photo { min-height: 70vh; }
  .page-hero-photo-mid { min-height: min(42vh, 380px); }
}

@media (max-width: 720px) {
  .home-review-grid.review-reel {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 .15rem 1rem;
    margin-inline: -.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .review-reel-card {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
    min-height: 420px;
    border-radius: 24px;
    background: #111;
    color: #fff;
    box-shadow: 0 16px 36px rgba(26,20,16,.16);
  }
  .review-reel-media {
    display: block;
    position: absolute;
    inset: 0;
  }
  .review-reel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .review-reel-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,10,8,.1) 20%, rgba(14,10,8,.82) 100%);
  }
  .review-reel-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 1.25rem;
  }
  .review-quote {
    color: #fff;
    font-size: 1.2rem;
  }
  .review-reel-body footer { color: rgba(255,255,255,.8); }
  .review-reel-body .review-tag {
    background: rgba(255,255,255,.12);
    color: #fff;
  }
  .store-card .actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .member-card,
  .page-hero-media img,
  .store-card-media img { transition: none; animation: none; }
  .member-card .mc-sheen { transition: none; transform: none !important; }
}

/* ===== Homepage polish pass ===== */

/* Menu + reviews: grid on desktop, horizontal rail on small screens */
.menu-rail,
.review-rail {
  display: grid;
  gap: 1rem;
  overflow: visible;
  padding: 0;
  scroll-snap-type: none;
}
.menu-rail {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.review-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.menu-rail-card {
  min-width: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--cream-2);
}
.menu-rail-card img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
}
.menu-rail-card .range-body {
  flex: 1;
}
.menu-rail-card:hover {
  transform: translateY(-4px);
}
.home-section-cta {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.review-rail-card {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.35rem 1.3rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(26,20,16,.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(26,20,16,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 220px;
}
.review-rail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26,20,16,.1);
}
.review-rail-card .stars {
  color: var(--gold);
  letter-spacing: .08em;
  font-size: .95rem;
}
.review-rail-card > p {
  margin: 0;
  flex: 1;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}
.review-rail-card footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: .75rem;
  margin-top: auto;
  padding-top: .35rem;
  border-top: 0;
}
.review-rail-card .reviewer strong {
  display: block;
  font-size: .9rem;
}
.review-rail-card .reviewer span {
  display: block;
  font-size: .75rem;
  color: var(--muted);
}
.review-source {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.review-source::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: var(--cream-3);
  flex-shrink: 0;
}
.review-source[data-source="google"]::before {
  background: conic-gradient(from 0deg, #EA4335 0 25%, #FBBC05 25% 50%, #34A853 50% 75%, #4285F4 75% 100%);
}
.review-source[data-source="tripadvisor"]::before { background: #34E0A1; }

@media (max-width: 980px) {
  .menu-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .menu-rail,
  .review-rail {
    display: flex;
    gap: .85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 .15rem 1rem;
    margin-inline: calc(-1 * max(0.75rem, (100vw - 100%) / 2));
    padding-inline: max(0.75rem, (100vw - 100%) / 2);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .menu-rail-card {
    flex: 0 0 min(200px, 68vw);
    scroll-snap-align: start;
  }
  .review-rail-card {
    flex: 0 0 min(280px, 85vw);
    scroll-snap-align: start;
  }
}

/* Home franchise CTA band */
.home-fran {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.home-fran .display-title { font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 0; }
.home-fran p { color: rgba(255, 255, 255, 0.72); max-width: 42ch; margin: var(--head-gap) 0 0; }
.home-fran .btn { flex-shrink: 0; }

.path-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .85rem 1.15rem;
  margin-top: 1.15rem;
}

.cta-band { padding: var(--section-y) 0; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1.15rem;
}

.home-loyalty .btn-ghost,
.home-loyalty .btn-link-light {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.home-loyalty-actions {
  align-items: center;
}

/* Rewards corner toast (replaces intrusive modal) */
.loy-modal {
  place-items: end;
  justify-items: end;
  padding: 1rem 1rem 5.5rem;
  background: transparent;
}
.loy-modal.is-open {
  pointer-events: none;
}
.loy-modal-backdrop {
  display: none;
}
.loy-modal-card {
  pointer-events: auto;
  width: min(360px, calc(100vw - 2rem));
  border-radius: 18px;
  padding: 1.15rem 1.2rem 1.1rem;
  box-shadow: 0 18px 48px rgba(26, 20, 16, .28);
  transform: translateY(12px) translateX(8px);
  border: 1px solid rgba(26,20,16,.08);
}
.loy-modal.is-open .loy-modal-card {
  transform: none;
}
.loy-modal-card h2 {
  font-size: clamp(1.45rem, 3.5vw, 1.75rem);
  margin: 0 0 .4rem;
}
.loy-modal-card > p {
  font-size: .88rem;
  margin: 0 0 .85rem;
}
.loy-modal-close {
  top: .55rem;
  right: .55rem;
  width: 30px;
  height: 30px;
  font-size: 1.05rem;
}
body.loy-modal-open { overflow: auto; }

@media (max-width: 800px) {
  .home-actions-grid { grid-template-columns: 1fr; }
  .home-fran {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu-rail-card:hover,
  .review-rail-card:hover,
  .range-card:hover {
    transform: none;
  }
}

/* Mobile sticky Order / Find a Store dock */
.mobile-dock {
  display: none;
}
@media (max-width: 900px) {
  .loy-modal { padding-bottom: calc(var(--dock-h) + 1.25rem + env(safe-area-inset-bottom, 0px)); }
  .mobile-dock {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    min-height: var(--dock-h);
    padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom, 0px));
    background: rgba(245, 239, 225, .96);
    backdrop-filter: blur(16px) saturate(1.1);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    border-top: var(--card-border);
    box-shadow: 0 -10px 28px rgba(26, 20, 16, 0.1);
  }
  .mobile-dock-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 46px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--red);
    color: #fff;
    border: 1.5px solid var(--red);
  }
  .mobile-dock-btn:nth-child(2) {
    background: transparent;
    color: var(--ink);
    border-color: rgba(26, 20, 16, .28);
  }
  .mobile-dock-btn.is-active {
    box-shadow: 0 8px 18px rgba(227, 24, 55, .22);
  }
  .mobile-dock-btn:nth-child(2).is-active {
    border-color: var(--ink);
    background: rgba(26, 20, 16, .04);
    box-shadow: none;
  }
  .mobile-dock-ico {
    display: inline-flex;
    line-height: 0;
  }
  body.nav-open .mobile-dock { opacity: .35; pointer-events: none; }
}
@media (min-width: 901px) {
  .mobile-dock { display: none !important; }
}


/* ========== UX polish pass (Phase 1?2b) ========== */

/* Shared dark section grain + warm glow */
.dark-grain,
.cta-band,
.home-loyalty,
.home-franchise,
.how-steps,
.sauce-panel,
.page-hero-dark,
body[data-page="menu"] .page-hero,
body[data-page="story"] .page-hero,
body[data-page="rewards"] .page-hero:not(.page-hero-photo) {
  position: relative;
}
.dark-grain::after,
.cta-band::after,
.home-loyalty::after,
.home-franchise::after,
.sauce-panel::after,
.page-hero-dark::before,
body[data-page="menu"] .page-hero::before,
body[data-page="story"] .page-hero::before,
body[data-page="rewards"] .page-hero:not(.page-hero-photo)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .28;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}
.cta-band > *,
.home-loyalty > *,
.home-franchise > *,
.sauce-panel > *,
.page-hero-dark > *,
body[data-page="menu"] .page-hero > *,
body[data-page="story"] .page-hero > *,
body[data-page="rewards"] .page-hero:not(.page-hero-photo) > * {
  position: relative;
  z-index: 1;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(227, 24, 55, .18), transparent 70%),
    radial-gradient(ellipse 50% 40% at 30% 70%, rgba(201, 169, 97, .12), transparent 65%);
  pointer-events: none;
  z-index: 1;
}
.sauce-photo {
  position: relative;
}
.sauce-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(201, 169, 97, .22), transparent 70%);
  pointer-events: none;
}

/* Dark page heroes (menu / story / rewards) ? keep cream elsewhere */
body[data-page="menu"] .page-hero,
body[data-page="story"] .page-hero {
  background: #16110f;
  color: #fff;
  border-bottom: 0;
}
body[data-page="rewards"] .page-hero:not(.page-hero-photo) {
  background: linear-gradient(145deg, #3a0a12 0%, #1a1410 55%, #16110f 100%);
  color: #fff;
  border-bottom: 0;
}
body[data-page="menu"] .page-hero .sec-lead,
body[data-page="story"] .page-hero .sec-lead,
body[data-page="rewards"] .page-hero .sec-lead {
  color: rgba(255,255,255,.72);
}
body[data-page="menu"] .page-hero .display-title,
body[data-page="story"] .page-hero .display-title,
body[data-page="rewards"] .page-hero .display-title {
  color: var(--cream);
}
body[data-page="menu"] .page-hero .display-title em,
body[data-page="story"] .page-hero .display-title em,
body[data-page="rewards"] .page-hero .display-title em {
  font-family: var(--script);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  color: var(--gold-bright);
}

/* Story teaser dark band */
.home-story {
  background: #12100e;
  color: #fff;
}
.home-story .story-copy h2 { color: var(--cream); }
.home-story .story-copy p { color: rgba(255,255,255,.72); }
.home-story .btn-link { color: var(--cream); }
.home-story .btn-link:hover { color: var(--gold-bright); }

/* Card system ? one radius, shadow, lift */
.range-card,
.store-card,
.news-card,
.platform-card,
.review-card,
.coming-soon-card,
.menu-rail-card,
.review-rail-card {
  border-radius: var(--card-radius-lg);
  transition: transform .25s var(--ease-out-expo), box-shadow .25s var(--ease-out-expo);
}
.range-card img,
.store-card-media img,
.news-card img,
.menu-cat-photo img,
.platform-card img {
  transition: transform .6s var(--ease-out-expo);
}
@media (hover: hover) {
  .range-card:hover,
  .store-card:hover,
  .news-card:hover,
  .platform-card:hover,
  .menu-rail-card:hover,
  .review-rail-card:hover,
  a.range-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-lift);
  }
  .range-card:hover img,
  .store-card:hover .store-card-media img,
  .menu-cat-photo:hover img {
    transform: scale(1.05);
  }
}

/* Award badges ? soft highlight, no looping shine */
.ck-stats-item.is-award,
.footer-awards,
.award-badge {
  position: relative;
}

/* Store live status */
.status.is-open { color: var(--green); }
.status.is-closed { color: var(--muted); }
.store-card.is-map-active {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  box-shadow: var(--card-shadow-lift);
}
.store-card.is-expanded .store-card-body { display: block; }
/* Date rail (mobile/tablet) */
.date-rail {
  display: none;
  gap: .5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: .15rem 0 .35rem;
  margin: .35rem 0 .5rem;
  scrollbar-width: thin;
}
.date-rail-day {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 4.4rem;
  min-height: 4.4rem;
  padding: .55rem .45rem;
  border-radius: 14px;
  border: 1.5px solid rgba(26,20,16,.12);
  background: var(--cream);
  display: grid;
  place-items: center;
  gap: .15rem;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: border-color .2s var(--ease-out-expo), background .2s var(--ease-out-expo), color .2s var(--ease-out-expo);
}
.date-rail-day .dow {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.date-rail-day .dom {
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: .02em;
}
.date-rail-day .mon {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.date-rail-day.is-active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.date-rail-day.is-active .dow,
.date-rail-day.is-active .mon { color: rgba(255,255,255,.8); }
@media (max-width: 899px) {
  .date-rail { display: flex; }
  .date-field-shell { display: none; }
}
@media (min-width: 900px) {
  .date-rail { display: none !important; }
  .date-field-shell { display: block; }
}

/* Sticky context bars */
.flow-context {
  position: sticky;
  top: calc(var(--header-h-scrolled) + .25rem);
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin: 0 0 1rem;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: rgba(245, 239, 225, .94);
  border: var(--card-border);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(12px);
  font-size: .88rem;
}
.flow-context.is-visible { display: flex; }
.flow-context strong { font-weight: 700; }
.flow-context .linkish,
.flow-context button {
  background: none;
  border: 0;
  color: var(--red);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

/* Mobile dock scroll-intent */
@media (max-width: 900px) {
  .mobile-dock {
    transform: translateY(110%);
    transition: transform .35s var(--ease-out-expo), opacity .25s ease;
    opacity: 0;
    pointer-events: none;
  }
  .mobile-dock.is-shown {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.dock-shown { padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom, 0px)); }
  body:not(.dock-shown) { padding-bottom: env(safe-area-inset-bottom, 0px); }
}

/* Menu catalog crossfade */
.menu-catalog.menu-swap-in {
  animation: menuSwapIn .3s var(--ease-out-expo) both;
}
@keyframes menuSwapIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.menu-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.menu-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s var(--ease-out-expo);
  position: absolute;
  inset: 0;
}
.menu-page-hero-media img.is-on { opacity: .28; }
body[data-page="menu"] .page-hero {
  overflow: hidden;
  min-height: 220px;
}
body[data-page="menu"] .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,17,15,.55), rgba(22,17,15,.92));
  z-index: 0;
  pointer-events: none;
}

/* Sauce heat scale */
.sauce-heat-scale {
  margin-top: 1.75rem;
}
.sauce-scale-track {
  position: relative;
  height: 4px;
  background: linear-gradient(90deg, #4a9ad4, #e8c547, var(--red), #7a0a14);
  border-radius: 999px;
  margin: 2.5rem .5rem 1.25rem;
}
.sauce-scale-marks {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -2.75rem;
  padding: 0 .15rem;
}
.sauce-mark {
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.35);
  background: #2a221e;
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: .65rem;
  font-weight: 700;
  transition: transform .2s var(--ease-out-expo), border-color .2s, background .2s;
}
.sauce-mark:hover,
.sauce-mark:focus-visible,
.sauce-mark.is-active {
  transform: translateY(-4px) scale(1.08);
  border-color: var(--gold-bright);
  background: var(--red);
  outline: none;
}
.sauce-mark-tip {
  position: absolute;
  bottom: calc(100% + .55rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 9rem;
  padding: .45rem .6rem;
  border-radius: 10px;
  background: rgba(26,20,16,.95);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .02em;
  text-transform: none;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 3;
  text-align: center;
  line-height: 1.3;
}
.sauce-mark:hover .sauce-mark-tip,
.sauce-mark:focus-visible .sauce-mark-tip,
.sauce-mark.is-active .sauce-mark-tip {
  opacity: 1;
}
.sauce-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .35rem;
}
.sauce-list-fallback {
  margin-top: 1.25rem;
}
@media (max-width: 700px) {
  .sauce-mark { width: 2rem; height: 2rem; font-size: .55rem; }
  .sauce-mark-tip { min-width: 7.5rem; font-size: .66rem; }
}

/* Leave-confirmation dialog */
.ck-leave-scrim {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 14, 10, .52);
  opacity: 0;
  transition: opacity .28s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.ck-leave-scrim.is-in { opacity: 1; }
.ck-toast {
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, calc(-50% + 18px)) scale(.96);
  z-index: 201;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.1rem;
  width: min(420px, calc(100% - 2rem));
  max-width: none;
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
  transition: transform .32s var(--ease-out-expo), opacity .28s ease;
  opacity: 0;
  text-align: center;
}
.ck-toast.is-in {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.ck-toast p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.ck-toast-actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
  justify-content: stretch;
}
.ck-toast-actions button {
  border: 0;
  border-radius: 999px;
  padding: .7rem 1rem;
  flex: 1;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.ck-toast-yes { background: var(--red); color: #fff; }
.ck-toast-no { background: rgba(255,255,255,.14); color: #fff; }
body.ck-leave-open { overflow: hidden; }

/* Success checkmark */
.form-success .success-check {
  width: 48px;
  height: 48px;
  margin: 0 auto .85rem;
}
.form-success .success-check circle {
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
}
.form-success .success-check path {
  fill: none;
  stroke: var(--green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
}
.form-success.is-celebrate .success-check path {
  animation: checkDraw .4s var(--ease-out-expo) forwards;
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

/* Page transitions removed */

/* Tablet band 768?1024 */
@media (min-width: 768px) and (max-width: 1024px) {
  .wrap { width: min(1180px, calc(100% - 2rem)); }
  .section-title { font-size: clamp(2.35rem, 4.5vw, 3.4rem); }
  .display-title { font-size: clamp(2.5rem, 5vw, 3.8rem); }
  .range-grid,
  .store-grid,
  .news-grid,
  .loy-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
  .fran-stats,
  .ck-stats,
  .ck-stats--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .menu-cat-head {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
  }
  .sauce-panel {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
  }
  .sauce-photo img { min-height: 360px; }
  .store-map { height: min(360px, 48vh); }
  .sec-head { grid-template-columns: 1fr; gap: 1rem; }
}


/* iPad + slow-network polish */
.ck-lite .hero-photo img,
.ck-lite .page-hero-photo img,
html.ck-lite .hero-photo img {
  animation: none !important;
  transform: none !important;
}
.ck-lite .marquee-track,
.ck-lite .member-card {
  animation: none !important;
}
.ck-lite .menu-page-hero-media { display: none; }

.store-grid,
.range-grid,
.news-grid,
.menu-feature,
.loy-features {
  content-visibility: auto;
  contain-intrinsic-size: 1px 480px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .header-inner { gap: .65rem; }
  .nav a { font-size: .78rem; padding: .35rem .2rem; }
  .menu-filters { gap: .4rem; }
  .menu-filters .chip { padding: .55rem .8rem; font-size: .68rem; }
  .store-tools { gap: .85rem; }
  .store-map { height: min(340px, 42vh); }
  .date-rail { display: flex; }
  .date-field-shell { display: none; }
  .res-grid,
  .loy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .home-loyalty-inner {
    grid-template-columns: 1fr;
  }
  .section { padding: 3.25rem 0; }
  .page-hero-compact { padding-top: 2rem; padding-bottom: 1.75rem; }
}

@media (max-width: 1024px) {
  .hero-photo img {
    animation-duration: 18s;
  }
}

