/* +252 Somali Eats
   Theme: dark, locked page-wide (the kitchen runs 4 PM to 2 AM; that is the brand).
   One accent: the sky blue sampled from their logo. One shape rule: interactive
   elements are pills, containers are 14px. Motion: transform/opacity only, and
   every scroll effect is CSS scroll-driven (no scroll listeners). */

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("assets/fonts/instrument-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #0b1730;          /* page */
  --bg-2: #0e1b38;        /* alternate section tint, same family */
  --bg-3: #13244a;        /* raised surface (quotes, map frame) */
  --ink: #0a1226;         /* footer + call bar */
  --text: #f3efe6;
  --muted: rgba(243, 239, 230, 0.66);
  --line: rgba(243, 239, 230, 0.14);
  --sky: #5daef8;         /* the one accent */
  --sky-soft: #8cc6fb;

  --f-display: "Bricolage Grotesque", "Arial Black", Impact, sans-serif;
  --f-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --size-body: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
  --size-h2: clamp(2rem, 1.3rem + 2.8vw, 3.4rem);
  --size-code: clamp(6.5rem, 1rem + 30vw, 21rem);

  --wrap: 1180px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --sec-y: clamp(4rem, 3rem + 5vw, 7.5rem);

  --dur: 220ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --r: 14px;

  --z-header: 30;
  --z-callbar: 40;
  --z-skip: 50;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: var(--size-body);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
.site { position: relative; overflow-x: clip; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
section[id] { scroll-margin-top: 4.5rem; }
h1, h2, h3 { font-family: var(--f-display); font-weight: 800; line-height: 1; margin: 0; letter-spacing: -0.02em; }
h2 { font-size: var(--size-h2); }
p { margin: 0 0 1rem; }
ul, ol { list-style: none; margin: 0; padding: 0; }
.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0.5rem; background: var(--sky); color: var(--bg); padding: 0.5rem 1rem; z-index: var(--z-skip); border-radius: 999px; font-weight: 600; }
.skip:focus { left: 0.5rem; }

.eyebrow { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky-soft); margin-bottom: 0.9rem; }
.star { color: var(--sky); }

/* Small text links keep their size but get a 44px hit area. */
.hit { position: relative; }
.hit::after { content: ""; position: absolute; inset: -14px -6px; }

/* ------------------------------------------------------------ Buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.1rem; padding: 0.8rem 1.5rem;
  font-weight: 600; font-size: 0.98rem; text-decoration: none; border-radius: 999px;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform var(--dur) var(--ease), background-color var(--dur), border-color var(--dur), color var(--dur);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.btn-primary { background: var(--sky); color: var(--bg); }
.btn-primary:hover { background: var(--sky-soft); }
.btn-ghost { background: rgba(243, 239, 230, 0.06); color: var(--text); border-color: rgba(243, 239, 230, 0.32); }
.btn-ghost:hover { border-color: var(--text); background: rgba(243, 239, 230, 0.1); }

/* ------------------------------------------------------------- Header -- */
.hdr-sentinel { position: absolute; top: 24px; left: 0; width: 1px; height: 1px; }
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  padding: 0.85rem 0;
  transition: background-color var(--dur), box-shadow var(--dur), padding var(--dur);
}
.hdr.is-solid { background: rgba(11, 23, 48, 0.88); backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); padding: 0.55rem 0; }
.hdr-in { display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand img { border-radius: 50%; background: #fff; }
.brand-name { font-family: var(--f-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-name b { color: var(--sky); font-weight: 800; }
.hdr-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.hdr-nav a { text-decoration: none; font-weight: 500; font-size: 0.95rem; color: var(--muted); padding: 0.25rem 0; border-bottom: 1.5px solid transparent; transition: color var(--dur), border-color var(--dur); }
.hdr-nav a:hover, .hdr-nav a:focus-visible { color: var(--text); border-bottom-color: var(--sky); outline: none; }
.hdr-call { text-decoration: none; font-weight: 600; font-size: 0.95rem; color: var(--text); border: 1.5px solid rgba(243, 239, 230, 0.32); border-radius: 999px; padding: 0.5rem 1rem; transition: border-color var(--dur), background-color var(--dur); }
.hdr-call:hover { border-color: var(--sky); background: rgba(93, 174, 248, 0.12); }

/* --------------------------------------------------------------- Hero -- */
.hero {
  position: relative; min-height: 100dvh; display: grid; align-items: end;
  padding: 6rem 0 3.5rem; overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: -12% 0; z-index: -2; }
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: 78% 50%; opacity: 0.85; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 23, 48, 0.94) 0%, rgba(11, 23, 48, 0.62) 40%, rgba(11, 23, 48, 0.08) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(11, 23, 48, 0.2) 45%, rgba(11, 23, 48, 0.55) 100%);
}
.hero-in { position: relative; }
.hero .eyebrow { margin-bottom: 0.25rem; }
.hero-h { display: grid; }
.hero-code { font-size: var(--size-code); line-height: 0.86; letter-spacing: -0.05em; color: var(--sky); margin-left: -0.06em; }
.hero-tag { font-size: clamp(1.6rem, 1rem + 2.6vw, 3.2rem); line-height: 1.1; color: var(--text); margin-top: 0.4rem; max-width: 14ch; padding-bottom: 0.1em; }
.hero-tag em { font-style: normal; color: var(--sky-soft); }
.hero-sub { max-width: 40ch; font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem); color: var(--muted); margin: 1.25rem 0 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Load sequence: hierarchy. The number lands first, then the line, then the
   actions. Only runs when JS adds .is-ready; reduced motion shows all at once. */
.reveal-1, .reveal-2, .reveal-3, .reveal-4 { opacity: 0; transform: translateY(22px); }
.is-ready .reveal-1, .is-ready .reveal-2, .is-ready .reveal-3, .is-ready .reveal-4 { animation: rise 900ms var(--ease) forwards; }
.is-ready .reveal-1 { animation-delay: 80ms; }
.is-ready .reveal-2 { animation-delay: 180ms; animation-duration: 1100ms; }
.is-ready .reveal-3 { animation-delay: 420ms; }
.is-ready .reveal-4 { animation-delay: 560ms; }
@keyframes rise { 0% { opacity: 0; transform: translateY(22px); } 60% { opacity: 1; } 100% { opacity: 1; transform: translateY(0); } }

/* -------------------------------------------------------------- Proof -- */
.proof { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-in { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem 2rem; padding-block: 1.4rem; }
.proof li { display: grid; gap: 0.1rem; }
.proof b { font-family: var(--f-display); font-weight: 800; font-size: 1.35rem; line-height: 1.1; color: var(--sky); }
.proof span { font-size: 0.9rem; color: var(--muted); }
.proof a { text-decoration: none; border-bottom: 1px solid var(--line); }
.proof a:hover { color: var(--text); border-bottom-color: var(--text); }

/* -------------------------------------------------------------- About -- */
.about { padding: var(--sec-y) 0; }
.about-in { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.about h2 { margin-bottom: 1.5rem; }
.about-copy p { color: var(--muted); max-width: 60ch; }
.about-quote { margin: 0 0 1.4rem; padding: 1.2rem 1.4rem; border-left: 3px solid var(--sky); background: var(--bg-2); border-radius: 0 var(--r) var(--r) 0; }
.about-quote p { color: var(--text); font-size: 1.04rem; margin-bottom: 0.5rem; max-width: none; }
.about-quote footer { font-size: 0.85rem; color: var(--muted); }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.25rem; counter-reset: pillar; padding-top: 0.6rem; }
.pillars li { counter-increment: pillar; font-family: var(--f-display); font-weight: 800; font-size: clamp(1.25rem, 1rem + 1vw, 1.7rem); line-height: 1.1; letter-spacing: -0.02em; }
.pillars li::before { content: counter(pillar, decimal-leading-zero); display: block; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--sky); margin-bottom: 0.4rem; }

/* -------------------------------------------------------------- Strip -- */
.strip { padding: 0 0 var(--sec-y); overflow: hidden; }
.strip-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(0.6rem, 1.5vw, 1.25rem); width: min(100% - 2 * var(--gutter), 1320px); margin-inline: auto; }
.strip-item { margin: 0; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-3); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; }
.strip-item:nth-child(2) { margin-top: 2.25rem; }
.strip-item:nth-child(4) { margin-top: 1.5rem; }

/* Scroll-driven drift (depth), no JavaScript. --d is set per tile in the
   markup; the tile moves from +d to -d as it crosses the viewport. Falls back
   to static where view() timelines are unsupported. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .strip-item { animation: drift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%; }
    .hero-media { animation: hero-sink linear both; animation-timeline: scroll(root); animation-range: 0 100vh; }
  }
}
@keyframes drift { from { transform: translateY(var(--d)); } to { transform: translateY(calc(var(--d) * -1)); } }
@keyframes hero-sink { from { transform: translateY(0); } to { transform: translateY(14vh); } }

/* --------------------------------------------------------------- Menu -- */
.menu { background: var(--bg-2); padding: var(--sec-y) 0; }
.menu-head { margin-bottom: 2.25rem; }
.menu-head h2 { margin-bottom: 0.6rem; }
.menu-note { color: var(--muted); font-size: 0.95rem; max-width: 60ch; margin: 0; }
.menu-note a { color: var(--sky-soft); }

.featured { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-template-rows: auto auto; gap: 1rem 0.9rem; margin-bottom: 3.5rem; }
.feat { margin: 0; display: grid; grid-template-rows: 1fr auto; gap: 0.6rem; min-width: 0; }
.feat picture { display: block; border-radius: var(--r); overflow: hidden; background: var(--bg-3); }
.feat img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms var(--ease); }
.feat:hover img { transform: scale(1.04); }
.feat-lg { grid-column: 1 / span 2; grid-row: 1 / span 2; }
.feat-tall { grid-column: 3; grid-row: 1 / span 2; }
.feat:not(.feat-lg):not(.feat-tall) picture { aspect-ratio: 4 / 3; }
.feat figcaption { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 0.75rem; }
.feat figcaption b { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; line-height: 1.1; }
.feat-lg figcaption b { font-size: 1.5rem; }
.feat figcaption span { color: var(--sky); font-weight: 600; }

.menu-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4.5rem); }
.mcat { padding: 1.4rem 0 0.6rem; border-top: 1px solid var(--line); margin-top: 1rem; }
.mcat h3 { font-size: 1.5rem; margin-bottom: 0.2rem; }
.mcat-note { font-size: 0.86rem; color: var(--sky-soft); margin-bottom: 0.4rem; }
.mlist { display: grid; gap: 0.9rem; padding-top: 0.6rem; }
.mlist li {
  display: flex; align-items: baseline; gap: 0.75rem;
  opacity: 0; transform: translateY(14px); transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
/* Rows with a DoorDash photo: 72px square thumb at the start. Radius rule
   extension: small thumbnails are 10px (containers stay 14px, pills stay pills). */
.mlist li.has-mt { align-items: start; }
.mt { flex: none; width: 72px; aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--bg-3); }
.mt img { width: 100%; height: 100%; object-fit: cover; }
.mt-empty { background: transparent; }
.has-mt .mi { padding-top: 0.1rem; }
.mlist li.in { opacity: 1; transform: none; }
.mi { flex: 1; display: grid; gap: 0.15rem; }
.mi b { font-weight: 600; }
.mi small { font-size: 0.9rem; color: var(--muted); line-height: 1.45; }
.mp { font-family: var(--f-display); font-weight: 800; font-size: 1.1rem; transition: color var(--dur); white-space: nowrap; }
.mlist li:hover .mp { color: var(--sky); }

.glossary { display: flex; flex-wrap: wrap; gap: 0.5rem 1.8rem; margin: 2.5rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--muted); }
.glossary div { display: inline; }
.glossary dt { display: inline; font-weight: 600; color: var(--text); }
.glossary dt::after { content: ": "; }
.glossary dd { display: inline; margin: 0; }
.menu-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }

/* ------------------------------------------------------------ Reviews -- */
.reviews { padding: var(--sec-y) 0; }
.reviews-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr) minmax(0, 1fr); gap: 1rem clamp(1rem, 3vw, 2.5rem); align-items: stretch; }
.reviews-head h2 { display: grid; gap: 0.3rem; }
.big-rating { font-size: clamp(4rem, 2rem + 8vw, 7.5rem); line-height: 0.9; letter-spacing: -0.05em; }
.stars { color: var(--sky); font-size: clamp(1.3rem, 1rem + 1.5vw, 2rem); letter-spacing: 0.05em; }
.rating-sub { font-family: var(--f-body); font-weight: 500; font-size: 1rem; color: var(--muted); letter-spacing: 0; }
.reviews-link { margin: 1.2rem 0 0; }
.reviews-link a { font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--sky); }
.reviews-link a:hover { color: var(--sky); }
.quote { margin: 0; padding: 1.6rem 1.5rem 1.4rem; background: var(--bg-3); border-radius: var(--r); display: grid; gap: 1rem; align-content: space-between; }
.quote p { font-family: var(--f-display); font-weight: 800; font-size: 1.25rem; line-height: 1.22; letter-spacing: -0.01em; margin: 0; }
.quote-lead p { font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem); }
.quote footer { font-size: 0.82rem; color: var(--muted); }
.quote footer::before { content: "★ "; color: var(--sky); }
.quote-stack { display: grid; gap: 1rem; }

/* -------------------------------------------------------------- Visit -- */
.visit { background: var(--bg-2); padding: var(--sec-y) 0; }
.visit-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.visit h2 { margin-bottom: 1.4rem; max-width: 14ch; }
.visit-addr { font-style: normal; display: grid; gap: 0.3rem; margin-bottom: 1.6rem; }
.visit-addr a { font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; line-height: 1.1; text-decoration: none; }
.visit-addr a:hover { color: var(--sky); }
.visit-addr span { color: var(--muted); font-size: 0.95rem; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.hours th, .hours td { padding: 0.65rem 0; border-bottom: 1px solid var(--line); text-align: left; font-weight: 500; }
.hours td { text-align: right; font-family: var(--f-display); font-weight: 800; color: var(--sky-soft); }
.visit-late { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.6rem; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.8rem; }
.facts { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.facts li { font-size: 0.86rem; border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.8rem; color: var(--muted); }
.visit-map { border-radius: var(--r); overflow: hidden; background: var(--bg-3); aspect-ratio: 6 / 5.2; }
.visit-map iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.85); }

/* ------------------------------------------------------------- Footer -- */
.foot { background: var(--ink); padding: 3.5rem 0 6.5rem; color: var(--muted); }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.brand-foot .brand-name { font-size: 1.3rem; color: var(--text); }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.foot-links a { text-decoration: none; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--line); transition: border-color var(--dur), color var(--dur); }
.foot-links a:hover { color: var(--sky); border-bottom-color: var(--sky); }
.foot-meta { padding: 1.4rem 0; font-size: 0.9rem; display: grid; gap: 0.3rem; }
.foot-meta p { margin: 0; }
.foot-meta a { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--line); }
.foot-meta a:hover { border-bottom-color: var(--text); }

/* "Website by" credit. The animated logo sits in a white card so the mark
   keeps its own background on the dark footer; it plays once on scroll. */
.foot-by { display: flex; align-items: center; gap: 1.25rem; margin-top: 0.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.foot-by-card { display: block; flex: none; width: 168px; background: #fff; border-radius: 10px; overflow: hidden; transition: transform var(--dur) var(--ease); }
.foot-by-card:hover { transform: translateY(-2px); }
.foot-by-video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.foot-by-text { margin: 0; font-size: 0.9rem; color: var(--muted); display: grid; gap: 0.15rem; }
.foot-by-text a { color: var(--text); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); }
.foot-by-text a:hover { border-bottom-color: var(--text); }
.foot-by-url { font-size: 0.82rem; color: rgba(243, 239, 230, 0.5); }

.callbar { display: none; }

/* ---------------------------------------------------------- Responsive -- */
@media (max-width: 960px) {
  .about-in, .visit-in { grid-template-columns: 1fr; }
  .menu-cols { grid-template-columns: 1fr; }
  .proof-in { grid-template-columns: 1fr 1fr; }
  .featured { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: auto auto auto; }
  .feat-lg { grid-column: 1 / span 2; grid-row: 1; }
  .feat-lg picture { aspect-ratio: 16 / 10; }
  .feat-tall { grid-column: 1; grid-row: 2 / span 2; }
  .reviews-in { grid-template-columns: 1fr; }
  .strip-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip-item:nth-child(2) { margin-top: 2rem; }
  .strip-item:nth-child(3) { margin-top: 0; }
  .strip-item:nth-child(4) { margin-top: 2rem; }
}
@media (max-width: 720px) {
  .hdr-nav, .hdr-call { display: none; }
  .hero { padding-bottom: 3rem; }
  .hero-media video { opacity: 0.6; }
  .hero-actions .btn { flex: 1 1 100%; }
  .pillars { grid-template-columns: 1fr; gap: 1.1rem; }
  .mt { width: 60px; }
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-callbar);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
    padding: 0.6rem 0.75rem calc(0.6rem + env(safe-area-inset-bottom));
    background: rgba(10, 18, 38, 0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  .callbar a { display: flex; align-items: center; justify-content: center; min-height: 2.9rem; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 0.92rem; padding: 0 0.5rem; }
  .callbar-order { background: var(--sky); color: var(--bg); }
  .callbar-call { background: rgba(243, 239, 230, 0.08); color: var(--text); border: 1.5px solid rgba(243, 239, 230, 0.3); }
  .foot-by { flex-direction: column; align-items: start; }
}
@media (max-width: 420px) {
  .proof-in { grid-template-columns: 1fr; gap: 0.9rem; }
  .featured { grid-template-columns: 1fr; grid-template-rows: auto; }
  .feat-lg, .feat-tall { grid-column: 1; grid-row: auto; }
  .feat-tall picture { aspect-ratio: 1; }
  .callbar a { font-size: 0.86rem; }
}

/* ------------------------------------------------------ Reduced motion -- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site * { transition-duration: 0.01ms !important; animation: none !important; }
  .reveal-1, .reveal-2, .reveal-3, .reveal-4 { opacity: 1; transform: none; }
  .mlist li { opacity: 1; transform: none; }
}
