/* ============================================================
   Bäckerei Feuz — Design System
   Palette abgeleitet: Logo (reinschwarz) + fotografische Warmtöne
   Display: Fraunces (variabel, self-hosted) — Utility: Inter
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin-ext.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}

:root {
  /* Farb-Tokens */
  --ink: #201812;          /* warmes Near-Black (abgeleitet vom Logoschwarz) */
  --paper: #f5efe4;        /* warmes Creme */
  --paper-soft: #ece3d3;
  --stage: #171310;        /* dunkle Bühne (aus hero_backen dominant rgb(24,24,24)) */
  --stage-2: #241d17;
  --cream: #f2ead9;        /* Text auf dunkler Bühne */
  --crust: #b07a3f;        /* Akzent: fotografischer Amber, sparsam eingesetzt */
  --muted: #7a6e60;
  --line: #d8cdb9;

  /* Typo-Tokens */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-utility: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Bewegung: Ausgangswerte der geschichteten Einfahrt (mobil reduziert) */
  --hero-media-clip: 14%;
  --hero-media-shift: 6%;

  --text-2xl: clamp(2.4rem, 5.2vw, 4.2rem);
  --text-xl: clamp(1.7rem, 3.2vw, 2.6rem);
  --text-lg: clamp(1.25rem, 2vw, 1.55rem);
  --text-md: 1.0625rem;
  --text-sm: 0.9375rem;
  --text-xs: 0.8125rem;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-utility);
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Hierarchische Typografie */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--text-2xl); overflow-wrap: break-word; }
h2, h3, h4 { overflow-wrap: break-word; }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); font-weight: 500; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--font-utility);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crust);
  margin: 0 0 0.9em;
}
.lede { font-size: var(--text-lg); line-height: 1.5; }

/* Layout */
.container { width: min(1120px, 100% - 3rem); margin-inline: auto; }
.container--narrow { width: min(760px, 100% - 3rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--soft { background: var(--paper-soft); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding-block: 1.1rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header__logo img { height: 44px; width: auto; }
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 200ms ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { border-bottom-color: currentColor; }

/* Header-Varianten: auf dunkler Bühne vs. auf Papier */
.site-header--stage { color: var(--cream); }
.site-header--paper {
  position: static;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.site-header--paper .site-header__logo img { height: 40px; }

/* ============================================================
   Startseite: Produkt-Stilleben-Bühne
   ============================================================ */
.hero-stage {
  position: relative;
  min-height: 100svh;
  background: var(--stage);
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.hero-stage__top {
  padding-top: 6.2rem;
  text-align: center;
  flex: 0 0 auto;
}
.hero-stage__wordmark {
  margin-inline: auto;
  width: min(600px, 78vw);
}
.hero-stage__claim {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-lg);
  letter-spacing: 0.01em;
  margin: 1.1rem 0 0;
}
.hero-stage__media {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 2.2rem;
  position: relative;
  overflow: hidden;
}
.hero-stage__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* dezenter Verlauf unten nur für Lesbarkeit des Utility-Streifens */
.hero-stage__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to bottom, rgba(23,19,16,0) 0%, rgba(23,19,16,0.82) 100%);
  pointer-events: none;
}
.hero-stage__meta {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding-block: 1.15rem 1.5rem;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--cream);
}
.hero-stage__meta a { text-decoration: none; }
.hero-stage__meta a:hover { text-decoration: underline; }
.hero-stage__meta .sep { margin-inline: 0.55em; opacity: 0.55; }
.hero-stage__next {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 4vw, 2.5rem);
  bottom: 1.4rem;
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.85;
}
.hero-stage__next:hover { opacity: 1; }
.hero-stage__next::after { content: " ↓"; }

/* ============================================================
   Bewegungssystem
   Erstansicht: vier Ebenen mit je eigenem Weg — keine einheitliche
   Fade-up-Kaskade. Nur mit JS und ohne reduziert-Bewegung aktiv.
   ============================================================ */
.line { display: block; overflow: hidden; }
.line > span { display: block; }

/* --- Geschichtete Einfahrt des ersten Bildschirms --- */
.js:not(.rm) .hero-stage__wordmark {
  clip-path: inset(0 0 12% 0);
  transform: scale(1.055);
}
.js:not(.rm) .hero-stage__media img {
  clip-path: inset(var(--hero-media-clip) 0 0 0);
  transform: translateY(var(--hero-media-shift));
}
.js:not(.rm) .hero-stage__claim .line > span { transform: translateY(118%); }
.js:not(.rm) .hero-stage__meta { opacity: 0; transform: translateY(10px); }

.js.hero-ready:not(.rm) .hero-stage__wordmark {
  animation: wordmarkSettle 780ms cubic-bezier(0.16, 0.84, 0.30, 1) both;
}
.js.hero-ready:not(.rm) .hero-stage__media img {
  animation: mediaRise 900ms cubic-bezier(0.16, 0.84, 0.30, 1) 120ms both;
}
.js.hero-ready:not(.rm) .hero-stage__claim .line > span {
  animation: lineUp 640ms cubic-bezier(0.16, 0.84, 0.30, 1) 260ms both;
}
.js.hero-ready:not(.rm) .hero-stage__meta {
  animation: metaIn 560ms cubic-bezier(0.22, 0.61, 0.36, 1) 420ms both;
}

@keyframes wordmarkSettle {
  from { clip-path: inset(0 0 12% 0); transform: scale(1.055); }
  to   { clip-path: inset(0 0 0 0);   transform: scale(1); }
}
@keyframes mediaRise {
  from { clip-path: inset(var(--hero-media-clip) 0 0 0); transform: translateY(var(--hero-media-shift)); }
  to   { clip-path: inset(0 0 0 0); transform: translateY(0); }
}
@keyframes lineUp {
  from { transform: translateY(118%); }
  to   { transform: translateY(0); }
}
@keyframes metaIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- Text-Enthüllung per Zeilenmaske (kein einheitliches Fade-up) --- */
.js:not(.rm) [data-reveal="text"] .line > span { transform: translateY(112%); }
.js:not(.rm) [data-reveal="text"] [data-rise] { opacity: 0; transform: translateY(14px); }
.js:not(.rm) [data-reveal="text"].is-in .line > span {
  animation: lineUp 700ms cubic-bezier(0.16, 0.84, 0.30, 1) var(--d, 0ms) both;
}
.js:not(.rm) [data-reveal="text"].is-in [data-rise] {
  animation: metaIn 620ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0ms) both;
}

/* --- Medien-Enthüllung: Beschnitt + leichte Skalierung, kein Fade --- */
.js:not(.rm) [data-reveal="figure"] img {
  clip-path: inset(var(--r-clip, 7%) 0 0 0);
  transform: translateX(var(--r-x, 0)) scale(var(--r-scale, 1.05));
  object-position: var(--r-pos, 50% 42%);
}
.js:not(.rm) [data-reveal="figure"].is-in img {
  animation: revealMedia 900ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0ms) both;
}
.js:not(.rm) [data-reveal="tiles"] { --r-clip: 9%; }
.js:not(.rm) [data-reveal="tiles"] img {
  clip-path: inset(var(--r-clip, 9%) 0 0 0);
  transform: translateX(var(--r-x, 0)) scale(1.05);
}
.js:not(.rm) [data-reveal="tiles"].is-in img {
  animation: revealMedia 820ms cubic-bezier(0.22, 0.61, 0.36, 1) var(--d, 0ms) both;
}
[data-reveal="tiles"] > *:nth-child(4n+2) img { --d: 80ms; }
[data-reveal="tiles"] > *:nth-child(4n+3) img { --d: 160ms; }
[data-reveal="tiles"] > *:nth-child(4n+4) img { --d: 240ms; }

@keyframes revealMedia {
  from {
    clip-path: inset(var(--r-clip, 7%) 0 0 0);
    transform: translateX(var(--r-x, 0)) scale(var(--r-scale, 1.05));
    object-position: var(--r-pos, 50% 42%);
  }
  to {
    clip-path: inset(0 0 0 0);
    transform: translateX(0) scale(1);
    object-position: 50% 50%;
  }
}

/* --- Gekoppelte Drift: Bild verschiebt sich minimal gegen ruhenden Text --- */
[data-drift] { transform: translate3d(0, var(--drift-y, 0px), 0); }
.js:not(.rm) [data-drift].is-in { will-change: transform; }

/* Enthüllte Medien bleiben im eigenen Rahmen (kein Überlauf durch Beschnitt/Faltung) */
.teaser, .bern-pair figure, [data-reveal="figure"] { overflow: hidden; }

/* ============================================================
   Inhaltsblöcke
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.grid-2 > figure { margin: 0; }

.bern-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.bern-pair figure { margin: 0; }
.bern-pair img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.bern-pair figcaption {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 0.5rem;
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.teaser {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color 200ms ease, transform 200ms ease;
}
.teaser:hover { border-color: var(--crust); transform: translateY(-3px); }
.teaser img { aspect-ratio: 1100 / 520; object-fit: cover; width: 100%; }
.teaser__body { padding: 1rem 1.1rem 1.2rem; }
.teaser__body h3 { margin: 0 0 0.3em; }
.teaser__body span {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crust);
}

/* Info-Band (Öffnungszeiten / Adresse) */
.info-band {
  background: var(--stage);
  color: var(--cream);
}
.info-band a { color: var(--cream); }
.hours-table { width: 100%; max-width: 30rem; border-collapse: collapse; }
.hours-table th, .hours-table td {
  text-align: left;
  font-weight: 400;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(242, 234, 217, 0.18);
  font-size: var(--text-sm);
}
.hours-table th { width: 6.5em; }
.hours-table td { color: rgba(242, 234, 217, 0.92); }

.info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.info-cols h3 { color: var(--cream); }
.info-cols address { font-style: normal; }
.info-cols p { font-size: var(--text-sm); }

/* Seiten-Hero (Innenseiten) */
.page-hero {
  position: relative;
  color: var(--cream);
  overflow: hidden;
}
.page-hero img.page-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(23,19,16,0.72) 0%, rgba(23,19,16,0.28) 70%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vw, 9rem);
}
.page-hero h1 { color: var(--cream); }

/* ============================================================
   Angebot: Produktlinien + Galerie
   ============================================================ */
.product-line {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.product-line + .product-line { border-top: 1px solid var(--line); }
.product-line__text .kicker { color: var(--muted); }
.product-line--flip .product-line__text { order: 2; }
.product-line--flip .product-line__gallery { order: 1; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: transform 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.gallery button:hover, .gallery button:focus-visible { transform: scale(1.035); }
.gallery img {
  aspect-ratio: 1100 / 520;
  object-fit: cover;
  width: 100%;
  transition: opacity 220ms ease;
}
.gallery button:hover img, .gallery button:active img { opacity: 0.88; }
.gallery button:focus-visible { outline: 2px solid var(--crust); outline-offset: 2px; }

/* Lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: rgba(23, 19, 16, 0.94);
  color: var(--cream);
  max-width: min(1080px, 94vw);
  width: auto;
}
.lightbox::backdrop { background: rgba(10, 8, 6, 0.82); }
.lightbox[open] { animation: lightboxIn 320ms cubic-bezier(0.22, 0.61, 0.36, 1) both; }
.lightbox[open]::backdrop { animation: backdropIn 320ms ease both; }
@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.965); clip-path: inset(0.8%); }
  to   { opacity: 1; transform: scale(1); clip-path: inset(0); }
}
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox__stage { position: relative; }
.lightbox__img {
  display: block;
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  margin-inline: auto;
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.lightbox__img--inc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
}
/* Austausch: alte Aufnahme verlässt seitlich, neue kommt von der Gegenseite */
.lightbox__img.is-out-left { opacity: 0; transform: translateX(-3%); }
.lightbox__img.is-out-right { opacity: 0; transform: translateX(3%); }
.lightbox__img--inc.is-in-right { opacity: 0; transform: translateX(3%); }
.lightbox__img--inc.is-in-left { opacity: 0; transform: translateX(-3%); }
.lightbox__img--inc.is-shown { opacity: 1; transform: translateX(0); }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  font-size: var(--text-sm);
}
.lightbox__close, .lightbox__nav {
  background: none;
  border: 1px solid rgba(242,234,217,0.4);
  color: var(--cream);
  font: inherit;
  font-size: var(--text-sm);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  border-radius: 999px;
}
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--cream); }
.lightbox__close:focus-visible, .lightbox__nav:focus-visible { outline: 2px solid var(--cream); outline-offset: 2px; }

/* ============================================================
   Kontakt
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.form-note {
  font-size: var(--text-xs);
  color: var(--muted);
  background: var(--paper-soft);
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--crust);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: var(--text-sm);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.7rem 0.85rem;
  border-radius: 2px;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--crust);
  outline-offset: 1px;
  border-color: var(--crust);
}
.btn {
  display: inline-block;
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  padding: 0.8rem 1.7rem;
  cursor: pointer;
  border-radius: 2px;
  transition: background 200ms ease;
}
.btn:hover { background: var(--crust); border-color: var(--crust); }
.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: rgba(176, 122, 63, 0.12); color: inherit; }

.contact-card {
  background: var(--stage);
  color: var(--cream);
  padding: clamp(1.8rem, 4vw, 2.6rem);
}
.contact-card h3 { color: var(--cream); }
.contact-card a { color: var(--cream); }
.contact-card .hours-table th, .contact-card .hours-table td { border-bottom-color: rgba(242,234,217,0.18); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--stage);
  color: var(--cream);
  padding-block: 3.2rem 2.2rem;
  font-size: var(--text-sm);
}
.site-footer a { color: var(--cream); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer img { height: 52px; width: auto; margin-bottom: 1rem; }
.site-footer address { font-style: normal; line-height: 1.8; }
.site-footer__nav ul { list-style: none; margin: 0; padding: 0; line-height: 2; }
.site-footer__legal {
  margin-top: 2.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(242,234,217,0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.6rem;
  font-size: var(--text-xs);
  color: rgba(242,234,217,0.75);
}

/* 404 */
.error-page { min-height: 100svh; display: grid; place-items: center; text-align: center; }
.error-page__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 10rem);
  line-height: 1;
  color: var(--crust);
  margin: 0;
}

/* ============================================================
   Responsive: mobile eigenständige Komposition
   ============================================================ */
@media (max-width: 900px) {
  .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .product-line { grid-template-columns: 1fr; }
  .product-line--flip .product-line__text { order: 1; }
  .product-line--flip .product-line__gallery { order: 2; }
  .teaser-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cols { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  /* mobile: gekoppelte Drift ruhen lassen, nur Beschnittwechsel bleibt */
  [data-drift] { transform: none !important; }
}
@media (max-width: 640px) {
  :root { --hero-media-clip: 10%; --hero-media-shift: 4%; }
  .site-header__inner { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .site-header__logo img { height: 34px; }
  .site-nav ul { gap: 0.25rem 1.1rem; }
  .site-header--stage { padding-top: 0; }
  .hero-stage { min-height: 100svh; }
  .hero-stage__top { padding-top: 8.6rem; }
  .hero-stage__wordmark { width: min(430px, 82vw); }
  .hero-stage__claim { font-size: var(--text-md); }
  .hero-stage__media { margin-top: 1.6rem; }
  .hero-stage__meta { font-size: var(--text-xs); padding-inline: 1rem; }
  .hero-stage__meta .sep { display: block; height: 0; visibility: hidden; }
  .hero-stage__next { display: none; }
  .teaser-grid, .gallery, .bern-pair { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .container { width: min(1120px, 100% - 2.2rem); }
}

/* ============================================================
   Reduzierte Bewegung: vollständiger statischer Endzustand
   (greift zusätzlich zu .rm, falls das Inline-Skript blockiert ist)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-stage__media img,
  .hero-stage__wordmark,
  .hero-stage__claim .line > span,
  .hero-stage__meta,
  [data-reveal="text"] .line > span,
  [data-reveal="text"] [data-rise],
  [data-reveal="figure"] img,
  [data-reveal="tiles"] img {
    animation: none !important;
    clip-path: none !important;
    transform: none !important;
    opacity: 1 !important;
    object-position: 50% 50% !important;
  }
  [data-drift] { transform: none !important; }
  .lightbox[open], .lightbox[open]::backdrop { animation: none !important; }
  .lightbox__img { transition: none !important; }
}
