/* ============================================================
   MakanMana — design tokens + global styles
   Dark "midnight hawker" default · light "banana-leaf morning"
   ============================================================ */

:root {
  --bg: #0d0b09;
  --surface: #171310;
  --surface-2: #201a15;
  --ink: #f4ede2;
  --muted: #b0a494;
  --faint: #7d7365;
  --soft: rgba(244, 237, 226, 0.12);
  --accent: #e8542f;        /* sambal red-orange */
  --accent-ink: #fff7ef;
  --gold: #e9b96a;          /* satay gold */
  --leaf: #7fae6f;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --r-btn: 10px;   /* buttons/pills: rounded rectangle, not pill */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, system-ui, sans-serif;
}

html.light {
  --bg: #faf5ec;
  --surface: #ffffff;
  --surface-2: #f3ebdd;
  --ink: #241d14;
  --muted: #6e6355;
  --faint: #a3988a;
  --soft: rgba(36, 29, 20, 0.1);
  --accent: #c8431f;
  --accent-ink: #fff7ef;
  --gold: #a97a2c;
  --leaf: #4c7a3d;
  --shadow: 0 16px 40px rgba(60, 40, 20, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

::selection { background: var(--accent); color: var(--accent-ink); }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 560; line-height: 1.06; letter-spacing: -0.01em; margin: 0; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 14px;
}
.lede { color: var(--muted); font-size: 18px; max-width: 60ch; }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.72), transparent);
  backdrop-filter: blur(2px);
}
html.light .nav { background: linear-gradient(to bottom, rgba(250, 245, 236, 0.8), transparent); }
.nav .brand {
  font-family: var(--font-display); font-size: 22px; font-weight: 640;
  text-decoration: none; letter-spacing: -0.01em;
}
.brand .q { color: var(--accent); }
.nav-links { display: flex; gap: 10px; align-items: center; }
.nav-links a, .theme-btn {
  text-decoration: none; font-size: 14px; font-weight: 550; color: var(--ink);
  padding: 9px 16px; border-radius: var(--r-btn); border: 1px solid var(--soft);
  background: color-mix(in srgb, var(--bg) 55%, transparent);
  cursor: pointer; transition: all 0.25s ease;
}
.nav-links a:hover, .theme-btn:hover { border-color: var(--accent); color: var(--accent); }
.nav-links a.cta { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.nav-links a.cta:hover { filter: brightness(1.1); color: var(--accent-ink); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: clip; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1800ms ease; }
.hero-slide.active { opacity: 1; }
.hero-slide .ph { position: absolute; inset: -4%; background-size: cover; background-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--bg) 4%, rgba(13, 11, 9, 0.55) 38%, rgba(13, 11, 9, 0.25) 70%),
    radial-gradient(120% 60% at 20% 100%, rgba(13, 11, 9, 0.6), transparent 60%);
}
html.light .hero-scrim {
  background: linear-gradient(to top, var(--bg) 4%, rgba(20, 14, 8, 0.5) 40%, rgba(20, 14, 8, 0.22) 72%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 0 9vh; color: #f6efe4; }
/* type dialled down + tighter leading (Andrew 14/07: eyebrow -25%, title -30%, sub -30%, gaps tighter) */
.hero .eyebrow { font-size: 9px; letter-spacing: 0.2em; margin-bottom: 10px; }
.hero h1 { font-size: clamp(36px, 6.6vw, 92px); line-height: 0.98; color: #f8f1e5; }
.hero h1 .swap { color: var(--gold); font-style: italic; }
.hero .sub { margin-top: 16px; font-size: clamp(13px, 1.4vw, 15px); line-height: 1.4; max-width: 56ch; color: rgba(248, 241, 229, 0.85); }
.hero-caption {
  position: absolute; right: 26px; bottom: 26px; z-index: 3;
  font-size: 12px; color: rgba(248, 241, 229, 0.75);
  background: rgba(10, 8, 6, 0.5); border: 1px solid rgba(248, 241, 229, 0.16);
  padding: 7px 12px; border-radius: var(--r-btn); text-decoration: none; max-width: 46ch;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hero-caption:hover { border-color: var(--gold); }
.hero-search { margin-top: 34px; display: flex; gap: 10px; max-width: 620px; }
.hero-search input {
  flex: 1; padding: 16px 22px; font-size: 16px; border-radius: var(--r-btn);
  border: 2px solid var(--gold); background: rgba(12, 10, 8, 0.55);
  box-shadow: 0 0 0 3px rgba(233, 185, 106, 0.18);
  color: #f6efe4; outline: none; backdrop-filter: blur(8px);
}
.hero-search input::placeholder { color: rgba(246, 239, 228, 0.55); }
.hero-search input:focus { box-shadow: 0 0 0 4px rgba(233, 185, 106, 0.3); }
.hero-search button {
  padding: 16px 28px; border-radius: var(--r-btn); border: none; cursor: pointer;
  background: var(--accent); color: var(--accent-ink); font-size: 16px; font-weight: 600;
  transition: filter 0.2s ease, transform 0.2s ease;
}
.hero-search button:hover { filter: brightness(1.12); transform: translateY(-1px); }
.hero-chips { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-chips a {
  font-size: 13px; padding: 7px 14px; border-radius: var(--r-btn); text-decoration: none;
  border: 1px solid rgba(248, 241, 229, 0.22); color: rgba(248, 241, 229, 0.85);
  background: rgba(12, 10, 8, 0.35); transition: all 0.2s ease;
}
.hero-chips a:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--soft); padding: 18px 0; background: var(--surface); }
.marquee-track { display: flex; gap: 48px; width: max-content; animation: marquee 46s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-size: 22px; white-space: nowrap; color: var(--muted);
}
.marquee-track span b { color: var(--accent); font-weight: 600; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.block { padding: 96px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); }
.section-head .more { font-size: 14px; font-weight: 550; color: var(--gold); text-decoration: none; white-space: nowrap; }
.section-head .more:hover { text-decoration: underline; }

/* three doors */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.door {
  position: relative; border-radius: var(--radius); padding: 34px 28px 30px;
  background: var(--surface); border: 1px solid var(--soft);
  text-decoration: none; overflow: hidden; transition: transform 0.35s ease, border-color 0.35s ease;
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end;
}
.door:hover { transform: translateY(-6px); border-color: var(--accent); }
.door .num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display); font-size: 64px; color: var(--soft); font-weight: 600; line-height: 1;
}
.door h3 { font-size: 26px; margin-bottom: 8px; }
.door p { color: var(--muted); font-size: 15px; margin: 0; }
.door .go { margin-top: 18px; color: var(--accent); font-weight: 600; font-size: 14px; }

/* top 10 rails */
.rail { display: flex; gap: 18px; overflow-x: auto; padding: 4px 4px 18px; scroll-snap-type: x mandatory; }
.rail::-webkit-scrollbar { height: 8px; }
.rail::-webkit-scrollbar-thumb { background: var(--soft); border-radius: 99px; }
.rail-card {
  scroll-snap-align: start; flex: 0 0 300px; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--soft); text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease; position: relative;
}
.rail-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.rail-card .thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.rail-card .body { padding: 16px 18px 18px; }
.rail-card .rank {
  position: absolute; top: 12px; left: 12px; width: 40px; height: 40px; border-radius: 12px;
  background: var(--accent); color: var(--accent-ink); display: grid; place-items: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 640;
}
.rail-card h4 { margin: 0 0 4px; font-size: 18px; font-family: var(--font-display); }
.rail-card .meta { font-size: 13px; color: var(--muted); }

/* kol rail */
.kol-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.kol-card {
  border-radius: var(--radius); padding: 22px; background: var(--surface); border: 1px solid var(--soft);
  text-decoration: none; transition: border-color 0.3s ease, transform 0.3s ease;
}
.kol-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.kol-card .plat { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.kol-card h4 { font-family: var(--font-display); font-size: 19px; margin: 8px 0 6px; }
.kol-card p { font-size: 13.5px; color: var(--muted); margin: 0; }
.kol-card .followers { margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* how it works / ai strip */
.ai-strip { background: var(--surface); border-block: 1px solid var(--soft); }
.ai-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ai-step { padding: 20px 16px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--soft); }
.ai-step .k { font-family: var(--font-display); color: var(--gold); font-size: 15px; margin-bottom: 6px; font-weight: 600; }
.ai-step p { margin: 0; font-size: 13px; color: var(--muted); }

/* footer */
footer { padding: 70px 0 40px; border-top: 1px solid var(--soft); }
footer .cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
footer .small { font-size: 13px; color: var(--faint); max-width: 62ch; }
footer a { color: var(--muted); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--accent); }

/* ---------- reveals (JS-gated, reduced-motion-safe) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(28px); }
}
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09) translate(-1.1%, 0.9%); } }
.kenburns { animation: kenburns 10s ease-out both; }
@media (prefers-reduced-motion: reduce) {
  .kenburns, .marquee-track { animation: none; }
}
/* static capture/verification mode (?static=1) */
html.static .hero { min-height: 760px; }
html.static .kenburns, html.static .marquee-track { animation: none; }
html.static .reveal { opacity: 1 !important; transform: none !important; }

/* ============================================================
   EXPLORE PAGE
   ============================================================ */
.explore-body { padding-top: 86px; min-height: 100vh; }
.explore-top { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--soft); padding: 14px 0; }
.explore-top .row1 { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.search-box { flex: 1 1 260px; display: flex; align-items: center; gap: 10px; background: var(--surface); border: 2px solid var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent); border-radius: var(--r-btn); padding: 4px 6px 4px 18px; transition: box-shadow 0.2s ease; }
.search-box:focus-within { box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 26%, transparent); }
.search-box input { flex: 1; border: none; outline: none; background: transparent; color: var(--ink); font-size: 15px; padding: 9px 0; }
.search-box button { border: none; border-radius: var(--r-btn); background: var(--accent); color: var(--accent-ink); font-weight: 600; padding: 9px 18px; cursor: pointer; }
.pill {
  border: 1px solid var(--soft); background: var(--surface); color: var(--ink);
  border-radius: var(--r-btn); padding: 9px 16px; font-size: 13.5px; font-weight: 550; cursor: pointer;
  transition: all 0.2s ease; white-space: nowrap;
}
.pill:hover { border-color: var(--gold); }
.pill.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.pill.gold.on { background: var(--gold); border-color: var(--gold); color: #241d14; }
.chip-row { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0 2px; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
select.pill { appearance: none; }

.top-banner { margin-top: 18px; padding: 22px 26px; border-radius: var(--radius); background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 20%, var(--surface)), var(--surface)); border: 1px solid var(--soft); }
.top-banner h2 { font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 8px; }
.top-banner p { color: var(--muted); font-size: 14.5px; max-width: 72ch; margin: 0; line-height: 1.55; }
.top-banner a { color: var(--gold); font-weight: 600; text-decoration: none; }
.card.ranked .thumb { position: relative; }
.rank-badge { position: absolute; top: 12px; left: 12px; z-index: 2; min-width: 44px; height: 44px; padding: 0 10px; border-radius: 12px; background: var(--accent); color: var(--accent-ink); font-family: var(--font-display); font-weight: 700; font-size: 22px; display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.badge.lists { background: var(--gold); color: #241d14; }
.card.ranked .badges { left: auto; right: 10px; justify-content: flex-end; flex-wrap: wrap; max-width: 62%; }
.results-meta { padding: 18px 0 6px; color: var(--muted); font-size: 14px; }
.results-meta b { color: var(--ink); }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 18px; padding-bottom: 80px; }
.card {
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
  border: 1px solid var(--soft); cursor: pointer; transition: transform 0.3s ease, border-color 0.3s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent); }
.card .thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.card .badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; padding: 5px 10px; border-radius: var(--r-btn);
  background: rgba(10, 8, 6, 0.72); color: #f4ede2; backdrop-filter: blur(4px);
}
.badge.michelin { background: #b3252e; color: #fff; }
.badge.rating { background: rgba(10, 8, 6, 0.78); color: #f4c34c; }
.badge.closed { background: #7a2020; color: #fff; }
.badge.rating small { color: #cfc6b8; font-weight: 500; }
.badge.halal { background: #2c6e46; color: #fff; }
.badge.dist { background: var(--gold); color: #241d14; }
.card .body { padding: 16px 18px 18px; }
.card h3 { font-size: 19px; margin-bottom: 4px; }
.card .area { font-size: 13px; color: var(--gold); font-weight: 600; }
.card .dish { font-size: 14px; color: var(--muted); margin-top: 6px; min-height: 2.6em; }
.card .foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 13px; color: var(--faint); }
.card .kol-count { color: var(--accent); font-weight: 600; }

/* map */
#mapWrap { display: none; padding-bottom: 60px; }
.map-controls { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; padding: 4px 0 12px; }
.map-controls .map-count { font-size: 13.5px; color: var(--muted); margin-left: auto; }
.map-controls .pill[data-mradius].on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
#map { height: 62vh; border-radius: var(--radius); border: 1px solid var(--soft); z-index: 1; }
.map-note { font-size: 13px; color: var(--faint); margin-top: 10px; }
.leaflet-popup-content-wrapper { background: var(--surface); color: var(--ink); border-radius: 12px; }
.leaflet-popup-tip { background: var(--surface); }
.leaflet-popup-content { margin: 12px 16px; font-family: var(--font-body); }
.leaflet-popup-content .pop-open { color: var(--accent); font-weight: 600; cursor: pointer; }
.pop-card { display: flex; gap: 10px; align-items: stretch; min-width: 230px; }
.pop-thumb { flex: 0 0 74px; width: 74px; border-radius: 8px; background-size: cover; background-position: center; min-height: 62px; }
.pop-body { flex: 1; font-size: 13px; line-height: 1.5; }

/* detail drawer */
.drawer-scrim { position: fixed; inset: 0; background: rgba(5, 4, 3, 0.62); z-index: 90; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(560px, 100vw); z-index: 95;
  background: var(--bg); border-left: 1px solid var(--soft);
  transform: translateX(102%); transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
  overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer .hero-img { aspect-ratio: 16/9; background-size: cover; background-position: center; position: relative; }
.drawer .close-btn {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 999px;
  border: none; background: rgba(10, 8, 6, 0.7); color: #f4ede2; font-size: 17px; cursor: pointer;
}
/* photographer credit — Google's terms require it displayed with the photo, link live.
   Sits over the image in both themes, so it is scrimmed rather than themed. */
.photo-credit {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 14px 7px;
  font-size: 11px; line-height: 1.3; color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.66));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  pointer-events: none;            /* never block the hero … */
}
.photo-credit a { color: inherit; text-decoration: underline; pointer-events: auto; }  /* … but the credit link stays clickable */
.gallery { display: flex; gap: 8px; padding: 12px 16px 0; overflow-x: auto; scrollbar-width: none; }
.gallery::-webkit-scrollbar { display: none; }
.g-thumb {
  flex: 0 0 92px; aspect-ratio: 16/10; border-radius: 10px; border: 2px solid transparent;
  background-size: cover; background-position: center; cursor: pointer; padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.g-thumb:hover { transform: translateY(-2px); }
.g-thumb.on { border-color: var(--accent); }
.g-thumb { position: relative; }
.g-thumb.vid-thumb::after {
  content: "▶"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; font-size: 15px; text-shadow: 0 1px 6px rgba(0,0,0,.8);
  background: rgba(0,0,0,.18); border-radius: 8px;
}
.drawer .inner { padding: 26px 28px 50px; }
.drawer h2 { font-size: 30px; margin-bottom: 6px; }
.drawer .sub { color: var(--gold); font-weight: 600; font-size: 14px; }
.drawer .desc { color: var(--muted); margin: 14px 0 0; font-size: 15px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.tag { font-size: 12px; padding: 5px 12px; border-radius: var(--r-btn); border: 1px solid var(--soft); color: var(--muted); }
.facts { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fact { background: var(--surface); border: 1px solid var(--soft); border-radius: 12px; padding: 12px 14px; }
.fact .k { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.fact .v { font-size: 14px; margin-top: 3px; }
.actions { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.actions a {
  flex: 1; min-width: 130px; text-align: center; text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 12px 16px; border-radius: var(--r-btn); border: 1px solid var(--soft); transition: all 0.2s ease;
}
.actions a.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.actions a:hover { border-color: var(--gold); }
.reviews-h { margin: 34px 0 14px; font-size: 20px; }
.review-card { background: var(--surface); border: 1px solid var(--soft); border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
.review-card .vid { position: relative; aspect-ratio: 16/9; background-size: cover; background-position: center; cursor: pointer; }
.review-card .vid .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(to top, rgba(8, 6, 5, 0.55), transparent 55%);
}
.review-card .vid .play span {
  width: 62px; height: 62px; border-radius: 999px; background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center; font-size: 22px; padding-left: 4px; transition: transform 0.2s ease;
}
.review-card .vid:hover .play span { transform: scale(1.1); }
.review-card iframe { width: 100%; aspect-ratio: 16/9; border: none; display: block; }
.review-card .vid .ts-chip { position: absolute; left: 10px; bottom: 10px; z-index: 2; font-size: 12px; font-weight: 600; background: rgba(10,8,6,0.82); color: var(--gold); padding: 4px 10px; border-radius: 7px; }
.review-card .rb { padding: 14px 16px 16px; }
.review-card .who { font-weight: 650; font-size: 14px; }
.review-card .who small { color: var(--faint); font-weight: 500; }
.plat-ico { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 5px; font-size: 11px; vertical-align: middle; margin-right: 4px; color: #fff; }
.plat-youtube { background: #ff0000; }
.plat-blog { background: var(--gold); color: #241d14; }
.plat-tiktok { background: #111; }
.plat-instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.review-card .quote { font-size: 14px; color: var(--muted); font-style: italic; margin-top: 6px; }
.review-card .src { font-size: 12.5px; margin-top: 8px; }
.review-card .src a { color: var(--gold); }
.empty { padding: 80px 20px; text-align: center; color: var(--muted); }
.empty h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 8px; color: var(--ink); }

/* responsive */
.stats-band { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .doors { grid-template-columns: 1fr; }
  .ai-steps, .stats-band { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: clamp(38px, 10vw, 64px); overflow-wrap: anywhere; }
  .facts { grid-template-columns: 1fr; }
  .nav-links a:not(.cta) { display: none; }
  section.block { padding: 64px 0; }
}
