/* =============================================================
   kubra.studio — Art Director portfolio
   Editorial-minimal index. Near-monochrome, imagery is the colour.
   Schibsted Grotesk (display) · Hanken Grotesk (text) · mono numerals.
   ============================================================= */

/* ---- Tokens ------------------------------------------------- */
:root {
  --paper:      #FBFBF9;
  --paper-2:    #F1F0EC;
  --ink:        #17171A;
  --ink-2:      #56555C;
  --ink-3:      #8A8992;
  --hairline:   rgba(20, 20, 25, 0.14);
  --hairline-2: rgba(20, 20, 25, 0.07);
  --accent:     #2438C8;
  --sel:        rgba(36, 56, 200, 0.14);

  --font-display: "Schibsted Grotesk", ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-text:    "Hanken Grotesk", ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:    "Spline Sans Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  --fs-hero:  clamp(2.5rem, 1.2rem + 6.4vw, 6rem);
  --fs-h2:    clamp(1.5rem, 1.05rem + 2vw, 2.6rem);
  --fs-h3:    clamp(1.15rem, 1rem + 0.7vw, 1.5rem);
  --fs-lead:  clamp(1.05rem, 0.98rem + 0.5vw, 1.3rem);
  --fs-body:  clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --fs-sm:    0.875rem;
  --fs-mono:  0.75rem;

  --mar:      clamp(1.25rem, 0.6rem + 3.2vw, 4.5rem);   /* page side margin */
  --maxw:     1440px;
  --sect-y:   clamp(5rem, 3rem + 9vw, 11rem);           /* vertical section rhythm */
  --gap:      clamp(1rem, 0.5rem + 2vw, 2.5rem);

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);            /* expo-out */
  --dur:      0.7s;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:      #100F12;
    --paper-2:    #1A191D;
    --ink:        #ECEAE4;
    --ink-2:      #9A98A2;
    --ink-3:      #6A6972;
    --hairline:   rgba(236, 234, 228, 0.16);
    --hairline-2: rgba(236, 234, 228, 0.08);
    --accent:     #8C99FF;
    --sel:        rgba(140, 153, 255, 0.22);
  }
}
:root[data-theme="dark"] {
  --paper:      #100F12;
  --paper-2:    #1A191D;
  --ink:        #ECEAE4;
  --ink-2:      #9A98A2;
  --ink-3:      #6A6972;
  --hairline:   rgba(236, 234, 228, 0.16);
  --hairline-2: rgba(236, 234, 228, 0.08);
  --accent:     #8C99FF;
  --sel:        rgba(140, 153, 255, 0.22);
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; padding: 0; }

::selection { background: var(--sel); color: var(--ink); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb {
  background: var(--hairline);
  border: 3px solid var(--paper);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--ink-3); }
html { scrollbar-color: var(--hairline) var(--paper); }

/* ---- Grain ----------------------------------------------- */
.grain {
  position: fixed; inset: 0; z-index: 9;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: multiply;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .grain { mix-blend-mode: screen; opacity: 0.05; }
}
:root[data-theme="dark"] .grain { mix-blend-mode: screen; opacity: 0.05; }

/* ---- Typographic primitives ----------------------------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
h2 { font-size: var(--fs-h2); letter-spacing: -0.015em; }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.01em; }

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 34ch;
  color: var(--ink);
}
p { max-width: 68ch; }
.muted { color: var(--ink-2); }

/* animated underline for inline links */
.link {
  color: inherit;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.4s var(--ease);
  padding-bottom: 1px;
}
.link:hover, .link:focus-visible { background-size: 100% 1px; }
.link--ext::after { content: " ↗"; color: var(--ink-2); }

/* ---- Layout shell -------------------------------------- */
.shell {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--mar);
}
.section { padding-block: var(--sect-y); }
.section + .section { border-top: 1px solid var(--hairline-2); }

.section__head {
  display: flex;
  align-items: baseline;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 1rem + 4vw, 4.5rem);
}
.section__head .mono { flex: none; }

/* ---- Skip link ---------------------------------------- */
.skip {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -120%);
  background: var(--ink); color: var(--paper);
  padding: 0.7em 1.2em; z-index: 200; border-radius: 0 0 4px 4px;
  transition: transform 0.2s var(--ease);
}
.skip:focus { transform: translate(-50%, 0); }

/* ---- Nav ---------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 0.7rem + 1vw, 1.6rem) var(--mar);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  padding-block: 0.8rem;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--hairline);
}
.nav__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav__mark span { color: var(--ink-3); }
.nav__links { display: flex; gap: clamp(0.9rem, 0.4rem + 1.6vw, 2rem); align-items: center; }
.nav__links a {
  font-size: var(--fs-sm);
  color: var(--ink-2);
  transition: color 0.25s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="true"] { color: var(--ink); }
.theme-toggle {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.25s var(--ease);
}
.theme-toggle:hover { color: var(--ink); }
@media (max-width: 560px) {
  .nav__links .nav__sec { display: none; }
}

/* ---- Hero ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: clamp(2rem, 1rem + 6vw, 4rem);
  padding-block: clamp(7.5rem, 6rem + 9vw, 13rem) clamp(5rem, 4rem + 6vw, 8rem);
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) clamp(240px, 26vw, 360px);
    align-items: center;
    gap: clamp(2.5rem, 1rem + 5vw, 6rem);
  }
  .hero__intro { grid-column: 1; }
  .hero__portrait { grid-column: 2; grid-row: 1; }
}
.hero__name {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.hero__name .row { display: block; overflow: hidden; }
.hero__name .row > span { display: block; will-change: transform; }
.hero__lead { margin-top: clamp(1.5rem, 1rem + 2vw, 2.6rem); max-width: 52ch; }
.hero__lead p { font-size: var(--fs-lead); line-height: 1.5; max-width: 52ch; }
.hero__status {
  margin-top: 1.6rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: var(--fs-sm); color: var(--ink-2);
}
.hero__status .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 60%, transparent);
  animation: pulse 3s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 9px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
.hero__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper-2);
  overflow: hidden;
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 899px) {
  .hero__portrait { max-width: 320px; aspect-ratio: 1 / 1; }
}
.hero__cue {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
  transition: color 0.25s var(--ease);
}
.hero__cue:hover { color: var(--ink); }
@media (min-width: 900px) {
  .hero__cue {
    position: absolute;
    left: var(--mar); bottom: clamp(1.75rem, 1rem + 2vw, 3rem);
  }
}
@media (max-width: 899px) {
  .hero__cue { margin-top: 0.5rem; }
}
.hero__cue .arrow { animation: nudge 2.4s var(--ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---- Work ---------------------------------------------- */
.work__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 1100px) {
  .work__grid { grid-template-columns: minmax(150px, 210px) minmax(0, 1fr); column-gap: clamp(2rem, 1rem + 4vw, 5rem); }
}

/* sticky index rail (desktop) */
.work__index { display: none; }
@media (min-width: 1100px) {
  .work__index {
    display: block;
    position: sticky; top: 6.5rem; align-self: start;
    height: max-content;
  }
  .work__index ol { display: flex; flex-direction: column; gap: 0.15rem; list-style: none; }
  .work__index a {
    display: grid; grid-template-columns: 2ch 1fr; gap: 0.7rem;
    padding: 0.5rem 0;
    font-size: var(--fs-sm); color: var(--ink-3);
    border-top: 1px solid var(--hairline-2);
    transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
  }
  .work__index li:last-child a { border-bottom: 1px solid var(--hairline-2); }
  .work__index a .n { font-family: var(--font-mono); font-size: var(--fs-mono); }
  .work__index a:hover { color: var(--ink-2); padding-left: 0.3rem; }
  .work__index a.is-active { color: var(--ink); padding-left: 0.4rem; }
  .work__index a.is-active .n { color: var(--accent); }
}

.work__list { display: flex; flex-direction: column; gap: var(--sect-y); }
.work-item { scroll-margin-top: 6rem; }
.work-item__meta { margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.6rem); }
.work-item__title { font-size: var(--fs-h3); font-weight: 600; }
.work-item__sub {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem 0;
  margin-top: 0.55rem;
  font-size: var(--fs-sm); color: var(--ink-2);
}
.work-item__sub span + span::before {
  content: "·"; margin: 0 0.7rem; color: var(--ink-3);
}
.work-item__sub .yr {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.04em; font-variant-numeric: tabular-nums;
}
.work-item__desc { margin-top: 0.9rem; max-width: 58ch; color: var(--ink); }
.work-item__desc a { margin-left: 0.1rem; }

.plates {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
  align-items: start;
}
.plate {
  position: relative;
  grid-column: span 6;
  aspect-ratio: 3 / 2;
  background: var(--paper-2);
  overflow: hidden;
  cursor: zoom-in;
}
.plate.ar-45 { aspect-ratio: 4 / 5; }
.plate.ar-32 { aspect-ratio: 3 / 2; }
.plate.ar-11 { aspect-ratio: 1 / 1; }
.plate.s3 { grid-column: span 3; }
.plate.s4 { grid-column: span 4; }
.plate.s2 { grid-column: span 2; }
@media (max-width: 640px) {
  .plate, .plate.s3, .plate.s4, .plate.s2 { grid-column: span 6; }
}
.plate img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
  filter: saturate(0.92);
}
@media (hover: hover) and (pointer: fine) {
  .plate:hover img { transform: scale(1.03); filter: saturate(1.05); }
}
.plate:focus-visible { outline-offset: -2px; }

/* ---- Studio ------------------------------------------- */
.studio__body {
  display: grid; gap: clamp(2.5rem, 1.5rem + 5vw, 5rem);
}
@media (min-width: 860px) {
  .studio__body { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
}
.studio__bio p + p { margin-top: 1em; }
.deflist { display: grid; gap: 0; }
.deflist > div {
  display: grid; gap: 0.25rem 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
}
.deflist > div:last-child { border-bottom: 1px solid var(--hairline); }
.deflist dt { font-weight: 600; font-family: var(--font-display); letter-spacing: -0.01em; }
.deflist dd { color: var(--ink-2); max-width: 46ch; }
.tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.4rem; }

/* ---- Laufbahn ---------------------------------------- */
.cv { display: grid; gap: 0; }
.cv__row {
  display: grid; grid-template-columns: 1fr; gap: 0.15rem 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hairline);
}
.cv__row:last-child { border-bottom: 1px solid var(--hairline); }
@media (min-width: 680px) {
  .cv__row { grid-template-columns: 10rem 1fr; align-items: baseline; }
}
.cv__when {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.06em; color: var(--ink-2);
  font-variant-numeric: tabular-nums; padding-top: 0.2rem;
}
.cv__what { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.cv__where { color: var(--ink-2); font-size: var(--fs-sm); }
.cv__now .cv__when { color: var(--accent); }

/* ---- Kontakt ----------------------------------------- */
.kontakt { text-align: center; }
.kontakt .section__head { justify-content: center; }
.kontakt__line {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-h2); letter-spacing: -0.02em; line-height: 1.05;
  max-width: 18ch; margin-inline: auto;
  overflow: hidden;
}
.kontakt__line > span { display: block; will-change: transform; }
.kontakt__sub { margin: 1.4rem auto 2.4rem; color: var(--ink-2); max-width: 42ch; }
.kontakt__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95em 1.6em;
  background: var(--ink); color: var(--paper);
  font-weight: 500; letter-spacing: -0.005em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: color-mix(in srgb, var(--ink) 88%, var(--accent)); }
.btn:active { transform: translateY(0); }

/* ---- Footer ------------------------------------------ */
.foot {
  border-top: 1px solid var(--hairline);
  padding-block: clamp(2.5rem, 1.5rem + 3vw, 4rem);
}
.foot__row {
  display: flex; flex-wrap: wrap; gap: 1rem 2rem;
  align-items: center; justify-content: space-between;
}
.foot__row + .foot__row { margin-top: 1.5rem; }
.foot a { color: var(--ink-2); transition: color 0.25s var(--ease); }
.foot a:hover { color: var(--ink); }
.foot .mono { color: var(--ink-3); }
.to-top {
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
}

/* ---- Lightbox --------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 120;
  display: grid; place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: color-mix(in srgb, var(--paper) 20%, #000 80%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__fig {
  max-width: min(1100px, 100%); max-height: 100%;
  display: flex; flex-direction: column; gap: 0.8rem;
  transform: scale(0.96); transition: transform 0.45s var(--ease);
}
.lightbox.is-open .lightbox__fig { transform: scale(1); }
.lightbox__fig img {
  width: 100%; height: auto; max-height: 82vh; object-fit: contain;
  background: var(--paper-2);
}
.lightbox__cap {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: var(--fs-sm); color: rgba(255,255,255,0.7);
}
.lightbox__cap .mono { color: rgba(255,255,255,0.5); }
.lightbox__close, .lightbox__nav button {
  position: absolute; color: #fff;
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.6rem 0.9rem;
}
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav button { top: 50%; transform: translateY(-50%); font-size: 1.4rem; padding: 1rem; }
.lightbox__nav .prev { left: 0.5rem; }
.lightbox__nav .next { right: 0.5rem; }
.lightbox__close:hover, .lightbox__nav button:hover { color: var(--accent); }
@media (max-width: 640px) { .lightbox__nav { display: none; } }

/* ---- Custom cursor -------------------------------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 110;
  width: 74px; height: 74px; border-radius: 50%;
  border: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  backdrop-filter: blur(2px);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink);
  transform: translate3d(var(--x, -200px), var(--y, -200px), 0) translate(-50%, -50%);
  scale: 0.35;
  opacity: 0;
  transition: opacity 0.35s var(--ease), scale 0.35s var(--ease);
  pointer-events: none;
}
body.cursor-active .cursor { opacity: 1; scale: 1; }
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor { display: none; }
}

/* ---- Prose (Impressum) --------------------------- */
.prose { padding-block: clamp(8rem, 6rem + 8vw, 12rem) var(--sect-y); }
.prose h1 { font-size: var(--fs-h2); margin-bottom: 2.5rem; }
.prose h2 {
  font-size: 1.05rem; font-family: var(--font-display); font-weight: 600;
  letter-spacing: -0.005em;
  margin: 2.5rem 0 0.5rem;
}
.prose p, .prose address { max-width: 64ch; color: var(--ink-2); font-style: normal; }
.prose address { line-height: 1.7; }
.prose .back {
  display: inline-block; margin-top: 3.5rem;
  font-family: var(--font-mono); font-size: var(--fs-mono);
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
}
.prose .back:hover { color: var(--ink); }

/* ---- Reveal --------------------------------------- */
/* Scroll-in elements: hidden only once JS confirms the observer is wired
   (html.reveal-on). A safety timer in main.js force-shows everything after
   2.5s, so a script error can never leave content invisible. */
.reveal-on .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-on .reveal.is-in { opacity: 1; transform: none; }

.reveal-on .plate.reveal {
  opacity: 1; transform: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s var(--ease);
}
.reveal-on .plate.reveal.is-in { clip-path: inset(0 0 0 0); }

/* Kontakt headline mask — bookend to the hero, observer-driven */
.reveal-on .reveal--mask { opacity: 1; transform: none; }
.reveal-on .reveal--mask > span { transform: translateY(110%); transition: transform 0.9s var(--ease); }
.reveal-on .reveal--mask.is-in > span { transform: translateY(0); }

/* Hero entrance — pure CSS, auto-plays on load, needs no JS beyond html.js */
.js .hero__name .row > span { animation: heroRise 0.95s var(--ease) both; }
.js .hero__name .row:nth-child(1) > span { animation-delay: 0.05s; }
.js .hero__name .row:nth-child(2) > span { animation-delay: 0.13s; }
.js .hero__portrait { animation: heroFade 1.1s var(--ease) 0.18s both; }
.js .hero__lead     { animation: heroFade 1s var(--ease) 0.30s both; }
.js .hero__status   { animation: heroFade 1s var(--ease) 0.42s both; }
.js .hero__cue      { animation: heroFade 1s var(--ease) 0.55s both; }
@keyframes heroRise { from { transform: translateY(110%); } to { transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal-on .reveal, .reveal-on .plate.reveal, .reveal-on .reveal--mask > span {
    opacity: 1 !important; transform: none !important; clip-path: none !important;
    transition: none !important;
  }
  .js .hero__name .row > span, .js .hero__portrait, .js .hero__lead,
  .js .hero__status, .js .hero__cue {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
  .hero__status .dot { animation: none; }
  .hero__cue .arrow { animation: none; }
}
