@font-face {
  font-family: "Fraunces";
  src: url("/assets/fraunces-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --sc-canvas: #e8e9e2;
  --sc-surface: #d9ddd8;
  --sc-ink: #101821;
  --sc-ink-soft: #46515a;
  --sc-accent: #d54435;
  --sc-accent-ink: #fff8ef;
  --sc-font-display: "Fraunces", Georgia, serif;
  --sc-font-text: "Manrope", system-ui, sans-serif;
  --sc-font-mono: "Manrope", system-ui, sans-serif;
  --sc-maxw: 92rem;
  --sc-gutter: clamp(1.25rem, 6.3vw, 7.5rem);
  --sc-section: clamp(5.5rem, 10vw, 10rem);
  --sc-r-sm: 0;
  --sc-r-md: 0;
  --sc-r-lg: 0;
  --sc-shadow-color: 210 35% 10%;
}

html {
  scroll-padding-top: 1.5rem;
}

body {
  background: var(--sc-canvas);
  color: var(--sc-ink);
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

button {
  border: 0;
  background: none;
}

a,
button,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
dl,
dd,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--sc-font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.8rem, 5.4vw, 6.1rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.65rem, 2.5vw, 2.6rem);
  line-height: 1;
}

em {
  color: var(--sc-accent);
  font-style: italic;
}

.chapter {
  position: relative;
  color: var(--sc-ink);
  background: var(--sc-canvas);
}

.chapter--paper {
  --sc-canvas: #e8e9e2;
  --sc-surface: #d7dcd7;
  --sc-ink: #101821;
  --sc-ink-soft: #4d5961;
  --sc-accent: #b53b30;
  --sc-accent-ink: #fff8ef;
  color: var(--sc-ink);
  background: var(--sc-canvas);
}

.chapter--moon {
  --sc-canvas: #dce4df;
  --sc-surface: #cdd8d3;
  --sc-ink: #0e1b23;
  --sc-ink-soft: #405059;
  --sc-accent: #a9362d;
  --sc-accent-ink: #fff8ef;
  color: var(--sc-ink);
  background: var(--sc-canvas);
}

.chapter--blue {
  --sc-canvas: #b8cbd1;
  --sc-surface: #a9bec6;
  --sc-ink: #0a1a26;
  --sc-ink-soft: #304853;
  --sc-accent: #9f3028;
  --sc-accent-ink: #fff8ef;
  color: var(--sc-ink);
  background: var(--sc-canvas);
}

.chapter--night {
  --sc-canvas: #07111d;
  --sc-surface: #0d2030;
  --sc-ink: #f0f0e8;
  --sc-ink-soft: #a9b8bd;
  --sc-accent: #ff6755;
  --sc-accent-ink: #07111d;
  color: var(--sc-ink);
  background: var(--sc-canvas);
}

.skip-link {
  position: fixed;
  inset: 1rem auto auto 1rem;
  z-index: 90;
  padding: 0.7rem 1rem;
  color: #fff8ef;
  background: #9f3028;
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform 180ms var(--sc-ease-out);
}

.skip-link:focus {
  transform: none;
}

.folio {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 60;
  width: clamp(4.5rem, 6vw, 6.5rem);
  padding: 1.4rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f0f0e8;
  background: #07111d;
  border-right: 1px solid rgba(240, 240, 232, 0.16);
}

.folio-mark {
  width: 2.7rem;
  height: 2.7rem;
  color: #ff6755;
}

.folio-mark circle {
  fill: currentColor;
}

.folio-mark ellipse {
  fill: none;
  stroke: rgba(240, 240, 232, 0.75);
  stroke-width: 1.4;
}

.folio-current {
  margin-top: 2.4rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.folio-current span {
  color: #ff6755;
}

.folio-current strong {
  font-weight: 500;
}

.folio-links {
  margin-top: auto;
  display: grid;
  gap: 0.22rem;
}

.folio-links a {
  position: relative;
  width: 2.75rem;
  min-height: 2.75rem;
  display: grid;
  place-items: center;
  color: rgba(240, 240, 232, 0.55);
  text-decoration: none;
  font-size: 0;
  transition: color 160ms var(--sc-ease-out), transform 160ms var(--sc-ease-out);
}

.folio-links a span {
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}

.folio-links a::after {
  position: absolute;
  inset: 50% auto auto calc(100% + 0.55rem);
  width: max-content;
  max-width: 10rem;
  padding: 0.35rem 0.55rem;
  content: attr(href);
  color: #07111d;
  background: #f0f0e8;
  font-size: 0.68rem;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-0.35rem, -50%, 0);
  transition: opacity 160ms var(--sc-ease-out), transform 160ms var(--sc-ease-out);
}

.folio-links a:hover::after,
.folio-links a:focus-visible::after {
  opacity: 1;
  transform: translate3d(0, -50%, 0);
}

.folio-links a:hover,
.folio-links a:focus-visible,
.folio-links a.is-active {
  color: #ff6755;
  transform: translateX(2px);
}

.observation-trace {
  position: fixed;
  inset: 3vh clamp(0.4rem, 1.2vw, 1.4rem) 3vh auto;
  z-index: 50;
  width: clamp(2.2rem, 3.8vw, 4rem);
  pointer-events: none;
  color: #ff6755;
  mix-blend-mode: difference;
}

.observation-trace svg {
  width: 100%;
  height: 88vh;
  overflow: visible;
}

.trace-bed,
.trace-live {
  fill: none;
  stroke-width: 1.5;
}

.trace-bed {
  stroke: rgba(255, 255, 255, 0.18);
}

.trace-live {
  stroke: currentColor;
  stroke-linecap: round;
  will-change: stroke-dashoffset;
}

.trace-marker {
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 1.5;
  will-change: transform;
}

.trace-label {
  position: absolute;
  right: 50%;
  bottom: 0;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.title-page {
  min-height: 100svh;
  padding-left: clamp(4.5rem, 6vw, 6.5rem);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.title-page__top,
.title-page__foot {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.title-page__top {
  padding-top: clamp(1.5rem, 4vh, 3.5rem);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-orbit {
  position: relative;
  width: 2.4rem;
  height: 1rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.wordmark-orbit::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  content: "";
  background: var(--sc-accent);
  transform: translate(-50%, -50%);
}

.edition,
.kicker,
.chapter-mark,
.object-label > span,
.kit-specimen > div > span,
.price-line > div > span,
.form-heading > span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.edition {
  color: var(--sc-ink-soft);
}

.title-page__body {
  width: 100%;
  align-self: center;
  padding-block: 3rem;
}

.kicker {
  margin-bottom: 2.4rem;
  color: var(--sc-accent);
}

.title-page h1 {
  max-width: 12.5ch;
  font-size: clamp(4.1rem, 7vw, 7.4rem);
  line-height: 0.88;
}

.title-page h1 em {
  display: inline-block;
}

.title-lede {
  max-width: 42ch;
  margin-top: 2.5rem;
  color: var(--sc-ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.running-action {
  position: relative;
  width: fit-content;
  margin-top: 2rem;
  padding: 0.65rem 0;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--sc-ink);
  font-weight: 700;
  text-decoration: none;
}

.running-action::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  content: "";
  background: var(--sc-accent);
  transform-origin: left;
  transition: transform 180ms var(--sc-ease-out);
}

.running-action:hover::after {
  transform: scaleX(0.72);
}

.running-action:active,
.period-action:active,
.submit-button:active {
  transform: translateY(1px) scale(0.985);
}

.running-action--light {
  color: #f0f0e8;
}

.title-page__foot {
  padding-bottom: clamp(1.5rem, 4vh, 3.5rem);
  border-top: 1px solid color-mix(in oklab, var(--sc-ink) 18%, transparent);
}

.title-page__foot > p {
  max-width: 34ch;
  padding-top: 1.15rem;
  color: var(--sc-ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

.title-index {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3.5rem);
}

.title-index a {
  padding-top: 1.15rem;
  display: inline-flex;
  gap: 0.65rem;
  color: var(--sc-ink-soft);
  font-size: 0.72rem;
  text-decoration: none;
}

.title-index a span {
  color: var(--sc-accent);
}

.chapter:not(.title-page) {
  padding-left: clamp(4.5rem, 6vw, 6.5rem);
}

.chapter-head {
  width: 100%;
  padding-top: var(--sc-section);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(16rem, 1.2fr);
  gap: 3rem;
  border-bottom: 1px solid color-mix(in oklab, var(--sc-ink) 16%, transparent);
}

.chapter-mark {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  color: var(--sc-ink-soft);
}

.chapter-mark span {
  color: var(--sc-accent);
  font-family: var(--sc-font-display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.chapter-deck {
  max-width: 46ch;
  color: var(--sc-ink-soft);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  text-wrap: pretty;
}

.first-light__spread {
  width: 100%;
  padding-block: clamp(4rem, 9vw, 10rem) var(--sc-section);
  display: grid;
  grid-template-columns: minmax(18rem, 0.78fr) minmax(26rem, 1.22fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.first-light__copy {
  padding-top: clamp(1rem, 7vw, 7rem);
}

.first-light__copy h2 {
  font-size: clamp(3rem, 5.2vw, 5.8rem);
}

.body-large {
  max-width: 48ch;
  margin-top: 2rem;
  color: var(--sc-ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.setup-sequence {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding: 0;
  list-style: none;
  border-top: 1px solid color-mix(in oklab, var(--sc-ink) 18%, transparent);
}

.setup-sequence li {
  padding-block: 1.05rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid color-mix(in oklab, var(--sc-ink) 13%, transparent);
}

.setup-sequence li > span {
  color: var(--sc-accent);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.setup-sequence strong {
  display: block;
  font-size: 0.88rem;
}

.setup-sequence p {
  margin-top: 0.25rem;
  color: var(--sc-ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.editorial-plate {
  overflow: visible;
}

.plate-image {
  height: min(76svh, 52rem);
  overflow: hidden;
  background: #07111d;
  box-shadow: var(--sc-e3), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.plate-image img {
  width: 100%;
  height: calc(100% + 96px);
  object-fit: cover;
  object-position: 64% center;
}

.editorial-plate figcaption,
.observation-window figcaption {
  margin-top: 1rem;
  padding-top: 0.8rem;
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) 1fr;
  gap: 1rem;
  color: var(--sc-ink-soft);
  border-top: 1px solid color-mix(in oklab, var(--sc-ink) 18%, transparent);
  font-size: 0.68rem;
  line-height: 1.45;
}

.editorial-plate figcaption strong {
  color: var(--sc-ink);
}

.image-building {
  padding-bottom: var(--sc-section);
}

.image-building__spread {
  width: 100%;
  min-height: 126svh;
  padding-block: clamp(5rem, 11vw, 12rem);
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(22rem, 1.3fr);
  grid-template-areas: "copy media" "notes media";
  align-items: start;
  gap: 4rem clamp(3rem, 7vw, 8rem);
}

.quiet-copy {
  grid-area: copy;
  align-self: center;
  padding-top: clamp(4rem, 11vw, 11rem);
}

.quiet-copy h2 {
  font-size: clamp(2.8rem, 4.5vw, 5rem);
}

.quiet-copy > p {
  max-width: 48ch;
  margin-top: 2rem;
  color: var(--sc-ink-soft);
  line-height: 1.72;
}

.observation-window {
  grid-area: media;
  align-self: start;
}

.observation-window img {
  width: 100%;
  height: min(83svh, 54rem);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--sc-e2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.capability-notes {
  grid-area: notes;
  align-self: end;
  border-top: 1px solid color-mix(in oklab, var(--sc-ink) 20%, transparent);
}

.capability-notes > div {
  padding-block: 0.95rem;
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid color-mix(in oklab, var(--sc-ink) 14%, transparent);
}

.capability-notes dt {
  color: var(--sc-accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-notes dd {
  color: var(--sc-ink-soft);
  font-size: 0.8rem;
}

.atlas-stage {
  display: flex;
  align-items: center;
  color: #f0f0e8;
  background: #07111d;
}

.atlas-rail {
  width: max-content;
  min-width: max-content;
  padding-inline: max(clamp(4.5rem, 8vw, 9rem), calc((100vw - 92rem) / 2));
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
}

.atlas-panel {
  flex: 0 0 auto;
}

.atlas-intro {
  width: clamp(20rem, 42vw, 37rem);
}

.atlas-intro h2 {
  margin-top: 3rem;
  font-size: clamp(3.1rem, 5.8vw, 6.4rem);
}

.atlas-intro > p:last-child {
  max-width: 42ch;
  margin-top: 2rem;
  color: #a9b8bd;
  line-height: 1.65;
}

.atlas-object {
  width: clamp(44rem, 72vw, 68rem);
  height: min(78svh, 48rem);
  display: grid;
  grid-template-columns: minmax(26rem, 1.55fr) minmax(17rem, 0.72fr);
  background: #0d2030;
  box-shadow: var(--sc-e3), inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.atlas-object figure {
  min-width: 0;
  overflow: hidden;
}

.atlas-object figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atlas-object--galaxy figure img,
.atlas-object--nebula figure img,
.atlas-object--wide figure img {
  object-position: center;
}

.atlas-object--lunar figure img {
  object-position: center;
}

.object-label {
  padding: clamp(1.7rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid rgba(240, 240, 232, 0.16);
}

.object-label > span {
  color: #ff8172;
}

.object-label h3 {
  margin-top: 0.8rem;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.object-label p {
  margin-top: 1.5rem;
  color: #bdc8cb;
  font-size: 0.88rem;
  line-height: 1.65;
}

.object-label small {
  margin-top: 2rem;
  padding-top: 1rem;
  color: #87999f;
  border-top: 1px solid rgba(240, 240, 232, 0.14);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.atlas-outro {
  width: clamp(19rem, 32vw, 30rem);
  padding-right: clamp(3rem, 7vw, 8rem);
}

.atlas-outro > p {
  font-family: var(--sc-font-display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  line-height: 1;
}

.kit-chapter {
  padding-bottom: var(--sc-section);
}

.kit-ledger {
  width: 100%;
  padding-block: var(--sc-section);
}

.kit-ledger__title {
  margin-bottom: clamp(5rem, 10vw, 10rem);
  display: grid;
  grid-template-columns: minmax(20rem, 1.2fr) minmax(15rem, 0.6fr);
  align-items: end;
  gap: 4rem;
}

.kit-ledger__title > p {
  max-width: 42ch;
  color: var(--sc-ink-soft);
  line-height: 1.65;
}

.kit-specimen {
  max-width: 78rem;
  margin-block: clamp(3rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: minmax(17rem, 0.75fr) minmax(18rem, 0.55fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 8rem);
}

.kit-specimen--reverse {
  margin-left: auto;
  grid-template-columns: minmax(18rem, 0.55fr) minmax(17rem, 0.75fr);
}

.kit-specimen--reverse .kit-media {
  grid-column: 2;
}

.kit-specimen--reverse > div {
  grid-column: 1;
  grid-row: 1;
}

.kit-media {
  background: color-mix(in oklab, var(--sc-surface) 80%, transparent);
  box-shadow: var(--sc-e2), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.kit-media img {
  width: 100%;
  height: auto;
}

.kit-specimen > div > span {
  color: var(--sc-accent);
}

.kit-specimen h3 {
  margin-top: 1rem;
  font-size: clamp(2.3rem, 4.6vw, 5.2rem);
}

.kit-specimen p {
  max-width: 38ch;
  margin-top: 1.3rem;
  color: var(--sc-ink-soft);
  line-height: 1.65;
}

.rental-ledger {
  padding-bottom: var(--sc-section);
}

.rental-ledger__inner {
  width: 100%;
  padding-top: clamp(5rem, 9vw, 9rem);
}

.rental-ledger__heading {
  display: grid;
  grid-template-columns: minmax(22rem, 1.1fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 4rem;
}

.rental-ledger__heading > p {
  color: var(--sc-ink-soft);
  line-height: 1.7;
}

.launch-offer > span,
.launch-offer > strong {
  display: block;
}

.launch-offer > span {
  margin-bottom: 0.3rem;
  color: var(--sc-accent);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-offer > strong {
  margin-bottom: 0.8rem;
  color: var(--sc-ink);
  font-family: var(--sc-font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.1;
}

.price-lines {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 2px solid var(--sc-ink);
}

.price-line {
  min-height: 12rem;
  padding-block: 1.8rem;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(9rem, 0.25fr) minmax(14rem, 0.4fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid color-mix(in oklab, var(--sc-ink) 24%, transparent);
}

.price-line--featured {
  color: #f0f0e8;
  background: #0b1b28;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), var(--sc-e2);
}

.price-line--featured > *:first-child {
  padding-left: 1.6rem;
}

.price-line > div > span {
  color: var(--sc-accent);
}

.price-line h3 {
  margin-top: 0.55rem;
}

.price-line > div > p {
  max-width: 46ch;
  margin-top: 0.7rem;
  color: var(--sc-ink-soft);
  font-size: 0.8rem;
  line-height: 1.55;
}

.price-line--featured > div > p {
  color: #afbdc1;
}

.price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.price__current {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price strong {
  font-family: var(--sc-font-display);
  font-size: clamp(3.2rem, 5vw, 5.5rem);
  font-weight: 600;
  line-height: 0.8;
  letter-spacing: -0.055em;
}

.price span {
  font-size: 0.8rem;
}

.price__regular {
  color: var(--sc-ink-soft);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.price-line--featured .price__regular {
  color: #afbdc1;
}

.period-action,
.submit-button {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: inherit;
  border-bottom: 2px solid var(--sc-accent);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 160ms var(--sc-ease-out), transform 140ms var(--sc-ease-out), border-color 160ms var(--sc-ease-out);
}

.period-action:hover,
.submit-button:hover {
  color: var(--sc-accent);
}

.period-action small {
  color: inherit;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rental-notes {
  padding-block: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid color-mix(in oklab, var(--sc-ink) 24%, transparent);
}

.rental-notes p {
  color: var(--sc-ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.rental-notes strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--sc-ink);
}

.faq-block {
  padding-top: clamp(6rem, 12vw, 12rem);
  display: grid;
  grid-template-columns: minmax(17rem, 0.6fr) minmax(24rem, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.faq-block__intro h2 {
  font-size: clamp(2.7rem, 4.6vw, 5rem);
}

.faq-block__intro p {
  max-width: 36ch;
  margin-top: 1.5rem;
  color: var(--sc-ink-soft);
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid color-mix(in oklab, var(--sc-ink) 30%, transparent);
}

.faq-list details {
  border-bottom: 1px solid color-mix(in oklab, var(--sc-ink) 22%, transparent);
}

.faq-list summary {
  min-height: 4rem;
  padding-block: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--sc-accent);
  font-size: 1.2rem;
  transition: transform 180ms var(--sc-ease-out);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 60ch;
  padding: 0 3rem 1.4rem 0;
  color: var(--sc-ink-soft);
  font-size: 0.8rem;
  line-height: 1.65;
}

.booking-log {
  min-height: 100svh;
  padding-bottom: 0;
}

.booking-log__head {
  width: 100%;
  padding-top: var(--sc-section);
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.56fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.booking-log__head h2 {
  font-size: clamp(3.5rem, 6vw, 6.8rem);
}

.booking-log__head > p:last-child {
  color: #a9b8bd;
  font-size: 0.85rem;
  line-height: 1.65;
}

.booking-log__body {
  width: 100%;
  padding-block: clamp(5rem, 9vw, 9rem);
  display: grid;
  grid-template-columns: minmax(14rem, 0.45fr) minmax(28rem, 1fr);
  align-items: start;
  gap: clamp(3rem, 10vw, 11rem);
}

.source-note {
  margin-bottom: 2.5rem;
  padding: 1rem 0;
  color: #d5dddd;
  border-block: 1px solid rgba(240, 240, 232, 0.16);
  font-size: 0.75rem;
  line-height: 1.55;
}

.source-note > span {
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.6rem;
  display: inline-block;
  border-radius: 50%;
  background: #ff6755;
}

.booking-aside dl {
  border-top: 1px solid rgba(240, 240, 232, 0.2);
}

.booking-aside dl > div {
  padding-block: 1rem;
  border-bottom: 1px solid rgba(240, 240, 232, 0.14);
}

.booking-aside dt {
  color: #7f969d;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-aside dd {
  margin-top: 0.35rem;
  color: #f0f0e8;
  font-size: 0.82rem;
}

.lead-form {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: #07111d;
  background: #e8e9e2;
  box-shadow: var(--sc-e3), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-heading {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #46515a;
}

.form-heading > span {
  color: #9f3028;
}

.form-heading p {
  font-size: 0.7rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.field {
  margin-bottom: 1.4rem;
}

.field label {
  margin-bottom: 0.45rem;
  display: block;
  color: #2e3a43;
  font-size: 0.7rem;
  font-weight: 700;
}

.field label span {
  color: #69747b;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.65rem 0;
  color: #101821;
  border: 0;
  border-bottom: 1px solid rgba(16, 24, 33, 0.35);
  border-radius: 0;
  background: transparent;
  outline: 0;
  transition: border-color 160ms var(--sc-ease-out);
}

.field textarea {
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #758087;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #9f3028;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #a51f1f;
}

.field-error {
  min-height: 1.1rem;
  padding-top: 0.3rem;
  display: block;
  color: #8c1d1d;
  font-size: 0.65rem;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  margin-block: 0.6rem 0.2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  color: #4d5961;
  font-size: 0.7rem;
  line-height: 1.55;
}

.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
}

.submit-button {
  margin-top: 1.4rem;
  color: #101821;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.8rem;
  color: #2f695a;
  font-size: 0.72rem;
}

.form-status.is-error {
  color: #8c1d1d;
}

.lead-form.is-success {
  box-shadow: inset 5px 0 0 #2f695a, var(--sc-e3);
}

.colophon {
  width: 100%;
  padding-block: clamp(2.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 0.65fr 1fr 0.8fr;
  gap: clamp(2rem, 5vw, 5rem);
  color: #9db0b6;
  border-top: 1px solid rgba(240, 240, 232, 0.18);
  font-size: 0.67rem;
  line-height: 1.6;
}

.colophon > p {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.colophon strong {
  color: #f0f0e8;
}

.colophon address {
  font-style: normal;
}

.colophon nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.6rem 1.1rem;
}

.colophon > small {
  grid-column: 2 / -1;
  max-width: 75ch;
  color: #718991;
}

/* Privacy document */
.legal-page {
  min-height: 100svh;
  color: #101821;
  background: #e8e9e2;
}

.legal-top {
  padding: 1.5rem var(--sc-gutter);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid rgba(16, 24, 33, 0.18);
}

.legal-main {
  max-width: 60rem;
  margin-inline: auto;
  padding: clamp(5rem, 10vw, 10rem) var(--sc-gutter);
}

.legal-main h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
  line-height: 0.9;
}

.legal-intro {
  max-width: 52ch;
  margin-top: 2rem;
  color: #4d5961;
  font-size: 1.15rem;
  line-height: 1.65;
}

.legal-main section {
  margin-top: 4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(16, 24, 33, 0.18);
}

.legal-main section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.legal-main section p {
  margin-top: 1rem;
  color: #4d5961;
  line-height: 1.75;
}

@media (hover: hover) and (pointer: fine) {
  .title-index a,
  .colophon a,
  .faq-list summary {
    transition: color 160ms var(--sc-ease-out);
  }

  .title-index a:hover,
  .colophon a:hover,
  .faq-list summary:hover {
    color: var(--sc-accent);
  }
}

@media (max-width: 1100px) {
  .folio-links {
    display: none;
  }

  .first-light__spread,
  .image-building__spread {
    gap: 3rem;
  }

  .atlas-object {
    width: 78vw;
    grid-template-columns: minmax(22rem, 1.25fr) minmax(15rem, 0.7fr);
  }

  .booking-log__head {
    grid-template-columns: 0.3fr 1fr;
  }

  .booking-log__head > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --sc-gutter: 1.25rem;
    --sc-section: clamp(4.5rem, 18vw, 7rem);
  }

  .folio {
    display: none;
  }

  .observation-trace {
    inset: auto 1.1rem 0.65rem 1.1rem;
    width: auto;
    height: 1.25rem;
    mix-blend-mode: normal;
  }

  .observation-trace svg {
    width: 100%;
    height: 1rem;
    transform: rotate(-90deg) scaleY(0.12);
  }

  .trace-label {
    display: none;
  }

  .title-page,
  .chapter:not(.title-page) {
    padding-left: 0;
  }

  .title-page {
    min-height: 100svh;
  }

  .title-page__body {
    padding-block: clamp(1.5rem, 5svh, 2.5rem);
  }

  .title-page__top {
    align-items: flex-start;
  }

  .edition {
    max-width: 17ch;
    text-align: right;
  }

  .title-page h1 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 15vw, 4.6rem);
    line-height: 0.91;
  }

  .title-page__foot {
    padding-bottom: max(1.5rem, calc(env(safe-area-inset-bottom) + 1rem));
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 0.25rem;
  }

  .title-index {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(5, auto);
    justify-content: space-between;
    gap: 0.35rem;
  }

  .title-page__foot > p {
    max-width: none;
    padding-top: 0.25rem;
    text-align: left;
  }

  [data-mobile-reveal] {
    will-change: clip-path;
  }

  .chapter-head,
  .first-light__spread,
  .image-building__spread,
  .kit-ledger__title,
  .rental-ledger__heading,
  .faq-block,
  .booking-log__head,
  .booking-log__body,
  .colophon {
    grid-template-columns: 1fr;
  }

  .chapter-head {
    gap: 1.5rem;
  }

  .first-light__copy {
    padding-top: 0;
  }

  .first-light__plate {
    grid-row: 1;
  }

  .plate-image {
    height: 68svh;
  }

  .editorial-plate figcaption,
  .observation-window figcaption {
    grid-template-columns: 1fr;
  }

  .image-building__spread {
    min-height: auto;
    grid-template-areas: "copy" "media" "notes";
  }

  .quiet-copy {
    padding-top: 3rem;
  }

  .observation-window img {
    height: 72svh;
  }

  .atlas-rail {
    gap: 1.25rem;
    padding-inline: 1.25rem 4rem;
  }

  .atlas-intro {
    width: 82vw;
  }

  .atlas-object {
    width: 86vw;
    height: 78svh;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1.25fr) auto;
  }

  .object-label {
    padding: 1.25rem;
    border-top: 1px solid rgba(240, 240, 232, 0.16);
    border-left: 0;
  }

  .object-label h3 {
    font-size: 2.3rem;
  }

  .object-label p {
    margin-top: 0.8rem;
    font-size: 0.78rem;
  }

  .object-label small {
    margin-top: 1rem;
  }

  .atlas-outro {
    width: 75vw;
  }

  .kit-ledger__title {
    gap: 1.5rem;
  }

  .kit-specimen,
  .kit-specimen--reverse {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .kit-specimen--reverse .kit-media,
  .kit-specimen--reverse > div {
    grid-column: 1;
    grid-row: auto;
  }

  .kit-specimen--reverse .kit-media {
    grid-row: 1;
  }

  .price-line {
    grid-template-columns: 1fr auto;
  }

  .price-line .period-action {
    grid-column: 1 / -1;
  }

  .price-line--featured {
    padding-inline: 1.25rem;
  }

  .price-line--featured > *:first-child {
    padding-left: 0;
  }

  .rental-notes {
    grid-template-columns: 1fr;
  }

  .faq-block {
    gap: 3rem;
  }

  .booking-log__head {
    gap: 1.5rem;
  }

  .booking-log__head > p:last-child {
    grid-column: 1;
  }

  .booking-log__body {
    gap: 4rem;
  }

  .colophon > small {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .wordmark {
    font-size: 0.78rem;
  }

  .wordmark-orbit {
    width: 1.9rem;
  }

  .edition {
    font-size: 0.56rem;
  }

  .title-page h1 {
    font-size: clamp(2.75rem, 14vw, 3.6rem);
  }

  .kicker {
    margin-bottom: 1.4rem;
  }

  .title-lede {
    max-width: 30ch;
    margin-top: 1.4rem;
    font-size: 0.95rem;
  }

  .title-page .running-action {
    margin-top: 1.1rem;
  }

  .title-index a {
    min-height: 2.75rem;
    padding-top: 0.7rem;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
  }

  .title-page__foot > p {
    font-size: 0.62rem;
  }

  h2,
  .first-light__copy h2,
  .quiet-copy h2,
  .booking-log__head h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-line {
    grid-template-columns: 1fr;
  }

  .price-line .period-action {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trace-live {
    stroke-dashoffset: 0 !important;
  }

  .trace-marker {
    display: none;
  }

  .plate-image img {
    height: 100%;
  }

  [data-mobile-reveal] {
    clip-path: none !important;
  }
}
