:root {
  --color-void: #0c0a08;
  --color-void-deep: #080605;
  --color-void-lift: #16110c;
  --color-void-rail: #1c1610;
  --color-parchment: #f4ead3;
  --color-parchment-dim: #c9b99a;
  --color-parchment-mute: #8a7b63;
  --color-blood: #8b1a1a;
  --color-blood-hot: #9b1818;
  --color-line: #3a3228;
  --color-line-soft: #2a241c;
  --color-frame: #2a2116;
  --color-frame-edge: #5a4a32;

  --font-display: "Cinzel", "Palatino Linotype", Palatino, Georgia, serif;
  --font-stamp: "Special Elite", "Courier New", Courier, monospace;
  --font-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-odia: "Noto Serif Oriya", "Noto Serif", Georgia, serif;

  --text-kicker: 0.6875rem;
  --text-body: 1.0625rem;
  --text-lede: 1.25rem;
  --text-section: clamp(2.25rem, 1.4rem + 3vw, 3.75rem);
  --text-display: clamp(3.25rem, 1.6rem + 6vw, 6.5rem);

  --tracking-kicker: 0.28em;
  --tracking-title: 0.18em;

  --radius-xs: 2px;
  --radius-sm: 4px;

  --ease-out-house: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  background: var(--color-void);
  color: var(--color-parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 4.75rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  min-height: 100dvh;
  background: var(--color-void);
  color: var(--color-parchment);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  text-wrap: pretty;
}
button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }
::selection { background: var(--color-blood); color: var(--color-parchment); }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.12;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* Grain lives after the gate so the AR poster stays pixel-stable. */
.house-grain { position: relative; }
.house-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.045;
  background-image: url("../assets/grain.png");
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

/* Faint moonlight + banyan sit behind the house, never on the AR poster. */
.estate-night { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.moon-wash {
  position: absolute;
  top: -22%;
  right: -16%;
  width: min(78vw, 920px);
  height: min(78vw, 920px);
  background: radial-gradient(
    circle,
    color-mix(in oklab, var(--color-parchment) 22%, transparent) 0%,
    color-mix(in oklab, var(--color-parchment) 9%, transparent) 36%,
    transparent 70%
  );
}
.estate-night .banyan {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(78vw, 980px);
  max-width: none;
  object-fit: cover;
  /* Moon sits upper-left in the source art -- the old 70% crop favored
     the trunk and pushed the moon almost out of frame, and lighten-blend
     on an already-dark night illustration meant only the moon's
     highlights survived at all. Normal blend + a wider crop keeps the
     actual tree silhouette and the moon both visible. */
  object-position: 32% 10%;
  opacity: 0.62;
  filter: grayscale(0.1) contrast(1.15) brightness(1.15);
}
@media (max-width: 700px) {
  .moon-wash { width: 120vw; height: 90vw; top: -28%; right: -40%; }
  .estate-night .banyan { width: 130vw; right: -30%; opacity: 0.55; object-position: 38% 8%; }
}

main, #door-out { position: relative; z-index: 1; }

.kicker {
  font-family: var(--font-stamp);
  font-size: var(--text-kicker);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-parchment-mute);
}
.odia { font-family: var(--font-odia); font-weight: 400; line-height: 1.7; }
.rule-head {
  font-family: var(--font-display);
  font-size: var(--text-section);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-parchment);
}
.hairline { height: 1px; background: color-mix(in oklab, var(--color-parchment) 18%, transparent); border: 0; }

.plate {
  display: block;
  background: var(--color-void-deep);
  outline: 1px solid color-mix(in oklab, var(--color-parchment) 14%, transparent);
  outline-offset: -1px;
  margin: 0;
}
.plate img { display: block; width: 100%; height: auto; filter: grayscale(0.12) contrast(1.04) saturate(0.92); }

.frame {
  background: linear-gradient(180deg, #3a2c1c 0%, #1a140c 100%);
  padding: 9px 9px 12px;
  box-shadow: 0 0 0 1px var(--color-frame-edge), 0 18px 40px color-mix(in oklab, #000 55%, transparent);
  margin: 0;
}
.frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(0.08) contrast(1.05) saturate(0.9);
}

/* Floor rail -- a hairline section of the house. */
.floor-rail {
  position: fixed;
  top: 22%;
  bottom: 18%;
  left: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 18px;
  padding: 0 0 0 10px;
  pointer-events: none;
  list-style: none;
  margin: 0;
}
.floor-rail::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in oklab, var(--color-parchment) 28%, transparent) 8%,
    color-mix(in oklab, var(--color-parchment) 28%, transparent) 92%,
    transparent 100%
  );
}
.floor-rail a {
  pointer-events: auto;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 28px;
  color: var(--color-parchment-mute);
  text-decoration: none;
}
.floor-rail .tick {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  margin-left: 3px;
  border: 1px solid color-mix(in oklab, var(--color-parchment) 40%, transparent);
  background: var(--color-void);
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: background-color 200ms var(--ease-out-house), border-color 200ms var(--ease-out-house);
}
.floor-rail a.is-active .tick, .floor-rail a:hover .tick { background: var(--color-blood); border-color: var(--color-blood); }
.floor-rail .rail-copy { display: none; margin-left: 14px; transform: rotate(0deg); }
.floor-rail .rail-index { font-size: 0.62rem; letter-spacing: 0.18em; font-weight: 600; }
.floor-rail .rail-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-parchment-dim);
  white-space: nowrap;
}
.floor-rail a.is-active .rail-name, .floor-rail a:hover .rail-name { color: var(--color-parchment); }

@media (min-width: 1100px) {
  .floor-rail { width: 148px; padding-left: 18px; }
  .floor-rail::before { left: 24px; }
  .floor-rail .rail-copy { display: block; }
}

.floor-chip {
  position: fixed;
  left: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 32;
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  padding: 0.4rem 0.7rem;
  background: color-mix(in oklab, var(--color-void) 88%, transparent);
  border: 1px solid color-mix(in oklab, var(--color-parchment) 16%, transparent);
  color: var(--color-parchment-dim);
  font-family: var(--font-stamp);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
  margin: 0;
}
@media (min-width: 1100px) { .floor-chip { display: none; } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1.1rem;
  padding-left: max(1.1rem, env(safe-area-inset-left));
  padding-right: max(1.1rem, env(safe-area-inset-right));
  background: color-mix(in oklab, var(--color-void) 82%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--color-parchment) 8%, transparent);
  overflow: visible;
}
@supports (backdrop-filter: blur(8px)) { .site-header { backdrop-filter: blur(10px); } }

.mark {
  justify-self: start;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-parchment);
}

.nazar {
  justify-self: center;
  display: block;
  width: 42px;
  margin-top: -0.35rem;
  margin-bottom: -1.35rem;
  pointer-events: none;
  z-index: 41;
}
/* A simple key silhouette, not a generic protective charm -- ties
   directly to the film's own lock/box lore ("the lock is the last
   instruction") rather than a stock evil-eye motif. Coded as inline SVG
   (not a photo) since a detailed prop photo shrunk to header-icon size
   just reads as an illegible blur -- this needs clean, high-contrast
   shapes at ~45px. */
.nazar-key {
  display: block;
  width: 30px;
  height: auto;
  margin-inline: auto;
  color: color-mix(in oklab, var(--color-parchment) 78%, var(--color-frame-edge));
  filter: drop-shadow(0 2px 3px color-mix(in oklab, #000 60%, transparent));
}
@media (min-width: 700px) {
  .nazar { width: 52px; margin-bottom: -1.7rem; }
  .nazar-key { width: 36px; }
}

.btn-blood {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  background: var(--color-blood);
  color: var(--color-parchment);
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background-color 160ms var(--ease-out-house), transform 160ms var(--ease-out-house);
}
.btn-blood:hover { background: var(--color-blood-hot); }
.btn-blood:active { transform: scale(0.96); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  background: transparent;
  color: var(--color-parchment);
  font-family: var(--font-stamp);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid color-mix(in oklab, var(--color-parchment) 28%, transparent);
  transition: border-color 160ms var(--ease-out-house), background-color 160ms var(--ease-out-house), transform 160ms var(--ease-out-house);
}
.btn-ghost:hover { border-color: var(--color-parchment); background: color-mix(in oklab, var(--color-parchment) 6%, transparent); }
.btn-ghost:active { transform: scale(0.96); }

.section {
  position: relative;
  scroll-margin-top: 4.75rem;
  padding: clamp(4.5rem, 8vw, 8rem) 1.25rem;
  padding-left: max(2.25rem, env(safe-area-inset-left));
  padding-right: max(1.25rem, env(safe-area-inset-right));
}
@media (min-width: 1100px) { .section { padding-left: 10.5rem; } }

.section-inner { position: relative; z-index: 1; width: min(72rem, 100%); margin-inline: auto; }

/* Each floor of the house has its own wall. Quiet -- felt, not decorated. */
/* Gate is the one wall left semi-transparent -- every other floor is a
   solid, opaque wall (by design, each has its own felt texture), which
   also means the fixed moon/banyan layer behind them is fully hidden.
   The gate has real negative space around the poster/QR, so this is
   where letting it show through actually reads as "the house has a
   tree and a moon outside it," not just a code comment. */
.wall-gate {
  background: linear-gradient(
    180deg,
    color-mix(in oklab, #0b0907 35%, transparent) 0%,
    color-mix(in oklab, #0c0a08 45%, transparent) 55%,
    color-mix(in oklab, #110e0a 75%, transparent) 100%
  );
}
.wall-grounds {
  background-color: #13100c;
  background-image:
    linear-gradient(180deg, color-mix(in oklab, var(--color-parchment) 8%, transparent) 0%, transparent 42%),
    repeating-linear-gradient(0deg, transparent 0 14px, color-mix(in oklab, var(--color-parchment) 2.4%, transparent) 15px);
}
.wall-hall {
  background-color: #110e0a;
  background-image: repeating-linear-gradient(90deg, #120f0b 0px, #17130e 46px, #0c0a08 47px, #0c0a08 49px);
}
.wall-portraits {
  background-color: #120e0a;
  background-image: repeating-linear-gradient(90deg, #14110c 0px, #19140f 38px, #0d0b08 39px, #0d0b08 41px);
}
.wall-portraits::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(180deg, #6a5638 0%, #3a2c1c 58%, #1a140c 100%);
  box-shadow: 0 10px 16px color-mix(in oklab, #000 40%, transparent);
  pointer-events: none;
}
.wall-portraits::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(180deg, #1c1610 0%, #0c0a08 100%);
  pointer-events: none;
}
.wall-locked {
  background: radial-gradient(ellipse at 50% 72%, color-mix(in oklab, var(--color-blood) 10%, transparent), transparent 58%), #0a0806;
}
.wall-screening { background: #070605; box-shadow: inset 0 0 140px color-mix(in oklab, #000 70%, transparent); }
.wall-study {
  background-color: #120e0a;
  background-image:
    linear-gradient(180deg, color-mix(in oklab, #3a2c1c 38%, transparent), transparent 30%),
    repeating-linear-gradient(180deg, transparent 0 78px, color-mix(in oklab, #5a4a32 22%, transparent) 79px, transparent 80px);
}
.wall-cellar {
  background-color: #060504;
  background-image:
    linear-gradient(180deg, #0b0908 0%, #050403 55%, #030201 100%),
    repeating-linear-gradient(180deg, transparent 0 44px, color-mix(in oklab, var(--color-parchment) 4%, transparent) 45px, transparent 46px);
}
.wall-threshold { background: #0c0a08; border-top: 1px solid color-mix(in oklab, var(--color-parchment) 12%, transparent); }

.watch-line {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-stamp);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-parchment);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--color-parchment) 38%, transparent);
  padding-bottom: 0.08em;
}
.watch-line:hover { border-bottom-color: var(--color-parchment); }

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.02rem + 1vw, 1.65rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: var(--color-parchment);
}
.body-copy { max-width: 38rem; color: var(--color-parchment-dim); font-size: 1.05rem; line-height: 1.7; }

.poster-stage {
  background: var(--color-void-deep);
  outline: 1px solid color-mix(in oklab, var(--color-parchment) 22%, transparent);
  outline-offset: 0;
  margin: 0;
}
.poster-stage img { display: block; width: 100%; height: auto; filter: none; }

.qr-slot {
  border: 1px solid color-mix(in oklab, var(--color-parchment) 28%, transparent);
  padding: 1rem;
  background: var(--color-void-lift);
  margin: 0;
}
.qr-slot img { display: block; width: 148px; height: 148px; background: #fff; padding: 8px; }

.countdown-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.65rem; margin: 0; }
@media (max-width: 700px) { .countdown-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 6.2rem;
  border: 1px solid color-mix(in oklab, var(--color-parchment) 16%, transparent);
  background: var(--color-void-lift);
  padding: 0.9rem 0.4rem;
}
.countdown-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-parchment);
}
.countdown-label {
  margin-top: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-parchment-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.portrait-grid { display: grid; grid-template-columns: 1fr; gap: 2.4rem 1.4rem; margin: 0; padding: 0; list-style: none; }
@media (min-width: 640px) { .portrait-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) {
  .portrait-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: start; }
  .portrait-grid > article:nth-child(2) { margin-top: 2.4rem; }
  .portrait-grid > article:nth-child(4) { margin-top: 2.4rem; }
}

.crew-list { display: grid; grid-template-columns: 1fr; gap: 0.85rem 2rem; margin: 0; }
@media (min-width: 720px) { .crew-list { grid-template-columns: 1fr 1fr; } }

.film-shelf { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.film-shelf .plate { aspect-ratio: 3 / 4; overflow: hidden; }
.film-shelf .plate img { height: 100%; object-fit: cover; }
@media (min-width: 720px) { .film-shelf { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--color-parchment);
  color: var(--color-void);
  padding: 0.6rem 1rem;
}
.skip:focus { left: 8px; top: 8px; }

.reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  outline: 1px solid color-mix(in oklab, var(--color-parchment) 14%, transparent);
}
.reel iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- section-specific layout (plain CSS in place of inline
   Tailwind utility classes used in the original component markup) ---------- */
.gate-layout {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
  align-items: start;
}
.gate-layout > .poster-col { margin-inline: auto; width: 100%; max-width: 34rem; }
@media (min-width: 1024px) {
  .gate-layout { grid-template-columns: minmax(0, 38rem) 15rem; justify-content: center; gap: 3rem; }
  .gate-layout > .poster-col { margin-inline: 0; max-width: none; }
}
.watch-line-wrap { margin-top: 1rem; }
.qr-slot { margin-inline: auto; width: 100%; max-width: 20rem; }
@media (min-width: 1024px) { .qr-slot { margin-top: 2.5rem; margin-inline: 0; } }
.qr-slot .kicker { margin: 0; }
.qr-slot .odia { margin-top: 0.5rem; color: var(--color-parchment-dim); }
.qr-slot .qr-note { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.5; color: var(--color-parchment-dim); }
.qr-slot .qr-box { margin-top: 1.25rem; border: 1px solid var(--color-line); padding: 0.75rem; }
.qr-slot .qr-open {
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-parchment);
  text-decoration: underline;
  text-decoration-color: var(--color-line);
  text-underline-offset: 4px;
}
.gate-lower { margin-top: 2.5rem; max-width: 36rem; }
.gate-lower .odia { font-size: 1.125rem; color: var(--color-parchment-dim); }
.gate-lower .lede { margin-top: 0.5rem; }
.gate-lower .release-line { margin-top: 1.25rem; font-size: 0.9rem; letter-spacing: 0.22em; color: var(--color-parchment-mute); text-transform: uppercase; }
.gate-lower .descend-line { margin-top: 2rem; font-size: 0.9rem; color: var(--color-parchment-mute); }

.grounds-body { margin-top: 1.5rem; }
.grounds-odia { margin-top: 1rem; max-width: 36rem; color: var(--color-parchment-dim); }
.grounds-plate { margin-top: 2.5rem; }
.grounds-lower { margin-top: 2rem; display: grid; gap: 2rem; align-items: end; }
@media (min-width: 768px) { .grounds-lower { grid-template-columns: minmax(0, 1fr) 18rem; } }

.hall-odia { margin-top: 1.5rem; max-width: 42rem; font-size: 1.125rem; color: var(--color-parchment-dim); }
.hall-copy { margin-top: 2rem; max-width: 42rem; display: grid; gap: 1.25rem; }
.hall-note { margin-top: 1.5rem; font-size: 0.9rem; letter-spacing: 0.18em; color: var(--color-parchment-mute); text-transform: uppercase; max-width: 20rem; }

.portraits-intro { margin-top: 1.25rem; }
.portraits-grid-wrap { margin-top: 3rem; }
.portrait-figcaption { margin-top: 1rem; font-size: 0.68rem; letter-spacing: 0.22em; color: var(--color-parchment-mute); text-transform: uppercase; }
.portrait-name { margin-top: 0.25rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--color-parchment); }
.portrait-line { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--color-parchment-dim); }

.locked-odia-lg { margin-top: 1.5rem; max-width: 36rem; color: var(--color-parchment-dim); }
.locked-copy { margin-top: 1.25rem; }
.locked-copy + .locked-copy { margin-top: 1rem; }
.locked-hero-plate { margin-top: 2.5rem; }
.locked-hero-plate figcaption { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.75rem 0.25rem; }
.locked-props-grid { margin-top: 2rem; display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .locked-props-grid { grid-template-columns: 1fr 1fr; } }
.locked-props-grid figcaption { display: flex; flex-direction: column; gap: 0.25rem; padding: 0.75rem 0.25rem; }

.screening-copy { margin-top: 1.25rem; }
.screening-reel { margin-top: 2.5rem; }
.screening-alt { margin-top: 1rem; font-size: 0.9rem; color: var(--color-parchment-mute); }
.screening-alt a { color: var(--color-parchment); text-decoration: underline; text-decoration-color: var(--color-line); text-underline-offset: 4px; }

.study-odia { margin-top: 0.75rem; color: var(--color-parchment-mute); }
.study-layout { margin-top: 2.5rem; display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1100px) { .study-layout { grid-template-columns: 18rem minmax(0, 1fr); } }
.study-copy + .study-copy { margin-top: 1rem; }
.study-shelf-kicker { margin-top: 2.5rem; }
.study-shelf-wrap { margin-top: 1.25rem; }
.film-title { margin-top: 0.5rem; font-family: var(--font-display); font-size: 1rem; color: var(--color-parchment); }
.film-note { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-parchment-mute); }
.colophon-hairline { margin-top: 3.5rem; }
.colophon-kicker { margin-top: 2rem; }
.colophon-crew { margin-top: 1.5rem; }
.colophon-crew > div { border-bottom: 1px solid var(--color-line-soft); padding-bottom: 0.75rem; }
.colophon-role { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-parchment-mute); }
.colophon-name { margin-top: 0.25rem; font-family: var(--font-display); font-size: 1.125rem; color: var(--color-parchment); }

.cellar-odia { margin-top: 0.75rem; color: var(--color-parchment-mute); }
.cellar-release { margin-top: 1rem; font-family: var(--font-display); font-size: 1.25rem; letter-spacing: 0.12em; color: var(--color-blood); text-transform: uppercase; }
.cellar-copy { margin-top: 1.25rem; }
.cellar-countdown-wrap { margin-top: 2.5rem; max-width: 48rem; }
.cellar-actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 640px) { .cellar-actions { flex-direction: row; } }

.threshold-title { margin-top: 1rem; font-family: var(--font-display); font-size: 1.75rem; color: var(--color-parchment); }
.threshold-sub { margin-top: 0.5rem; font-size: 0.9rem; letter-spacing: 0.16em; color: var(--color-parchment-mute); text-transform: uppercase; }
.threshold-links { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1.5rem 1.5rem; font-size: 0.9rem; }
.threshold-links a { text-decoration: underline; text-decoration-color: var(--color-line); text-underline-offset: 4px; }
.threshold-imprint { margin-top: 2.5rem; max-width: 36rem; font-size: 0.78rem; line-height: 1.6; color: var(--color-parchment-mute); }
.threshold-credit { margin-top: 1.5rem; font-size: 0.78rem; color: var(--color-parchment-mute); }
.threshold-credit a { text-decoration: underline; text-decoration-color: var(--color-line); text-underline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  .tick { transition: none !important; }
}
