/* =============================================================
   Lewy's Fish & Chips — Premium Coastal Cornwall Brand Styles
   Mobile-first, accessible, fast.
   ============================================================= */

/* ----- Design tokens ----- */
:root {
  --navy:     #0a2540;
  --navy-2:   #112d4f;
  --teal:     #0e7490;
  --teal-2:   #155e75;
  --gold:     #d4a017;
  --gold-2:   #b8870f;
  --cream:    #faf6ef;
  --sand:     #f3ece0;
  --ink:      #15202b;
  --muted:    #5d6b7a;
  --line:     #e6dfd1;
  --white:    #ffffff;
  --success:  #16a34a;
  --danger:   #b91c1c;

  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.05);
  --shadow:    0 4px 12px rgba(10,37,64,.08), 0 2px 6px rgba(10,37,64,.06);
  --shadow-lg: 0 20px 40px -12px rgba(10,37,64,.25), 0 8px 16px rgba(10,37,64,.08);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 24px;

  --container: 1200px;
  --container-narrow: 880px;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --header-h: 72px;

  --ease: cubic-bezier(.4,0,.2,1);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, video, svg { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* ----- Base ----- */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); font-weight: 500; }
h2 { font-size: clamp(1.75rem, 3vw + .5rem, 3rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + .5rem, 1.75rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--ink); }
.lede { font-size: clamp(1.05rem, .5vw + 1rem, 1.25rem); color: var(--muted); line-height: 1.6; max-width: 60ch; }

a.text-link { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
a.text-link:hover { color: var(--teal-2); }

/* ----- Layout ----- */
.container { width: 100%; max-width: var(--container); padding: 0 1.25rem; margin: 0 auto; }
.container.narrow { max-width: var(--container-narrow); }
.section { padding: var(--space-9) 0; }
.section.tight { padding: var(--space-8) 0; }
.section-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8125rem;
  color: var(--teal);
  margin-bottom: var(--space-3);
}
.section-title { margin-bottom: var(--space-4); }
.section-intro { color: var(--muted); max-width: 60ch; }
.text-center { text-align: center; }
.text-center .lede, .text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }

/* ----- Header / Nav ----- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, .92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(10,37,64,.06);
  transition: all .3s var(--ease);
  /* Respect iPhone notch / Dynamic Island */
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.site-header.scrolled { background: rgba(250, 246, 239, .98); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
}
.nav-brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 600; color: var(--navy); font-size: 1.15rem; letter-spacing: -.01em; }
.nav-brand img {
  display: block;
  height: 40px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  max-width: 100%;
}
.nav-links {
  display: none; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--ink);
  position: relative; padding: .25rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 8px;
  color: var(--navy);
}
.nav-toggle:hover { background: rgba(10,37,64,.06); }
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  transform: translateY(-130%);
  transition: transform .35s var(--ease);
  z-index: 99;
  padding: 1.75rem 1.5rem calc(2.5rem + env(safe-area-inset-bottom, 0px));
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - var(--header-h) - env(safe-area-inset-top, 0px));
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu > a:not(.btn) {
  display: block;
  padding: 1.05rem .25rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -.01em;
  border-bottom: 1px solid rgba(10,37,64,.08);
  transition: color .15s var(--ease);
}
.mobile-menu > a:not(.btn):hover,
.mobile-menu > a:not(.btn):focus-visible { color: var(--gold); }
.mobile-menu > a:not(.btn)[aria-current="page"] { color: var(--gold); }
.mobile-menu .btn {
  width: 100%;
  padding: 1.05rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .015em;
  border-radius: 12px;
}
.mobile-menu .btn:first-of-type { margin-top: 1.75rem; }
.mobile-menu .btn + .btn { margin-top: .75rem; }
.mobile-menu .btn-order {
  box-shadow: 0 6px 16px rgba(255,122,0,.28);
}
.mobile-menu .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.mobile-menu .btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
}

/* =============================================================
   MOBILE BREATHING ROOM
   Taller header with safe-area aware top padding, more breathing
   room above the hero, more generous container padding.
   ============================================================= */
@media (max-width: 720px) {
  :root { --header-h: 88px; }
  .container { padding: 0 1.5rem; }
  /* Extra mobile header breathing room — stacks on top of safe-area inset */
  .site-header { padding-top: calc(env(safe-area-inset-top, 0px) + 10px); }
  .nav-brand img { height: 44px; }
  .nav-brand span { font-size: 1.05rem; }
  .nav-toggle { width: 48px; height: 48px; }

  .hero-inner { padding: var(--space-7) 0; }
  .hero h1 { font-size: clamp(2.1rem, 7vw, 2.8rem); line-height: 1.1; }
  .hero-meta { gap: 1.25rem; margin-top: 2rem; padding-top: 1.5rem; }

  .page-hero { padding: var(--space-8) 0 var(--space-7); }

  .section { padding: var(--space-8) 0; }
  .section.tight { padding: var(--space-7) 0; }

  .cta-band { padding: var(--space-7) 0; }
  .cta-band .hero-actions .btn { width: 100%; justify-content: center; }

  .footer-bottom { gap: .5rem; }
  .footer-credits { padding-top: 1.5rem; margin-top: 2rem; }

  /* Sticky CTA — give content room above it so it doesn't crop */
  body { padding-bottom: 72px; }
}
@media (min-width: 901px) {
  body { padding-bottom: 0; }
}

/* ----- Hero ----- */
.hero {
  position: relative;
  display: block;
  color: var(--white);
  isolation: isolate;
}
.hero-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('../images/hero-shop-front-hayle.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@supports (background-image: image-set(url('x') type('image/webp'))) {
  .hero-media {
    background-image: image-set(
      url('../images/hero-shop-front-hayle.webp') type('image/webp'),
      url('../images/hero-shop-front-hayle.jpg') type('image/jpeg')
    );
  }
}
@media (max-width: 640px) {
  .hero-media { aspect-ratio: 4 / 3; }
}
.hero-content {
  background: var(--navy);
  color: var(--white);
}
.hero-inner { padding: var(--space-8) 0 var(--space-8); max-width: 780px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .8125rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero p.lede { color: rgba(255,255,255,.92); max-width: 56ch; font-size: clamp(1.05rem, .75vw + 1rem, 1.3rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.5rem;
  padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.85); font-size: .9rem;
}
.hero-meta strong { display: block; font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; color: var(--white); letter-spacing: -.01em; }
.hero-meta .stars { color: var(--gold); letter-spacing: .1em; }

/* ----- Trust strip ----- */
.trust-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 1.5rem 0;
}
.trust-strip-row {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
.trust-strip-row > div { padding: .25rem .5rem; }
.trust-strip strong { display: block; color: var(--gold); font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.trust-strip span { font-size: .8125rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,246,239,.7); }
@media (min-width: 720px) { .trust-strip-row { grid-template-columns: repeat(4, 1fr); } }

/* ----- Reviews ----- */
.reviews-hero { display: flex; flex-direction: column; align-items: center; gap: 1rem; margin-bottom: 3rem; }
.rating-summary {
  display: inline-flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.rating-summary .num { font-family: var(--font-display); font-size: 2.25rem; color: var(--navy); line-height: 1; }
.rating-summary .stars { color: var(--gold); letter-spacing: .1em; font-size: 1.1rem; }
.rating-summary .count { color: var(--muted); font-size: .9rem; }
.review-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: var(--gold); letter-spacing: .12em; }
.review-quote { font-size: 1rem; line-height: 1.6; color: var(--ink); flex: 1; }
.review-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--sand); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-family: var(--font-display); }
.review-name { font-weight: 600; color: var(--navy); font-size: .95rem; }
.review-source { color: var(--muted); font-size: .8125rem; }

/* ----- Featured dishes ----- */
.dish-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .dish-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .dish-grid { grid-template-columns: repeat(3, 1fr); } }
.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.dish-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dish-img {
  aspect-ratio: 4 / 3;
  background: var(--sand);
  background-size: cover; background-position: center;
  position: relative;
}
.dish-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gold); color: var(--navy);
  padding: .35rem .75rem; border-radius: 999px;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.dish-body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dish-body h3 { font-size: 1.4rem; }
.dish-body p { color: var(--muted); font-size: .95rem; }
.dish-price { margin-top: auto; padding-top: 1rem; display: flex; justify-content: space-between; align-items: baseline; font-family: var(--font-display); color: var(--teal); font-size: 1.25rem; font-weight: 500; }
.dish-price span { color: var(--muted); font-size: .85rem; font-family: var(--font-body); font-weight: 500; }

/* ----- Split / About ----- */
.split {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.split.reverse > :first-child { order: 2; }
@media (min-width: 900px) { .split.reverse > :first-child { order: initial; } .split.reverse > :last-child { order: -1; } }
.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-img .badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--white); padding: 1rem 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-family: var(--font-display); color: var(--navy);
}
.split-img .badge strong { display: block; font-size: 1.5rem; font-weight: 500; }
.split-img .badge span { font-size: .8rem; color: var(--muted); font-family: var(--font-body); letter-spacing: .08em; text-transform: uppercase; }

/* ----- Why us ----- */
.why-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.why-card:hover { transform: translateY(-3px); border-color: var(--gold); }
.why-icon {
  width: 52px; height: 52px;
  background: var(--sand);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.why-card p { color: var(--muted); font-size: .95rem; }

/* ----- Gallery ----- */
.gallery-grid {
  display: grid; gap: .75rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid.full { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 720px) { .gallery-grid.full { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
  cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,.4));
  opacity: 0; transition: opacity .3s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

/* ----- Lightbox ----- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,37,64,.92);
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 95vw; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease);
}
.lightbox-close { top: 1.25rem; right: 1.25rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }
.lightbox svg { width: 24px; height: 24px; }

/* ----- Map ----- */
.map-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--sand);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----- Info card ----- */
.info-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .info-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.info-card h3 { font-size: 1.25rem; }
.info-card .info-icon {
  width: 48px; height: 48px;
  background: var(--navy); color: var(--gold);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
}
.info-card .info-icon svg { width: 22px; height: 22px; }
.info-card a { color: var(--teal); }
.info-card a:hover { color: var(--teal-2); text-decoration: underline; }

/* Hours table */
.hours-list { display: flex; flex-direction: column; gap: .35rem; }
.hours-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .95rem;
  padding: .35rem 0;
  border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: 0; }
.hours-list strong { color: var(--navy); font-weight: 600; }
.hours-list span { color: var(--muted); }
.hours-list .today { background: var(--sand); border-radius: 6px; padding: .5rem .75rem; margin: -.15rem -.75rem; border-bottom: 0; }
.hours-list .today strong, .hours-list .today span { color: var(--navy); font-weight: 600; }

/* ----- FAQ ----- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[open] { border-color: var(--teal); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.5rem; color: var(--teal); font-weight: 400;
  transition: transform .25s var(--ease);
  font-family: var(--font-body);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.5rem; color: var(--muted); font-size: 1rem; }

/* ----- Menu page ----- */
.menu-toolbar {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 720px) {
  .menu-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
}
.menu-search { display: flex; gap: .5rem; align-items: center; flex: 1; }
.menu-search input {
  width: 100%; padding: .75rem 1rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--cream);
}
.menu-search input:focus { outline: none; border-color: var(--teal); background: var(--white); }
.menu-actions { display: flex; flex-wrap: wrap; gap: .5rem; }

.menu-category { margin-bottom: 3.5rem; }
.menu-category-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
}
.menu-category-head h2 { font-size: clamp(1.5rem, 2vw + .5rem, 2.25rem); margin: 0; }
.menu-category-head p { color: var(--muted); font-size: .95rem; }
.menu-items { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .menu-items { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 2.5rem; } }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--line);
}
.menu-item h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: .25rem; }
.menu-item p { color: var(--muted); font-size: .9rem; line-height: 1.5; }
.menu-item .price { font-family: var(--font-display); color: var(--teal); font-size: 1.15rem; font-weight: 500; }
.menu-item.tag-popular h3::after {
  content: 'Popular'; margin-left: .65rem;
  background: var(--gold); color: var(--navy);
  padding: .15rem .55rem; border-radius: 999px;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  vertical-align: middle;
  font-family: var(--font-body);
}
.menu-item.is-hidden { display: none; }
.menu-empty {
  text-align: center; padding: 3rem 1rem; color: var(--muted);
  background: var(--sand); border-radius: var(--radius);
}

/* ----- About / Story ----- */
.story-stats {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
  background: var(--navy);
  color: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  margin-top: 3rem;
}
@media (min-width: 900px) { .story-stats { grid-template-columns: repeat(4, 1fr); } }
.story-stats div strong {
  display: block; font-family: var(--font-display); color: var(--gold);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 500; margin-bottom: .25rem;
}
.story-stats div span { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250,246,239,.7); }

/* Values list */
.values-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; margin-top: 3rem; }
@media (min-width: 800px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-block { position: relative; padding-left: 1.5rem; border-left: 3px solid var(--gold); }
.value-block h3 { margin-bottom: .5rem; }
.value-block p { color: var(--muted); }

/* ----- Contact form ----- */
.contact-grid {
  display: grid; gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; } }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.field label {
  display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--navy);
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(14,116,144,.15);
}
.field .hint { color: var(--muted); font-size: .8rem; margin-top: .35rem; }
.form-row { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-status { padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: .95rem; display: none; }
.form-status.success { display: block; background: #e7f7ee; color: var(--success); border: 1px solid #b6e2c5; }
.form-status.error   { display: block; background: #fdecec; color: var(--danger);  border: 1px solid #f5c6c6; }

.contact-info-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-info-card .info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--sand); color: var(--teal);
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info-card .info-icon svg { width: 22px; height: 22px; }
.contact-info-card h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.contact-info-card p, .contact-info-card a { color: var(--muted); font-size: .95rem; line-height: 1.5; }
.contact-info-card a { color: var(--teal); }
.contact-info-card a:hover { text-decoration: underline; }

/* ----- Page hero (sub pages) ----- */
.page-hero {
  background: linear-gradient(140deg, var(--navy) 0%, var(--teal-2) 100%);
  color: var(--white);
  padding: calc(var(--space-9) + 1rem) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(212,160,23,.15), transparent 50%), radial-gradient(circle at 80% 70%, rgba(14,116,144,.3), transparent 50%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 60ch; font-size: 1.15rem; }
.crumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1rem; letter-spacing: .05em; }
.crumbs a { color: var(--gold); }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { margin: 0 .5rem; opacity: .5; }

/* ----- CTA band ----- */
.cta-band {
  background: var(--navy);
  background-image: radial-gradient(circle at 100% 0%, rgba(212,160,23,.15), transparent 40%);
  color: var(--cream);
  padding: var(--space-8) 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(250,246,239,.8); max-width: 50ch; margin: 0 auto 2rem; }
.cta-band .hero-actions { justify-content: center; }

/* ----- Footer ----- */
.site-footer { background: #061a30; color: rgba(250,246,239,.78); padding: var(--space-8) 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img {
  display: block;
  height: 56px;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  flex-shrink: 0;
  max-width: 100%;
}
.footer-brand p { color: rgba(250,246,239,.65); font-size: .95rem; max-width: 36ch; }
.footer-col h4 { color: var(--gold); font-family: var(--font-body); font-size: .8125rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; font-size: .95rem; }
.footer-col a { color: rgba(250,246,239,.78); transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.social-icons { display: flex; gap: .55rem; margin-top: .5rem; }
.social-icons a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0a1626;
  border: 1px solid rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(250,246,239,.92);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.social-icons a:hover { transform: translateY(-2px); }
.social-icons a:focus-visible { transform: translateY(-2px); }
.social-icons svg { width: 20px; height: 20px; transition: transform .2s var(--ease); }
.social-icons a:hover svg { transform: scale(1.08); }
.social-icons a[aria-label="Facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}
.social-icons a[aria-label="Instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 22%, #dc2743 50%, #cc2366 73%, #bc1888 100%);
  border-color: transparent;
  color: #ffffff;
}
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .8125rem; color: rgba(250,246,239,.5);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
}

/* ----- Sticky mobile CTA ----- */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--navy);
  color: var(--white);
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom, 0px));
  padding-left: calc(1rem + env(safe-area-inset-left, 0px));
  padding-right: calc(1rem + env(safe-area-inset-right, 0px));
  display: flex; gap: .5rem;
  box-shadow: 0 -8px 20px rgba(10,37,64,.3);
}
.sticky-cta .btn { flex: 1; padding: .8rem 1rem; font-size: .95rem; }
.sticky-cta .btn-primary { background: var(--gold); color: var(--navy); }
.sticky-cta .btn-secondary { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
@media (min-width: 900px) { .sticky-cta { display: none; } }

/* Add bottom padding on mobile to make room for sticky bar */
@media (max-width: 899px) {
  body { padding-bottom: 70px; }
}

/* ----- Reveal animation ----- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  .reveal.in { opacity: 1; transform: translateY(0); }
}

/* ----- Utility ----- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }
.no-pt { padding-top: 0; }
.no-pb { padding-bottom: 0; }
.mt-6 { margin-top: 2rem; }

/* =============================================================
   Order Online button — primary CTA across the site
   ============================================================= */
.btn-order {
  background: #ff7a00;
  color: #fff;
  border: 1px solid #ff7a00;
  box-shadow: 0 2px 8px rgba(255,122,0,.25);
  font-weight: 700;
}
.btn-order:hover { background: #e76d00; border-color: #e76d00; color: #fff; }
.btn-order:focus-visible { outline-color: #ff7a00; }

/* =============================================================
   DARK MENU SHEET — modelled after the printed menu PDF
   ============================================================= */
.menu-sheet-wrap {
  background: var(--cream);
  padding: var(--space-8) 0 var(--space-9);
}
.menu-sheet {
  --menu-bg: #0d1b2a;
  --menu-bg-2: #0a1626;
  --menu-fg: #ffffff;
  --menu-accent: #3eb6cb;
  --menu-muted: rgba(255,255,255,.7);
  --menu-rule: rgba(255,255,255,.18);

  background: var(--menu-bg);
  color: var(--menu-fg);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1.25rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.menu-sheet::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
}

/* Sheet header — phone + social */
.menu-sheet-head { position: relative; z-index: 1; }
.menu-sheet-contact {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding: .25rem 0;
}
.menu-sheet-phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: 'Oswald', var(--font-body);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw + .5rem, 1.5rem);
  letter-spacing: .04em;
  color: var(--menu-fg);
  text-decoration: none;
}
.menu-sheet-phone svg {
  width: 28px; height: 28px;
  padding: 6px;
  background: var(--menu-accent);
  border-radius: 50%;
  color: var(--menu-bg);
}
.menu-sheet-phone:hover { color: var(--menu-accent); }
.menu-sheet-social { display: inline-flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.menu-sheet-social a {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--menu-accent);
  transition: opacity .15s var(--ease);
}
.menu-sheet-social a svg { width: 100%; height: 100%; }
.menu-sheet-social a:hover { opacity: .8; }
.menu-sheet-handle {
  font-family: 'Oswald', var(--font-body);
  text-transform: uppercase; letter-spacing: .06em;
  font-size: 1rem; font-weight: 500;
  color: var(--menu-fg);
}

/* Dotted divider — matches printed menu */
.menu-sheet-divider {
  border: 0;
  border-top: 2px dotted var(--menu-rule);
  margin: 1.5rem 0;
}

/* Columns */
.menu-sheet-cols {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  position: relative; z-index: 1;
}
@media (min-width: 820px) {
  .menu-sheet-cols { grid-template-columns: 1fr 1fr; gap: 3rem 4rem; }
}
.menu-sheet-col { display: flex; flex-direction: column; }

/* Category */
.menu-cat { padding: .25rem 0; }
.menu-cat h2 {
  font-family: 'Oswald', var(--font-body);
  font-weight: 600;
  font-size: clamp(1.6rem, 1.5vw + 1rem, 2.1rem);
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--menu-fg);
  margin: 0 0 1rem 0;
  line-height: 1;
}
.menu-cat-list { display: flex; flex-direction: column; gap: .25rem; }
.menu-cat-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: .75rem;
  padding: .15rem 0;
  font-family: 'Oswald', var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--menu-fg);
}
.menu-cat-list li .n small {
  font-size: .65em;
  letter-spacing: .08em;
  opacity: .65;
  margin-left: .5em;
  text-transform: uppercase;
}
.menu-cat-list li .aster { color: var(--menu-accent); margin-left: .1em; }
.menu-cat-list li .p {
  font-family: 'Oswald', var(--font-body);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  color: var(--menu-fg);
  letter-spacing: .03em;
}
.menu-cat-note {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--menu-accent);
  margin-top: .85rem;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.45;
}

/* Sheet foot — find us + hygiene */
.menu-sheet-foot {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative; z-index: 1;
  margin-top: .5rem;
}
@media (min-width: 720px) {
  .menu-sheet-foot { grid-template-columns: 1fr auto; gap: 2rem; }
}
.menu-find-us h3 {
  font-family: 'Oswald', var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--menu-accent);
  margin-bottom: .35rem;
}
.menu-find-us p {
  color: var(--menu-fg);
  font-family: 'Oswald', var(--font-body);
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .35rem;
  line-height: 1.4;
}
.menu-find-us-link {
  color: var(--menu-accent);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.menu-find-us-link:hover { color: var(--menu-fg); }

.menu-hygiene {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: .35rem;
}
.hygiene-pill {
  display: inline-flex; align-items: center; gap: .65rem;
  background: var(--menu-bg-2);
  border: 1px solid var(--menu-rule);
  border-radius: 999px;
  padding: .35rem .35rem .35rem .85rem;
}
.hygiene-label {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--menu-fg);
}
.hygiene-score {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--menu-accent);
  color: var(--menu-bg);
  border-radius: 50%;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 1rem;
}
.hygiene-very-good {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--menu-muted);
  font-weight: 600;
}

/* Allergens card */
.allergens-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.allergens-card h3 {
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: .75rem;
}
.allergens-card p { color: var(--muted); font-size: .95rem; }

/* =============================================================
   APP PROMOTION SECTION (homepage)
   ============================================================= */
.app-promo {
  background: linear-gradient(135deg, var(--navy) 0%, #133356 100%);
  color: var(--white);
  padding: var(--space-8) 0;
  position: relative;
  overflow: hidden;
}
.app-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,160,23,.18), transparent 60%);
  pointer-events: none;
}
.app-promo .container { position: relative; z-index: 1; }
.app-promo-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .app-promo-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}
.app-promo-text .section-eyebrow { color: var(--gold); }
.app-promo h2 { color: var(--white); margin-bottom: 1rem; }
.app-promo .lede { color: rgba(255,255,255,.85); max-width: 50ch; }
.app-promo-hint {
  margin-top: 1.25rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .02em;
}

/* Dual QR + badge cards */
.app-promo-downloads {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 460px) {
  .app-promo-downloads { grid-template-columns: 1fr; gap: 1.5rem; max-width: 280px; }
}
.app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
}
.app-download-qr {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  width: 100%;
  max-width: 200px;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.4), 0 4px 12px rgba(0,0,0,.2);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.app-download-qr:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -10px rgba(0,0,0,.5), 0 8px 18px rgba(0,0,0,.25);
}
.app-download-qr img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
.app-store-badge {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .5rem 1rem .5rem .85rem;
  background: #0a1626;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  font-family: var(--font-body);
  transition: transform .15s var(--ease), background .15s var(--ease), border-color .15s var(--ease);
  width: 100%;
  max-width: 200px;
  justify-content: flex-start;
}
.app-store-badge:hover {
  transform: translateY(-2px);
  background: #050d18;
  border-color: rgba(255,255,255,.3);
}
.app-store-badge svg { width: 26px; height: 26px; flex-shrink: 0; color: #fff; }
.app-store-badge .badge-line-1 {
  display: block;
  font-size: .62rem;
  letter-spacing: .05em;
  opacity: .75;
  line-height: 1.1;
}
.app-store-badge .badge-line-2 {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .01em;
}

/* Phone mockup */
.app-promo-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  background: linear-gradient(180deg, #1a1a1a 0%, #2a2a2a 100%);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #333 inset,
    0 30px 60px -20px rgba(0,0,0,.5),
    0 18px 36px -18px rgba(0,0,0,.4);
}
.app-promo-mockup::before {
  content: '';
  position: absolute;
  top: 20px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 24px;
  background: #1a1a1a;
  border-radius: 12px;
  z-index: 2;
}
.app-promo-screen {
  width: 100%; height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem 1rem;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.app-promo-screen img { width: 50%; max-width: 110px; margin-bottom: 1.25rem; }
.app-promo-screen .screen-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: .35rem;
  line-height: 1.15;
}
.app-promo-screen .screen-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.app-promo-screen .screen-btn {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: .85rem;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  letter-spacing: .04em;
}

/* =============================================================
   FEATURES strip (Replaces existing trust-strip content)
   ============================================================= */
.feature-row {
  display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .feature-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .feature-row { grid-template-columns: repeat(4, 1fr); }
}
.feature-row > div {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .5rem;
  text-align: left;
}
.feature-row .feature-tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: .9rem;
}
.feature-row strong {
  display: block;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.2;
}
.feature-row span {
  color: rgba(250,246,239,.7);
  font-size: .82rem;
  letter-spacing: .04em;
  line-height: 1.4;
  margin-top: .15rem;
  display: block;
}

/* =============================================================
   Page-hero CTA contrast — actions on page hero
   ============================================================= */
.page-hero .hero-actions .btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.page-hero .hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,.08);
}

/* =============================================================
   Footer credits row — agency + ordering platform credits
   ============================================================= */
.footer-credits {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  gap: 1.5rem 2rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) {
  .footer-credits { grid-template-columns: 1fr auto; }
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: .85rem;
  color: rgba(250,246,239,.55);
  font-size: .8125rem;
  letter-spacing: .04em;
  line-height: 1.4;
}
.footer-credit-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: .7rem;
  color: rgba(250,246,239,.5);
  margin-right: .15rem;
}
.luna-credit {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  color: rgba(250,246,239,.7);
  transition: opacity .15s var(--ease);
}
.luna-credit:hover { opacity: .85; color: var(--gold); }
.luna-credit-logo {
  display: block;
  height: 30px;
  width: auto;
  max-width: 260px;
  flex-shrink: 0;
}
.footer-credit-text { color: rgba(250,246,239,.55); }
.footer-credit-text a { color: rgba(250,246,239,.85); }
.footer-credit-text a:hover { color: var(--gold); }

/* ----- Print ----- */
@media print {
  .site-header, .site-footer, .sticky-cta, .hero-actions, .nav-toggle { display: none !important; }
  body { background: white; color: black; padding: 0; }
  .menu-sheet { background: white !important; color: black !important; box-shadow: none !important; border: 1px solid #ddd; }
  .menu-sheet *, .menu-cat h2, .menu-cat-list li, .menu-cat-list li .p { color: black !important; }
  .menu-cat-note, .menu-sheet-phone svg { color: #444 !important; background: transparent !important; }
}
