/* surfaced site system base css - Modern, professional design */
/* Design principles: Bold typography, generous whitespace, clear hierarchy */

:root {
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: var(--font-heading);
  --layout-max-width: 1200px;
  --layout-text-width: 720px;
  --layout-content-width: 1280px;
  --layout-gutter: clamp(1rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 24px;
  --space-section: clamp(4rem, 8vw, 6rem);
  --space-gap: clamp(1rem, 2vw, 1.5rem);
  --shadow-card: 0 1px 3px color-mix(in srgb, var(--color-surface-dark) 4%, transparent), 0 4px 12px color-mix(in srgb, var(--color-surface-dark) 6%, transparent);
  --shadow-card-hover: 0 4px 16px color-mix(in srgb, var(--color-surface-dark) 10%, transparent);
  --shadow-hero: 0 8px 48px color-mix(in srgb, var(--color-surface-dark) 16%, transparent);
  --shadow-cta: 0 10px 28px color-mix(in srgb, var(--color-brand) 32%, transparent);
  --shadow-cta-hover: 0 16px 36px color-mix(in srgb, var(--color-brand) 40%, transparent);
  --sticky-order-cta-height: 76px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Header height for calculations */
  --header-height: 68px;
  --top-cta-height: 48px;

  /* Modern color palette */
  --color-page: #f8fafc;
  --color-surface: #ffffff;
  --color-surface-alt: #f1f5f9;
  --color-surface-dark: #0f172a;
  --color-brand: #0369a1;
  --color-brand-alt: #0284c7;
  --color-brand-light: #e0f2fe;
  --color-accent: #f97316;
  --color-text: #0f172a;
  --color-text-muted: #64748b;
  --color-text-inverse: #ffffff;
  --color-text-on-brand: var(--color-text-inverse);
  --color-text-on-dark: var(--color-text-inverse);
  --color-line: #e2e8f0;
  --color-success: #059669;
  --color-error: #dc2626;
  --color-button-text: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-page);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
iframe { border: 0; max-width: 100%; }
button, input, select, textarea { font: inherit; }

/* Selection styling */
::selection { background: var(--color-brand); color: var(--color-text-inverse); }

/* Focus visible for accessibility */
:focus-visible { outline: 2px solid var(--color-brand); outline-offset: 3px; border-radius: 4px; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero__actions > .button--primary:first-child,
  .hero__actions > .button--order:first-child { animation: none; }
}

/* Container with proper horizontal padding */
.container { 
  width: min(100%, var(--layout-max-width)); 
  margin: 0 auto; 
  padding-left: var(--layout-gutter);
  padding-right: var(--layout-gutter);
}
.section { padding: var(--space-section) 0; }
.section--alt { background: var(--color-surface-alt); }
[id] { scroll-margin-top: calc(var(--header-height) + 16px); }

/* Section headers - bold typography hierarchy */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  flex-shrink: 0;
  opacity: 0.7;
}
/* Hero eyebrow — warm accent pill over dark background */
.hero .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px 6px 12px;
  border-radius: 100px;
  background: color-mix(in srgb, var(--color-accent) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-accent) 38%, transparent);
  color: color-mix(in srgb, var(--color-text-inverse) 96%, var(--color-accent));
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(6px);
}
.hero .section__eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 1;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-accent) 28%, transparent);
}
.section__header { max-width: var(--layout-text-width, 720px); margin-bottom: 40px; }
.section__title {
  margin: 0 0 16px;
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--color-text);
  font-weight: 700;
}
.section__intro { 
  margin: 0; 
  color: var(--color-text-muted); 
  font-size: 1.1rem; 
  max-width: var(--layout-text-width, 720px); 
  line-height: 1.75;
}

/* Modern buttons - rounded, elevated, with subtle shadow */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: all var(--transition-spring);
  cursor: pointer;
  text-decoration: none;
}
.button:hover { 
  transform: translateY(-2px); 
}
.button:active { 
  transform: translateY(0); 
}
.button--primary { 
  background: var(--color-brand); 
  color: var(--color-button-text);
  box-shadow: var(--shadow-cta);
}
.button--primary:hover { 
  background: var(--color-brand-alt);
  box-shadow: var(--shadow-cta-hover);
}
/* Order CTA — high-conversion variant for hero, header, and sticky bar */
.button--order {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-alt) 100%);
  color: var(--color-button-text);
  min-height: 56px;
  padding-inline: 28px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-cta);
}
.button--order:hover {
  background: linear-gradient(135deg, var(--color-brand-alt) 0%, color-mix(in srgb, var(--color-brand-alt) 82%, var(--color-surface-dark)) 100%);
  box-shadow: var(--shadow-cta-hover);
}
.button--secondary { 
  background: color-mix(in srgb, var(--color-text-inverse) 12%, transparent);
  color: var(--color-text-inverse); 
  border: 1.5px solid color-mix(in srgb, var(--color-text-inverse) 25%, transparent);
}
.button--secondary:hover { 
  background: color-mix(in srgb, var(--color-text-inverse) 20%, transparent); 
  border-color: color-mix(in srgb, var(--color-text-inverse) 40%, transparent);
  transform: translateY(-2px);
}
.button--secondary-dark { 
  background: transparent; 
  color: var(--color-brand); 
  border: 1.5px solid var(--color-brand);
}
.button--secondary-dark:hover { 
  background: var(--color-brand-light);
  transform: translateY(-2px);
}

/* Button arrow icon */
.button__arrow { transition: transform var(--transition-fast); }
.button:hover .button__arrow { transform: translateX(2px); }

/* Site shell */
.site-shell { background: var(--color-surface); }

/* Modern header - subtle gradient */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--color-surface);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--color-text) 4%, transparent);
}
.site-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: var(--header-height);
  padding: 0;
}
.site-header__identity { min-width: 0; flex-shrink: 0; }
.site-header__brand-link { display: inline-block; }
.site-header__brand { font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; line-height: 1.2; color: var(--color-text); }
.site-header__meta { color: var(--color-text-muted); font-size: 0.8rem; margin-top: 2px; }

/* Header nav - horizontal layout, wrapping handled gracefully */
.site-header__nav-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}
.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}
.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.site-header__nav-link:hover,
.site-header__nav-link.is-current {
  background: color-mix(in srgb, var(--color-brand) 8%, transparent);
  color: var(--color-text);
}
.site-header__cta { 
  flex-shrink: 0;
  white-space: nowrap;
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--color-brand) 24%, transparent);
}
.site-header__cta:hover { 
  background: var(--color-brand-alt);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--color-brand) 30%, transparent);
}

/* Mobile menu toggle */
.site-header__menu-toggle {
  display: none;
  padding: 8px;
  background: none;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.site-header__menu-toggle svg,
.site-header__menu-toggle svg * {
  pointer-events: none;
}
.site-header__menu-toggle:hover { background: color-mix(in srgb, var(--color-text) 10%, transparent); }

/* Hero - Modern full-screen hero with cinematic feel */
.hero {
  position: relative;
  padding-top: 0;
  color: var(--color-text-inverse);
}
.hero__frame {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  background: var(--color-surface-dark);
  box-shadow: none;
}

/* Hero top CTA — conversion bar for order promos */
.hero__top-cta {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 12px 0;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--color-surface-dark) 96%, transparent) 0%,
    color-mix(in srgb, var(--color-surface-dark) 78%, transparent) 70%,
    transparent 100%
  );
  border-bottom: 1px solid color-mix(in srgb, var(--color-text-inverse) 10%, transparent);
}
.hero__top-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__top-cta-text {
  margin: 0;
  color: color-mix(in srgb, var(--color-text-inverse) 92%, transparent);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.hero__top-cta .button {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0 18px;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--color-brand) 28%, transparent);
}
.hero__top-cta .button--primary,
.hero__top-cta .button--order {
  min-height: 42px;
}

/* Hero media/overlay */
.hero__media,
.hero__overlay { position: absolute; inset: 0; }
.hero__media img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transform: scale(1.02);
  transition: transform 8s ease-out;
}
.hero__overlay { 
  background: var(--color-hero-overlay, linear-gradient(
    165deg,
    color-mix(in srgb, var(--color-surface-dark) 78%, transparent) 0%,
    color-mix(in srgb, var(--color-surface-dark) 58%, transparent) 45%,
    color-mix(in srgb, var(--color-surface-dark) 40%, transparent) 100%
  ));
}
.hero__inner { 
  position: relative; 
  z-index: 5; 
  padding-top: clamp(7rem, 14vh, 9rem);
  padding-bottom: clamp(5rem, 10vh, 7rem);
}
.hero__grid { 
  display: grid; 
  grid-template-columns: 1fr; 
  gap: 28px; 
  align-items: center; 
}

/* Centered hero by default for cleaner look */
.hero__copy { 
  max-width: var(--layout-text-width, 720px); 
}
.hero__copy h1 {
  margin: 12px 0 20px;
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(2.75rem, 7vw, 5.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-inverse);
  font-weight: 800;
  text-wrap: balance;
}
.hero__copy p { 
  max-width: 640px; 
  margin: 0 0 28px; 
  color: color-mix(in srgb, var(--color-text-inverse) 85%, transparent); 
  font-size: clamp(1.05rem, 2vw, 1.2rem); 
  line-height: 1.65;
}
.hero__actions { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 14px; 
}
.hero__actions > .button {
  min-width: min(240px, 100%);
  min-height: 56px;
  padding-inline: 28px;
  font-weight: 800;
  font-size: 1rem;
}
.hero__actions > .button--primary,
.hero__actions > .button--order {
  box-shadow: var(--shadow-cta);
}
.hero__actions > .button--primary:hover,
.hero__actions > .button--order:hover {
  box-shadow: var(--shadow-cta-hover);
}
@keyframes hero-cta-glow {
  0%, 100% {
    box-shadow:
      0 10px 28px color-mix(in srgb, var(--color-brand) 32%, transparent),
      0 0 0 0 color-mix(in srgb, var(--color-brand) 0%, transparent);
  }
  50% {
    box-shadow:
      0 14px 34px color-mix(in srgb, var(--color-brand) 42%, transparent),
      0 0 0 6px color-mix(in srgb, var(--color-brand) 14%, transparent);
  }
}
.hero__actions > .button--primary:first-child,
.hero__actions > .button--order:first-child {
  animation: hero-cta-glow 2.8s ease-in-out infinite;
}

/* Hero stat bar — trust signals below primary CTA */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px 20px;
  margin-top: 36px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--color-surface-dark) 42%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-text-inverse) 14%, transparent);
  backdrop-filter: blur(8px);
}

/* Stat items — compact cards inside the bar */
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 120px;
  min-width: 0;
  padding-right: 16px;
  border-right: 1px solid color-mix(in srgb, var(--color-text-inverse) 12%, transparent);
}
.hero__stat:last-child {
  border-right: none;
  padding-right: 0;
}
.hero__stat-label,
.meta-label {
  display: block;
  color: color-mix(in srgb, var(--color-text-inverse) 62%, transparent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero__stat-value { 
  font-size: 1.02rem; 
  font-weight: 800; 
  color: var(--color-text-inverse);
  letter-spacing: -0.01em;
}

/* Side panel - hidden by default, shown only on wider screens */
.hero__panel {
  display: none;
}

/* Clean hero panel - solid, no glass */
.hero__panel {
  padding: 20px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hero);
  color: var(--color-text);
}
.hero__panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero__panel p { margin: 0; color: var(--color-text-muted); font-size: 0.95rem; }
.hero__checklist { list-style: none; margin: 14px 0 0; padding: 0; }
.hero__checklist li { 
  padding: 8px 0 8px 24px; 
  border-top: 1px solid var(--color-line); 
  position: relative;
  color: var(--color-text);
  font-size: 0.9rem;
}
.hero__checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--color-success);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Centered hero variant */
.hero--centered .hero__grid { grid-template-columns: 1fr; }
.hero--centered .hero__copy { text-align: center; max-width: 720px; margin: 0 auto; }
.hero--centered .hero__copy p { margin-left: auto; margin-right: auto; }
.hero--centered .hero__actions { justify-content: center; }
.hero--centered .hero__panel { display: none; }

/* Proof bar - stats ribbon */
.proof-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
}
.proof-bar__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0;
  gap: 32px;
}
.proof-bar__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 18px 0;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
}
.proof-bar__item:first-child { padding-left: 0; }
.proof-bar__item span {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Grid layouts - modern with generous spacing */
.services-grid,
.reviews-grid,
.contact-card-list,
.internal-links {
  display: grid;
  gap: 20px;
}

/* 3-column for services and reviews, 2-column for contact */
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-card-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.internal-links { grid-template-columns: 1fr; }

/* Modern card design - elevated with subtle shadow, minimal border */
.service-card,
.review-card,
.contact-card,
.location-card,
.internal-links__card,
.cta-banner,
.footer-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition-base);
}
.service-card:hover,
.review-card:hover,
.contact-card:hover,
.location-card:hover,
.internal-links__card:hover {
  border-color: color-mix(in srgb, var(--color-brand) 30%, transparent);
}

/* Internal links cards - clean with icon */
.internal-links__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
}
.internal-links__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-light);
  border-radius: var(--radius-sm);
  color: var(--color-brand);
}
.internal-links__content { flex: 1; min-width: 0; }
.internal-links__title {
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
.internal-links__detail {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.4;
}
.internal-links__arrow {
  flex-shrink: 0;
  color: var(--color-brand);
  font-size: 1.2rem;
  opacity: 0.6;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.internal-links__card:hover .internal-links__arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* Service cards */
.service-card { position: relative; overflow: hidden; }
.service-card__kicker {
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.25;
}
.service-card p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }
.service-card__number {
  position: absolute;
  bottom: -4px;
  right: 12px;
  font-size: 48px;
  font-weight: 800;
  color: color-mix(in srgb, var(--color-brand) 5%, transparent);
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

/* Review cards */
.review-card { position: relative; overflow: hidden; }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: -12px;
  right: 14px;
  font-size: 96px;
  font-weight: 900;
  color: var(--color-brand);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
  user-select: none;
}
.review-card__rating { margin-bottom: 12px; }
.review-card blockquote {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
}
.review-card footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.review-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  color: var(--color-brand);
}

/* SVG star rating */
.star-rating { display: flex; gap: 2px; color: var(--color-accent); }
.star-rating svg { width: 16px; height: 16px; fill: currentColor; }
.star-rating svg.star-empty { fill: none; stroke: currentColor; stroke-width: 1.5; opacity: 0.35; }
.star-rating--small svg { width: 13px; height: 13px; }
.star-rating--large svg { width: 22px; height: 22px; }
.star-rating--empty { color: var(--color-line); }

/* Contact cards */
.contact-card__kicker {
  color: var(--color-brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-card h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 1rem;
  line-height: 1.25;
}
.contact-card p { margin: 0; color: var(--color-text-muted); font-size: 0.9rem; }
.contact-card__link { color: var(--color-brand); font-weight: 600; display: inline-block; margin-top: 8px; }
.contact-card__link:hover { color: var(--color-brand-alt); text-decoration: underline; }

/* Location map section */
.location-map-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 24px;
  align-items: stretch;
}
.location-map {
  overflow: hidden;
  min-height: 380px;
  height: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-line);
}
.location-map iframe {
  display: block;
  width: 100%;
  min-height: 380px;
  height: 100%;
}
.location-card ul { list-style: none; padding: 0; margin: 12px 0 0; }
.location-card li { padding: 10px 0; border-top: 1px solid var(--color-line); font-size: 0.9rem; }
.location-card li strong { color: var(--color-text); display: block; margin-bottom: 2px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
.location-card p { margin: 0 0 12px; color: var(--color-text-muted); }

/* FAQ accordion - clean and accessible */
.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover { border-color: color-mix(in srgb, var(--color-brand) 25%, transparent); }
.faq-item[open] { border-color: color-mix(in srgb, var(--color-brand) 25%, transparent); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 44px 16px 18px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text);
  position: relative;
  transition: color var(--transition-fast), background var(--transition-fast);
}
.faq-item summary:hover { color: var(--color-brand); background: var(--color-surface-alt); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: transform var(--transition-base), color var(--transition-fast);
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--color-brand);
}
.faq-item[open] summary { border-bottom: 1px solid var(--color-line); }
.faq-item__answer {
  padding: 14px 18px 18px;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA banner — high-contrast closing section */
.cta-banner {
  padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 48px);
  background:
    radial-gradient(ellipse at 85% 20%, color-mix(in srgb, var(--color-brand) 28%, transparent) 0%, transparent 55%),
    linear-gradient(145deg, color-mix(in srgb, var(--color-surface-dark) 96%, var(--color-brand)) 0%, var(--color-surface-dark) 58%);
  color: var(--color-text-inverse);
  border-radius: var(--radius-lg);
  border: 1px solid color-mix(in srgb, var(--color-text-inverse) 10%, transparent);
  box-shadow: var(--shadow-hero);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 85%, color-mix(in srgb, var(--color-accent) 16%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 {
  margin: 0 0 14px;
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  position: relative;
  text-wrap: balance;
  max-width: 18ch;
}
.cta-banner p {
  margin: 0 0 24px;
  color: color-mix(in srgb, var(--color-text-inverse) 84%, transparent);
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  line-height: 1.7;
  position: relative;
  max-width: 52ch;
}
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; position: relative; }
.cta-banner__actions > .button {
  min-width: min(240px, 100%);
  min-height: 56px;
  padding-inline: 28px;
  font-weight: 800;
  font-size: 1rem;
}
.cta-banner__actions > .button--primary,
.cta-banner__actions > .button--order {
  box-shadow: var(--shadow-cta);
}

/* Page navigation - prev/next links between service pages */
.page-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.page-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  min-height: 100px;
}
.page-nav__link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
  border-color: color-mix(in srgb, var(--color-brand) 25%, transparent);
}
.page-nav__link--next { text-align: right; }
.page-nav__direction {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.page-nav__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.page-nav__detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Site footer - 2-column with brand left, nav right */
.site-footer {
  background: var(--color-text);
  color: color-mix(in srgb, var(--color-text-inverse) 80%, transparent);
  padding: 48px 0 40px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 56px;
  align-items: start;
  margin-bottom: 28px;
}
.site-footer__brand {
  grid-column: 1;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-text-inverse);
  letter-spacing: -0.01em;
}
.site-footer__tagline {
  grid-column: 1;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-top: 2px;
}
.site-footer__nav {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.site-footer__nav a { 
  color: color-mix(in srgb, var(--color-text-inverse) 80%, transparent); 
  font-size: 0.9rem;
  padding: 4px 0;
}
.site-footer__nav a:hover { color: var(--color-text-inverse); text-decoration: underline; }
.site-footer__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid color-mix(in srgb, var(--color-text-inverse) 10%, transparent);
  padding-top: 20px;
  margin-top: 8px;
}
.site-footer__copy { font-size: 0.85rem; opacity: 0.6; }
.site-footer__links { display: flex; gap: 16px; }
.site-footer__links a { color: color-mix(in srgb, var(--color-text-inverse) 70%, transparent); font-size: 0.85rem; }
.site-footer__links a:hover { color: var(--color-text-inverse); }

/* surfaced lead-form block - clean design */
.lead-form-section{padding:4rem 1.5rem;background:var(--color-surface-alt)}
.lead-form-shell{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,480px);gap:2.5rem;align-items:start}
.lead-form-copy{padding:0.5rem 0}
.lead-form-eyebrow{display:inline-block;margin-bottom:0.75rem;font-size:.8rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--color-brand)}
.lead-form-copy h2{font-size:clamp(1.5rem,2.5vw,2rem);margin-bottom:0.85rem;color:var(--color-text);letter-spacing:-0.02em}
.lead-form-copy p{color:var(--color-text-muted);max-width:36rem;margin-bottom:1.25rem;font-size:.95rem}
.lead-form-highlights{display:grid;gap:.75rem;margin-bottom:1.25rem}
.lead-form-highlight{background:var(--color-surface);border:1px solid var(--color-line);border-radius:var(--radius-md);padding:.9rem 1rem;box-shadow:var(--shadow-card)}
.lead-form-highlight strong{display:block;color:var(--color-text);margin-bottom:.15rem;font-size:.95rem}
.lead-form-highlight span{color:var(--color-text-muted);font-size:.9rem}
.lead-form-card{background:var(--color-surface);border:1px solid var(--color-line);border-radius:var(--radius-md);padding:1.25rem;box-shadow:var(--shadow-card)}
.lead-form-status{border-radius:var(--radius-sm);padding:.85rem 1rem;margin-bottom:1rem;font-size:.9rem;font-weight:600}
.lead-form-status.is-success{background:color-mix(in srgb, var(--color-success) 10%, var(--color-surface));color:var(--color-success);border:1px solid color-mix(in srgb, var(--color-success) 25%, transparent)}
.lead-form-status.is-filtered{background:color-mix(in srgb, var(--color-brand) 10%, var(--color-surface));color:var(--color-brand);border:1px solid color-mix(in srgb, var(--color-brand) 25%, transparent)}
.lead-form-status.is-error{background:color-mix(in srgb, var(--color-error) 10%, var(--color-surface));color:var(--color-error);border:1px solid color-mix(in srgb, var(--color-error) 25%, transparent)}
.lead-form-meta{display:flex;flex-wrap:wrap;gap:.55rem;margin-bottom:.85rem}
.lead-form-pill{display:inline-flex;align-items:center;padding:.45rem .75rem;border-radius:999px;background:color-mix(in srgb,var(--color-brand) 10%, var(--color-surface));border:1px solid color-mix(in srgb,var(--color-brand) 18%, transparent);color:var(--color-text);font-size:.78rem;font-weight:700;line-height:1.2}
.lead-form-helper{margin:0 0 1rem;color:var(--color-text-muted);font-size:.88rem;line-height:1.55}
.lead-form-helper a{color:var(--color-brand);font-weight:700}
.lead-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:.9rem}
.lead-form-field{display:flex;flex-direction:column;gap:.4rem}
.lead-form-field span{font-size:.85rem;font-weight:600;color:var(--color-text)}
.lead-form-field-full{grid-column:1/-1}
.lead-form-field input,.lead-form-field select,.lead-form-field textarea{width:100%;border:1px solid var(--color-line);border-radius:var(--radius-sm);padding:.85rem 1rem;font:inherit;color:var(--color-text);background:var(--color-surface);transition:border-color .2s,box-shadow .2s;appearance:none}
.lead-form-field textarea{resize:vertical;min-height:110px}
.lead-form-field input:focus,.lead-form-field select:focus,.lead-form-field textarea:focus{outline:none;border-color:var(--color-brand);box-shadow:0 0 0 3px color-mix(in srgb,var(--color-brand) 12%, transparent)}
.lead-form-field input:not(:placeholder-shown):invalid,.lead-form-field textarea:not(:placeholder-shown):invalid{border-color:var(--color-error);  box-shadow:0 0 0 3px color-mix(in srgb, var(--color-error) 10%, transparent)}
.lead-form-field--error input,.lead-form-field--error select,.lead-form-field--error textarea{border-color:var(--color-error);}
.lead-form-field__error{font-size:.8rem;color:var(--color-error);margin-top:.3rem;display:none}
.lead-form-field--error .lead-form-field__error{display:block}
.lead-form-field input::placeholder,.lead-form-field textarea::placeholder{color:var(--color-text-muted);opacity:.7}
.lead-form-honeypot{position:absolute;left:-9999px;opacity:0;pointer-events:none}
.lead-form-button{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;min-height:52px;padding:1rem 1.35rem;border:0;border-radius:var(--radius-md);background:var(--color-brand);color:var(--color-button-text);text-decoration:none;font:inherit;font-weight:700;line-height:1.1;cursor:pointer;box-shadow:0 10px 24px color-mix(in srgb,var(--color-brand) 20%, transparent);transition:transform .15s ease,box-shadow .15s ease,background .15s ease,color .15s ease,border-color .15s ease}
.lead-form-button:hover,.lead-form-button:focus-visible{transform:translateY(-1px);box-shadow:0 14px 28px color-mix(in srgb,var(--color-brand) 26%, transparent);background:var(--color-brand-alt)}
.lead-form-button:focus-visible{outline:2px solid var(--color-brand);outline-offset:2px}
.lead-form-button-call{background:color-mix(in srgb,var(--color-brand) 8%, transparent);color:var(--color-brand);border:1px solid color-mix(in srgb,var(--color-brand) 18%, transparent);box-shadow:none}
.lead-form-button-call:hover,.lead-form-button-call:focus-visible{background:color-mix(in srgb,var(--color-brand) 14%, transparent);color:var(--color-brand-alt);box-shadow:none}
.lead-form-button-submit{width:100%;margin-top:.9rem}
.lead-form-note{font-size:.82rem;line-height:1.6;color:var(--color-text-muted);margin-top:.75rem}
#lead-form,.lead-form-section,.lead-form-anchor,.quote-section{scroll-margin-top:5rem}

/* Gallery grid — food/atmosphere photo showcase */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery-grid__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-surface-alt);
}
.gallery-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-grid__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-grid__item:hover .gallery-grid__img {
  transform: scale(1.06);
}

/* Menu highlights — signature dishes / menu categories */
.menu-highlights__order-nudge {
  margin: 10px 0 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.menu-highlights__cta {
  margin-top: 32px;
  text-align: center;
}
.menu-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.menu-item-card {
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
  color: inherit;
}
.menu-item-card__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  color: inherit;
  text-decoration: none;
}
.menu-item-card:hover,
.menu-item-card--link:hover {
  border-color: color-mix(in srgb, var(--color-brand) 28%, transparent);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.menu-item-card__image {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--color-surface-alt);
}
.menu-item-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-item-card:hover .menu-item-card__image img {
  transform: scale(1.06);
}
.menu-item-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 22px;
}
.menu-item-card__kicker {
  display: inline-flex;
  align-self: flex-start;
  color: var(--color-brand);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--color-brand-light);
}
.menu-item-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.menu-item-card__name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-text);
  letter-spacing: -0.01em;
  flex: 1 1 auto;
}
.menu-item-card__price {
  color: var(--color-brand);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}
.menu-item-card__desc {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.menu-item-card__order {
  display: block;
  padding: 12px 22px;
  text-align: center;
  border-top: 1px solid var(--color-line);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--color-brand);
  text-decoration: none;
  transition: background var(--transition-base), color var(--transition-base);
}
.menu-item-card__order:hover {
  background: color-mix(in srgb, var(--color-brand) 8%, transparent);
  color: var(--color-brand-alt, var(--color-brand));
}
.menu-item-card--link .menu-item-card__name::after {
  content: ' →';
  color: var(--color-brand);
  opacity: 0;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.menu-item-card--link:hover .menu-item-card__name::after {
  opacity: 1;
  transform: translateX(2px);
}
.menu-detail {
  padding-top: clamp(48px, 6vw, 72px);
}
.menu-detail__grid {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}
.menu-detail__grid--text-only {
  grid-template-columns: minmax(0, 760px);
}
.menu-detail__media {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-surface-alt);
  aspect-ratio: 4 / 3;
  max-width: 430px;
}
.menu-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-detail__content h1 {
  margin: 8px 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}
.menu-detail__lead,
.menu-detail__copy {
  color: var(--color-text-muted);
  line-height: 1.7;
}
.menu-detail__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}
.menu-detail__facts span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  padding: 8px 10px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.menu-detail__facts strong {
  color: var(--color-text);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu-detail-related {
  margin-top: 36px;
}
.menu-detail-related h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
}
.menu-detail-related__row,
.menu-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 12px;
}
.menu-detail-related__item {
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  color: inherit;
  text-decoration: none;
  transition: border-color var(--transition-base);
}
.menu-detail-related__item:hover {
  border-color: color-mix(in srgb, var(--color-brand) 24%, transparent);
}
.menu-detail-related__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--color-surface-alt);
}
.menu-detail-related__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-detail-related__body {
  display: grid;
  gap: 6px;
  padding: 10px;
}
.menu-detail-related__name {
  color: var(--color-text);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
}
.menu-detail-related__price {
  color: var(--color-brand);
  font-size: 0.84rem;
  font-weight: 800;
}

/* Sticky order CTA — mobile-only fixed bottom bar */
.sticky-order-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-order-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    padding: 10px var(--layout-gutter) calc(10px + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--color-surface) 94%, transparent);
    border-top: 1px solid var(--color-line);
    box-shadow: 0 -10px 28px color-mix(in srgb, var(--color-surface-dark) 14%, transparent);
    backdrop-filter: blur(12px);
  }
  .sticky-order-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: var(--layout-max-width);
    margin: 0 auto;
  }
  .sticky-order-cta__copy {
    flex: 1;
    min-width: 0;
    margin: 0;
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
  }
  .sticky-order-cta__actions {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
  }
  .sticky-order-cta__actions > .button {
    min-height: 46px;
    min-width: 0;
    width: auto;
    padding-inline: 18px;
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
  }
  .sticky-order-cta__actions > .button--primary,
  .sticky-order-cta__actions > .button--order {
    box-shadow: var(--shadow-cta);
  }
  body:has(.sticky-order-cta) {
    padding-bottom: calc(var(--sticky-order-cta-height) + env(safe-area-inset-bottom, 0px));
  }
}
@media (min-width: 768px) {
  .sticky-order-cta {
    display: none !important;
  }
}

/* mobile responsiveness guardrails */
html, body { max-width: 100%; overflow-x: hidden; }
body { overflow-wrap: break-word; }
h1, h2, h3, p, a, li, dt, dd, blockquote, figcaption, span, strong, small { overflow-wrap: break-word; }
[class*="grid"], [class*="layout"], [class*="columns"], [class*="row"], [class*="band"] { min-width: 0; }

/* Tablet */
@media (max-width: 980px) {
  .hero__frame { min-height: 70svh; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-card-list,
  .internal-links,
  .location-map-split,
  .lead-form-shell { grid-template-columns: 1fr 1fr; }
  .hero__grid,
  .site-footer__inner { grid-template-columns: 1fr; }
  .hero--split .hero__inner { padding-top: 96px; }
  .location-map-split,
  .lead-form-shell { grid-template-columns: 1fr; }
  .internal-links { grid-template-columns: 1fr; }
  .hero__stats { 
    gap: 16px;
  }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-detail__grid { grid-template-columns: minmax(240px, 360px) minmax(0, 1fr); }
}

/* Mobile */
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .gallery-grid__item:first-child { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .menu-highlights-grid { grid-template-columns: 1fr; }
  .menu-detail { padding-top: 40px; }
  .menu-detail__grid { grid-template-columns: 1fr; }
  .menu-detail-related__row,
  .menu-detail-related__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }
  .menu-detail-related__item {
    flex: 0 0 152px;
    scroll-snap-align: start;
  }
  
  /* Header - stack on mobile */
  .site-header { 
    --header-height: auto;
  }
  .site-header__row { 
    flex-wrap: wrap;
    min-height: 56px;
    padding: 8px 0;
    gap: 8px;
  }
  .site-header__brand { font-size: 0.95rem; }
  .site-header__meta { font-size: 0.7rem; }
  
  /* Nav becomes dropdown on mobile */
  .site-header__nav-wrap {
    display: none;
    order: 4;
    width: 100%;
  }
  .site-header__nav-wrap.is-open { display: block; }
  .site-header__nav {
    flex-direction: column;
    width: 100%;
    gap: 0;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 8px;
    margin-top: 8px;
  }
  .site-header__nav-link { 
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
  }
  .site-header__menu-toggle { display: block; }
  .site-header__cta { 
    order: 3;
    width: 100%;
    justify-content: center;
  }
  
  /* Grids - single column on mobile */
  .services-grid,
  .reviews-grid,
  .contact-card-list,
  .internal-links,
  .lead-form-grid { grid-template-columns: 1fr; }
  
  /* Hero mobile */
  .hero__frame { min-height: 80svh; }
  .hero__top-cta .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__top-cta .button { width: 100%; justify-content: center; }
  .hero__inner { padding-top: 88px; padding-bottom: 56px; }
  .hero__copy h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero__copy p { font-size: 1rem; margin-bottom: 24px; }
  .hero__actions { flex-direction: column; }
  .hero__stats { 
    flex-direction: column;
    gap: 0;
    padding: 14px 16px;
  }
  .hero__stat {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex: none;
    width: 100%;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--color-text-inverse) 10%, transparent);
  }
  .hero__stat:last-child { border-bottom: none; }
  
  /* Buttons - full width (except sticky bar actions) */
  .button,
  .lead-form-button,
  .site-header__cta { width: 100%; }
  .sticky-order-cta__actions > .button { width: auto; }
  
  /* CTA banner */
  .cta-banner { padding: 24px; }
  .cta-banner__actions { flex-direction: column; }
  
  /* Page nav */
  .page-nav { grid-template-columns: 1fr; }
  .page-nav__link--next { text-align: left; }
  
  /* Proof bar */
  .proof-bar__list { flex-wrap: wrap; gap: 0; }
  .proof-bar__item {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-right: none;
    border-bottom: 1px solid var(--color-line);
  }
  .proof-bar__item:first-child { padding-left: 20px; }
  .proof-bar__item:last-child { border-bottom: none; }
}

/* Small mobile */
@media (max-width: 560px) {
  :root {
    --layout-gutter: 1rem;
  }
  .hero { padding-top: 0; }
  .hero__inner { padding-bottom: 32px; }
  .location-map,
  .location-map iframe { min-height: 280px; }
  .site-footer__nav { gap: 6px 16px; }
  .section__header { margin-bottom: 28px; }
  .section__title { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ── services.highlights ─────────────────────────────────────────────────── */
.services-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-gap);
}
.service-highlight-card {
  display: flex;
  gap: 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.service-highlight-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.service-highlight-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--color-brand-light, var(--color-surface-alt));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
}
.service-highlight-card__body {
  flex: 1;
  min-width: 0;
}
.service-highlight-card__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 10px;
  background: var(--color-accent);
  color: var(--color-button-text, #fff);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}
.service-highlight-card__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.service-highlight-card__desc {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .services-highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-highlights-grid { grid-template-columns: 1fr; }
  .service-highlight-card { padding: 18px; }
}

/* ── process.steps ───────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-gap);
  position: relative;
}
/* connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-brand-light, var(--color-surface-alt)) 0%, var(--color-brand) 50%, var(--color-brand-light, var(--color-surface-alt)) 100%);
  opacity: 0.35;
  pointer-events: none;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.process-step__icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--color-surface);
  border: 2px solid var(--color-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.process-step__content { flex: 1; }
.process-step__number {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.process-step__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}
.process-step__desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps::before { display: none; }
}
@media (max-width: 560px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { flex-direction: row; text-align: left; }
  .process-step__icon { width: 48px; height: 48px; flex-shrink: 0; }
}

/* === Restaurant conversion mode === */
/* Magazine-quality editorial layout — scoped to body.site--restaurant */

body.site--restaurant {
  --restaurant-glow: color-mix(in srgb, var(--color-brand) 22%, transparent);
  --restaurant-gold-glow: color-mix(in srgb, var(--color-accent) 28%, transparent);
  --restaurant-glass: color-mix(in srgb, var(--color-surface) 82%, transparent);
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, color-mix(in srgb, var(--color-accent) 10%, transparent) 0%, transparent 55%),
    radial-gradient(ellipse 90% 60% at 0% 100%, color-mix(in srgb, var(--color-brand) 8%, transparent) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-page) 0%, color-mix(in srgb, var(--color-page) 92%, var(--color-surface-alt)) 100%);
  color: var(--color-text);
}

body.site--restaurant::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, color-mix(in srgb, var(--color-text) 3%, transparent) 0%, transparent 0.8px),
    radial-gradient(circle at 80% 70%, color-mix(in srgb, var(--color-text) 2.5%, transparent) 0%, transparent 0.8px);
  background-size: 28px 28px, 36px 36px;
}

body.site--restaurant .site-shell {
  position: relative;
  z-index: 1;
  background: transparent;
}

body.site--restaurant .section {
  padding: clamp(2rem, 3.5vw, 2.75rem) 0;
}

body.site--restaurant .section__header {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

body.site--restaurant .section__title {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
}

body.site--restaurant .section__intro {
  margin-top: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

body.site--restaurant .page-title {
  padding: clamp(1.35rem, 2.5vw, 2rem) 0 clamp(0.75rem, 1.5vw, 1.25rem);
  border-bottom: 1px solid color-mix(in srgb, var(--color-brand) 10%, transparent);
  background: color-mix(in srgb, var(--color-surface) 72%, transparent);
}

body.site--restaurant .page-title .section__header {
  max-width: 760px;
  margin-bottom: 0;
}

body.site--restaurant .page-title .section__title {
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
}

body.site--restaurant .page-title .section__intro {
  max-width: 68ch;
}

body.site--restaurant .section__eyebrow {
  color: var(--color-brand);
  font-weight: 700;
  letter-spacing: 0.14em;
}

body.site--restaurant .section__title,
body.site--restaurant h1,
body.site--restaurant h2 {
  font-family: var(--font-display, var(--font-heading));
  font-variation-settings: 'SOFT' 50, 'WONK' 0.5;
}

/* ── Header shell ─────────────────────────────────────────────────────────── */
.site-header--restaurant {
  background: var(--restaurant-glass);
  border-bottom: 1px solid color-mix(in srgb, var(--color-line) 70%, transparent);
  box-shadow:
    0 1px 0 color-mix(in srgb, var(--color-surface) 60%, transparent),
    0 12px 32px color-mix(in srgb, var(--color-surface-dark) 6%, transparent);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.site-header--restaurant .site-header__brand {
  font-family: var(--font-display, var(--font-heading));
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.site-header--restaurant .site-header__nav-link {
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 14px;
}

.site-header--restaurant .site-header__nav-link:hover,
.site-header--restaurant .site-header__nav-link.is-current {
  background: color-mix(in srgb, var(--color-brand-light) 55%, transparent);
  color: var(--color-text);
}

.site-header__cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__cta-group > .button--order,
.site-header__cta-group > .site-header__cta {
  width: auto;
  min-height: 46px;
  padding-inline: 20px;
  font-size: 0.9rem;
  border-radius: 999px;
}

.site-header__cta--phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  padding: 0;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-brand);
  border: 1.5px solid color-mix(in srgb, var(--color-brand) 28%, transparent);
  box-shadow: var(--shadow-card);
  transition:
    background var(--transition-fast),
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-fast);
}

.site-header__cta--phone:hover {
  background: var(--color-brand-light);
  border-color: color-mix(in srgb, var(--color-brand) 45%, transparent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.site-header__cta--phone svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Order button — premium conversion variant ──────────────────────────── */
body.site--restaurant .button--order {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 999px;
  background:
    linear-gradient(
      120deg,
      var(--color-brand) 0%,
      color-mix(in srgb, var(--color-brand) 78%, var(--color-accent)) 48%,
      var(--color-brand-alt) 100%
    );
  background-size: 200% 100%;
  box-shadow:
    var(--shadow-cta),
    0 0 0 1px color-mix(in srgb, var(--color-brand) 20%, transparent);
  transition:
    background-position var(--transition-slow),
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

body.site--restaurant .button--order::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    color-mix(in srgb, var(--color-text-inverse) 28%, transparent) 50%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

body.site--restaurant .button--order:hover {
  background-position: 100% center;
  transform: translateY(-2px);
  box-shadow: var(--shadow-cta-hover);
}

body.site--restaurant .button--order:hover::after {
  transform: translateX(120%);
}

body.site--restaurant .button--order .button__icon {
  display: inline-flex;
  margin-right: 8px;
  vertical-align: middle;
}

/* ── Hero — editorial split layout ────────────────────────────────────────── */
.hero--restaurant {
  position: relative;
  overflow: clip;
}

.hero--restaurant .hero__media img {
  object-position: center 46%;
  filter: saturate(0.82) contrast(0.92);
  opacity: 0.72;
  transform: scale(1.05);
}

.hero--restaurant .hero__overlay {
  background:
    radial-gradient(
      ellipse at 28% 46%,
      color-mix(in srgb, var(--color-surface-dark) 16%, transparent) 0%,
      transparent 34%
    ),
    linear-gradient(
      90deg,
      color-mix(in srgb, var(--color-surface-dark) 88%, transparent) 0%,
      color-mix(in srgb, var(--color-surface-dark) 72%, transparent) 42%,
      color-mix(in srgb, var(--color-surface-dark) 46%, transparent) 100%
    ),
    linear-gradient(
      180deg,
      color-mix(in srgb, var(--color-surface-dark) 58%, transparent) 0%,
      color-mix(in srgb, var(--color-surface-dark) 22%, transparent) 42%,
      color-mix(in srgb, var(--color-surface-dark) 78%, transparent) 100%
    );
}

.hero--restaurant .hero__frame {
  min-height: clamp(500px, 76svh, 680px);
}

.hero--restaurant .hero__inner {
  padding-top: clamp(4rem, 8vh, 5.75rem);
  padding-bottom: clamp(3rem, 6vh, 4.25rem);
}

.hero--restaurant .hero__grid {
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero--restaurant .hero__grid--has-visual {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.hero--restaurant .hero__grid--copy-only {
  grid-template-columns: 1fr;
  max-width: min(100%, 680px);
}

.hero--restaurant .hero__inner {
  position: relative;
  z-index: 5;
}

.hero--restaurant .hero__copy {
  max-width: none;
  text-align: left;
  width: 100%;
  padding: 0;
  color: var(--color-text-inverse);
  text-shadow: 0 2px 18px color-mix(in srgb, var(--color-surface-dark) 70%, transparent);
}

.hero--restaurant .hero__copy h1 {
  font-size: clamp(3rem, 6.2vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 850;
  text-wrap: balance;
  margin: 0 0 0.85rem;
  color: var(--color-text-inverse);
  max-width: 12ch;
}

.hero--restaurant .hero__meta {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-accent) 82%, var(--color-text-inverse));
}

.hero--restaurant .hero__lead {
  max-width: 34ch;
  margin: 0 0 1.45rem;
  font-size: clamp(1.05rem, 1.75vw, 1.22rem);
  line-height: 1.45;
  color: color-mix(in srgb, var(--color-text-inverse) 88%, transparent);
}

.hero--restaurant .hero__aux-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  background: color-mix(in srgb, var(--color-surface-dark) 46%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-text-inverse) 24%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero--restaurant .hero__aux-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: color-mix(in srgb, var(--color-text-inverse) 48%, transparent);
  transition: color var(--transition-fast);
}

.hero--restaurant .hero__aux-links a:hover {
  color: var(--color-accent);
  text-decoration-color: color-mix(in srgb, var(--color-accent) 65%, transparent);
}

.hero--restaurant .hero__actions {
  margin-top: 0;
}

.hero--restaurant .hero__actions > .button--order,
.hero--restaurant .hero__actions > .button--primary {
  min-height: 56px;
  min-width: min(100%, 240px);
  padding-inline: 30px;
  font-size: 1rem;
  animation: none;
}

.hero--restaurant .hero__copy p:not(.hero__meta):not(.hero__lead):not(.hero__aux-links) {
  max-width: 42ch;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.5;
}

.hero--restaurant .hero__copy .section__eyebrow {
  color: var(--color-accent);
  background: color-mix(in srgb, var(--color-accent) 16%, transparent);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
}

/* Overlapping food photography stack */
.hero__visual-stack {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  display: grid;
  place-items: center;
}

.hero__visual-stack__card {
  position: absolute;
  width: min(72%, 340px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  border: 3px solid color-mix(in srgb, var(--color-text-inverse) 18%, transparent);
  transition: transform var(--transition-slow), box-shadow var(--transition-base);
}

.hero__visual-stack__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual-stack__card:nth-child(1) {
  z-index: 3;
  transform: rotate(-4deg) translate(-8%, -6%);
}

.hero__visual-stack__card:nth-child(2) {
  z-index: 2;
  width: min(64%, 300px);
  transform: rotate(6deg) translate(18%, 8%);
  opacity: 0.92;
}

.hero__visual-stack__card:nth-child(3) {
  z-index: 1;
  width: min(58%, 260px);
  transform: rotate(-10deg) translate(-22%, 16%);
  opacity: 0.78;
  filter: blur(0.3px);
}

.hero--restaurant:hover .hero__visual-stack__card:nth-child(1) {
  transform: rotate(-2deg) translate(-6%, -8%) scale(1.02);
}

.hero--restaurant:hover .hero__visual-stack__card:nth-child(2) {
  transform: rotate(4deg) translate(20%, 6%) scale(1.01);
}

/* Order cluster — primary CTA + microcopy + provider */
.hero__order-cluster {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.hero__order-cluster > .button--order {
  min-width: min(280px, 100%);
  min-height: 58px;
  padding-inline: 32px;
  font-size: 1.05rem;
}

.hero__order-cluster__microcopy {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text-inverse) 72%, transparent);
  line-height: 1.45;
}

.hero__provider-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface-dark) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-text-inverse) 16%, transparent);
  color: var(--color-text-inverse);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.hero__provider-chip__logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Trust row — inline rating / reviews / hours pills */
.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface-dark) 48%, transparent);
  border: 1px solid color-mix(in srgb, var(--color-text-inverse) 14%, transparent);
  color: var(--color-text-inverse);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.hero__trust-pill strong {
  color: var(--color-accent);
  font-weight: 800;
}

.hero__trust-pill svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ── Conversion rail — full-width order band ─────────────────────────────── */
.conversion-rail {
  position: relative;
  overflow: hidden;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) var(--layout-gutter);
  background:
    radial-gradient(ellipse 80% 120% at 0% 50%, color-mix(in srgb, var(--color-brand) 22%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 70% 100% at 100% 50%, color-mix(in srgb, var(--color-accent) 18%, transparent) 0%, transparent 55%),
    linear-gradient(135deg, var(--color-surface-dark) 0%, color-mix(in srgb, var(--color-surface-dark) 88%, var(--color-brand)) 100%);
  color: var(--color-text-on-dark);
  border-block: 1px solid color-mix(in srgb, var(--color-accent) 20%, transparent);
}

.conversion-rail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, color-mix(in srgb, var(--color-accent) 8%, transparent) 50%, transparent 100%);
  pointer-events: none;
}

.conversion-rail__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(100%, var(--layout-max-width));
  margin: 0 auto;
}

.conversion-rail__copy h2 {
  margin: 0 0 10px;
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.conversion-rail__copy p {
  margin: 0;
  max-width: 48ch;
  color: color-mix(in srgb, var(--color-text-on-dark) 78%, transparent);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.65;
}

.conversion-rail__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 20px;
}

.conversion-rail__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.conversion-rail__stat-value {
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  letter-spacing: -0.02em;
}

.conversion-rail__stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text-on-dark) 62%, transparent);
}

.conversion-rail__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  min-width: min(280px, 100%);
}

.conversion-rail__actions > .button--order {
  min-height: 60px;
  font-size: 1.05rem;
  white-space: nowrap;
}

.conversion-rail__note {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--color-text-on-dark) 65%, transparent);
}

/* ── Menu showcase — horizontal scroll carousel ──────────────────────────── */
.menu-showcase {
  position: relative;
}

.menu-showcase__controls {
  display: none;
}

.menu-showcase__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

body.site--restaurant .menu-showcase__header .section__eyebrow {
  margin-bottom: 6px;
}

.menu-showcase__track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px var(--layout-gutter) 20px;
  margin-inline: calc(var(--layout-gutter) * -1);
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--layout-gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--color-brand) 40%, transparent) transparent;
}

.menu-showcase__track::-webkit-scrollbar {
  height: 6px;
}

.menu-showcase__track::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--color-brand) 35%, transparent);
  border-radius: 999px;
}

.menu-showcase-card {
  flex: 0 0 clamp(260px, 32vw, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.menu-showcase-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-surface-alt);
}

.menu-showcase-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-showcase-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: clamp(1rem, 2.2vw, 1.35rem);
  flex: 1;
}

.menu-showcase-card__kicker {
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.menu-showcase-card__name {
  margin: 0;
  font-family: var(--font-display, var(--font-heading));
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.12;
  color: var(--color-text);
}

.menu-showcase-card__order {
  width: 100%;
  margin-top: auto;
}

.menu-showcase__card {
  flex: 0 0 clamp(260px, 32vw, 340px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.menu-showcase__card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
}

.menu-showcase__card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-showcase__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.menu-showcase__card:hover .menu-showcase__card-media img {
  transform: scale(1.08);
}

.menu-showcase__price {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface-dark) 82%, transparent);
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  border: 1px solid color-mix(in srgb, var(--color-accent) 30%, transparent);
}

.menu-showcase__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  flex: 1;
}

.menu-showcase__card-title {
  margin: 0;
  font-family: var(--font-display, var(--font-heading));
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-text);
}

.menu-showcase__card-desc {
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.menu-showcase__order-btn {
  align-self: flex-start;
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.88rem;
  border-radius: 999px;
}

/* ── Enhanced sticky order bar (restaurant mode) ─────────────────────────── */
body.site--restaurant .sticky-order-cta {
  border-top: 1px solid color-mix(in srgb, var(--color-brand) 18%, transparent);
  background: color-mix(in srgb, var(--color-surface) 90%, transparent);
  backdrop-filter: blur(20px) saturate(1.15);
  -webkit-backdrop-filter: blur(20px) saturate(1.15);
  box-shadow:
    0 -16px 40px color-mix(in srgb, var(--color-surface-dark) 12%, transparent),
    0 -1px 0 color-mix(in srgb, var(--color-accent) 20%, transparent);
}

body.site--restaurant .sticky-order-cta__inner {
  padding: 4px 0;
}

body.site--restaurant .sticky-order-cta__copy {
  font-family: var(--font-display, var(--font-heading));
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

body.site--restaurant .sticky-order-cta__actions > .button--order {
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 22px;
}

/* ── Enhanced CTA banner (restaurant mode) ─────────────────────────────────── */
body.site--restaurant .cta-banner {
  background:
    radial-gradient(ellipse at 90% 15%, color-mix(in srgb, var(--color-brand) 32%, transparent) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, color-mix(in srgb, var(--color-accent) 22%, transparent) 0%, transparent 55%),
    linear-gradient(155deg, var(--color-surface-dark) 0%, color-mix(in srgb, var(--color-surface-dark) 82%, var(--color-brand)) 48%, var(--color-surface-dark) 100%);
  border: 1px solid color-mix(in srgb, var(--color-accent) 22%, transparent);
  border-radius: var(--radius-lg);
}

body.site--restaurant .cta-banner h2 {
  font-variation-settings: 'SOFT' 60, 'WONK' 0.3;
  max-width: 20ch;
}

body.site--restaurant .cta-banner__actions > .button--order {
  border-radius: 999px;
}

/* ── Restaurant conversion — responsive ───────────────────────────────────── */
@media (max-width: 980px) {
  .hero--restaurant .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero--restaurant .hero__copy {
    order: 1;
  }

  .hero__visual-stack {
    order: 2;
    min-height: 280px;
    margin-inline: auto;
    width: min(100%, 420px);
  }

  .conversion-rail__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .conversion-rail__copy p {
    margin-inline: auto;
  }

  .conversion-rail__stats {
    justify-content: center;
  }

  .conversion-rail__actions {
    margin-inline: auto;
    width: min(100%, 360px);
  }
}

@media (max-width: 720px) {
  .site-header__cta-group {
    width: 100%;
    justify-content: stretch;
  }

  .site-header__cta-group > .button--order {
    flex: 1;
  }

  .hero--restaurant .hero__frame {
    min-height: clamp(380px, 68svh, 520px);
  }

  .hero--restaurant .hero__inner {
    padding-top: clamp(2.75rem, 6vh, 4rem);
    padding-bottom: clamp(2rem, 4vh, 2.75rem);
  }

  .hero--restaurant .hero__copy h1 {
    font-size: clamp(2rem, 8vw, 2.45rem);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .hero--restaurant .hero__media img {
    object-position: 58% center;
  }

  .hero--restaurant .hero__aux-links {
    background: color-mix(in srgb, var(--color-surface-dark) 50%, transparent);
    border-color: color-mix(in srgb, var(--color-text-inverse) 24%, transparent);
    color: var(--color-text-inverse);
    box-shadow: none;
  }

  .hero__order-cluster {
    width: 100%;
  }

  .hero__order-cluster > .button--order {
    width: 100%;
    justify-content: center;
  }

  .hero__trust-row {
    gap: 8px;
  }

  .hero__trust-pill {
    font-size: 0.76rem;
    padding: 8px 12px;
  }

  .hero__visual-stack__card:nth-child(3) {
    display: none;
  }

  .menu-showcase__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-showcase__card,
  .menu-showcase-card {
    flex-basis: min(78vw, 300px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.site--restaurant .button--order::after {
    display: none;
  }

  .hero__visual-stack__card,
  .menu-showcase__card,
  .menu-showcase__card-media img {
    transition: none;
    animation: none;
  }

  .hero--restaurant:hover .hero__visual-stack__card:nth-child(1),
  .hero--restaurant:hover .hero__visual-stack__card:nth-child(2) {
    transform: none;
  }

  .menu-showcase__card:hover {
    transform: none;
  }

  .menu-showcase__card:hover .menu-showcase__card-media img {
    transform: none;
  }
}


:root {
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'DM Serif Display', 'Georgia', serif;
  --font-google-href: https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=DM+Serif+Display&display=swap;
  --layout-max-width: 1280px;
  --layout-text-width: 680px;
  --layout-content-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --space-section: clamp(2.25rem, 4vw, 3.25rem);
  --space-gap: clamp(0.75rem, 1.5vw, 1.125rem);
  --shadow-card: 0 2px 6px rgba(26, 22, 18, 0.06), 0 8px 20px rgba(26, 22, 18, 0.06);
  --shadow-hero: 0 28px 56px rgba(26, 22, 18, 0.20);
  --shadow-card-hover: 0 6px 20px rgba(26, 22, 18, 0.10);
  --color-page: #f8f5f1;
  --color-surface: #ffffff;
  --color-surface-alt: #f2ece4;
  --color-surface-dark: #1a1612;
  --color-brand: #9e2a2b;
  --color-brand-alt: #b83838;
  --color-brand-light: #fde8e6;
  --color-accent: #c09520;
  --color-text: #1a1612;
  --color-text-muted: #5c5349;
  --color-text-inverse: #ffffff;
  --color-text-on-brand: #ffffff;
  --color-text-on-dark: #ffffff;
  --color-line: rgba(26, 22, 18, 0.12);
  --color-success: #2d6a4f;
  --color-error: #b42318;
  --color-hero-overlay: linear-gradient(180deg, rgba(10,5,2,0.20) 0%, rgba(10,5,2,0.45) 55%, rgba(10,5,2,0.88) 100%);
  --color-button-text: #ffffff;
  --color-button-alt-text: #1a1612;
}
