/* HERO & GABLE — Eclipse */

:root {
  --bg: #0a0907;
  --bg-2: #0e0c09;
  --ivory: #f2ede2;
  --ivory-dim: #c6bfb2;
  --shadow-text: 0 1px 2px rgba(5, 4, 3, 0.9), 0 3px 14px rgba(5, 4, 3, 0.75), 0 10px 40px rgba(5, 4, 3, 0.55);
  --gold: #c9a227;
  --gold-soft: #d8b55e;
  --paper: #ffffff;
  --card: #ffffff;
  --ink: #14110d;
  --ink-dim: #6f665a;
  --gold-ink: #9a7b12;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Loader ---------- */
#loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  transition: opacity 0.9s ease, visibility 0.9s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.35em;
  color: var(--gold);
}
.loader-bar {
  width: min(220px, 50vw); height: 1px;
  background: rgba(236, 231, 220, 0.14);
  overflow: hidden;
}
#loader-fill {
  display: block; height: 100%; width: 0%;
  background: var(--gold);
  transition: width 0.25s ease;
}

/* ---------- Nav ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px clamp(24px, 5vw, 64px);
  mix-blend-mode: normal;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 1.2s ease 0.4s, transform 1.2s ease 0.4s;
  pointer-events: none;
}
body.ready #nav { opacity: 1; transform: none; pointer-events: auto; }
.nav-brand {
  font-family: var(--sans); font-weight: 400;
  font-size: 11px; letter-spacing: 0.42em;
  color: var(--ivory);
  text-shadow: var(--shadow-text);
}
.nav-cta {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 500;
  color: var(--gold); text-decoration: none;
  padding: 10px 18px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  transition: background 0.4s, color 0.4s;
}
.nav-cta:hover { background: var(--gold); color: #0a0907; }

/* ---------- Pinned scenes ---------- */
.pin { position: relative; }

/* A dark beat between the assembly and the eclipse, so the
   next scene does not begin the instant the last one ends. */
.scene-gap {
  position: relative;
  height: 18vh;
  background: var(--bg);
}
.stage {
  position: sticky; top: 0;
  height: 100vh; height: 100svh;
  overflow: hidden;
}
.seq-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 45%, rgba(10, 9, 7, 0.55) 100%),
    linear-gradient(to bottom, rgba(10,9,7,0.5), transparent 18%, transparent 82%, rgba(10,9,7,0.6));
}
#wrist .vignette {
  background:
    linear-gradient(to bottom, rgba(10, 9, 7, 1) 0%, rgba(10, 9, 7, 0.85) 10%, rgba(10, 9, 7, 0.4) 24%, transparent 42%),
    radial-gradient(ellipse at center, transparent 45%, rgba(10, 9, 7, 0.55) 100%),
    linear-gradient(to bottom, transparent 82%, rgba(10, 9, 7, 0.6));
}
.story-stage {
  background:
    radial-gradient(ellipse 70% 55% at 50% 60%, rgba(201,162,39,0.05), transparent 70%),
    var(--bg-2);
}
#story .seq-canvas {
  filter: saturate(0.72) contrast(1.08) brightness(0.84);
}
.story-film-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 58% 34% at 50% 50%, rgba(4, 4, 4, 0.34), transparent 76%),
    linear-gradient(to bottom, rgba(10, 9, 7, 0.52), rgba(10, 9, 7, 0.08) 24%, rgba(10, 9, 7, 0.08) 76%, rgba(10, 9, 7, 0.62)),
    radial-gradient(ellipse at center, transparent 42%, rgba(10, 9, 7, 0.48) 100%);
}
#story .overlay {
  z-index: 2;
  text-shadow: 0 2px 3px rgba(0, 0, 0, 0.95), 0 8px 30px rgba(0, 0, 0, 0.92), 0 22px 70px rgba(0, 0, 0, 0.78);
}

/* ---------- Overlays (scroll-driven) ---------- */
.overlay {
  position: absolute;
  opacity: 0;
  transform: translateY(var(--ty, 0px));
  will-change: opacity, transform;
  pointer-events: none;
  text-shadow: var(--shadow-text);
}
.overlay.center {
  inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 6vw;
}
.overlay.center.top { justify-content: flex-start; padding-top: 16vh; }
.overlay.left  { left: clamp(24px, 8vw, 120px); top: 50%; transform: translateY(calc(-50% + var(--ty, 0px))); max-width: 520px; }
.overlay.right { right: clamp(24px, 8vw, 120px); top: 50%; transform: translateY(calc(-50% + var(--ty, 0px))); max-width: 520px; text-align: right; }
.overlay.right .rule { margin-left: auto; }

/* ---------- Type ---------- */
.brand-line {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(34px, 7.5vw, 96px);
  letter-spacing: 0.18em;
  color: var(--ivory);
  white-space: nowrap;
}
.brand-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(6px);
}
body.ready .brand-line span {
  animation: trackIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 90ms + 300ms);
}
@keyframes trackIn {
  to { opacity: 1; transform: none; filter: blur(0); }
}
.brand-line .amp { color: var(--gold); }
.brand-sub {
  margin-top: 22px;
  font-size: 12px; letter-spacing: 0.5em; text-transform: uppercase;
  font-weight: 400;
  color: var(--ivory-dim);
  opacity: 0; transition: opacity 1.5s ease 1.8s;
}
body.ready .brand-sub { opacity: 1; }

.display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(56px, 11vw, 150px);
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: var(--ivory);
}
.display.sm { font-size: clamp(42px, 6.5vw, 88px); }

.kicker {
  margin-top: 18px;
  font-size: clamp(13px, 1.2vw, 16px); letter-spacing: 0.45em; text-transform: uppercase;
  font-weight: 400;
  color: var(--ivory-dim);
}
.kicker.gold { color: var(--gold); margin-top: 0; margin-bottom: 18px; }

.line {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.5;
  color: var(--ivory);
}
.line.dim { color: var(--ivory-dim); font-style: italic; }

.rule { width: 60px; height: 1px; background: var(--gold); margin-bottom: 22px; }
.caption {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.15;
  color: var(--ivory);
}
.caption-sub {
  margin-top: 12px;
  font-size: clamp(16px, 1.6vw, 21px); letter-spacing: 0.14em;
  font-weight: 400;
  color: var(--ivory-dim);
}

/* ---------- Spec callouts ---------- */
.spec { display: flex; flex-direction: column; gap: 6px; }
.spec .spec-num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(64px, 9vw, 128px);
  color: var(--gold-soft);
  line-height: 1;
}
.spec .spec-num small { font-size: 0.4em; letter-spacing: 0.05em; color: var(--gold); }
.spec .spec-label {
  font-size: clamp(13px, 1.3vw, 17px); letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ivory);
}
.spec.s1 { left: clamp(24px, 10vw, 160px); top: 24%; }
.spec.s2 { right: clamp(24px, 10vw, 160px); top: 40%; text-align: right; }
.spec.s3 { left: clamp(24px, 10vw, 160px); bottom: 20%; }

/* ---------- Scroll cue ---------- */
.scroll-cue {
  position: absolute; left: 50%; bottom: 34px;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0;
}
.scroll-cue span {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: cueDrop 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueDrop {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}
.scroll-cue em {
  font-style: normal; font-size: 11px;
  letter-spacing: 0.5em; text-transform: uppercase;
  font-weight: 400;
  color: var(--ivory-dim);
  text-shadow: var(--shadow-text);
}

/* ---------- CTA ---------- */
#cta {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 18vh 6vw 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 42%, rgba(201,162,39,0.06), transparent 70%),
    var(--bg);
}
.cta-inner { max-width: 640px; }
.reveal-once { opacity: 0; transform: translateY(36px); transition: opacity 1.3s ease, transform 1.3s ease; }
.reveal-once.in { opacity: 1; transform: none; }

#waitlist {
  margin-top: 44px;
  display: flex; gap: 0;
  border: 1px solid rgba(236, 231, 220, 0.18);
  max-width: 460px; margin-left: auto; margin-right: auto;
}
#waitlist input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  padding: 18px 20px;
  color: var(--ivory);
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.06em;
}
#waitlist input::placeholder { color: var(--ivory-dim); }
#waitlist button {
  background: var(--gold); border: none; cursor: pointer;
  padding: 0 26px;
  font-family: var(--sans); font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: #0a0907;
  transition: background 0.35s;
}
#waitlist button:hover { background: var(--gold-soft); }
#wl-done { margin-top: 26px; font-size: 18px; }

footer {
  margin-top: auto;
  padding: 60px 0 30px;
  display: flex; flex-direction: column; align-items: center; gap: 34px;
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  font-weight: 400;
  color: var(--ivory-dim);
}

.footer-row { display: flex; gap: 14px; align-items: center; }

.footer-credit {
  font-size: 10px; letter-spacing: 0.28em;
  color: rgba(242, 237, 226, 0.26);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-credit:hover, .footer-credit:focus-visible { color: var(--ivory-dim); }

footer .dot { color: var(--gold); }

/* ---------- Small screens ---------- */
@media (max-width: 640px) {
  .scene-gap { height: 14vh; }
  #story .seq-canvas { filter: saturate(0.68) contrast(1.06) brightness(0.78); }
  .overlay.left, .overlay.right {
    left: 24px; right: 24px; max-width: none;
    text-align: left;
  }
  .overlay.right .rule { margin-left: 0; }
  .spec.s1, .spec.s2, .spec.s3 { left: 28px; right: auto; text-align: left; }
  .spec.s1 { top: 18%; } .spec.s2 { top: 44%; } .spec.s3 { bottom: 16%; }
  #waitlist { flex-direction: column; }
  #waitlist button { padding: 16px 0; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-line span { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* ---------- The Collection (light break) ---------- */
#collection {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(90px, 13vh, 160px) clamp(24px, 5vw, 64px) clamp(80px, 11vh, 140px);
  text-align: center;
}
#collection .display { color: var(--ink); }
#collection .kicker.gold { color: var(--gold-ink); }
.collection-head { max-width: 760px; margin: 0 auto clamp(54px, 7vh, 84px); }
.collection-intro {
  margin-top: 26px;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--ink-dim);
  max-width: 46ch; margin-left: auto; margin-right: auto;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 2.6vw, 38px);
  max-width: 1180px;
  margin: 0 auto;
}

.watch-card {
  background: var(--card);
  border: 1px solid rgba(20, 17, 13, 0.08);
  box-shadow: 0 1px 3px rgba(20, 17, 13, 0.05), 0 16px 44px rgba(20, 17, 13, 0.11);
  padding: clamp(20px, 2vw, 30px) clamp(20px, 2vw, 30px) clamp(26px, 2.6vw, 36px);
  display: flex; flex-direction: column;
  transition: opacity 1.3s ease, transform 1.3s ease, box-shadow 0.5s ease;
}
.watch-card:nth-child(2) { transition-delay: 0.1s; }
.watch-card:nth-child(3) { transition-delay: 0.2s; }
.watch-card:hover { box-shadow: 0 2px 6px rgba(20, 17, 13, 0.07), 0 28px 68px rgba(20, 17, 13, 0.17); }

.watch-shot { background: var(--card); }
.watch-shot img { display: block; width: 100%; height: auto; }

.watch-body { margin-top: 18px; }
.watch-name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.1; letter-spacing: 0.01em;
  color: var(--ink);
}
.watch-metal {
  margin-top: 10px;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-dim);
}
.watch-note {
  margin-top: 16px;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(15px, 1.4vw, 17px); line-height: 1.6;
  color: #4a443b;
}
.watch-rule { width: 44px; height: 1px; background: var(--gold); margin: 22px auto 18px; }
.watch-meta {
  display: flex; justify-content: center; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim);
}
.watch-price { color: var(--ink); font-weight: 500; letter-spacing: 0.1em; }
.watch-dot { color: var(--gold); }

.collection-foot {
  margin: clamp(48px, 6vh, 74px) auto 0;
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--ink-dim);
}
.collection-foot a {
  color: var(--gold-ink); text-decoration: none;
  border-bottom: 1px solid rgba(154, 123, 18, 0.4);
  padding-bottom: 2px; transition: color 0.35s, border-color 0.35s;
}
.collection-foot a:hover, .collection-foot a:focus-visible { color: var(--ink); border-color: var(--ink); }

/* nav has to invert while the light section sits behind it */
.nav-brand, .nav-cta { transition: color 0.45s ease, border-color 0.45s ease, background 0.4s, text-shadow 0.45s ease; }
#nav.on-light .nav-brand { color: var(--ink); text-shadow: none; }
#nav.on-light .nav-cta { color: var(--gold-ink); border-color: rgba(20, 17, 13, 0.22); }
#nav.on-light .nav-cta:hover { background: var(--ink); color: var(--paper); }

@media (max-width: 900px) {
  .watch-grid { grid-template-columns: 1fr; max-width: 420px; }
  .watch-card { transition-delay: 0s !important; }
}

/* ---------- Collection: scale to fit a desktop viewport ----------
   Everything vertical here is driven off vh so the whole section tries to
   land within one screen. The card image uses a vh-clamped box with
   object-fit: contain — the art is on white and the card is white, so the
   letterboxing is invisible and the watches shrink instead of being cropped. */
#collection {
  padding: clamp(44px, 6vh, 84px) clamp(24px, 5vw, 64px) clamp(50px, 6.5vh, 92px);
}
#collection .display.sm { font-size: clamp(28px, 3.4vw, 50px); }
.collection-head { margin-bottom: clamp(24px, 3.4vh, 46px); }
.collection-intro {
  margin-top: clamp(12px, 1.6vh, 20px);
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.6;
}
.watch-grid { gap: clamp(16px, 2vw, 30px); }
.watch-card { padding: clamp(14px, 1.6vh, 24px) clamp(16px, 1.6vw, 26px) clamp(18px, 2vh, 28px); }
.watch-shot img {
  height: clamp(150px, 31vh, 340px);
  object-fit: contain;
}
.watch-body { margin-top: clamp(10px, 1.4vh, 16px); }
.watch-name { font-size: clamp(24px, 2.2vw, 32px); }
.watch-metal { margin-top: clamp(6px, 0.9vh, 10px); }
.watch-note { margin-top: clamp(10px, 1.4vh, 15px); font-size: clamp(14px, 1.25vw, 16px); }
.watch-rule { margin: clamp(13px, 1.8vh, 20px) auto clamp(11px, 1.5vh, 16px); }
.collection-foot { margin-top: clamp(22px, 3vh, 42px); font-size: clamp(13px, 1.2vw, 15px); }

/* ---------- The House (about) ----------
   Continues the light break started by the collection, so the paper ground
   reads as one chapter — the range, then the house — before the dark CTA. */
#about {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(120px, 18vh, 230px) clamp(24px, 5vw, 64px) clamp(120px, 18vh, 230px);
}
.about-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.about-rule {
  width: 44px; height: 1px; background: var(--gold);
  margin: 0 auto clamp(30px, 4vh, 52px);
}
#about .kicker.gold { color: var(--gold-ink); margin-bottom: 14px; }
.about-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.1; letter-spacing: 0.01em;
  color: var(--ink);
}
.about-para {
  margin-top: clamp(22px, 2.8vh, 32px);
  text-align: left;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.85;
  color: #46413a;
}
.about-para + .about-para { margin-top: clamp(16px, 2vh, 24px); }

@media (max-width: 640px) {
  .about-para { font-size: 15px; line-height: 1.8; }
}

/* ---------- Collection: larger watches ----------
   The art is height-constrained inside object-fit: contain, so raising the box
   height directly enlarges the watch. Trimmed a little padding elsewhere to
   pay for it and keep the section inside one screen. */
.watch-shot img { height: clamp(180px, 38vh, 400px); }
#collection { padding-bottom: clamp(40px, 5vh, 74px); }
.collection-head { margin-bottom: clamp(20px, 2.6vh, 36px); }
.watch-card { padding-top: clamp(12px, 1.3vh, 20px); }

/* ---------- Allocation + footer ---------- */
#cta { padding: clamp(80px, 13vh, 150px) 6vw 0; justify-content: flex-start; }
.cta-inner { max-width: 620px; margin: 0 auto; }
.cta-sub {
  margin-top: 22px;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.8;
  color: var(--ivory-dim);
  max-width: 48ch; margin-left: auto; margin-right: auto;
}

/* the form: taller, roomier, with a button that leans forward */
#waitlist {
  margin: 38px auto 0;
  display: flex;
  max-width: 520px;
  border: 1px solid rgba(236, 231, 220, 0.22);
  transition: border-color 0.4s;
}
#waitlist:focus-within { border-color: rgba(201, 162, 39, 0.55); }
#waitlist input { padding: 21px 22px; font-size: 14px; }
#waitlist button {
  display: flex; align-items: center; gap: 12px;
  padding: 0 30px;
  font-size: 11px; letter-spacing: 0.26em;
  white-space: nowrap;
  transition: background 0.35s, gap 0.35s;
}
#waitlist button:hover, #waitlist button:focus-visible { background: var(--gold-soft); gap: 18px; }
.btn-arrow { font-size: 14px; letter-spacing: 0; transition: transform 0.35s; }
#waitlist button:hover .btn-arrow { transform: translateX(2px); }
.cta-note {
  margin-top: 18px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242, 237, 226, 0.38);
}

/* footer proper */
footer {
  width: 100%; max-width: 1180px;
  margin: clamp(80px, 12vh, 150px) auto 0;
  padding: 0 0 34px;
  display: block;
  color: var(--ivory-dim);
  text-transform: none; letter-spacing: normal; font-size: 13px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 80px);
  text-align: left;
  padding: clamp(34px, 5vh, 54px) 0;
  border-top: 1px solid rgba(236, 231, 220, 0.10);
}
.footer-col h4 {
  font-family: var(--sans); font-weight: 500;
  font-size: 10px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .footer-col span {
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--ivory-dim);
  text-decoration: none;
}
.footer-col a { transition: color 0.3s; }
.footer-col a:hover, .footer-col a:focus-visible { color: var(--ivory); }

.footer-base {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding-top: clamp(26px, 4vh, 40px);
  border-top: 1px solid rgba(236, 231, 220, 0.10);
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
}

@media (max-width: 760px) {
  .footer-nav { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  #waitlist { flex-direction: column; max-width: 420px; }
  #waitlist button { justify-content: center; padding: 18px 30px; }
}

/* ---------- Dark -> light wash ----------
   #edition fades to paper across its second half so it hands over cleanly to
   the white Collection below it. --wash (0..1) is driven per-frame from JS;
   .is-light lands once the wash is past halfway and flips the type to ink. */
.theme-wash {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: var(--paper);
  opacity: var(--wash, 0);
}
#edition .overlay { z-index: 2; }
#edition .display,
#edition .line,
#edition .kicker.gold { transition: color 0.55s ease; }
#edition.is-light .display,
#edition.is-light .line { color: var(--ink); }
#edition.is-light .line.dim { color: var(--ink-dim); }
#edition.is-light .kicker.gold { color: var(--gold-ink); }

/* ---------- Dark -> light wash ----------
   #edition fades to paper across its second half so the page arrives at the
   white Collection already light, instead of cutting from black to white.
   --wash is written per-frame by the scroll engine (data-lightshift). */
.theme-wash {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--paper);
  opacity: var(--wash, 0);
}
#edition .display,
#edition .line,
#edition .kicker { transition: color 0.55s ease; }
#edition.is-light .display,
#edition.is-light .line { color: var(--ink); }
#edition.is-light .line.dim { color: var(--ink-dim); }
#edition.is-light .kicker.gold { color: var(--gold-ink); }
/* the global overlay text-shadow reads as depth on dark imagery but as a
   smudge on paper — drop it once the wash has landed */
#edition.is-light .overlay,
#edition.is-light .overlay * { text-shadow: none; }
