@font-face {
  font-family: "Cormorant Custom";
  src: url("/assets/cormorant-garamond-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter Custom";
  src: url("/assets/inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter Custom";
  src: url("/assets/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-024F;
}

:root {
  color-scheme: dark;
  --ink: #080605;
  --ink-soft: #100b0b;
  --ink-red: #19090d;
  --bone: #eadcca;
  --bone-dim: #b7a99a;
  --steel: #b9b8b4;
  --steel-dark: #505154;
  --oxblood: #690016;
  --red: #a90025;
  --red-hot: #d00837;
  --green: #668c6a;
  --rule: rgba(234, 220, 202, 0.18);
  --page-pad: clamp(24px, 5.2vw, 88px);
  --header-h: 88px;
  --display: "Cormorant Custom", Georgia, serif;
  --sans: "Inter Custom", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-inout: cubic-bezier(0.76, 0, 0.24, 1);
  --scroll: 0;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #080605;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 76% 8%, rgba(116, 0, 25, 0.12), transparent 34rem),
    linear-gradient(180deg, #080605 0%, #0c0708 42%, #080605 100%);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

html[data-welcome-state="pending"],
html[data-welcome-state="pending"] body {
  height: 100svh;
  overflow: hidden;
}

body.menu-open { overflow: hidden; }

::selection {
  background: var(--red);
  color: #fff5eb;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 1px solid var(--bone);
  outline-offset: 5px;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.grain {
  position: fixed;
  z-index: 190;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain-shift 0.24s steps(2) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(2%, -3%, 0); }
  50% { transform: translate3d(-3%, 2%, 0); }
  75% { transform: translate3d(3%, 4%, 0); }
  100% { transform: translate3d(-2%, -2%, 0); }
}

.scroll-cord {
  position: fixed;
  z-index: 80;
  top: calc(var(--header-h) + 22px);
  right: 23px;
  bottom: 24px;
  width: 10px;
  pointer-events: none;
}

.scroll-cord::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  width: 1px;
  content: "";
  background: rgba(234, 220, 202, 0.16);
}

.scroll-cord span {
  position: absolute;
  top: 0;
  left: 3px;
  width: 3px;
  height: calc(var(--scroll) * 100%);
  min-height: 4px;
  background: linear-gradient(#6b0017, #e11642);
  box-shadow: 0 0 14px rgba(208, 8, 55, 0.54);
}

.scroll-cord span::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  content: "";
  background: var(--ink);
}

.cursor { display: none; }

@media (pointer: fine) and (hover: hover) and (prefers-reduced-motion: no-preference) and (forced-colors: none) {
  html.has-cuff-cursor,
  html.has-cuff-cursor body,
  html.has-cuff-cursor a,
  html.has-cuff-cursor button { cursor: none; }

  html.has-cuff-cursor input,
  html.has-cuff-cursor textarea,
  html.has-cuff-cursor [contenteditable]:not([contenteditable="false"]),
  html.has-cuff-cursor [role="textbox"] { cursor: text; }

  html.has-cuff-cursor select,
  html.has-cuff-cursor iframe { cursor: auto; }

  .cursor {
    position: fixed;
    z-index: 220;
    top: 0;
    left: 0;
    display: block;
    width: 58px;
    height: 46px;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(calc(var(--cursor-x) - 5px), calc(var(--cursor-y) - 8px), 0);
    transition: opacity .12s ease;
    will-change: transform;
  }

  .cursor.is-visible { opacity: 1; }
  .cursor.is-native-zone { opacity: 0; }

  .cursor__object {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
  }

  .cursor__cuff-edge,
  .cursor__ratchet-edge {
    fill: none;
    stroke: rgba(20,18,20,.94);
    stroke-linecap: round;
    stroke-width: 8;
  }

  .cursor__cuff-band {
    fill: none;
    stroke: url(#cursor-cuff-metal);
    stroke-linecap: round;
    stroke-width: 6;
  }

  .cursor__cuff-lowlight {
    fill: none;
    stroke: rgba(22,20,23,.7);
    stroke-linecap: round;
    stroke-width: 1.05;
  }

  .cursor__cuff-glint,
  .cursor__ratchet-glint,
  .cursor__chain-glint {
    fill: none;
    stroke: rgba(255,250,242,.73);
    stroke-linecap: round;
    stroke-width: .7;
  }

  .cursor__engraving {
    fill: none;
    stroke: rgba(35,31,35,.58);
    stroke-linecap: round;
    stroke-width: .68;
  }

  .cursor__jaw,
  .cursor__lock {
    fill: url(#cursor-cuff-bevel);
    stroke: rgba(19,17,19,.92);
    stroke-linejoin: round;
    stroke-width: .85;
  }

  .cursor__jaw-bevel,
  .cursor__lock-inset {
    fill: rgba(225,220,211,.34);
    stroke: rgba(48,44,48,.8);
    stroke-width: .55;
  }

  .cursor__ratchet-teeth,
  .cursor__screw-slot,
  .cursor__lock-seam {
    fill: none;
    stroke: rgba(30,27,30,.88);
    stroke-linecap: round;
    stroke-width: .7;
  }

  .cursor__screw {
    fill: #aaa7a2;
    stroke: #29272a;
    stroke-width: .52;
  }

  .cursor__gem {
    fill: url(#cursor-cuff-garnet);
    stroke: #31000c;
    stroke-width: .58;
    transition: filter .18s ease, transform .18s ease;
    transform-box: fill-box;
    transform-origin: center;
  }

  .cursor__chain {
    transform: rotate(var(--cursor-chain-sway, 0deg));
    transform-box: view-box;
    transform-origin: 60.9% 56.4%;
    transition: transform .09s cubic-bezier(.2,.72,.2,1);
  }

  .cursor__chain-pin,
  .cursor__link {
    fill: none;
    stroke: url(#cursor-cuff-metal);
    stroke-linecap: round;
    stroke-width: 2.45;
  }

  .cursor__chain-pin { stroke-width: 1.9; }

  .cursor__ratchet {
    transform: scaleX(.38);
    transform-box: view-box;
    transform-origin: 48% 10.6%;
    transition: transform .21s cubic-bezier(.18,.82,.22,1);
  }

  .cursor__ratchet-band {
    fill: none;
    stroke: url(#cursor-cuff-metal);
    stroke-linecap: round;
    stroke-width: 3.25;
  }

  .cursor.is-link .cursor__ratchet { transform: scaleX(.72); }
  .cursor.is-link .cursor__gem { filter: brightness(1.18) saturate(1.05); transform: scale(1.06); }
  .cursor.is-pressed .cursor__ratchet { transform: scaleX(.98); transition-duration: .105s; }
  .cursor.is-pressed .cursor__gem { filter: brightness(1.35) saturate(1.08); transform: scale(.9); }
}

/* Entry ritual: hidden unless the pre-paint bootstrap explicitly requests it. */
.welcome-gate {
  position: fixed;
  z-index: 210;
  inset: 0;
  display: none;
  place-items: center;
  overflow: hidden;
  background: #050404;
  isolation: isolate;
}

html[data-welcome-state="pending"] .welcome-gate:not([hidden]),
html[data-welcome-state="leaving"] .welcome-gate:not([hidden]) {
  display: grid;
}

.welcome-gate__panel {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  width: 50.2%;
  background:
    repeating-linear-gradient(91deg, transparent 0 7%, rgba(255,255,255,.015) 7.2%, transparent 7.6% 16%),
    radial-gradient(ellipse at 50% 10%, rgba(157, 0, 34, 0.3), transparent 58%),
    linear-gradient(90deg, #110609, #35000d 48%, #16060a);
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.72);
  transition: transform 1.2s var(--ease-inout);
}

.welcome-gate__panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(92deg, transparent 20%, rgba(255,255,255,.025) 49%, transparent 71%);
}

.welcome-gate__panel--left {
  left: 0;
  border-right: 1px solid rgba(255,255,255,.14);
  transform-origin: left;
}

.welcome-gate__panel--right {
  right: 0;
  border-left: 1px solid rgba(255,255,255,.14);
  transform-origin: right;
}

html[data-welcome-state="leaving"] .welcome-gate__panel--left { transform: translateX(-101%); }
html[data-welcome-state="leaving"] .welcome-gate__panel--right { transform: translateX(101%); }

.welcome-gate__content {
  width: min(92vw, 620px);
  max-height: calc(100svh - 32px);
  overflow-y: auto;
  padding: 54px clamp(24px, 7vw, 76px) 46px;
  text-align: center;
  background: rgba(7, 5, 5, 0.7);
  border: 1px solid rgba(234, 220, 202, 0.22);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.68), inset 0 0 0 7px rgba(234, 220, 202, 0.025);
  backdrop-filter: blur(18px);
  transition: opacity 0.42s ease, transform 0.65s var(--ease-out);
}

html[data-welcome-state="leaving"] .welcome-gate__content {
  opacity: 0;
  transform: scale(0.94);
}

.welcome-gate__serial {
  position: absolute;
  top: 25px;
  left: 31px;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(234, 220, 202, 0.56);
}

.welcome-gate__mark {
  width: 64px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--bone-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.welcome-gate h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
  text-wrap: balance;
}

.welcome-gate h2 em {
  display: block;
  color: var(--red-hot);
  font-weight: inherit;
}

.welcome-gate__content > p:not(.eyebrow) {
  max-width: 410px;
  margin: 23px auto 30px;
  color: var(--bone-dim);
  font-size: 13px;
}

.gate-key {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 62px;
  border: 1px solid #bd153a;
  cursor: pointer;
  overflow: hidden;
  color: #fff5ef;
  background:
    radial-gradient(circle at 28% 0%, rgba(255,255,255,.2), transparent 27%),
    linear-gradient(100deg, #6e0018, #c20833 48%, #780019);
  box-shadow: inset 0 1px rgba(255,255,255,.18), inset 0 -11px 23px rgba(64,0,12,.35), 0 16px 30px rgba(78,0,16,.28);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gate-key::before {
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(255, 224, 217, 0.32);
  content: "";
}

.gate-key i {
  position: relative;
  width: 21px;
  height: 21px;
  margin-left: 15px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  transition: transform 0.5s var(--ease-out);
}

.gate-key i::after {
  position: absolute;
  top: 9px;
  left: 5px;
  width: 10px;
  height: 1px;
  content: "";
  background: currentColor;
}

.gate-key:hover i { transform: rotate(90deg); }

.welcome-gate__leave {
  margin-top: 18px;
  padding: 5px 12px;
  border: 0;
  cursor: pointer;
  color: rgba(234, 220, 202, 0.5);
  background: transparent;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.welcome-gate__leave:hover { color: var(--bone); }

/* Keep the welcome message and both actions visible on short screens. */
@media (max-height: 680px) {
  .welcome-gate__content { padding: 38px 24px 22px; }
  .welcome-gate__serial { top: 14px; left: 18px; font-size: 8px; letter-spacing: .17em; }
  .welcome-gate__mark { width: 42px; height: auto; margin-bottom: 12px; }
  .welcome-gate .eyebrow { margin-bottom: 10px; }
  .welcome-gate h2 { font-size: clamp(38px, 5.5vw, 58px); }
  .welcome-gate__content > p:not(.eyebrow) { margin: 16px auto 20px; font-size: 12px; }
  .gate-key { min-height: 54px; }
  .welcome-gate__leave { margin-top: 12px; }
}

.welcome-gate__keyhole {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 28px;
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-h);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: min-height 0.35s var(--ease-out), background 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  border-color: var(--rule);
  background: rgba(8, 6, 5, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  display: inline-grid;
  grid-template-columns: 34px auto;
  grid-template-rows: 18px 12px;
  justify-self: start;
  align-items: center;
  width: max-content;
}

.brand img {
  grid-row: 1 / 3;
  width: 29px;
  height: 29px;
  margin-right: 10px;
}

.brand span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.brand small {
  color: var(--bone-dim);
  font-size: 7px;
  letter-spacing: 0.26em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 56px);
}

.site-nav a {
  position: relative;
  color: var(--bone-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav a span {
  margin-right: 8px;
  color: rgba(234,220,202,.32);
  font-size: 7px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--red-hot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:hover { color: var(--bone); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-key {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
  min-height: 36px;
  padding: 0 12px 0 17px;
  border: 1px solid rgba(234,220,202,.35);
  color: var(--bone);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.header-key i {
  position: relative;
  width: 16px;
  height: 16px;
  margin-left: 13px;
  border: 1px solid var(--steel);
  border-radius: 50%;
  transition: transform 0.45s var(--ease-out);
}

.header-key i::after {
  position: absolute;
  top: 7px;
  left: 4px;
  width: 13px;
  height: 1px;
  content: "";
  background: var(--steel);
}

.header-key:hover { border-color: var(--red-hot); background: rgba(169,0,37,.12); }
.header-key:hover i { transform: rotate(90deg); }

.menu-toggle {
  display: none;
}

/* Shared */
.section {
  position: relative;
  padding: clamp(100px, 12vw, 190px) var(--page-pad);
  border-top: 1px solid var(--rule);
}

.section-number {
  position: absolute;
  top: 36px;
  right: var(--page-pad);
  color: rgba(234, 220, 202, 0.35);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  max-width: 1230px;
  margin: 0 auto clamp(62px, 8vw, 122px);
}

.section-head .eyebrow {
  grid-column: 1 / -1;
}

.section-head h2,
.mechanism h2,
.access h2,
.finale h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
}

.section-head h2 em,
.mechanism h2 em,
.finale h2 em {
  color: var(--red-hot);
  font-weight: 400;
}

.mechanism h2 { line-height: 1; }

.section-head > p:last-child {
  max-width: 420px;
  margin: 0 0 0 auto;
  color: var(--bone-dim);
  font-size: clamp(13px, 1.2vw, 16px);
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* The landing must stay readable if its enhancement script cannot load. */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  overflow: hidden;
  padding: calc(var(--header-h) + clamp(58px, 6vw, 94px)) var(--page-pad) 72px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(8,6,5,.99) 0%, rgba(8,6,5,.9) 30%, rgba(8,6,5,.08) 69%, rgba(8,6,5,.25) 100%),
    radial-gradient(circle at 72% 42%, rgba(147, 0, 29, 0.16), transparent 32rem);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(234,220,202,.075) 50%, transparent calc(50% + .5px)),
    linear-gradient(180deg, transparent calc(72% - .5px), rgba(234,220,202,.08) 72%, transparent calc(72% + .5px));
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 6;
  right: -8vw;
  bottom: -33vw;
  width: 56vw;
  height: 56vw;
  border: 1px solid rgba(234,220,202,.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero__portrait {
  position: absolute;
  z-index: -2;
  top: 0;
  right: -2.5vw;
  bottom: 0;
  width: min(64vw, 980px);
  pointer-events: none;
  transform: translate3d(calc(var(--portrait-x, 0) * 1px), calc(var(--portrait-y, 0) * 1px), 0) scale(1.015);
  transition: transform 0.7s var(--ease-out);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 89%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 89%, transparent 100%);
}

.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  filter: saturate(0.92) contrast(1.05) brightness(0.92);
}

.hero__portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8,6,5,.28), transparent 17%, transparent 78%, rgba(8,6,5,.32));
}

.hero__ledger {
  position: absolute;
  z-index: 3;
  top: calc(var(--header-h) + 21px);
  right: var(--page-pad);
  display: flex;
  gap: 24px;
  color: rgba(234,220,202,.44);
  font-size: 7px;
  letter-spacing: 0.18em;
}

.hero__ledger span + span {
  padding-left: 24px;
  border-left: 1px solid rgba(234,220,202,.18);
}

.hero__copy {
  position: relative;
  z-index: 5;
  align-self: center;
  width: min(970px, 76vw);
  margin-top: 18px;
}

.hero__copy .eyebrow {
  margin-bottom: clamp(26px, 3.2vw, 48px);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(70px, 7.7vw, 124px);
  font-weight: 400;
  letter-spacing: -0.064em;
  line-height: 0.76;
}

#hero-title:focus { outline: none; }

.hero h1 > span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero h1 > span:nth-child(2) { margin-left: clamp(30px, 7vw, 118px); }
.hero h1 > span:nth-child(3) { margin-left: clamp(6px, 1vw, 18px); }
.hero h1 > span:nth-child(4) { margin-left: clamp(66px, 12vw, 194px); }

.hero h1 em {
  position: relative;
  color: var(--red-hot);
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  right: -4px;
  bottom: 4px;
  left: -1px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--red-hot) 18%, var(--red-hot) 80%, transparent);
  box-shadow: 0 0 10px rgba(208,8,55,.5);
}

.hero h1 .reveal:nth-child(2) { transition-delay: .09s; }
.hero h1 .reveal:nth-child(3) { transition-delay: .16s; }
.hero h1 .reveal:nth-child(4) { transition-delay: .23s; }

.hero__afterword {
  display: grid;
  grid-template-columns: minmax(250px, .8fr) minmax(280px, 1.2fr);
  align-items: end;
  gap: 42px;
  max-width: 760px;
  margin: clamp(28px, 3.1vw, 44px) 0 0 clamp(67px, 12vw, 194px);
  transition-delay: .3s;
}

.hero__afterword p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 2vw, 30px);
  line-height: .98;
}

.hero__afterword > span {
  max-width: 370px;
  padding-left: 25px;
  border-left: 1px solid rgba(234,220,202,.28);
  color: var(--bone-dim);
  font-size: 12px;
}

.hero__action {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: clamp(24px, 2.7vw, 38px) 0 0 clamp(67px, 12vw, 194px);
  transition-delay: .38s;
}

.satin-button {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  min-width: clamp(250px, 24vw, 350px);
  min-height: 70px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 133, 151, 0.68);
  clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 7px, 100% calc(100% - 7px), calc(100% - 7px) 100%, 7px 100%, 0 calc(100% - 7px), 0 7px);
  color: #fff7f1;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.28), transparent 22%),
    repeating-linear-gradient(98deg, transparent 0 11%, rgba(255,255,255,.055) 12%, rgba(48,0,12,.14) 14%, transparent 19%),
    linear-gradient(104deg, #650015 0%, #be0a34 38%, #8e001f 62%, #d00a38 79%, #680016 100%);
  box-shadow:
    inset 0 1px rgba(255,255,255,.23),
    inset 0 -15px 30px rgba(45,0,10,.38),
    inset 0 0 0 5px rgba(70,0,15,.14),
    0 22px 45px rgba(82,0,17,.28);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-align: center;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform .35s var(--ease-out), box-shadow .35s ease, filter .35s ease;
}

.satin-button::before {
  position: absolute;
  inset: 5px;
  border: 1px dashed rgba(255, 223, 217, 0.34);
  content: "";
  pointer-events: none;
}

.satin-button::after {
  position: absolute;
  top: -110%;
  left: -30%;
  width: 34%;
  height: 320%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  transform: rotate(18deg) translateX(-150%);
  transition: transform .8s var(--ease-out);
}

.satin-button__label,
.satin-button__hover {
  grid-area: 1 / 1;
  padding-right: 27px;
  transition: opacity .28s ease, transform .42s var(--ease-out);
}

.satin-button__hover {
  opacity: 0;
  transform: translateY(18px);
}

.satin-button__lock {
  position: absolute;
  top: 50%;
  right: 27px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform .55s var(--ease-out);
}

.satin-button__lock::before {
  position: absolute;
  top: 9px;
  left: 5px;
  width: 15px;
  height: 2px;
  content: "";
  background: rgba(255,255,255,.86);
  box-shadow: 7px 4px 0 -0.5px rgba(255,255,255,.86);
}

.satin-button:hover {
  filter: saturate(1.12) brightness(1.06);
  box-shadow: inset 0 1px rgba(255,255,255,.3), inset 0 -12px 27px rgba(45,0,10,.26), 0 28px 58px rgba(112,0,25,.4);
  transform: translateY(-3px);
}

.satin-button:hover::after { transform: rotate(18deg) translateX(500%); }
.satin-button:hover .satin-button__label { opacity: 0; transform: translateY(-18px); }
.satin-button:hover .satin-button__hover { opacity: 1; transform: translateY(0); }
.satin-button:hover .satin-button__lock { transform: translateY(-50%) rotate(90deg); }
.satin-button:active { transform: translateY(1px) scale(.992); }
.satin-button.is-turning .satin-button__lock { transform: translateY(-50%) rotate(180deg); }

.chain {
  display: flex;
  align-items: center;
  width: clamp(54px, 7vw, 112px);
  transition: transform .55s var(--ease-out);
}

.chain i {
  flex: 0 0 clamp(14px, 1.6vw, 22px);
  height: clamp(8px, .9vw, 12px);
  margin-right: -3px;
  border: 2px solid #8c8d8d;
  border-radius: 50%;
  box-shadow: inset 0 1px rgba(255,255,255,.45), 0 1px 2px #000;
  transform: rotate(25deg);
}

.chain i:nth-child(even) { transform: rotate(-25deg) scale(.82); border-color: #d0cfca; }
.chain--right { flex-direction: row-reverse; }
.chain--right i { margin-right: 0; margin-left: -3px; }
.hero__action:hover .chain--left,
.access-panel__action:hover .chain--left,
.finale__action:hover .chain--left { transform: translateX(-8px) rotate(-3deg); }
.hero__action:hover .chain--right,
.access-panel__action:hover .chain--right,
.finale__action:hover .chain--right { transform: translateX(8px) rotate(3deg); }

.hero__halo {
  position: absolute;
  z-index: 2;
  top: 22%;
  right: clamp(18px, 4.5vw, 78px);
  width: clamp(330px, 36vw, 590px);
  aspect-ratio: 1;
  border: 1px solid rgba(234,220,202,.13);
  border-radius: 50%;
  pointer-events: none;
  animation: halo-spin 36s linear infinite;
}

.hero__halo::before,
.hero__halo::after {
  position: absolute;
  border: 1px solid rgba(234,220,202,.1);
  border-radius: inherit;
  content: "";
}

.hero__halo::before { inset: 5%; }
.hero__halo::after { inset: 48%; background: rgba(208,8,55,.18); border-color: var(--red); }
.hero__halo span,
.hero__halo b {
  position: absolute;
  top: 50%;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: .25em;
}
.hero__halo span { left: -25px; transform: rotate(-90deg); }
.hero__halo b { right: -4px; transform: rotate(90deg); }

@keyframes halo-spin { to { transform: rotate(360deg); } }

.hero__scroll {
  position: absolute;
  z-index: 8;
  bottom: 39px;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: rgba(234,220,202,.54);
  background: transparent;
  font-size: 8px;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.hero__scroll i {
  position: relative;
  width: 52px;
  height: 1px;
  margin-left: 13px;
  overflow: hidden;
  background: rgba(234,220,202,.22);
}

.hero__scroll i::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--red-hot);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line { 50%, 100% { transform: translateX(200%); } }

/* Doors */
.doors {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(234,220,202,.06) 50%, transparent 50.05%),
    radial-gradient(circle at 9% 18%, rgba(125,0,27,.14), transparent 28rem),
    #090706;
}

.door-gallery__hint { display: none; }

.door-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  max-width: 1240px;
  margin: 0 auto;
  perspective: 1600px;
}

.door {
  --door-accent: #a90025;
  position: relative;
  min-height: 510px;
  border: 1px solid rgba(234,220,202,.18);
  background: #0c0908;
  box-shadow: 0 38px 75px rgba(0,0,0,.32);
  perspective: 1500px;
  isolation: isolate;
}

.door::before,
.door::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.door::before {
  inset: 8px;
  border: 1px solid rgba(234,220,202,.08);
}

.door::after {
  top: -7px;
  right: 21px;
  width: 42px;
  height: 13px;
  border: 1px solid rgba(234,220,202,.24);
  background: #0c0908;
}

.door--instagram { grid-column: 1 / span 5; }
.door--youtube { grid-column: 7 / span 6; min-height: 590px; margin-top: 118px; }
.door--telegram { grid-column: 2 / span 6; min-height: 560px; margin-top: -42px; }
.door--whatsapp { grid-column: 9 / span 4; min-height: 480px; margin-top: 92px; }

.door--instagram { --door-accent: #bd2c6b; }
.door--youtube { --door-accent: #e22931; }
.door--telegram { --door-accent: #4f8eaa; }
.door--whatsapp { --door-accent: #5d9366; }

.door__meta {
  position: absolute;
  z-index: 7;
  top: -27px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(234,220,202,.46);
  font-size: 7px;
  letter-spacing: .2em;
}

.door__face {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: grid;
  width: 100%;
  padding: clamp(24px, 3vw, 44px);
  border: 0;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 1.05s var(--ease-inout), filter .4s ease;
  backface-visibility: hidden;
}

.door--instagram .door__face {
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--door-accent), transparent 74%), transparent 36%),
    repeating-linear-gradient(92deg, rgba(255,255,255,.015) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #191010, #0a0807 63%);
}

.door--youtube .door__face {
  background:
    linear-gradient(27deg, transparent 48%, rgba(226,41,49,.13) 49%, rgba(226,41,49,.02) 51%, transparent 52%),
    radial-gradient(circle at 20% 72%, rgba(226,41,49,.16), transparent 42%),
    #0e0b0a;
}

.door--telegram .door__face {
  background:
    repeating-radial-gradient(circle at 22% 26%, transparent 0 25px, rgba(79,142,170,.045) 26px, transparent 27px 52px),
    linear-gradient(145deg, #111517, #080706 67%);
}

.door--whatsapp .door__face {
  background:
    linear-gradient(110deg, rgba(93,147,102,.13), transparent 42%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 11px),
    #0c0e0b;
}

.door__face::before {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(234,220,202,.11);
  content: "";
}

.door__face::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  content: "";
  background: linear-gradient(90deg, rgba(255,255,255,.16), rgba(0,0,0,.5));
  box-shadow: 12px 0 26px rgba(0,0,0,.4);
}

.door__name {
  position: relative;
  align-self: start;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .9;
}

.door--youtube .door__name { justify-self: end; writing-mode: vertical-rl; transform: rotate(180deg); }
.door--telegram .door__name { align-self: start; justify-self: start; }
.door--whatsapp .door__name { font-size: clamp(36px, 4.1vw, 62px); }

.escutcheon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(104px, 12vw, 158px);
  aspect-ratio: .72;
  place-items: center;
  border: 1px solid rgba(255,255,255,.33);
  clip-path: polygon(50% 0, 88% 14%, 100% 52%, 73% 100%, 27% 100%, 0 52%, 12% 14%);
  background:
    linear-gradient(112deg, #333436 0%, #c5c1b9 22%, #494a4d 40%, #e3ded5 53%, #56575a 77%, #aaa9a5 100%);
  box-shadow: 0 16px 35px rgba(0,0,0,.55), inset 0 0 0 8px rgba(0,0,0,.35), inset 0 0 0 9px rgba(255,255,255,.22);
  transform: translate(-50%, -50%);
  transition: transform .6s var(--ease-out);
}

.door--youtube .escutcheon { border-radius: 50% 50% 14% 14%; clip-path: none; }
.door--telegram .escutcheon { width: clamp(118px, 13vw, 176px); aspect-ratio: 1; border-radius: 50%; clip-path: none; }
.door--whatsapp .escutcheon { width: clamp(96px, 10vw, 132px); clip-path: polygon(50% 0, 93% 25%, 93% 77%, 50% 100%, 7% 77%, 7% 25%); }

.escutcheon::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(0,0,0,.53);
  content: "";
  clip-path: inherit;
}

.door--youtube .escutcheon::before,
.door--telegram .escutcheon::before { content: none; }

.escutcheon i {
  position: relative;
  width: 29px;
  height: 29px;
  border: 5px solid #171616;
  border-radius: 50%;
  background: #050505;
  box-shadow: 0 1px 0 rgba(255,255,255,.45), inset 0 0 8px #000;
}

.escutcheon i::after {
  position: absolute;
  top: 17px;
  left: 6px;
  width: 8px;
  height: 30px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  background: #080706;
}

.escutcheon b {
  position: absolute;
  inset: 18px;
  border: 1px solid color-mix(in srgb, var(--door-accent), transparent 42%);
  border-radius: inherit;
  opacity: .45;
}

.door__face:hover .escutcheon { transform: translate(-50%, -50%) rotate(7deg) scale(1.025); }

.door__status {
  position: absolute;
  right: clamp(24px, 3vw, 44px);
  bottom: clamp(24px, 3vw, 44px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.door__status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--door-accent);
  box-shadow: 0 0 10px var(--door-accent);
}

.door__instruction {
  position: absolute;
  bottom: clamp(24px, 3vw, 44px);
  left: clamp(24px, 3vw, 44px);
  max-width: 130px;
  color: rgba(234,220,202,.4);
  font-size: 9px;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.door__inside {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 60px);
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--door-accent), transparent 47%), transparent 11rem),
    linear-gradient(155deg, color-mix(in srgb, var(--door-accent), #080605 80%), #080605 70%);
}

.door__inside::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44%;
  aspect-ratio: .55;
  border: 1px solid rgba(234,220,202,.3);
  border-radius: 50% 50% 8% 8%;
  content: "";
  opacity: .36;
  transform: translate(-50%, -64%);
}

.door__inside strong {
  position: relative;
  z-index: 2;
  font-family: var(--display);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400;
  line-height: .92;
}

.door__inside span {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  color: var(--door-accent);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.door__close {
  position: absolute;
  z-index: 3;
  top: clamp(25px, 3vw, 42px);
  right: clamp(25px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0 7px 10px;
  border: 0;
  cursor: pointer;
  color: rgba(234,220,202,.72);
  background: transparent;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.door__close i {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: transform .4s var(--ease-out), color .3s ease;
}

.door__close i::before,
.door__close i::after {
  position: absolute;
  top: 9px;
  left: 5px;
  width: 9px;
  height: 1px;
  content: "";
  background: currentColor;
}

.door__close i::before { transform: rotate(45deg); }
.door__close i::after { transform: rotate(-45deg); }
.door__close:hover { color: var(--bone); }
.door__close:hover i { color: var(--door-accent); transform: rotate(90deg); }

.door.is-open .door__face {
  filter: brightness(.72);
  pointer-events: none;
  transform: rotateY(-106deg);
}

.door.is-open .door__face .escutcheon { transform: translate(-50%, -50%) rotate(90deg); }
.door.is-open .door__inside { pointer-events: auto; }

/* Mechanism */
.mechanism {
  display: grid;
  grid-template-columns: minmax(310px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, transparent 0 calc(8.333% - 1px), rgba(234,220,202,.035) calc(8.333% - 1px) 8.333%),
    #0b0908;
}

.mechanism::before {
  position: absolute;
  top: 22%;
  right: -12vw;
  width: 53vw;
  aspect-ratio: 1;
  border: 1px solid rgba(234,220,202,.08);
  border-radius: 50%;
  content: "";
}

.mechanism__copy {
  align-self: start;
  max-width: 650px;
}

.mechanism__copy > p:last-child {
  max-width: 470px;
  margin: 43px 0 0;
  color: var(--bone-dim);
  font-size: 14px;
}

.workbench {
  position: relative;
  min-height: 410px;
  padding: 58px 34px 34px;
  border: 1px solid rgba(234,220,202,.17);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.025), transparent 45%),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(234,220,202,.035) 32px 33px),
    #0c0b0a;
  box-shadow: inset 0 0 70px rgba(0,0,0,.4), 0 50px 80px rgba(0,0,0,.25);
}

.workbench::before,
.workbench::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(234,220,202,.28);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 3px #0c0b0a;
}

.workbench::before { top: 14px; left: 14px; }
.workbench::after { right: 14px; bottom: 14px; }

.workbench__label {
  position: absolute;
  top: 24px;
  left: 30px;
  color: rgba(234,220,202,.42);
  font-size: 7px;
  letter-spacing: .2em;
}

.workbench__key {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  filter: drop-shadow(0 18px 17px rgba(0,0,0,.55));
  transform: translate(-50%, -50%) rotate(var(--key-rotation, 0deg));
  transition: transform .2s linear;
}

.workbench__measure {
  position: absolute;
  color: rgba(234,220,202,.3);
  font-size: 7px;
  letter-spacing: .15em;
}

.workbench__measure--top { top: 59px; right: 32px; }
.workbench__measure--side { right: 17px; bottom: 58px; writing-mode: vertical-rl; }

.workbench__glint {
  position: absolute;
  top: -30%;
  left: -30%;
  width: 25%;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.11), transparent);
  transform: rotate(18deg);
  animation: workbench-glint 5.8s ease-in-out infinite;
}

@keyframes workbench-glint { 55%, 100% { transform: rotate(18deg) translateX(620%); } }

.mechanism__steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 36px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  list-style: none;
}

.mechanism__steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 20px;
  min-height: 215px;
  padding: 38px clamp(20px, 3vw, 46px) 34px;
  border-right: 1px solid var(--rule);
}

.mechanism__steps li:last-child { border-right: 0; }
.mechanism__steps li > span { color: var(--red-hot); font-family: var(--display); font-size: 30px; line-height: 1; }
.mechanism__steps strong { display: block; font-family: var(--display); font-size: clamp(24px, 2.2vw, 34px); font-weight: 400; line-height: 1; }
.mechanism__steps p { max-width: 270px; margin: 17px 0 0; color: var(--bone-dim); font-size: 11px; }

/* Access panel */
.access {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(145,0,30,.15), transparent 30rem),
    #080605;
}

.access::after {
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(234,220,202,.06);
}

.access__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto clamp(58px, 7vw, 100px);
}

.access__head .eyebrow { grid-column: 1 / -1; }
.access__head h2 { font-size: clamp(80px, 10vw, 160px); }
.access__head > p:last-child { max-width: 390px; margin: 0 0 10px 50px; color: var(--bone-dim); font-size: 13px; }

.access-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(30px, 5vw, 88px);
  max-width: 1240px;
  min-height: 600px;
  margin: 0 auto;
  padding: clamp(66px, 7vw, 100px) clamp(25px, 6vw, 84px) 56px;
  border: 1px solid rgba(234,220,202,.22);
  clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 34px 100%, 0 calc(100% - 34px));
  background:
    linear-gradient(120deg, rgba(255,255,255,.035), transparent 29%),
    repeating-linear-gradient(92deg, rgba(255,255,255,.017) 0 1px, transparent 1px 13px),
    linear-gradient(135deg, #252628, #0b0b0b 36%, #19191a 70%, #090909);
  box-shadow: inset 0 0 80px rgba(0,0,0,.54), 0 60px 100px rgba(0,0,0,.35);
}

.access-panel::before {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(234,220,202,.1);
  clip-path: inherit;
  content: "";
  pointer-events: none;
}

.access-panel__topline {
  position: absolute;
  top: 25px;
  right: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(234,220,202,.12);
  color: rgba(234,220,202,.42);
  font-size: 7px;
  letter-spacing: .18em;
}

.period-dial {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--period-count, 4), minmax(0, 1fr));
  align-self: center;
  min-height: 390px;
  padding-top: 40px;
}

.period-dial::before {
  position: absolute;
  top: 34%;
  right: 3%;
  left: 3%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(234,220,202,.38) 8%, rgba(234,220,202,.38) 92%, transparent);
}

.period-dial__needle {
  position: absolute;
  z-index: 3;
  top: calc(34% - 10px);
  left: 37.5%;
  width: 21px;
  height: 21px;
  border: 1px solid var(--red-hot);
  border-radius: 50%;
  background: #131313;
  box-shadow: inset 0 0 0 5px #0b0b0b, 0 0 22px rgba(208,8,55,.4);
  transform: translateX(-50%);
  transition: left .7s var(--ease-inout);
}

.period-dial__needle::after {
  position: absolute;
  top: 3px;
  left: 9px;
  width: 1px;
  height: 45px;
  content: "";
  background: var(--red-hot);
  transform: translateY(-100%);
  transform-origin: bottom;
}

.period-dial button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8px;
  border: 0;
  cursor: pointer;
  color: rgba(234,220,202,.42);
  background: transparent;
  transition: color .3s ease;
}

.period-dial button[hidden] { display: none; }
.period-dial button:disabled { opacity: .45; cursor: default; }
.access-panel:not([data-pricing-state="ready"]) .period-dial__needle { visibility: hidden; }

.period-dial button::before {
  position: absolute;
  top: calc(34% - 43px);
  width: 1px;
  height: 34px;
  content: "";
  background: rgba(234,220,202,.28);
}

.period-dial button b {
  font-family: var(--display);
  font-size: clamp(44px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .86;
}

.period-dial button > span {
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.period-dial button small {
  position: absolute;
  top: 69%;
  width: 120px;
  font-family: var(--display);
  font-size: 17px;
  font-style: italic;
  line-height: 1;
}

.period-dial__note { display: none; }

.period-dial button:hover,
.period-dial button.is-active {
  color: var(--bone);
}

.period-dial button.is-active b { color: var(--red-hot); text-shadow: 0 0 30px rgba(208,8,55,.28); }

.price-readout {
  position: relative;
  container-type: inline-size;
  min-width: 0;
  align-self: center;
  padding: 54px clamp(25px, 4vw, 55px) 46px;
  border: 1px solid rgba(234,220,202,.16);
  background: rgba(5,5,5,.46);
  box-shadow: inset 0 0 35px rgba(0,0,0,.44);
}

.price-readout::before,
.price-readout::after {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(234,220,202,.34);
  border-radius: 50%;
  content: "";
}

.price-readout::before { top: 13px; left: 13px; }
.price-readout::after { right: 13px; bottom: 13px; }

.price-readout__caption {
  display: block;
  color: rgba(234,220,202,.46);
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.price-readout strong {
  display: flex;
  align-items: flex-start;
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: 80px;
  font-size: clamp(32px, calc(190cqi / var(--price-characters, 6)), 100px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.price-readout strong b { font-weight: inherit; }
.price-readout strong i { margin: 4px 0 0 9px; color: var(--red-hot); font-size: .28em; font-weight: 500; }
.price-readout__unit { display: block; margin: 20px 0 0; color: var(--bone-dim); font-size: 11px; }
.price-readout p { min-height: 50px; margin: 28px 0 0; padding-top: 17px; border-top: 1px solid rgba(234,220,202,.12); color: rgba(234,220,202,.58); font-size: 10px; line-height: 1.6; }

.access-panel__action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.satin-button--compact { min-width: min(420px, 54vw); }

.access-panel__seal {
  position: absolute;
  right: 30px;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .34;
}

.access-panel__seal span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--bone);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 15px;
}

.access-panel__seal small { font-size: 6px; letter-spacing: .14em; line-height: 1.5; }

.specimen-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 54px auto 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.specimen-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 120px;
  border-right: 1px solid var(--rule);
}

.specimen-strip > div:last-child { border-right: 0; }
.specimen-strip span { min-width: 57px; font-family: var(--display); font-size: clamp(34px, 3.7vw, 56px); line-height: 1; text-align: right; }
.specimen-strip p { margin: 0; color: var(--bone-dim); font-size: 8px; letter-spacing: .12em; line-height: 1.5; text-transform: uppercase; }

/* Document archive */
.documents {
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(234,220,202,.045) 50%, transparent calc(50% + .5px)),
    radial-gradient(circle at 18% 22%, rgba(125,0,27,.16), transparent 31rem),
    #090606;
}

.documents::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 92px, rgba(234,220,202,.035) 92px 93px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.documents__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  align-items: end;
  max-width: 1400px;
  margin: 0 auto clamp(54px, 7vw, 104px);
}

.documents__head h2 {
  max-width: 940px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8.2vw, 132px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .78;
}

.documents__head h2 em {
  color: var(--red-hot);
  font-weight: 400;
}

.documents__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid rgba(234,220,202,.25);
  border-bottom: 1px solid rgba(234,220,202,.25);
}

.document-card {
  position: relative;
  display: flex;
  min-height: clamp(360px, 32vw, 460px);
  flex-direction: column;
  padding: 25px clamp(20px, 2.1vw, 34px) 29px;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  background: linear-gradient(155deg, rgba(234,220,202,.035), transparent 45%);
  isolation: isolate;
  transition: color .45s ease, background-color .55s ease;
}

.document-card:last-child { border-right: 0; }

.document-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  content: "";
  background: var(--red-hot);
  transform: scaleY(.12);
  transform-origin: top;
  transition: transform .65s var(--ease-out);
}

.document-card::after {
  position: absolute;
  right: -32px;
  bottom: -32px;
  z-index: -1;
  width: 94px;
  height: 94px;
  border: 1px solid rgba(234,220,202,.13);
  content: "";
  transform: rotate(45deg);
  transition: border-color .45s ease, transform .65s var(--ease-out);
}

.document-card__number {
  color: rgba(234,220,202,.38);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .2em;
}

.document-card > div { margin-top: clamp(66px, 6vw, 92px); }
.document-card small {
  display: block;
  margin-bottom: 9px;
  color: var(--red-hot);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.document-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .84;
}

.document-card > p {
  max-width: 260px;
  margin: 25px 0 34px;
  color: var(--bone-dim);
  font-size: 11px;
  line-height: 1.65;
}

.document-card__open {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.document-card__open i {
  position: relative;
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(234,220,202,.42);
  transition: width .45s var(--ease-out), background .35s ease;
}

.document-card__open i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.document-card:hover,
.document-card:focus-visible {
  background-color: rgba(105,0,22,.2);
  outline: 0;
}

.document-card:hover::before,
.document-card:focus-visible::before { transform: scaleY(1); }
.document-card:hover::after,
.document-card:focus-visible::after { border-color: rgba(208,8,55,.55); transform: translate(-10px, -10px) rotate(45deg); }
.document-card:hover .document-card__open i,
.document-card:focus-visible .document-card__open i { width: 43px; background: var(--red-hot); }

/* Finale */
.finale {
  display: grid;
  min-height: min(920px, 100svh);
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 52%, rgba(139,0,29,.22), transparent 27rem),
    linear-gradient(180deg, #090706, #040303);
}

.finale::before,
.finale::after {
  position: absolute;
  top: 50%;
  width: 42vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(234,220,202,.22));
}

.finale::before { left: -8%; transform: rotate(7deg); }
.finale::after { right: -8%; transform: rotate(-7deg) scaleX(-1); }

.finale__copy { position: relative; z-index: 2; }
.finale h2 { font-size: clamp(68px, 9.4vw, 150px); line-height: .75; }
.finale__copy > p:not(.eyebrow) { margin: 40px auto 0; color: var(--bone-dim); font-size: 13px; }
.finale__action { display: flex; align-items: center; justify-content: center; margin-top: 46px; }
.finale__thread {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.finale__thread i {
  position: absolute;
  width: clamp(42px, 6vw, 82px);
  aspect-ratio: 1.8;
  border: 2px solid rgba(185,184,180,.22);
  border-radius: 50%;
  transform: rotate(24deg);
}

.finale__thread i:nth-child(1) { top: 14%; left: 8%; }
.finale__thread i:nth-child(2) { top: 20%; left: 13%; transform: rotate(-25deg); }
.finale__thread i:nth-child(3) { bottom: 16%; left: 17%; }
.finale__thread i:nth-child(4) { top: 19%; right: 12%; transform: rotate(-25deg); }
.finale__thread i:nth-child(5) { right: 7%; bottom: 20%; }
.finale__thread i:nth-child(6) { right: 14%; bottom: 13%; transform: rotate(-25deg); }

.finale__monogram {
  position: absolute;
  right: -5vw;
  bottom: -13vw;
  display: flex;
  align-items: center;
  width: 35vw;
  aspect-ratio: 1;
  justify-content: center;
  border: 1px solid rgba(234,220,202,.065);
  border-radius: 50%;
  color: rgba(234,220,202,.05);
  font-family: var(--display);
  font-size: 12vw;
}

.finale__monogram i { width: 1px; height: 25%; background: currentColor; transform: rotate(24deg); }

/* Footer */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, .9fr) minmax(230px, 1.05fr) minmax(250px, 1.15fr) minmax(175px, .75fr);
  gap: 34px clamp(28px, 3.8vw, 68px);
  padding: 58px var(--page-pad) 26px;
  border-top: 2px solid rgba(208,8,55,.72);
  background: linear-gradient(90deg, rgba(208,8,55,.075), transparent 30%), #080605;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.site-footer__brand img { width: 48px; height: 48px; }
.site-footer__brand strong { display: block; font-size: 15px; letter-spacing: .18em; }
.site-footer__brand span { display: block; margin-top: 7px; color: rgba(234,220,202,.62); font-size: 8px; line-height: 1.45; letter-spacing: .16em; }

.site-footer__passport > span,
.site-footer__contact > span,
.site-footer__legal > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(234,220,202,.58);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
}

.site-footer__passport dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0; border-top: 1px solid rgba(234,220,202,.18); }
.site-footer__passport dl > div { min-width: 0; padding: 14px 16px 0 0; }
.site-footer__passport dt { color: rgba(234,220,202,.46); font-size: 7px; letter-spacing: .16em; }
.site-footer__passport dd { margin: 7px 0 0; color: var(--bone); font-size: 9px; line-height: 1.5; letter-spacing: .08em; }

.site-footer__contact {
  min-width: 0;
  padding-left: 22px;
  border-left: 2px solid var(--red);
}

.site-footer__contact > span { margin-bottom: 10px; color: var(--red-hot); }
.site-footer__contact strong { display: block; color: var(--bone); font-family: var(--display); font-size: 22px; font-weight: 400; }
.site-footer__contact p { margin: 7px 0 0; color: rgba(234,220,202,.66); font-size: 11px; line-height: 1.55; }
.site-footer__email { display: block; margin-top: 15px; color: var(--bone); font-size: 14px; font-weight: 700; overflow-wrap: anywhere; }
.site-footer__email:hover { color: var(--red-hot); }
.site-footer__telegram { display: inline-block; margin-top: 9px; color: rgba(234,220,202,.68); font-size: 10px; }
.site-footer__telegram:hover { color: var(--bone); }

.site-footer__legal {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 10px;
}

.site-footer__legal > span { grid-column: 1 / -1; }
.site-footer__legal a { color: rgba(234,220,202,.72); font-size: 10px; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; }
.site-footer__legal a:hover { color: var(--bone); }

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(234,220,202,.16);
  color: rgba(234,220,202,.58);
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.site-footer__bottom p { margin: 0; }
@media (max-width: 1040px) {
  :root { --page-pad: clamp(25px, 4.7vw, 50px); }

  .site-header { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(420px, 100%);
    height: 100svh;
    padding: 100px 54px;
    background: rgba(8,6,5,.97);
    border-left: 1px solid var(--rule);
    transform: translateX(102%);
    transition: transform .7s var(--ease-inout);
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav a { font-family: var(--display); font-size: 38px; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .site-nav a span { font-family: var(--sans); font-size: 8px; }
  .header-key { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    width: 40px;
    height: 40px;
    justify-self: end;
    padding: 0;
    border: 1px solid rgba(234,220,202,.26);
    background: rgba(8,6,5,.5);
  }
  .menu-toggle span { position: absolute; left: 10px; width: 19px; height: 1px; background: var(--bone); transition: transform .35s var(--ease-out), top .35s var(--ease-out); }
  .menu-toggle span:first-child { top: 15px; }
  .menu-toggle span:nth-child(2) { top: 23px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 19px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

  .hero { min-height: max(780px, 100svh); }
  .hero__copy { width: 88vw; }
  .hero h1 { font-size: clamp(66px, 9.3vw, 98px); }
  .hero__portrait { right: -11vw; width: 75vw; opacity: .82; }
  .hero__afterword { max-width: 650px; }

  .door--instagram { grid-column: 1 / span 6; }
  .door--youtube { grid-column: 7 / span 6; }
  .door--telegram { grid-column: 1 / span 7; }
  .door--whatsapp { grid-column: 8 / span 5; }

  .mechanism { grid-template-columns: 1fr; }
  .mechanism__copy { max-width: 780px; }
  .workbench { min-height: 470px; }

  .access-panel { grid-template-columns: 1fr; }
  .documents__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .document-card:nth-child(2) { border-right: 0; }
  .document-card:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .period-dial { min-height: 330px; }
  .price-readout { width: min(100%, 480px); justify-self: center; }
  .access-panel__action { grid-column: 1; }

  .site-footer { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__legal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-h: 70px; --page-pad: 20px; }
  .scroll-cord { display: none; }
  .grain { opacity: .04; }
  .site-header { min-height: var(--header-h); padding: 0 17px; }
  .site-header.is-scrolled { min-height: 62px; }

  .hero {
    display: block;
    min-height: 950px;
    padding: 94px var(--page-pad) 90px;
    background: linear-gradient(180deg, rgba(8,6,5,.02), rgba(8,6,5,.25) 41%, #080605 64%);
  }
  .hero::before { background: linear-gradient(90deg, transparent calc(50% - .5px), rgba(234,220,202,.06) 50%, transparent calc(50% + .5px)); }
  .hero::after { right: -42vw; bottom: -26vw; width: 104vw; height: 104vw; }
  .hero__portrait {
    top: 45px;
    right: -11vw;
    bottom: auto;
    width: 112vw;
    height: 600px;
    opacity: .93;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 67%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 67%, transparent 100%);
  }
  .hero__portrait img { object-position: right top; }
  .hero__ledger { top: 86px; right: 18px; gap: 10px; }
  .hero__ledger span + span { display: none; }
  .hero__halo { top: 122px; right: -45vw; width: 108vw; opacity: .62; }
  .hero__copy { position: absolute; top: 382px; right: var(--page-pad); left: var(--page-pad); width: auto; margin: 0; }
  .hero__copy .eyebrow { max-width: 230px; margin-bottom: 22px; }
  .hero h1 { font-size: clamp(54px, 17.1vw, 76px); line-height: .75; }
  .hero h1 > span:nth-child(2) { margin-left: 2vw; }
  .hero h1 > span:nth-child(3) { margin-left: 0; }
  .hero h1 > span:nth-child(4) { margin-left: 12vw; }
  .hero__afterword { grid-template-columns: 1fr; gap: 15px; margin: 24px 0 0 12vw; }
  .hero__afterword p { font-size: 23px; }
  .hero__afterword > span { display: none; }
  .hero__action { width: calc(100% + 40px); max-width: none; margin: 24px -20px 0; }
  .hero__action .chain { width: 32px; }
  .satin-button { min-width: 0; width: 100%; min-height: 66px; }
  .chain i { flex-basis: 14px; height: 8px; }
  .hero__scroll { bottom: 31px; left: 18px; }
  .hero__scroll span { display: none; }
  .hero__scroll i { width: 44px; margin: 0; }

  .section { padding: 108px var(--page-pad); }
  .section-number { top: 24px; }
  .section-head { grid-template-columns: 1fr; margin-bottom: 72px; }
  .section-head h2,
  .mechanism h2,
  .access h2,
  .finale h2 { font-size: clamp(58px, 17vw, 82px); line-height: .8; }
  .mechanism h2 { line-height: 1; }
  .section-head > p:last-child { margin: 29px 0 0; font-size: 13px; }

  .door-gallery__hint {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: -42px 2px 12px 0;
    color: rgba(234,220,202,.58);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: .14em;
    text-transform: uppercase;
  }
  .door-gallery__hint i { position: relative; width: 42px; height: 1px; overflow: hidden; background: rgba(234,220,202,.22); }
  .door-gallery__hint i::after { position: absolute; right: 0; bottom: -2px; width: 6px; height: 6px; border-top: 1px solid var(--red-hot); border-right: 1px solid var(--red-hot); content: ""; transform: rotate(45deg); }
  .door-gallery__hint output { min-width: 34px; color: var(--bone); text-align: right; }
  .door-gallery { display: flex; width: calc(100% + 40px); margin: 0 -20px; padding: 20px 20px 32px; gap: 15px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .door-gallery::-webkit-scrollbar { display: none; }
  .door { flex: 0 0 min(82vw, 340px); min-height: 500px !important; margin-top: 0 !important; scroll-snap-align: center; }
  .door__name { font-size: 51px; }
  .door--youtube .door__name { justify-self: initial; writing-mode: initial; transform: none; }
  .mechanism { gap: 48px; }
  .mechanism__copy > p:last-child { margin-top: 30px; font-size: 12px; }
  .workbench { min-height: 280px; padding: 30px 16px; }
  .workbench__label { top: 15px; left: 18px; }
  .workbench__measure { display: none; }
  .mechanism__steps { grid-template-columns: 1fr; margin-top: 0; }
  .mechanism__steps li { min-height: 170px; padding: 28px 14px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .mechanism__steps li:last-child { border-bottom: 0; }

  .access__head { grid-template-columns: 1fr; }
  .access__head > p:last-child { margin: 28px 0 0; }
  .access-panel { min-height: 0; padding: 74px 16px 58px; clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px)); }
  .access-panel__topline { right: 18px; left: 18px; }
  .access-panel__topline span:last-child { display: none; }
  .period-dial { min-height: 315px; }
  .period-dial button { padding: 0 2px; }
  .period-dial button b { font-size: 39px; }
  .period-dial button > span { font-size: 8px; }
  .period-dial button small { width: 75px; font-size: 13px; }
  .price-readout { padding: 42px 24px 35px; }
  .access-panel__action { width: calc(100% + 22px); margin-left: -11px; }
  .access-panel__action .chain { width: 24px; }
  .satin-button--compact { min-width: 0; }
  .access-panel__seal { display: none; }
  .specimen-strip { grid-template-columns: repeat(2, 1fr); }
  .specimen-strip > div { min-height: 98px; border-bottom: 1px solid var(--rule); }
  .specimen-strip > div:nth-child(2) { border-right: 0; }
  .specimen-strip > div:nth-child(n+3) { border-bottom: 0; }
  .specimen-strip span { min-width: 45px; font-size: 38px; }

  .documents__head { grid-template-columns: 1fr; margin-bottom: 62px; }
  .documents__head h2 { font-size: clamp(55px, 16vw, 78px); line-height: .8; }
  .documents__grid { grid-template-columns: 1fr; border-right: 1px solid var(--rule); border-left: 1px solid var(--rule); }
  .document-card { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--rule); }
  .document-card:nth-child(3) { border-bottom: 1px solid var(--rule); }
  .document-card:last-child { border-bottom: 0; }
  .document-card > div { margin-top: 55px; }
  .document-card h3 { font-size: 50px; }

  .finale { min-height: 820px; }
  .finale h2 { font-size: clamp(54px, 16.4vw, 76px); }
  .finale__copy { width: 100%; }
  .finale__action { width: calc(100% + 40px); margin: 40px -20px 0; }
  .finale__action .chain { width: 28px; }
  .finale__monogram { width: 78vw; right: -30vw; bottom: -28vw; font-size: 25vw; }

  .site-footer { grid-template-columns: 1fr; gap: 30px; padding: 44px 20px 24px; }
  .site-footer__passport dl { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__passport dl > div { padding-bottom: 4px; }
  .site-footer__contact { padding: 3px 0 3px 18px; }
  .site-footer__legal { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 7px; margin-top: 0; }
}

@media (max-width: 370px) {
  .brand small { display: none; }
  .brand { grid-template-rows: 1fr; }
  .brand img { grid-row: 1; }
  .hero { min-height: 900px; }
  .hero__portrait { height: 540px; }
  .hero__copy { top: 360px; }
  .hero h1 { font-size: 49px; }
  .hero__afterword { margin-top: 23px; }
  .hero__action { margin-top: 27px; }
  .section { padding-right: 16px; padding-left: 16px; }
  .door-gallery { width: calc(100% + 32px); margin-right: -16px; margin-left: -16px; padding-right: 16px; padding-left: 16px; }
  .access-panel { width: calc(100% + 2px); margin-left: -1px; }
  .period-dial button b { font-size: 34px; }
  .period-dial button small { display: none; }
  .period-dial__note {
    position: absolute;
    top: 67%;
    right: 0;
    left: 0;
    display: block;
    color: var(--bone);
    font-family: var(--display);
    font-size: 17px;
    font-style: italic;
    text-align: center;
  }
  .specimen-strip > div { gap: 10px; }
  .specimen-strip span { min-width: 38px; font-size: 32px; }
}

@media (max-width: 370px) and (max-height: 650px) {
  .hero { min-height: 760px; }
  .hero__portrait { height: 470px; }
  .hero__copy { top: 275px; }
  .hero__copy .eyebrow { margin-bottom: 12px; }
  .hero h1 { font-size: 44px; }
  .hero__afterword { display: none; }
  .hero__action { margin-top: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__portrait { transform: none; }
  .workbench__key { transform: translate(-50%, -50%); }
}

@media (forced-colors: active) {
  .grain,
  .cursor,
  .hero__halo,
  .chain,
  .finale__thread { display: none; }
  .satin-button,
  .gate-key,
  .door__face,
  .access-panel { clip-path: none; }
}
