/* =========================================================
   Even Chuck Norris Needed Training — editorial dark theme
   Trilingual (EN / FR / AR with RTL)
   ========================================================= */

/* Link to the Taekwondo presentation deck (added in nav) */
.deck-link {
  margin-inline-start: auto;
  margin-inline-end: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #00e5ff;
  text-decoration: none;
  font: 600 12px/1 'Inter', system-ui, sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 229, 255, .4);
  padding: 8px 12px;
  border-radius: 999px;
  transition: background .2s, color .2s, box-shadow .2s;
}
.deck-link:hover {
  background: rgba(0, 229, 255, .12);
  box-shadow: 0 0 18px rgba(0, 229, 255, .35);
}

:root {
  --bg: #0b0a0a;
  --bg-soft: #141111;
  --bg-elev: #1b1717;
  --ink: #f4ece2;
  --ink-dim: #c9bfb2;
  --ink-mute: #8a807a;
  --line: #2a2322;
  --accent: #c9302c;
  --accent-soft: #e0524e;
  --gold: #c9a24b;
  --good: #6fbf73;
  --bad: #e07a5f;

  --serif: "Fraunces", "Source Serif Pro", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --arabic: "Noto Naskh Arabic", "Amiri", "Geeza Pro", "Times New Roman", serif;

  --maxw: 1200px;
  --measure: 68ch;
  --radius: 14px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Belt-and-braces: prevent any descendant from extending the document
     beyond the viewport (most relevant in RTL, where elements positioned
     with `left: -9999px` extend the scrollable area instead of being
     clipped as they are in LTR). `clip` is preferred over `hidden` so
     `position: sticky` continues to work on .site-header. */
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* ===== Arabic / RTL ===== */
/* Lang-aware visibility for the inline [data-lang-block] spans so the
   correct language paints on first frame even before script.js runs
   (kills FOUC when AR is the default boot language). */
html[lang="ar"] [data-lang-block]:not([data-lang-block="ar"]) { display: none; }
html[lang="ar"] [data-lang-block="ar"] { display: revert; }
html[lang="fr"] [data-lang-block]:not([data-lang-block="fr"]) { display: none; }
html[lang="fr"] [data-lang-block="fr"] { display: revert; }
html[lang="en"] [data-lang-block]:not([data-lang-block="en"]) { display: none; }
html[lang="en"] [data-lang-block="en"] { display: revert; }

html[lang="ar"] body,
html[lang="ar"] .prose p,
html[lang="ar"] .prose .lead,
html[lang="ar"] .pullquote,
html[lang="ar"] .checklist li,
html[lang="ar"] .memory li,
html[lang="ar"] .changes h3,
html[lang="ar"] .closing,
html[lang="ar"] .kicker,
html[lang="ar"] .hero__title,
html[lang="ar"] .hero__sub,
html[lang="ar"] .emphasis {
  font-family: var(--arabic);
}
html[lang="ar"] .eyebrow,
html[lang="ar"] .hero__meta,
html[lang="ar"] .lang__btn {
  letter-spacing: 0;
  text-transform: none;
}
html[lang="ar"] .hero__title {
  line-height: 1.18;
}
html[dir="rtl"] .toc ol {
  border-left: none;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .toc ol a {
  padding: .15rem 1rem .15rem 0;
  border-left: none;
  border-right: 2px solid transparent;
  margin-left: 0;
  margin-right: -1px;
}
html[dir="rtl"] .toc ol a.is-active {
  border-right-color: var(--accent);
}
html[dir="rtl"] .pullquote {
  border-left: none;
  border-right: 3px solid var(--accent);
  padding: .5rem 1.5rem .5rem 0;
}
html[dir="rtl"] .pullquote--accent {
  background: linear-gradient(270deg, rgba(201,48,44,.08), transparent);
  border-right-color: var(--gold);
  border-left: none;
  padding: 1.5rem;
  border-radius: var(--radius) 0 0 var(--radius);
}
html[dir="rtl"] .memory li {
  padding-left: 0; padding-right: 1.2rem;
  border-left: none; border-right: 2px solid var(--gold);
}
html[dir="rtl"] .checklist li { padding-left: 0; padding-right: 2rem; }
html[dir="rtl"] .checklist li::before { left: auto; right: 0; }
html[dir="rtl"] .dropcap { float: right; padding: .35rem 0 0 .6rem; }
html[dir="rtl"] .changes li { grid-template-columns: 1fr 64px; }
html[dir="rtl"] .changes li > div { order: -1; }
html[dir="rtl"] .player__expand { right: auto; left: 12px; }
html[dir="rtl"] .lightbox__close { right: auto; left: 1rem; }

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

a { color: var(--ink); text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.skip-link {
  /* Visually-hidden until focused. The legacy `left: -9999px` technique
     blows up the document's horizontal scroll bounds in RTL (Chrome/Safari
     extend the canvas in the inline-start direction instead of clipping),
     which on mobile manifests as choppy / half-effective vertical swipes
     because touch momentum is consumed by the phantom horizontal scroll. */
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  background: var(--accent);
  color: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus {
  inset-inline-start: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

/* ----- Reading progress ----- */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; background: transparent; z-index: 60;
}
.progress__bar {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: width .12s linear;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  background: rgba(11,10,10,.55);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(11,10,10,.85);
  border-bottom-color: var(--line);
}
.nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: .95rem;
}
.brand__mark { color: var(--accent); font-size: 1.15rem; transform: translateY(-1px); }

/* Language switcher */
.lang {
  display: inline-flex;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang__btn {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink-mute);
  font: 600 .78rem/1 var(--sans);
  letter-spacing: .08em;
  padding: .5rem .85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.lang__btn:hover { color: var(--ink); }
.lang__btn[aria-pressed="true"] {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 760px) {
  .nav {
    padding: .75rem .9rem;
    gap: .6rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .brand { order: 1; }

  .lang {
    order: 2;
    margin-inline-start: auto;
  }

  .deck-link {
    order: 3;
    width: 100%;
    margin-inline: 0;
    margin-top: .2rem;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .lang__btn {
    padding: .45rem .7rem;
    font-size: .72rem;
  }

  .brand__text {
    font-size: .82rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 .95rem/1 var(--sans);
  letter-spacing: .01em;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(201,48,44,.7);
}
.btn--primary:hover { background: var(--accent-soft); }
.btn__icon {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px;
  background: rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .7rem;
  padding-left: 2px;
}
.btn--ghost { border-color: var(--line); color: var(--ink-dim); }
.btn--ghost:hover { border-color: var(--ink-dim); color: var(--ink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(.7) brightness(.55) contrast(1.05);
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,.35) 0%, rgba(0,0,0,.7) 60%, rgba(0,0,0,.95) 100%),
    linear-gradient(180deg, rgba(11,10,10,.2), rgba(11,10,10,.95));
  z-index: -1;
}
.hero__inner {
  max-width: 980px;
  padding: 6rem 1.5rem 8rem;
  text-align: center;
}
.eyebrow {
  font: 600 .78rem/1 var(--sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 144;
}
.hero__title .accent { color: var(--accent-soft); font-style: italic; }
.hero__sub {
  max-width: 640px;
  margin: 0 auto 2.2rem;
  color: var(--ink-dim);
  font-size: 1.08rem;
}
.hero__sub strong { color: var(--ink); }
.hero__actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__meta {
  display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap;
  color: var(--ink-mute);
  font-size: .85rem;
  letter-spacing: .05em;
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 1px solid var(--ink-mute);
  border-radius: 999px;
  display: grid; place-items: start center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--ink-dim);
  border-radius: 999px;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===== ARTICLE ===== */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .article {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 4rem;
  }
}

/* TOC */
.toc { display: none; }
@media (min-width: 1024px) {
  .toc {
    display: block;
    position: sticky;
    top: 90px;
    align-self: start;
    font-size: .88rem;
  }
}
.toc__label {
  font: 600 .72rem/1 var(--sans);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.toc ol {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: .7rem;
  border-left: 1px solid var(--line);
}
.toc ol a {
  display: block;
  padding: .15rem 0 .15rem 1rem;
  color: var(--ink-mute);
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.toc ol a:hover { color: var(--ink); }
.toc ol a.is-active { color: var(--ink); border-left-color: var(--accent); }

/* Prose */
.prose { max-width: var(--measure); margin: 0 auto; }

.prose__header {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-dim);
  margin: 0 0 2rem;
}
.byline { display: flex; align-items: center; gap: 1rem; }
.byline__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: white !important;
}

.prose p {
  margin: 0 0 1.4rem;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--ink);
  font-variation-settings: "opsz" 14;
}
.prose .lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 2rem;
}
.dropcap {
  float: left;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 4.5rem;
  line-height: .9;
  padding: .35rem .6rem 0 0;
  color: var(--accent-soft);
}

.prose h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -.015em;
  margin: 3.5rem 0 1.5rem;
  scroll-margin-top: 90px;
}
.prose h2::before {
  content: "";
  display: block;
  width: 36px; height: 2px;
  background: var(--accent);
  margin-bottom: 1rem;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 0 0 .5rem;
}

.emphasis {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem !important;
  color: var(--gold) !important;
  margin: 2rem 0 !important;
}
.emphasis--good { color: var(--good) !important; }
.emphasis--bad { color: var(--bad) !important; }

/* Lists */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: .6rem;
}
.checklist li {
  position: relative;
  padding-left: 2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem;
  display: grid; place-items: center;
  background: rgba(201,162,75,.12);
  color: var(--gold);
  border-radius: 999px;
  font-size: .8rem;
  font-family: var(--sans);
  font-weight: 700;
}

/* Pullquotes */
.pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: .5rem 0 .5rem 1.5rem;
  margin: 2.5rem 0;
}
.pullquote--accent {
  background: linear-gradient(90deg, rgba(201,48,44,.08), transparent);
  border-left-color: var(--gold);
  color: var(--gold);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Figures */
.figure { margin: 3rem 0; }
.figure__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8), 0 0 0 1px var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.figure__img:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), 0 0 0 1px var(--accent);
}

/* Video block */
.video-block { margin: 3.5rem 0; }
.video-block h2 { margin-top: .5rem; }
.video-block h2::before { display: none; }
.video-block .eyebrow { margin-bottom: .8rem; }

.player {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,.8), 0 0 0 1px var(--line);
  margin-top: 1.5rem;
  transition: transform .4s var(--ease);
}
.player:hover { transform: translateY(-2px); }
.player__video { width: 100%; aspect-ratio: 16/9; background: #000; }
.player__expand {
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  opacity: 0;
  transition: opacity .25s var(--ease), background .25s var(--ease);
}
.player:hover .player__expand,
.player:focus-within .player__expand { opacity: 1; }
.player__expand:hover { background: rgba(0,0,0,.8); }

.video-note {
  margin-top: 1rem;
  font-size: .92rem;
  color: var(--ink-mute);
}

/* Changes list */
.changes {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}
.changes li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.changes li:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--bg-elev);
}
.changes__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent-soft);
  line-height: 1;
}
.changes h3 { margin-top: .15rem; }
.changes p {
  font-family: var(--sans) !important;
  font-size: .98rem !important;
  color: var(--ink-dim) !important;
  margin: .35rem 0 0 !important;
  line-height: 1.65;
}

/* Memory list */
.memory {
  list-style: none;
  padding: 0; margin: 1.5rem 0 2rem;
  display: grid;
  gap: .75rem;
}
.memory li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-dim);
  padding-left: 1.2rem;
  border-left: 2px solid var(--gold);
}

.closing {
  font-family: var(--serif) !important;
  font-size: 1.3rem !important;
  color: var(--ink) !important;
  margin: 3rem 0 1rem !important;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.closing em { color: var(--accent-soft); font-style: italic; }

/* Share */
.share {
  margin: 4rem 0 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(201,48,44,.07), rgba(201,162,75,.05));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.share h2 {
  font-family: var(--serif);
  margin: 0 0 .5rem !important;
  font-size: 1.6rem;
}
.share h2::before { display: none; }
.share p {
  color: var(--ink-dim);
  margin-bottom: 1.5rem !important;
  font-family: var(--sans) !important;
  font-size: 1rem !important;
}
.share__buttons {
  display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center;
}

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
  background: var(--bg-soft);
}
.site-footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--ink-mute);
  font-size: .88rem;
}
.site-footer__small { color: var(--ink-mute); font-style: italic; }

.app-version {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 190;
  padding: .28rem .52rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.68);
  color: #d9d9d9;
  font: 600 .66rem/1 var(--sans);
  letter-spacing: .04em;
  pointer-events: none;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 100;
  display: grid; place-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.lightbox__close:hover { background: var(--accent); transform: rotate(90deg); }
.lightbox__inner { width: 100%; max-width: 1200px; }
.lightbox__inner video {
  width: 100%;
  max-height: 85vh;
  border-radius: var(--radius);
  background: #000;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--bg);
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 15px 35px -10px rgba(0,0,0,.7);
}
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Reveal animations ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__video { animation: none; transform: none; }
}
