/* ==========================================================================
   Nazret Eritrean/Ethiopian Food Mart — site styles
   GENERATED from src/styles.css.tmpl + config/site.json by scripts/render.py.
   Edit the template or the config, not this file.
   Palette: sign red, awning teal, warm gold, cream
   ========================================================================== */

/* Every color on the page derives from these tokens (tints via color-mix).
   Values come from config/site.json → brand.colors. */
:root {
  --bg: #f8f3ea;
  --bg-2: #efe6d7;
  --card: #fffbf4;
  --ink: #1d1512;
  --ink-2: #443630;
  --muted: #6b5b54;
  --line: rgba(29, 21, 18, 0.12);
  --brand: #df3631;
  --brand-2: #b32621;
  --gold: #dfa32f;
  --gold-2: #f2c765;
  --green: #0f3b48;
  --shadow: 0 10px 30px rgba(29, 21, 18, 0.12), 0 2px 6px rgba(29, 21, 18, 0.08);
  --shadow-lg: 0 30px 70px rgba(29, 21, 18, 0.22);
  --on-gold: #1d1512;
  --brand-gradient-mid: #e2622f;
  --bezel-top: #33241d;
  --bezel-bottom: #110b09;
  --footer-bg: #0d0706;
  --footer-ink: #f7eee2;
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-native: "Noto Sans Ethiopic", "Nyala", serif;
  --nav-h: 72px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg: #140f0d;
  --bg-2: #1d1613;
  --card: #241b17;
  --ink: #f7eee2;
  --ink-2: #e3d5c6;
  --muted: #bfae9f;
  --line: rgba(247, 238, 226, 0.13);
  --brand: #ef5348;
  --brand-2: #df3631;
  --gold: #efb544;
  --gold-2: #f7d283;
  --green: #2f7d90;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
  color-scheme: dark;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  transition: background-color .35s ease, color .35s ease;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.native { font-family: var(--font-native); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title { font-size: clamp(2rem, 4.2vw, 3.2rem); margin: .35em 0 .4em; }
.section-title em { font-style: italic; color: var(--brand); font-weight: 500; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.container { width: min(1180px, 92vw); margin-inline: auto; }
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: .95rem; line-height: 1; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px color-mix(in srgb, var(--brand) 35%, transparent); }
.btn-primary:hover { background: var(--brand-2); }
.btn-gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 8px 20px color-mix(in srgb, var(--gold) 35%, transparent); }
.btn-gold:hover { background: var(--gold-2); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-sm { padding: .6rem 1rem; font-size: .85rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-gradient-mid) 60%, var(--gold));
  color: #fff; font-family: var(--font-native); font-size: 1.05rem; font-weight: 700;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--brand) 35%, transparent);
}
.brand small { display: block; font-family: var(--font-native); font-weight: 400; font-size: .72rem; color: var(--muted); line-height: 1; margin-top: 2px; }
.nav-links { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { padding: .55rem .85rem; border-radius: 999px; font-weight: 600; font-size: .92rem; color: var(--ink-2); transition: background .2s, color .2s; }
.nav-links a:hover, .nav-links a.is-active { background: var(--bg-2); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent;
  display: grid; place-items: center; transition: border-color .2s, background .2s;
}
.icon-btn:hover { border-color: var(--ink); }
.icon-btn svg { width: 20px; height: 20px; }
.theme-toggle .sun, [data-theme="dark"] .theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: block; }
.nav-toggle { display: none; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 3px 0; transition: transform .25s, opacity .25s; border-radius: 2px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav-links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; padding: 1rem 4vw 1.25rem;
    background: var(--bg); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease;
  }
  .nav-links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: .85rem 1rem; font-size: 1.05rem; }
  /* Call button stays on phones, where tap-to-call matters most, but collapses
     to an icon-only circle the same size as the theme toggle. The label text is
     zero-sized rather than removed so screen readers still announce it. */
  .nav-actions .btn { width: 42px; height: 42px; padding: 0; justify-content: center; font-size: 0; gap: 0; }
  .nav-actions .btn svg { width: 20px; height: 20px; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 85% -10%, color-mix(in srgb, var(--gold) 22%, transparent), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, color-mix(in srgb, var(--brand) 16%, transparent), transparent 60%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { font-size: clamp(2.7rem, 6.2vw, 5rem); font-weight: 700; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--brand); font-style: italic; font-weight: 500; }
.hero h1 .native { display: block; font-size: .42em; font-weight: 500; color: var(--muted); margin-top: .35em; letter-spacing: 0; }
.hero-lede { font-size: 1.18rem; color: var(--muted); max-width: 52ch; margin: 1.25rem 0 1.75rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.chips li {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .8rem; border-radius: 999px; border: 1px solid var(--line);
  background: color-mix(in srgb, var(--card) 80%, transparent); font-size: .85rem; font-weight: 600; color: var(--ink-2);
}
.chips li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.chips li.is-open-now::before { background: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 18%, transparent); }
.chips li.is-closed-now::before { background: var(--brand); }

/* framed hero video (square brand montage) */
.phone {
  position: relative; width: min(460px, 86vw); aspect-ratio: 1 / 1; margin-inline: auto;
  border-radius: 36px; padding: 10px;
  background: linear-gradient(160deg, var(--bezel-top), var(--bezel-bottom));
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,255,255,.08);
  transform: rotate(-2deg);
  animation: float 7s ease-in-out infinite;
}
.phone::after {
  content: ""; position: absolute; inset: -14px; z-index: -1; border-radius: 48px;
  background: conic-gradient(from 200deg, var(--gold), var(--brand), var(--green), var(--gold));
  opacity: .35; filter: blur(22px);
}
.phone .screen { width: 100%; height: 100%; border-radius: 28px; overflow: hidden; background: #000; position: relative; }
.phone video { width: 100%; height: 100%; object-fit: cover; }
.phone .screen-caption {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .7rem; border-radius: 14px;
  background: rgba(0,0,0,.45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-size: .78rem; font-weight: 600; line-height: 1.25;
}
.phone .screen-caption svg { width: 18px; height: 18px; flex: none; }
.phone .screen-caption span small { display: block; font-weight: 400; opacity: .8; }
.hero-badge {
  position: absolute; right: -22px; top: 28%; z-index: 4;
  padding: .7rem .9rem; border-radius: 16px; background: var(--card); box-shadow: var(--shadow);
  transform: rotate(4deg); font-size: .8rem; font-weight: 700; line-height: 1.2; color: var(--ink);
}
.hero-badge b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--brand); }
@keyframes float { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone { transform: none; animation: none; margin-top: 1rem; }
  .hero-badge { right: 6px; }
}

/* ---------- Marquee strip ---------- */
.marquee { padding: 0; background: var(--ink); color: var(--bg); overflow: hidden; border-block: 3px solid var(--gold); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-track ul { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: .9rem 1.25rem; font-family: var(--font-display); font-size: 1.15rem; white-space: nowrap; }
.marquee-track li::before { content: "✦"; color: var(--gold); margin-right: 1.4rem; font-size: .8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-copy p { color: var(--ink-2); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.stat { padding: 1.1rem 1.2rem; border-radius: var(--radius-sm); background: var(--card); border: 1px solid var(--line); }
.stat b { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--brand); line-height: 1.1; }
.stat span { font-size: .85rem; color: var(--muted); font-weight: 600; }
.collage { position: relative; height: min(560px, 90vw); }
.collage img {
  position: absolute; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow-lg);
  border: 4px solid var(--card);
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.collage img:nth-child(1) { width: 58%; height: 78%; left: 0; top: 0; transform: rotate(-3deg); }
.collage img:nth-child(2) { width: 46%; height: 60%; right: 0; top: 14%; transform: rotate(4deg); }
.collage img:nth-child(3) { width: 40%; height: 40%; left: 30%; bottom: 0; transform: rotate(-1deg); }
.collage:hover img { transform: rotate(0) scale(1.02); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Menu highlights ---------- */
.menu { background: var(--bg-2); }
.menu-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.menu-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; }
.dish {
  position: relative; overflow: hidden; border-radius: var(--radius); background: var(--card);
  border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.dish img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dish:hover img { transform: scale(1.06); }
.dish-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dish h3 { font-size: 1.35rem; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.dish .price { font-family: var(--font-display); color: var(--brand); font-size: 1.15rem; white-space: nowrap; }
.dish p { color: var(--muted); font-size: .95rem; margin: 0; }
.dish .tags { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: auto; padding-top: .5rem; }
.tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .6rem; border-radius: 999px; background: var(--bg-2); color: var(--ink-2); }
.tag.vegan { background: color-mix(in srgb, var(--green) 15%, transparent); color: var(--green); }
.tag.hot { background: color-mix(in srgb, var(--brand) 14%, transparent); color: var(--brand); }
.dish.is-feature { grid-column: span 7; }
.dish.is-feature figure { aspect-ratio: 16 / 10; }
.dish.is-feature h3 { font-size: 1.8rem; }
.dish.span-5 { grid-column: span 5; }
.dish.span-4 { grid-column: span 4; }
.dish .ribbon {
  position: absolute; top: 14px; left: -4px; z-index: 2;
  background: var(--gold); color: var(--on-gold); font-weight: 800; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem .9rem .4rem 1rem; border-radius: 0 999px 999px 0; box-shadow: var(--shadow);
}
.menu-note { margin-top: 1.5rem; color: var(--muted); font-size: .92rem; display: flex; gap: .6rem; align-items: flex-start; }
.menu-note svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--gold); }
@media (max-width: 900px) { .dish.is-feature, .dish.span-5, .dish.span-4 { grid-column: span 12; } }
@media (min-width: 640px) and (max-width: 900px) { .dish.span-4 { grid-column: span 6; } }

/* ---------- Market ---------- */
.market-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.shelf { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.shelf-item {
  display: flex; gap: .85rem; align-items: flex-start; padding: 1rem 1.1rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  transition: transform .25s ease, border-color .25s ease;
}
.shelf-item:hover { transform: translateY(-3px); border-color: var(--gold); }
.shelf-item .ico { width: 40px; height: 40px; flex: none; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, color-mix(in srgb, var(--gold) 28%, transparent), color-mix(in srgb, var(--brand) 18%, transparent)); font-size: 1.25rem; }
.shelf-item h4 { font-size: 1.05rem; margin-bottom: .2rem; }
.shelf-item p { font-size: .88rem; color: var(--muted); margin: 0; }
.market-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.market-photos img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.market-photos img:nth-child(2) { margin-top: 2.5rem; }
@media (max-width: 900px) { .market-grid { grid-template-columns: 1fr; } .shelf { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: .9rem; margin-top: 2rem; }
.gallery-grid a {
  position: relative; overflow: hidden; border-radius: 14px; display: block; background: var(--card);
  box-shadow: var(--shadow);
}
.gallery-grid a[hidden] { display: none; }
.gallery-grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.gallery-grid a:hover img { transform: scale(1.07); }
.gallery-grid a::after {
  content: attr(data-caption); position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem .9rem .8rem;
  color: #fff; font-size: .85rem; font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s;
}
.gallery-grid a:hover::after, .gallery-grid a:focus-visible::after { opacity: 1; transform: none; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .gallery-grid .wide, .gallery-grid .big { grid-column: span 2; } }

.reel-cta {
  margin-top: 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: 1.4rem 1.6rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line);
}
.reel-cta .who { display: flex; align-items: center; gap: .9rem; }
.reel-cta .avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af); display: grid; place-items: center; color: #fff; }
.reel-cta .avatar svg { width: 22px; height: 22px; }
.reel-cta p { margin: 0; font-size: .95rem; color: var(--muted); }
.reel-cta .actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.reel-cta strong { display: block; color: var(--ink); font-size: 1.05rem; }

/* ---------- Watch (video cards) ---------- */
.watch-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.video-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: #000; box-shadow: var(--shadow);
  aspect-ratio: 1 / 1; cursor: pointer;
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-card .play {
  position: absolute; inset: 0; display: grid; place-items: center; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.05) 60%);
  color: #fff; transition: opacity .3s;
}
.video-card .play span { width: 74px; height: 74px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.18); border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(6px); transition: transform .25s, background .25s; }
.video-card .play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-card:hover .play span { transform: scale(1.08); background: var(--brand); border-color: var(--brand); }
.video-card.is-playing .play { opacity: 0; pointer-events: none; }
.video-card .label { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; color: #fff; font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,.6); pointer-events: none; }
.video-card .label small { display: block; font-weight: 500; opacity: .85; font-size: .82rem; }
@media (max-width: 700px) { .watch-grid { grid-template-columns: 1fr; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none; place-items: center;
  background: rgba(10, 6, 4, .92); padding: 2rem;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-height: 86vh; max-width: min(92vw, 900px); border-radius: 14px; box-shadow: var(--shadow-lg); animation: pop .3s ease; }
.lightbox figcaption { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: #fff; font-weight: 600; }
.lightbox .lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center;
}
.lightbox .lb-btn:hover { background: rgba(255,255,255,.2); }
.lightbox .lb-prev { left: 1.2rem; } .lightbox .lb-next { right: 1.2rem; }
.lightbox .lb-close { top: 1.2rem; right: 1.2rem; transform: none; }
.lightbox .lb-btn svg { width: 22px; height: 22px; }
@keyframes pop { from { transform: scale(.94); opacity: 0; } to { transform: none; opacity: 1; } }

/* ---------- Reviews ---------- */
.reviews { overflow: hidden; }
.review-header { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; align-items: end; margin-bottom: 2.5rem; }
.rating-card {
  justify-self: end; display: flex; align-items: center; gap: 1.2rem;
  padding: 1.1rem 1.4rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.rating-card .big { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--brand); }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.rating-card small { display: block; color: var(--muted); font-size: .82rem; margin-top: .25rem; }
.carousel { position: relative; }
.carousel-track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: .5rem .25rem 1.5rem; }
.carousel-track::-webkit-scrollbar { display: none; }
.review {
  flex: 0 0 min(420px, 84vw); scroll-snap-align: start; display: flex; flex-direction: column; gap: 1rem;
  padding: 1.6rem 1.7rem; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow);
  position: relative;
}
.review::before { content: "“"; position: absolute; top: .4rem; right: 1.2rem; font-family: var(--font-display); font-size: 5rem; line-height: 1; color: var(--gold); opacity: .35; }
.review blockquote { margin: 0; font-family: var(--font-display); font-size: 1.22rem; line-height: 1.45; color: var(--ink); flex: 1; }
.review footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .88rem; color: var(--muted); }
.review footer b { color: var(--ink); display: block; }
.review .src { display: inline-flex; align-items: center; gap: .35rem; padding: .3rem .6rem; border-radius: 999px; background: var(--bg-2); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.carousel-nav { display: flex; gap: .5rem; justify-content: center; margin-top: .25rem; }
.carousel-nav .icon-btn svg { width: 18px; height: 18px; }
.carousel-dots { display: flex; gap: .4rem; align-items: center; margin-inline: 1rem; }
.carousel-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; background: var(--line); padding: 0; transition: width .25s, background .25s; }
.carousel-dots button.is-active { width: 24px; border-radius: 999px; background: var(--brand); }
@media (max-width: 900px) { .review-header { grid-template-columns: 1fr; } .rating-card { justify-self: start; } }

/* ---------- Visit ---------- */
.visit { background: var(--ink); color: var(--bg); }
.visit .eyebrow { color: var(--gold); }
.visit .lede { color: color-mix(in srgb, var(--bg) 72%, transparent); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.visit-card { padding: 1.5rem 1.6rem; border-radius: var(--radius); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); }
.visit-card + .visit-card { margin-top: 1rem; }
.visit-card h3 { font-size: 1.25rem; margin-bottom: .75rem; display: flex; align-items: center; gap: .6rem; }
.visit-card h3 svg { width: 20px; height: 20px; color: var(--gold); }
.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.hours li { display: flex; justify-content: space-between; padding: .45rem 0; border-bottom: 1px dashed rgba(255,255,255,.14); font-size: .95rem; }
.hours li.is-today { color: var(--gold-2); font-weight: 700; }
.hours li.is-today span:first-child::after { content: " · today"; font-weight: 500; opacity: .8; font-size: .8em; }
.status-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .75rem; border-radius: 999px; font-size: .8rem; font-weight: 700; background: rgba(255,255,255,.1); margin-bottom: .75rem; }
.status-pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 25%, transparent); }
.status-pill.is-closed::before { background: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 25%, transparent); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.contact-list li { display: flex; align-items: center; gap: .8rem; }
.contact-list svg { width: 20px; height: 20px; color: var(--gold); flex: none; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 3px; }
.copy-btn { margin-left: auto; font-size: .75rem; font-weight: 700; padding: .3rem .65rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.25); background: transparent; color: inherit; }
.copy-btn:hover { background: rgba(255,255,255,.1); }
.order-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.25rem; }
.order-row .btn-ghost { border-color: rgba(255,255,255,.3); color: #fff; }
.map-wrap { border-radius: var(--radius); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); background: #222; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: saturate(.9); }
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { padding: 2.5rem 0; background: var(--footer-bg); color: color-mix(in srgb, var(--footer-ink) 75%, transparent); font-size: .9rem; }
.site-footer strong { color: var(--footer-ink); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.socials { display: flex; gap: .6rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); transition: background .2s, transform .2s; }
.socials a:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.site-footer .native { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }

/* Back-to-top */
.to-top {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40; width: 46px; height: 46px; border-radius: 50%;
  background: var(--brand); color: #fff; border: 0; display: grid; place-items: center; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .3s, transform .3s;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top svg { width: 20px; height: 20px; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 1.5rem; transform: translate(-50%, 20px); z-index: 60;
  padding: .7rem 1.1rem; border-radius: 999px; background: var(--ink); color: var(--bg); font-weight: 600; font-size: .9rem;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .phone, .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
