/* ============================================================
   INTI PERUVIAN RESTAURANT — design system
   Warm cream / charcoal / deep red / gold. Editorial serif +
   neutral sans. Restrained, cinematic motion.
   ============================================================ */

:root {
  --cream: #F2EEE6;
  --charcoal: #171714;
  --red: #A52D24;
  --red-deep: #8C241C;
  --gold: #B78A4F;
  --paper: #E8E2D8;
  --gray: #817C72;
  --ink-soft: #3d3a33;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- type ---------- */
.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.label--light { color: var(--gold); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 1.6rem;
}
.display em { font-style: italic; color: var(--red); }
.display--light { color: var(--cream); }
.display--light em { color: var(--gold); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.1rem;
}
.lede--light { color: #d9d3c6; }

.body { color: var(--gray); max-width: 38em; font-size: 0.98rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.9em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--primary { background: var(--red); color: var(--cream); }
.btn--primary:hover { background: var(--red-deep); }

.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(242, 238, 230, 0.55); }
.btn--ghost:hover { border-color: var(--cream); background: rgba(242, 238, 230, 0.08); }

.btn--ghost-dark { background: transparent; color: var(--charcoal); border-color: rgba(23, 23, 20, 0.35); }
.btn--ghost-dark:hover { border-color: var(--charcoal); }

.btn--order { background: var(--red); color: var(--cream); padding: 0.8em 1.5em; }
.btn--order:hover { background: var(--red-deep); }

.ext { font-size: 0.9em; transform: translateY(-1px); }

/* ---------- navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  transition: background 0.5s var(--ease), box-shadow 0.5s, padding 0.5s var(--ease);
}
.nav--solid {
  background: rgba(242, 238, 230, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(23, 23, 20, 0.08);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.nav__brand { text-decoration: none; line-height: 1.1; }
.nav__logo {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.28em;
  color: var(--cream);
  transition: color 0.5s;
}
.nav__logo-sub {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav--solid .nav__logo { color: var(--red); }

.nav__links { display: flex; gap: clamp(1rem, 3vw, 2.4rem); }
.nav__links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--cream);
  padding: 0.4em 0.1em;
  position: relative;
  transition: color 0.5s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav__links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.nav--solid .nav__links a { color: var(--charcoal); }

@media (max-width: 640px) {
  .nav__links { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__media { position: absolute; inset: 0; }
.hero__video, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 9, 7, 0.72) 0%, rgba(10, 9, 7, 0.25) 32%, transparent 55%),
    linear-gradient(to bottom, rgba(10, 9, 7, 0.35), transparent 22%);
}

.hero__copy {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(3.5rem, 9vh, 6.5rem);
  max-width: 44rem;
}

.hero__title { line-height: 1; margin-bottom: 1.1rem; }
.hero__title-main {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  letter-spacing: 0.22em;
  color: var(--cream);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
}
.hero__title-sub {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--sans);
  font-size: clamp(0.68rem, 1.4vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

/* while the film plays, the wall-logo reveal carries the title —
   the HTML title stays compact and out of its way */
.hero--film .hero__title-main { font-size: clamp(1.15rem, 2.4vw, 1.6rem); letter-spacing: 0.34em; }
.hero--film .hero__title-sub { margin-top: 0.35rem; font-size: 0.62rem; }

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}
.hero__support {
  color: #d9d3c6;
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  max-width: 30em;
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

.hero__copy > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero--copy-in .hero__copy > *, .no-motion .hero__copy > *, .no-js .hero__copy > * {
  opacity: 1; transform: none;
}
.hero--copy-in .hero__copy > *:nth-child(2) { transition-delay: 0.15s; }
.hero--copy-in .hero__copy > *:nth-child(3) { transition-delay: 0.3s; }
.hero--copy-in .hero__copy > *:nth-child(4) { transition-delay: 0.45s; }

.hero__scrollcue {
  position: absolute;
  bottom: 2.2rem; right: var(--pad);
  z-index: 2;
  width: 1px; height: 64px;
  background: rgba(242, 238, 230, 0.25);
  overflow: hidden;
}
.hero__scrollcue span {
  position: absolute; top: -40%;
  width: 100%; height: 40%;
  background: var(--gold);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0% { top: -40%; } 100% { top: 110%; } }
@media (prefers-reduced-motion: reduce) { .hero__scrollcue { display: none; } }

/* ---------- shared section rhythm ---------- */
.section { padding: clamp(5rem, 12vh, 9rem) var(--pad); }

/* reveal-on-scroll (IntersectionObserver adds .in-view) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.no-motion .reveal, .no-js .reveal { opacity: 1; transform: none; }

.mask-reveal { overflow: hidden; }
.mask-reveal img {
  transform: scale(1.08);
  transition: transform 1.6s var(--ease);
}
.mask-reveal::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--cream);
  transform: scaleY(1);
  transform-origin: top;
  transition: transform 1.1s var(--ease);
}
.mask-reveal { position: relative; }
.mask-reveal.in-view::after { transform: scaleY(0); }
.mask-reveal.in-view img { transform: scale(1); }
.no-motion .mask-reveal::after { display: none; }
.no-motion .mask-reveal img { transform: none; }

/* ---------- 01 / the house ---------- */
.house {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.house__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

@media (max-width: 860px) {
  .house { grid-template-columns: 1fr; }
  .house__media { order: 2; }
}

/* ---------- atmosphere ---------- */
.atmos {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.atmos__media { position: absolute; inset: -12% 0; }
.atmos__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.atmos::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 7, 0.72), rgba(10, 9, 7, 0.12) 45%, transparent 70%);
}
.atmos__copy {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(3rem, 9vh, 6rem);
}

/* ---------- menu ---------- */
.menu {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(183, 138, 79, 0.10), transparent),
    var(--paper);
}
.menu__head { max-width: 1400px; margin: 0 auto clamp(2.5rem, 6vh, 4rem); }

.menu__tabswrap {
  position: sticky;
  top: 3.4rem;
  z-index: 40;
  max-width: 1400px;
  margin: 0 auto 2.2rem;
  background: rgba(232, 226, 216, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(23, 23, 20, 0.12);
  border-bottom: 1px solid rgba(23, 23, 20, 0.12);
}
.menu__tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.3rem 0.2rem;
}
.menu__tabs::-webkit-scrollbar { display: none; }

.menu__tab {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: none;
  border-radius: 2px;
  padding: 0.85em 1.1em;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s;
}
.menu__tab em { font-style: normal; color: inherit; opacity: 0.55; font-size: 0.88em; margin-left: 0.45em; }
.menu__tab::after {
  content: "";
  position: absolute;
  left: 1.1em; right: 1.1em; bottom: 0.25em;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
}
.menu__tab:hover { color: var(--charcoal); }
.menu__tab[aria-selected="true"] { color: var(--red); }
.menu__tab[aria-selected="true"]::after { transform: scaleX(1); }
.menu__tab:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.menu__panel { max-width: 1400px; margin: 0 auto; min-height: 320px; }

/* featured cards */
.menu__grid--featured {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
}
.dish--photo { grid-column: span 7; }
.dish--text-featured { grid-column: span 5; }
@media (max-width: 980px) {
  .dish--photo, .dish--text-featured { grid-column: span 12; }
}

/* standard grid */
.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}

/* dish cards */
.dish {
  background: var(--cream);
  border: 1px solid rgba(23, 23, 20, 0.12);
  border-radius: 2px;
  padding: 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s;
}
.dish:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(23, 23, 20, 0.28);
  border-color: rgba(183, 138, 79, 0.5);
}

.dish__media {
  margin: -1.4rem -1.5rem 0.9rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.dish:hover .dish__media img { transform: scale(1.045); }

.dish__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.dish__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.15;
  color: var(--charcoal);
}
.dish--photo .dish__name, .dish--text-featured .dish__name { font-size: 1.65rem; }
.dish__price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--red);
  white-space: nowrap;
}
.dish__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(129, 124, 114, 0.55);
  transform: translateY(-4px);
  min-width: 1.5rem;
}
.dish__desc { font-size: 0.9rem; color: var(--gray); line-height: 1.55; }
.dish__tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: auto; padding-top: 0.6rem; }
.dish__tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(183, 138, 79, 0.45);
  border-radius: 2px;
  padding: 0.35em 0.7em;
}
.dish__tag--signature { color: var(--cream); background: var(--gold); border-color: var(--gold); }

.dish--text-featured {
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(183, 138, 79, 0.08), transparent 55%),
    var(--cream);
}

/* category switch animation */
.menu__panel.is-switching .dish { opacity: 0; transform: translateY(14px); }
.dish { animation: dishin 0.7s var(--ease) backwards; }
.no-motion .dish { animation: none; }
@keyframes dishin {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.menu__footer {
  max-width: 1400px;
  margin: 3.5rem auto 0;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(23, 23, 20, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.menu__footer-note { font-size: 0.85rem; color: var(--gray); max-width: 34em; }
.menu__footer-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- visit ---------- */
.visit {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
}
.visit__media { position: absolute; inset: 0; }
.visit__media img { width: 100%; height: 100%; object-fit: cover; }
.visit__shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10, 9, 7, 0.88) 25%, rgba(10, 9, 7, 0.55) 55%, rgba(10, 9, 7, 0.25));
}
.visit__copy { position: relative; z-index: 2; max-width: 620px; }

.visit__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1.6rem;
  margin: 2.4rem 0;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(242, 238, 230, 0.18);
  border-bottom: 1px solid rgba(242, 238, 230, 0.18);
}
.visit__facts dt {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.visit__facts dd { font-size: 0.9rem; color: #d9d3c6; line-height: 1.7; }
.visit__link { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(183, 138, 79, 0.6); transition: border-color 0.3s, color 0.3s; }
.visit__link:hover { color: var(--gold); border-color: var(--gold); }
.visit__link:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(3.5rem, 8vh, 5.5rem) var(--pad) 6.5rem;
  border-top: 1px solid rgba(183, 138, 79, 0.25);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: start;
}
.footer__logo {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.28em;
  color: var(--red);
}
.footer__logo-sub {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__line { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: #d9d3c6; }

.footer__links { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.footer__links a, .footer__soon {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d9d3c6;
  text-decoration: none;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold); }
.footer__links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.footer__soon { color: rgba(217, 211, 198, 0.45); cursor: default; }

.footer__legal {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  color: rgba(217, 211, 198, 0.5);
  border-top: 1px solid rgba(242, 238, 230, 0.1);
  padding-top: 1.4rem;
}

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

/* ---------- mobile sticky order bar ---------- */
.orderbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(23, 23, 20, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(183, 138, 79, 0.35);
  transform: translateY(105%);
  transition: transform 0.5s var(--ease);
}
.orderbar--show { transform: none; }
.orderbar__label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
}
.orderbar__btn { padding: 0.8em 1.6em; }

@media (max-width: 760px) {
  .orderbar { display: flex; }
}

/* ---------- order modal ---------- */
.ordermodal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 1.2rem; }
.ordermodal[hidden] { display: none; }
.ordermodal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 9, 7, 0.72);
  backdrop-filter: blur(4px);
}
.ordermodal__card {
  position: relative;
  background: var(--cream);
  border-top: 3px solid var(--red);
  border-radius: 2px;
  padding: clamp(1.8rem, 5vw, 2.8rem);
  max-width: 27rem;
  width: 100%;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.6);
  animation: modalin 0.5s var(--ease);
}
.no-motion .ordermodal__card { animation: none; }
@keyframes modalin {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
.ordermodal__close {
  position: absolute;
  top: 0.7rem; right: 0.9rem;
  background: none; border: none;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s;
}
.ordermodal__close:hover { color: var(--charcoal); }
.ordermodal__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.ordermodal__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.9rem;
  margin-bottom: 1.4rem;
}
.ordermodal__choices { display: flex; flex-direction: column; gap: 0.8rem; }
.ordermodal__choice {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-decoration: none;
  border: 1px solid rgba(23, 23, 20, 0.18);
  border-radius: 2px;
  padding: 1.05rem 1.2rem;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease);
}
.ordermodal__choice:hover {
  border-color: var(--red);
  background: rgba(165, 45, 36, 0.05);
  transform: translateY(-2px);
}
.ordermodal__choice:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.ordermodal__choice-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--charcoal);
}
.ordermodal__choice-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- small screens ---------- */
@media (max-width: 760px) {
  .menu__tabswrap { top: 3.1rem; }
  .visit { align-items: flex-end; }
  .visit__shade { background: linear-gradient(to top, rgba(10, 9, 7, 0.9) 45%, rgba(10, 9, 7, 0.4)); }
  .dish { padding: 1.25rem 1.25rem; }
  .dish__media { margin: -1.25rem -1.25rem 0.8rem; }
}

/* reduced motion: kill transforms globally */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
}
