/* =========================================================
   787 Domplines — premium static stylesheet
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0d14;
  --bg-elevated: #11151f;
  --surface: #161b27;
  --surface-2: #1c2230;
  --text: #f4f1ea;
  --text-muted: #a1a8b8;
  --gold: #f5b748;
  --gold-soft: #ffd989;
  --gold-deep: #d99422;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --radius-pill: 999px;
  --radius-card: 28px;
  --radius-sm: 18px;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(5rem, 12vh, 9rem);

  --serif: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-pad);
  position: relative;
}

.section--elevated {
  background: var(--bg-elevated);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  color: var(--text);
}

.section-body {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 2rem;
}

.divider {
  width: 28px;
  height: 2px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.5rem;
}

.divider--center {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: #1a1308;
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(245, 183, 72, 0.25);
}

.btn-primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 183, 72, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.15rem 2.25rem;
  font-size: 1rem;
}

.btn-icon {
  width: 1.05em;
  height: 1.05em;
  flex-shrink: 0;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  background: rgba(10, 13, 20, 0.55);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 13, 20, 0.85);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--text);
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(245, 183, 72, 0.25));
}

.brand-word {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

@media (max-width: 540px) {
  .brand-word { display: none; }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-cta {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), top 0.2s ease;
}

.nav-toggle-bar::before {
  top: -7px;
}

.nav-toggle-bar::after {
  top: 7px;
}

.site-header.is-open .nav-toggle-bar {
  background: transparent;
}

.site-header.is-open .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-open .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero--compact {
  min-height: 68vh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 13, 20, 0.55) 0%, rgba(10, 13, 20, 0.4) 35%, rgba(10, 13, 20, 0.92) 100%),
    radial-gradient(120% 80% at 80% 20%, rgba(245, 183, 72, 0.12), transparent 60%);
  z-index: -1;
}

.hero-inner {
  padding-block: 8rem 5rem;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(245, 183, 72, 0.4);
  border-radius: var(--radius-pill);
  background: rgba(245, 183, 72, 0.06);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--text);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.82);
  max-width: 56ch;
  margin: 0 0 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(244, 241, 234, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bob 2.4s ease-in-out infinite;
}

.scroll-cue svg {
  width: 14px;
  height: 14px;
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}

/* ---------- Two-column feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.split--reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.split-media:hover img {
  transform: scale(1.04);
}

.split-media--bordered {
  border: 1px solid rgba(245, 183, 72, 0.18);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(245, 183, 72, 0.08);
}

.split-content > .btn {
  margin-top: 0.5rem;
}

/* ---------- Editorial collage ---------- */
.collage {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 1.25rem;
  margin-top: 3rem;
}

.collage-tile {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}

.collage-tile:hover img {
  transform: scale(1.05);
}

.collage-tile--a { grid-column: 1 / span 7; grid-row: span 6; }
.collage-tile--b { grid-column: 8 / span 5; grid-row: span 4; }
.collage-tile--c { grid-column: 8 / span 5; grid-row: 5 / span 5; }

.section-intro {
  max-width: 720px;
}

.section-intro--center {
  margin-inline: auto;
  text-align: center;
}

.section-intro--center .divider {
  margin-inline: auto;
}

/* ---------- Visit / truck section ---------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.visit-media {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.visit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(245, 183, 72, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 183, 72, 0.22);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.2rem;
}

.info-value {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

.info-value a:hover {
  color: var(--gold);
}

/* ---------- Cards: hours / location ---------- */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 183, 72, 0.25);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(245, 183, 72, 0.08);
}

.card-title {
  font-family: var(--serif);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.card address {
  font-style: normal;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
  padding-bottom: 2px;
}

.card-link:hover {
  border-bottom-color: var(--gold);
}

.card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease-out);
}

.card-link:hover svg {
  transform: translateX(3px);
}

/* ---------- Hours table ---------- */
.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border-left: 3px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.hours-row.is-closed {
  color: var(--text-muted);
  opacity: 0.7;
}

.hours-row.is-today {
  background: rgba(245, 183, 72, 0.08);
  border-left-color: var(--gold);
}

.hours-row.is-today .hours-day {
  color: var(--gold);
}

.hours-day {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hours-time {
  font-variant-numeric: tabular-nums;
  color: var(--text-muted);
}

.hours-row.is-today .hours-time {
  color: var(--text);
}

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding-block: clamp(5rem, 12vh, 8rem);
  overflow: hidden;
  isolation: isolate;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 50% 50%, rgba(245, 183, 72, 0.18), transparent 70%),
    linear-gradient(180deg, var(--bg-elevated), var(--bg));
  z-index: -1;
}

.cta-band--imaged::before {
  background:
    linear-gradient(180deg, rgba(10, 13, 20, 0.78), rgba(10, 13, 20, 0.92));
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  filter: blur(2px);
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.cta-band .section-title {
  margin-inline: auto;
  max-width: 18ch;
}

.cta-band .section-body {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.2) contrast(0.95);
}

/* ---------- Call section ---------- */
.call-band {
  text-align: center;
  padding-block: clamp(4rem, 9vh, 6rem);
}

.call-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(245, 183, 72, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 183, 72, 0.3);
}

.call-icon svg {
  width: 26px;
  height: 26px;
}

/* ---------- Footer ---------- */
.site-footer {
  padding-block: 4rem 2.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.footer-tag {
  color: var(--text-muted);
  max-width: 36ch;
  font-size: 0.9375rem;
}

.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
  font-weight: 600;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-list a,
.footer-list span {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Delivery cities grid ---------- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

@media (max-width: 960px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .cities-grid { grid-template-columns: 1fr; }
}

.city-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: var(--text);
  min-height: 240px;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.city-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -60% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 183, 72, 0.18), transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 183, 72, 0.32);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.city-card:hover::before { opacity: 1; }

.city-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.city-card-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
}

.city-card-sub {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.city-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.city-card-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease-out);
}

.city-card:hover .city-card-arrow svg {
  transform: translateX(4px);
}

/* ---------- Feature grid (city pages) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 820px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2rem 1.75rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(245, 183, 72, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 183, 72, 0.22);
  margin-bottom: 1.25rem;
}

.feature-icon svg { width: 20px; height: 20px; }

.feature-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.feature-text {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    z-index: 90;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem var(--gutter);
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-top: 1px solid var(--border);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li a {
    display: block;
    padding: 1.25rem 0;
    font-size: 1.25rem;
    font-family: var(--serif);
    color: var(--text);
  }

  .nav-links li.nav-cta-mobile {
    border-bottom: 0;
    margin-top: 1.5rem;
  }

  .nav-links li.nav-cta-mobile a {
    background: var(--gold);
    color: #1a1308;
    border-radius: var(--radius-pill);
    text-align: center;
    padding: 1rem 1.5rem;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 600;
  }

  .site-header.is-open .nav-links {
    transform: translateX(0);
  }

  .split,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .split--reverse .split-media {
    order: 0;
  }

  .split-media,
  .visit-media {
    aspect-ratio: 4 / 3;
    max-height: 520px;
  }

  .cards-2 {
    grid-template-columns: 1fr;
  }

  .collage {
    grid-auto-rows: 70px;
    gap: 0.875rem;
  }

  .collage-tile--a { grid-column: 1 / -1; grid-row: span 5; }
  .collage-tile--b { grid-column: 1 / span 6; grid-row: span 4; }
  .collage-tile--c { grid-column: 7 / -1; grid-row: span 4; }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    justify-content: center;
  }
  .scroll-cue {
    display: none;
  }
}

/* ---------- Reviews carousel wrapper ---------- */
.reviews-wrap {
  max-width: 1080px;
  margin: 2.5rem auto 0;
}

.reviews-wrap emr-simple-carousel {
  display: block;
  width: 100%;
}

/* ---------- Hero avatars (city pages) ---------- */
.hero-reviews {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-reviews emr-avatars {
  display: inline-block;
}

/* ---------- Compare table (direct vs marketplaces) ---------- */
.compare-table {
  margin-top: 3rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: stretch;
}

.compare-row + .compare-row {
  border-top: 1px solid var(--border);
}

.compare-cell {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.compare-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.compare-row--head .compare-cell {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-elevated);
}

.compare-row--head .compare-cell.is-direct {
  color: var(--gold);
}

.compare-cell.is-direct {
  background: rgba(245, 183, 72, 0.04);
  font-weight: 500;
  color: var(--text);
}

.compare-cell.is-label {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 720px) {
  .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-cell {
    border-right: 0 !important;
    border-bottom: 1px solid var(--border);
  }
  .compare-cell:last-child { border-bottom: 0; }
  .compare-row--head { display: none; }
  .compare-cell.is-label {
    background: var(--bg-elevated);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .compare-cell.is-direct::before {
    content: "Direct · ";
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
  }
  .compare-cell.is-marketplace::before {
    content: "Marketplace · ";
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 0.04em;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .scroll-cue {
    animation: none;
  }
}
