/* Angeline Sleepwear — the page darkens from dusk to night as you scroll.
   JS drives --bg / --fg / --muted / --line / --panel / --violet; the values
   below are the dusk end of that range and stand alone without JS. */

:root {
  --bg: #f2e6d8;
  --fg: #3a1d0c;
  --muted: #6e5340;
  --line: #ddc9b3;
  --panel: #fbf3e9;
  --violet: #6b4e97;

  --amber: #e2921f;
  --amber-ink: #2a1408;

  --measure: 62ch;
  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --rhythm: clamp(5rem, 13vw, 11rem);

  --display: "Fraunces", Georgia, serif;
  --body: "Karla", system-ui, sans-serif;
  --util: "Archivo", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 0.68, 0.24, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  line-height: 1.65;
  font-weight: 350;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ---------- type roles ---------- */

.eyebrow,
.spec__label,
.step__hour,
.note__label,
.card__note,
.bar__nav,
.foot__nav,
.foot__note,
.order__fine,
.btn {
  font-family: var(--util);
  font-variation-settings: "wdth" 118;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.5;
}

.eyebrow {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

h1, h2, h3 {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(2.25rem, 1.1rem + 4.6vw, 4.4rem);
  margin-bottom: 1.5rem;
}

.lede {
  max-width: var(--measure);
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 0.96rem + 0.3vw, 1.2rem);
}

.lede--narrow { max-width: 44ch; }
.lede--center { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  padding: 1.05em 2.1em;
  border-radius: 999px;
  background: var(--amber);
  color: var(--amber-ink);
  text-decoration: none;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn--quiet {
  background: transparent;
  color: var(--fg);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn--quiet:hover { box-shadow: inset 0 0 0 1px var(--amber); }

.btn--big {
  padding: 1.25em 3.2em;
  font-size: 0.8rem;
}

/* ---------- top bar ---------- */

.bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.8rem var(--gutter);
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  opacity: var(--bar, 1);
  transition: background 0.45s var(--ease),
    backdrop-filter 0.45s var(--ease),
    border-color 0.45s var(--ease),
    opacity 0.35s linear;
}

body.scrolled .bar {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

/* The logo is dark artwork on white. Multiply drops the white out at dusk;
   an inverted, hue-corrected copy fades in to carry it through the night. */
.brandmark {
  position: relative;
  display: block;
  line-height: 0;
}

.brandmark__day { mix-blend-mode: multiply; }

.brandmark__night {
  position: absolute;
  inset: 0;
  width: 100%;
  filter: invert(1) hue-rotate(180deg);
  mix-blend-mode: screen;
  opacity: var(--night, 0);
}

.bar__logo { width: 98px; }

.bar__logo .brandmark__day,
.bar__logo .brandmark__night {
  transition: opacity 0.4s var(--ease);
}

/* Light mark over the cover film; the dark artwork returns once the bar plates. */
.bar__logo .brandmark__day { opacity: 0; }
.bar__logo .brandmark__night {
  opacity: 1;
  mix-blend-mode: normal;
  filter: invert(1) hue-rotate(180deg) brightness(1.12) drop-shadow(0 1px 10px rgba(24, 12, 5, 0.35));
}

body.scrolled .bar__logo .brandmark__day {
  opacity: calc(1 - var(--night, 0));
}
body.scrolled .bar__logo .brandmark__night {
  opacity: var(--night, 0);
  mix-blend-mode: normal;
  filter: invert(1) hue-rotate(180deg) brightness(1.55) contrast(1.08);
}

.bar__nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.9vw, 1.8rem);
}

.bar__nav a {
  text-decoration: none;
  color: #fdf6ec;
  font-weight: 600;
  text-shadow:
    0 1px 3px rgba(24, 12, 5, 0.55),
    0 1px 18px rgba(24, 12, 5, 0.45);
  transition: color 0.3s var(--ease);
}

.bar__nav a:not(.bar__cta):hover { color: #fff; }

body.scrolled .bar__nav a:not(.bar__cta) {
  color: var(--fg);
  font-weight: 500;
  text-shadow: none;
}

body.scrolled .bar__nav a:not(.bar__cta):hover { color: var(--fg); }

.bar__nav .bar__cta {
  color: var(--amber-ink);
  background: var(--amber);
  padding: 0.6em 1.2em;
  border-radius: 999px;
  text-shadow: none;
  font-weight: 500;
}

/* ---------- daylight (dust motes + corner sunbeam) ---------- */

.daylight {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: calc(1 - var(--night, 0));
}

/* warm glow spilling from the top-left corner, like low window light */
.daylight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    64% 58% at 4% -8%,
    rgba(255, 214, 138, 0.85) 0%,
    rgba(255, 198, 120, 0.42) 26%,
    rgba(255, 190, 110, 0.16) 52%,
    rgba(255, 190, 110, 0) 74%
  );
  mix-blend-mode: multiply;
}

/* slow-drifting motes catching the light (warm/amber so they read on cream) */
.daylight::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 720px 560px;
  background-image:
    radial-gradient(2px 2px at 14% 26%, rgba(198, 138, 58, 0.55), transparent),
    radial-gradient(1.5px 1.5px at 29% 72%, rgba(176, 120, 48, 0.5), transparent),
    radial-gradient(2.4px 2.4px at 44% 16%, rgba(206, 150, 70, 0.5), transparent),
    radial-gradient(1.6px 1.6px at 58% 52%, rgba(184, 128, 52, 0.45), transparent),
    radial-gradient(2.1px 2.1px at 71% 84%, rgba(200, 142, 62, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 82% 34%, rgba(178, 122, 50, 0.45), transparent),
    radial-gradient(2.2px 2.2px at 91% 60%, rgba(202, 146, 66, 0.5), transparent),
    radial-gradient(1.6px 1.6px at 37% 92%, rgba(180, 124, 50, 0.45), transparent),
    radial-gradient(1.9px 1.9px at 64% 10%, rgba(198, 140, 60, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 9% 58%, rgba(176, 120, 48, 0.45), transparent),
    radial-gradient(2px 2px at 49% 76%, rgba(196, 138, 58, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 22% 42%, rgba(178, 122, 50, 0.45), transparent);
  animation: mote-drift 46s linear infinite;
}

@keyframes mote-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-720px, -140px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .daylight::after { animation: none; }
}

/* ---------- star field ---------- */

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: calc(var(--night, 0) * 0.85);
}

/* Stars split across two layers that twinkle out of phase, so they don't
   all blink in unison. The parent keeps the --night opacity gate. */
.stars::before,
.stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 780px 620px;
  will-change: opacity;
}

.stars::before {
  background-image:
    radial-gradient(1.6px 1.6px at 12% 22%, #fff, transparent),
    radial-gradient(1.8px 1.8px at 41% 12%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 68% 80%, #fff, transparent),
    radial-gradient(1.7px 1.7px at 88% 62%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 61% 8%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 46% 74%, #fff, transparent),
    radial-gradient(1.3px 1.3px at 93% 15%, #fff, transparent);
  animation: twinkle 6.5s ease-in-out infinite;
}

.stars::after {
  background-image:
    radial-gradient(1.2px 1.2px at 27% 68%, #efe4ff, transparent),
    radial-gradient(1.1px 1.1px at 55% 47%, #d8c8f5, transparent),
    radial-gradient(1.3px 1.3px at 78% 30%, #f4ecff, transparent),
    radial-gradient(1.1px 1.1px at 34% 90%, #e3d6ff, transparent),
    radial-gradient(1.2px 1.2px at 8% 55%, #f0e8ff, transparent),
    radial-gradient(1.1px 1.1px at 19% 38%, #e8dcff, transparent),
    radial-gradient(1.2px 1.2px at 72% 55%, #eee2ff, transparent);
  animation: twinkle 8.5s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .stars::before,
  .stars::after { animation: none; }
}

main, .foot { position: relative; z-index: 1; }

/* ---------- arch frame (shared image shape) ---------- */

.arch {
  overflow: hidden;
  border-radius: 50% 50% 6px 6px / 38% 38% 6px 6px;
  background: var(--panel);
}

.arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.arch--tall { aspect-ratio: 3 / 4.2; }

/* ---------- cover ---------- */

.hero-cover {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(4rem, 9.6vh, 5.6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-cover__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

/* The still is 1536px; the clip is 744×496. Keep the linen sharp and let
   the film carry motion over the still-life on the right. */
.hero-cover__media img,
.hero-cover__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
}

.hero-cover__media img {
  transform: scale(1.02);
  animation: cover-settle 2.4s var(--ease) both;
}

.hero-cover__live {
  opacity: 0;
  transform: scale(1.04);
  filter: contrast(1.08) saturate(1.12) brightness(1.03);
  -webkit-mask-image: radial-gradient(
    ellipse 86% 100% at 74% 46%,
    #000 22%,
    rgba(0, 0, 0, 0.72) 52%,
    rgba(0, 0, 0, 0.18) 74%,
    transparent 92%
  );
  mask-image: radial-gradient(
    ellipse 86% 100% at 74% 46%,
    #000 22%,
    rgba(0, 0, 0, 0.72) 52%,
    rgba(0, 0, 0, 0.18) 74%,
    transparent 92%
  );
  transition: opacity 1.4s var(--ease);
}

.hero-cover__live.is-ready {
  opacity: 1;
}

.hero-cover__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42  0 0 0 0 0.28  0 0 0 0 0.16  0 0 0 0.7 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

@keyframes cover-settle {
  from { transform: scale(1.08); }
  to { transform: scale(1.02); }
}

.hero-cover__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(28, 14, 6, 0.5) 0%, rgba(28, 14, 6, 0.16) 36%, rgba(28, 14, 6, 0) 64%),
    linear-gradient(to right, rgba(28, 14, 6, 0.34) 0%, rgba(28, 14, 6, 0) 58%);
}

.hero-cover__content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 0 var(--gutter) clamp(3rem, 9vh, 6.5rem);
  color: #f6ece0;
}

.hero-cover .eyebrow {
  color: #eddac6;
  text-shadow: 0 1px 14px rgba(24, 12, 5, 0.5);
}

.cover__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3.6rem, 1rem + 12vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin: 0.28em 0 0.34em;
  color: #fdf6ec;
  text-wrap: balance;
  font-variation-settings: "opsz" 144, "SOFT" 40, "WONK" 0;
  text-shadow: 0 2px 26px rgba(24, 12, 5, 0.4);
}

.cover__lede {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.2rem);
  line-height: 1.6;
  color: #f0e1cf;
  max-width: 36ch;
  margin: 0 0 1.7rem;
  text-shadow: 0 1px 16px rgba(24, 12, 5, 0.5);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-cover .btn--quiet {
  color: #f6ece0;
  box-shadow: inset 0 0 0 1px rgba(246, 236, 224, 0.55);
}

.hero-cover .btn--quiet:hover {
  box-shadow: inset 0 0 0 1px #f6ece0;
  background: rgba(246, 236, 224, 0.1);
}

.cover__issue {
  position: absolute;
  top: clamp(6.5rem, 16vh, 10rem);
  right: var(--gutter);
  z-index: 1;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #f1e3d3;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cover__issue::after {
  content: "";
  height: clamp(2.5rem, 8vh, 5rem);
  width: 1px;
  background: rgba(241, 227, 211, 0.6);
}

.cover__issue span {
  font-weight: 600;
  letter-spacing: 0.14em;
}

.cover__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3rem, 9vh, 6.5rem);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--util);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f1e3d3;
  text-decoration: none;
}

.cover__scroll .cover__arrow {
  display: inline-block;
  animation: cue-drop 2.2s var(--ease) infinite;
}

@keyframes cue-drop {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(4px); opacity: 1; }
}

/* ---------- specs band ---------- */

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.specs .spec {
  background: var(--bg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) var(--gutter);
}

.spec__label {
  display: block;
  color: var(--amber);
  margin-bottom: 0.7rem;
}

.spec p {
  margin: 0;
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-size: clamp(1.15rem, 0.9rem + 0.9vw, 1.6rem);
  line-height: 1.25;
}

/* ---------- ritual ---------- */

.ritual {
  padding: var(--rhythm) var(--gutter);
}

.steps {
  list-style: none;
  margin: clamp(2.5rem, 6vw, 4.5rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.steps .step {
  display: grid;
  grid-template-columns: 7rem minmax(0, 21rem) minmax(0, 46ch);
  gap: clamp(1rem, 4vw, 3.5rem);
  align-items: start;
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
}

.steps .step:last-child { border-bottom: 1px solid var(--line); }

.step__hour {
  color: var(--violet);
  padding-top: 0.35em;
  letter-spacing: 0.1em;
}

.step h3 {
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.3rem);
}

.step p {
  margin: 0;
  color: var(--muted);
}

/* ---------- lights out ----------
   The hinge of the page. A pinned photo fills the viewport while the whole
   palette hands over from dusk to night, so the low-contrast middle of that
   handover happens with nothing on screen that has to be read. */

.lightsout {
  position: relative;
  height: 230vh;
  margin-block: clamp(1rem, 4vw, 3rem);
}

.lightsout__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.lightsout__frame {
  position: relative;
  height: min(72vh, 640px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 50% 50% 6px 6px / 38% 38% 6px 6px;
  box-shadow: 0 50px 110px -60px rgba(30, 16, 8, 0.85);
  transform: scale(var(--dim-zoom, 1));
}

.lightsout__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

.lightsout__veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 70% at 50% 48%, rgba(24, 14, 30, 0.55) 0%, #0d0812 100%);
  opacity: var(--dim, 0);
}

.lightsout__line {
  position: absolute;
  bottom: clamp(2.5rem, 7vh, 5rem);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--util);
  font-variation-settings: "wdth" 118;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: #efe3d5;
  opacity: var(--dim-text, 0);
}

.lightsout__line span { color: var(--amber); }

/* ---------- prints ---------- */

.prints {
  padding: var(--rhythm) var(--gutter);
}

.prints__head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
}

.cards {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.cards .card { margin: 0; }

/* Offset with margin, not transform: .reveal owns transform on these cards. */
.cards .card:nth-child(2) { margin-top: clamp(1rem, 4vw, 3.5rem); }

.card:hover .arch img { transform: scale(1.04); }

.card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.1rem;
}

.card__name {
  font-family: var(--display);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  font-size: 1.4rem;
  line-height: 1.1;
}

.card__note { color: var(--muted); }

/* ---------- made ---------- */

.made {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
  padding: var(--rhythm) var(--gutter);
}

.made__figure { margin: 0; }

.made__figure .arch {
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 90px -55px rgba(20, 12, 30, 0.7);
}

.made .note {
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.made .note p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  max-width: 48ch;
}

.note__label { color: var(--amber); }

/* ---------- order ---------- */

.order {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: calc(var(--rhythm) * 1.1) var(--gutter) calc(var(--rhythm) * 0.7);
}

.order__title {
  font-size: clamp(3.5rem, 1.5rem + 10vw, 9rem);
  font-variation-settings: "SOFT" 90, "WONK" 1;
  letter-spacing: -0.045em;
  margin-bottom: 1.75rem;
}

.order .btn--big { margin-top: 2.75rem; }

.order__fine {
  margin: 1.75rem 0 0;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ---------- footer ---------- */

.foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  padding: 2.5rem var(--gutter) 3.5rem;
  border-top: 1px solid var(--line);
}

.foot__logo { width: 108px; }

.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.foot__nav a {
  text-decoration: none;
  color: var(--muted);
}

.foot__nav a:hover { color: var(--fg); }

.foot__note { margin: 0; color: var(--muted); }

/* ---------- reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .made,
  .prints__head {
    grid-template-columns: 1fr;
  }

  .made__figure { order: 2; }

  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card:nth-child(2) { margin-top: 0; }
  .cards .card:last-child { grid-column: 1 / -1; max-width: 24rem; }

  .specs { grid-template-columns: 1fr; }

  .steps .step {
    grid-template-columns: 5.5rem 1fr;
  }

  .steps .step p { grid-column: 2; }

  .bar__nav a:not(.bar__cta) { display: none; }
}

@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .cards .card:last-child { max-width: none; }

  .steps .step {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .steps .step p { grid-column: 1; }
  .hero__actions .btn { flex: 1 1 auto; text-align: center; }
}

@media (max-width: 720px) {
  .cover__issue,
  .cover__scroll { display: none; }
  .hero-cover__content { max-width: none; }
  .hero-cover__media img,
  .hero-cover__media video { object-position: 72% 38%; }
  .hero-cover__live {
    -webkit-mask-image: radial-gradient(
      ellipse 120% 90% at 50% 40%,
      #000 40%,
      rgba(0, 0, 0, 0.55) 78%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 120% 90% at 50% 40%,
      #000 40%,
      rgba(0, 0, 0, 0.55) 78%,
      transparent 100%
    );
  }
  .hero-cover__scrim {
    background:
      linear-gradient(to top, rgba(28, 14, 6, 0.68) 0%, rgba(28, 14, 6, 0.34) 42%, rgba(28, 14, 6, 0.12) 72%);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .arch img,
  .btn { transition: none; }

  .lightsout__frame { transform: none; }

  .hero-cover__media img { animation: none; transform: none; }
  .hero-cover__live { display: none; }
  .cover__scroll .cover__arrow { animation: none; }
}
