:root {
  --mineral: #ece9e1;
  --mineral-bright: #f6f3ec;
  --ink: #111719;
  --ink-soft: #5d6667;
  --night: #071014;
  --night-raised: #0c171c;
  --night-ink: #f5f1e8;
  --night-soft: #a8b4b5;
  --spectral: #bcecff;
  --violet: #b8a5ff;
  --hairline-light: rgba(15, 22, 24, .2);
  --hairline-dark: rgba(236, 244, 245, .2);
  --gutter: clamp(1.05rem, 3.6vw, 4.8rem);
  --header-h: clamp(5rem, 8vw, 7rem);
  --font-display: Didot, "Bodoni 72", "Iowan Old Style", "Times New Roman", serif;
  --font-text: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --motion-fluid: cubic-bezier(.16, 1, .3, 1);
  --motion-enter: 440ms;
  --motion-exit: 160ms;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --mineral: #090f12;
  --mineral-bright: #0f171a;
  --ink: #f0ede6;
  --ink-soft: #aab5b6;
  --hairline-light: rgba(224, 235, 234, .2);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html {
  overflow-x: clip;
  background: var(--mineral);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--mineral);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
}

/* Native scrolling remains intact; the masthead thread supplies progress without
   Chrome reserving a false white page edge for its scrollbar rail. */
html { scrollbar-width: none; }
html::-webkit-scrollbar { display: none; width: 0; height: 0; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
p { text-wrap: pretty; }
::selection { color: #071014; background: var(--spectral); }

/* One continuous, reversible motion grammar shared by every editorial route. */
[data-scroll-scene] {
  --scene-p: 0;
  --scene-balance: -1;
  --scene-focus: 0;
  --scene-enter: 0;
  --scene-exit: 0;
}
.scene-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}
[data-scene-beat] {
  opacity: calc(.18 + (var(--beat-p, 0) * .82));
  transform: translate3d(0, calc((1 - var(--beat-p, 0)) * 1.5rem), 0);
  will-change: transform, opacity;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: var(--ink);
  background: var(--mineral-bright);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--spectral); outline-offset: 4px; }

/* A masthead that belongs to the composition, never a black toolbar. */
.edition-masthead {
  position: fixed;
  z-index: 180;
  inset: 0 0 auto;
  height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(9rem, auto) 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: clamp(1.05rem, 2.2vw, 2rem) var(--gutter) 0;
  color: var(--ink);
  overflow: visible;
  pointer-events: none;
  transition: color 220ms ease;
}
.edition-masthead::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: calc(var(--header-h) - .38rem);
  right: var(--gutter);
  left: var(--gutter);
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, currentColor, transparent 36%, transparent 64%, currentColor);
  transform: scaleX(calc(.72 + (var(--page-p, 0) * .28)));
  transition: opacity 220ms ease;
  pointer-events: none;
}
.edition-masthead.is-compact::before { opacity: .2; }
.edition-masthead > * { pointer-events: auto; }
.masthead-brand {
  position: relative;
  display: block;
  width: clamp(10.5rem, 16.5vw, 17.5rem);
  aspect-ratio: 1120 / 250;
  height: auto;
  overflow: visible;
  transform: translate3d(0, calc(var(--page-p, 0) * -.12rem), 0);
  transform-origin: left top;
  transition: width 420ms cubic-bezier(.16, 1, .3, 1), transform 420ms cubic-bezier(.16, 1, .3, 1);
  isolation: isolate;
}
.masthead-brand::before,
.masthead-nav::before,
.menu-toggle::before {
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  background: rgba(246, 243, 236, .8);
  -webkit-backdrop-filter: blur(11px) saturate(118%);
  backdrop-filter: blur(11px) saturate(118%);
  clip-path: polygon(0 0, 100% 0, 94% 80%, 12% 100%);
  transition: opacity 220ms ease, background 220ms ease;
  pointer-events: none;
}
.masthead-brand::before { inset: -.5rem -.85rem -.65rem -.55rem; }
.edition-masthead.is-compact .masthead-brand::before,
.edition-masthead.is-compact .masthead-nav::before,
.edition-masthead.is-compact .menu-toggle::before { opacity: .9; }
.edition-masthead.is-on-dark .masthead-brand::before,
.edition-masthead.is-on-dark .masthead-nav::before,
.edition-masthead.is-on-dark .menu-toggle::before { background: rgba(7, 16, 20, .76); }
.edition-masthead.is-compact .masthead-brand { width: clamp(9.4rem, 13vw, 13.5rem); }
.masthead-brand img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  overflow: visible;
  transition: opacity 180ms ease;
}
.masthead-brand__light { opacity: 0; }
.edition-masthead.is-on-dark { color: var(--night-ink); }
.edition-masthead.is-on-dark .masthead-brand__dark { opacity: 0; }
.edition-masthead.is-on-dark .masthead-brand__light { opacity: 1; }
body.menu-open .edition-masthead { color: var(--ink); }
body.menu-open .masthead-brand__dark { opacity: 1; }
body.menu-open .masthead-brand__light { opacity: 0; }

.masthead-nav {
  position: relative;
  isolation: isolate;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.8rem);
  padding-top: .35rem;
  font-size: .64rem;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.masthead-nav::before { inset: -.55rem -1rem .45rem -1.1rem; clip-path: polygon(5% 0, 100% 0, 94% 100%, 0 82%); }
.masthead-nav a {
  position: relative;
  min-height: 2.4rem;
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}
.masthead-nav a::after {
  content: "";
  position: absolute;
  inset: 1.25rem 0 auto;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}
.masthead-nav a:hover::after,
.masthead-nav a:focus-visible::after,
.masthead-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  position: relative;
  isolation: isolate;
  display: none;
  min-width: 3.5rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.menu-toggle::before { inset: -.55rem -.65rem .35rem -1rem; clip-path: polygon(8% 0, 100% 0, 90% 100%, 0 82%); }
.masthead-thread {
  position: absolute;
  right: var(--gutter);
  bottom: .2rem;
  left: var(--gutter);
  height: 1px;
  overflow: visible;
  background: currentColor;
  opacity: .22;
}
.masthead-thread span {
  position: absolute;
  inset: -1px auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--spectral), var(--violet), currentColor);
  transform: scaleX(var(--page-p, 0));
  transform-origin: left;
}
.masthead-thread i {
  position: absolute;
  top: 50%;
  left: calc(var(--page-p, 0) * 100%);
  width: .58rem;
  height: .58rem;
  border: 1px solid currentColor;
  border-radius: 52% 48% 62% 38%;
  background: var(--spectral);
  box-shadow: 0 0 1.2rem var(--spectral);
  transform: translate(-50%, -50%) rotate(calc(45deg + (var(--page-p, 0) * 270deg))) scale(calc(.78 + (var(--page-p, 0) * .32)));
}

/* Every scroll photograph preserves the authored composition; the state changes, not the crop. */
.scroll-film__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: visible;
}
.scroll-film__poster,
.scroll-film video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.scroll-film__poster { display: block; }
.scroll-film__poster > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.scroll-film__poster { transition: opacity 180ms ease; }
.scroll-film video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}
.scroll-film.is-film-ready video { opacity: 1; }
.scroll-film.is-film-ready .scroll-film__poster { opacity: 0; }

/* Route films use one uncropped frame for first paint, scrub playback and failure fallback. */
.route-scroll-film {
  position: relative;
  min-width: 0;
  margin: 0;
  isolation: isolate;
}
.route-scroll-film .scroll-film__viewport {
  overflow: hidden;
  background: #0a1114;
  box-shadow: 0 1.5rem 4rem rgba(3, 8, 10, .16);
  transform-origin: center;
  will-change: transform;
}
.route-scroll-film .scroll-film__poster { z-index: 1; }
.route-scroll-film video { z-index: 2; }
.route-scroll-film .scroll-film__viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 1px solid rgba(221, 241, 239, .18);
  background: linear-gradient(115deg, rgba(188, 236, 255, .055), transparent 31%, transparent 72%, rgba(184, 165, 255, .045));
  pointer-events: none;
}
.route-scroll-film figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
html.has-js:not(.motion-reduced) .route-scroll-film.is-pointer-enabled { cursor: ew-resize; }
html.has-js:not(.motion-reduced) .route-scroll-film.is-pointer-enabled .scroll-film__viewport {
  transform: perspective(70rem) translate3d(calc(var(--pointer-balance, 0) * .28rem), 0, 0) rotateY(calc(var(--pointer-balance, 0) * 1.1deg));
}
.route-scroll-film--miami .scroll-film__viewport {
  background: #d8ded9;
  box-shadow: 0 1.5rem 4rem rgba(33, 52, 53, .13);
}
.route-scroll-film--miami .scroll-film__viewport::after {
  border-color: rgba(35, 57, 60, .18);
  background: linear-gradient(115deg, rgba(245, 240, 230, .11), transparent 32%, transparent 74%, rgba(188, 236, 255, .055));
}

.imagen-pair .imagen-pair__base,
.imagen-pair .imagen-pair__state {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  will-change: transform, opacity;
}
.imagen-pair picture.imagen-pair__base > img,
.imagen-pair picture.imagen-pair__state > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
.imagen-pair .imagen-pair__base {
  opacity: 1;
  transform: translate3d(calc(var(--film-p, 0) * -.45rem), calc(var(--film-p, 0) * .18rem), 0) scale(calc(1 + (var(--film-p, 0) * .012)));
}
.imagen-pair .imagen-pair__state {
  opacity: var(--film-p, 0);
  transform: translate3d(calc((1 - var(--film-p, 0)) * .65rem), calc((1 - var(--film-p, 0)) * -.24rem), 0) scale(calc(1.014 - (var(--film-p, 0) * .014)));
}
.living-frame.imagen-pair .imagen-pair__state {
  opacity: clamp(0, calc(var(--story-p, 0) * 7), 1);
}
.living-frame.imagen-pair .imagen-pair__base {
  transform: translate3d(calc(var(--story-p, 0) * -.35rem), 0, 0) scale(calc(1 + (var(--story-p, 0) * .01)));
}

.edition-menu {
  position: fixed;
  z-index: 160;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, .42fr);
  grid-template-rows: auto 1fr;
  gap: 2rem var(--gutter);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 3rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: var(--ink);
  background: var(--mineral-bright);
  transition: opacity 240ms ease, visibility 0s linear 240ms;
}
.edition-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; transition-delay: 0s; }
.edition-menu__label {
  grid-column: 1 / -1;
  margin: 0;
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.edition-menu nav { display: grid; align-content: center; }
.edition-menu nav a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: clamp(.8rem, 2vh, 1.4rem) 0;
  border-top: 1px solid var(--hairline-light);
  text-decoration: none;
}
.edition-menu nav a:last-child { border-bottom: 1px solid var(--hairline-light); }
.edition-menu nav span {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 7.2rem);
  line-height: .84;
  letter-spacing: -.055em;
}
.edition-menu nav small {
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.edition-menu figure { align-self: center; margin: 0; }
.edition-menu figure img { width: 100%; height: auto; background: var(--night); }
.edition-menu figcaption {
  margin-top: .65rem;
  font-size: .61rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.preview-badge {
  position: fixed;
  z-index: 130;
  right: .65rem;
  bottom: .65rem;
  padding: .35rem .52rem;
  color: var(--night-soft);
  border: 1px solid rgba(192, 229, 242, .18);
  background: rgba(7, 16, 20, .78);
  font-size: .54rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Vogue-like cover: a publication surface, with the crystal kept whole. */
.fashion-cover {
  min-height: 112svh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem var(--gutter);
  padding: calc(var(--header-h) + clamp(2rem, 5vh, 5rem)) var(--gutter) clamp(3rem, 7vh, 6rem);
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(115deg, var(--mineral-bright), var(--mineral) 60%, #e1e6e5);
}
.fashion-cover .cover-folio {
  opacity: calc(.42 + (var(--scene-enter) * .58));
  transform: translate3d(calc(var(--scene-balance) * -1.1rem), 0, 0);
}
.cover-folio {
  grid-column: 1 / -1;
  margin: 0;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--hairline-light);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cover-title {
  z-index: 1;
  grid-column: 1 / 8;
  align-self: center;
  padding-block: 2rem;
  transform: translate3d(calc(var(--scene-balance) * -2.2rem), 0, 0);
  will-change: transform;
}
.cover-byline {
  margin: 0 0 clamp(1.5rem, 4vh, 3.5rem);
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .13em;
  line-height: 1.55;
  text-transform: uppercase;
}
.cover-title h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 7.55vw, 9.3rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.075em;
}
.cover-title h1 span { display: block; white-space: nowrap; }
.cover-object {
  z-index: 0;
  grid-column: 8 / 13;
  grid-row: 2 / 4;
  align-self: center;
  margin: 0;
  transform: translate3d(calc(var(--scene-balance) * 1.6rem), calc(var(--scene-balance) * -1.2rem), 0) rotate(calc(var(--scene-balance) * .6deg)) scale(calc(.985 + (var(--scene-focus) * .025)));
  will-change: transform;
}
.cover-object img { width: 100%; height: auto; object-fit: contain; background: var(--night); }
.cover-object figcaption {
  max-width: 34rem;
  margin-top: .75rem;
  color: var(--ink-soft);
  font-size: .62rem;
  line-height: 1.45;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cover-deck {
  z-index: 2;
  grid-column: 1 / 7;
  align-self: end;
  max-width: 43rem;
  opacity: calc(.7 + (var(--scene-focus) * .3));
  transform: translate3d(0, calc(var(--scene-balance) * 1rem), 0);
  will-change: transform, opacity;
}
.cover-deck > p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.8rem);
  line-height: 1.36;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.5rem;
  margin-top: 1.75rem;
  color: var(--ink-soft);
  font-size: .61rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Living Edition Plate. All motion is a function of scroll position and reverses exactly. */
.living-story {
  position: relative;
  color: var(--night-ink);
  background: var(--night);
}
.living-stage {
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: linear-gradient(145deg, #071014 0%, #090e12 48%, #10171b 100%);
}
.living-stage::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 18svh;
  opacity: clamp(0, calc(1 - (var(--story-p, 0) * 9)), 1);
  background: linear-gradient(to bottom, var(--mineral) 0%, rgba(236, 233, 225, .45) 32%, transparent 100%);
  pointer-events: none;
}
.stage-aura {
  position: absolute;
  inset: -25%;
  pointer-events: none;
  background: linear-gradient(calc(96deg + var(--story-p, 0) * 28deg), transparent 36%, rgba(183, 235, 255, .06) 49%, transparent 57%);
  transform: translate3d(calc(var(--scroll-velocity, 0) * 1.5px), 0, 0);
}
.stage-axis {
  position: absolute;
  z-index: 12;
  inset: auto var(--gutter) 2.3rem;
  height: 1px;
  background: rgba(204, 235, 243, .14);
}
.stage-axis span {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--spectral) 46%, var(--violet), transparent);
  transform: scaleX(var(--story-p, 0));
  transform-origin: left;
  box-shadow: 0 0 1.3rem rgba(188, 236, 255, .4);
}
.living-frame {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: min(69vw, 78rem);
  height: 78svh;
  margin: 0;
  opacity: 0;
  transform: translate3d(20vw, 10svh, 0) scale(.8);
  transform-origin: left top;
  will-change: transform, opacity;
  pointer-events: none;
}
.living-frame img,
.living-frame video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.living-frame--film { width: min(76vw, 88rem); }
.living-frame--film img,
.living-frame--film video { position: absolute; inset: 0; }
.living-frame--film video { opacity: 0; }
.living-frame--film.is-video-ready video { opacity: 1; }
.living-frame--film.is-video-ready .film-poster { opacity: 0; }

.story-track { position: relative; z-index: 5; margin-top: -100svh; }
.story-step {
  min-height: 108svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) calc(var(--gutter) + 1.2rem) 6rem;
  pointer-events: none;
}
.story-step--left { justify-content: flex-start; }
.story-step--right { justify-content: flex-end; }
.story-step--center { align-items: flex-end; justify-content: center; text-align: center; }
.story-copy {
  width: min(34rem, 37vw);
  padding: clamp(1.2rem, 2.3vw, 2.3rem) 0;
  color: var(--night-ink);
  background: var(--night);
  pointer-events: auto;
  will-change: opacity, transform;
}
.has-js:not(.motion-reduced) .living-story.is-stage-active .story-copy.is-active {
  position: fixed;
  z-index: 8;
  top: 50%;
  bottom: auto;
  transform: translate3d(0, -50%, 0);
}
.has-js:not(.motion-reduced) .living-story.is-stage-active .story-step--left .story-copy.is-active {
  right: auto;
  left: calc(var(--gutter) + 1.2rem);
}
.has-js:not(.motion-reduced) .living-story.is-stage-active .story-step--right .story-copy.is-active {
  right: calc(var(--gutter) + 1.2rem);
  left: auto;
}
.has-js:not(.motion-reduced) .living-story.is-stage-active .story-step--center .story-copy.is-active {
  top: auto;
  right: auto;
  bottom: 3.4rem;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
}
.story-step--left .story-copy { padding-right: clamp(1rem, 3vw, 3rem); }
.story-step--right .story-copy { padding-left: clamp(1rem, 3vw, 3rem); }
.story-step--center .story-copy { width: min(42rem, 74vw); padding-inline: 2rem; }
.story-label,
.object-caption,
.resolution-kicker,
.newsletter-kicker,
.dispatch-kicker,
.edition-kicker {
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
}
.story-label { margin: 0 0 1rem; color: var(--spectral); }
.story-copy h2 {
  max-width: 10ch;
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 6.6rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
}
.story-step--center h2 { max-width: none; }
.story-copy > p:not(.story-label, .object-caption) {
  max-width: 31rem;
  margin: 0;
  color: var(--night-soft);
  font-size: clamp(.98rem, 1.12vw, 1.16rem);
  line-height: 1.65;
}
.object-caption {
  margin: 1.5rem 0 0;
  padding-top: .7rem;
  border-top: 1px solid var(--hairline-dark);
  color: #d4dde0;
}
.step-fallback { display: none; margin: 2rem 0 0; }
.step-fallback img { width: 100%; height: auto; object-fit: contain; background: var(--night); }

.editorial-resolution {
  min-height: 110svh;
  padding: clamp(8rem, 15vh, 13rem) var(--gutter) clamp(6rem, 11vh, 10rem);
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(16, 23, 25, .08) 50%, transparent 50.06%),
    var(--mineral-bright);
}
.editorial-resolution blockquote {
  transform: translate3d(calc(var(--scene-balance) * -2.4rem), 0, 0);
  will-change: transform;
}
.editorial-resolution .resolution-notes {
  opacity: calc(.46 + (var(--scene-enter) * .54));
  transform: translate3d(calc(var(--scene-balance) * 1.4rem), 0, 0);
  will-change: transform, opacity;
}
.resolution-kicker { margin: 0 0 clamp(2rem, 6vh, 5rem); }
.editorial-resolution blockquote {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 8.8vw, 11rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.07em;
}
.resolution-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 8rem);
  width: min(54rem, 66vw);
  margin: clamp(4rem, 9vh, 8rem) 0 0 auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline-light);
}
.resolution-notes p { margin: 0; color: var(--ink-soft); line-height: 1.65; }
.editorial-link {
  display: inline-flex;
  gap: .8rem;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 4rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.editorial-link span { transition: transform 180ms ease; }
.editorial-link:hover span,
.editorial-link:focus-visible span { transform: translate(.2rem, -.2rem); }

.newsletter-section {
  min-height: 82svh;
  padding: clamp(7rem, 14vh, 12rem) var(--gutter) 2rem;
  color: var(--night-ink);
  background: linear-gradient(132deg, var(--night), #0d171b);
}
.newsletter-section .newsletter-kicker {
  opacity: calc(.4 + (var(--scene-enter) * .6));
  transform: translate3d(calc(var(--scene-balance) * -1.1rem), 0, 0);
}
.newsletter-section .newsletter-grid > * {
  transform: translate3d(0, calc(var(--scene-balance) * 1.8rem), 0);
  will-change: transform;
}
.newsletter-section .newsletter-grid > :last-child {
  transform: translate3d(0, calc(var(--scene-balance) * -1.2rem), 0);
}
.newsletter-kicker { margin: 0 0 3rem; color: var(--spectral); }
.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, .8fr);
  gap: clamp(3rem, 9vw, 11rem);
  align-items: end;
}
.newsletter-grid h2 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.2vw, 10rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}
.newsletter-grid > div > p { max-width: 36rem; margin: 0 0 2rem; color: var(--night-soft); line-height: 1.65; }
.newsletter-form label {
  display: block;
  margin-bottom: .6rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.newsletter-field { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid var(--night-ink); }
.newsletter-field input,
.newsletter-field button {
  min-height: 3.6rem;
  border: 0;
  border-radius: 0;
  color: var(--night-ink);
  background: transparent;
}
.newsletter-field input { min-width: 0; padding: .8rem 0; font-family: var(--font-display); font-size: 1.25rem; }
.newsletter-field input::placeholder { color: #788588; }
.newsletter-field button {
  padding: 0 0 0 1.5rem;
  font-size: .63rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.form-status { min-height: 1.4rem; margin-top: .8rem !important; color: var(--spectral) !important; font-size: .76rem; }
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-top: clamp(7rem, 18vh, 14rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--hairline-dark);
}
.site-footer img { width: clamp(11rem, 18vw, 18rem); height: auto; }
.site-footer p { margin: 0; color: var(--night-soft); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; }

/* Digest index. */
.digest-hero {
  position: relative;
  height: 168svh;
  color: var(--night-ink);
  background: #030609;
}
.digest-hero__stage {
  padding: calc(var(--header-h) + 3rem) var(--gutter) 4rem;
  color: var(--night-ink);
  background: linear-gradient(118deg, #030609 0%, #050a0c 52%, #0c1316 100%);
}
.digest-hero__media {
  position: absolute;
  inset: clamp(7.5rem, 13vh, 10rem) -2vw 3.3rem 42vw;
  margin: 0;
  opacity: 1;
  transform: translate3d(calc(var(--scene-balance) * 1.15rem), calc(var(--scene-balance) * -.45rem), 0) scale(calc(.985 + (var(--scene-focus) * .018)));
  transform-origin: center;
  will-change: transform, opacity;
}
.digest-hero__media .scroll-film__viewport { height: 100%; aspect-ratio: auto; }
.digest-hero__media img,
.digest-hero__media video { width: 100%; height: 100%; object-fit: contain; }
.digest-hero__media figcaption {
  position: absolute;
  right: 10rem;
  bottom: -1.45rem;
  color: var(--night-soft);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 4;
}

.digest-hero__title {
  position: relative;
  z-index: 2;
  width: min(51rem, 52vw);
  padding-top: 8vh;
  opacity: 1;
  transform: translate3d(calc(var(--scene-balance) * -2.6rem), 0, 0);
  will-change: transform, opacity;
}
.digest-hero__title p { margin: 0 0 2rem; color: var(--spectral); }
.digest-hero__title h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.075em;
}
.digest-hero__title h1 span { display: block; }
.digest-hero__deck {
  position: absolute;
  z-index: 3;
  right: auto;
  bottom: 3rem;
  left: var(--gutter);
  width: min(28rem, 31vw);
  padding-top: 1rem;
  border-top: 1px solid var(--hairline-dark);
  opacity: calc(.78 + (var(--scene-focus) * .22));
  transform: translate3d(0, calc(var(--scene-balance) * 1.4rem), 0);
  will-change: transform, opacity;
}
.digest-hero__deck p { margin: 0; color: var(--night-soft); line-height: 1.6; }
.edition-opening {
  min-height: 110svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: start;
  padding: calc(var(--header-h) + clamp(2rem, 5vh, 4rem)) var(--gutter) clamp(7rem, 13vh, 11rem);
  color: var(--ink);
  background: var(--mineral-bright);
}
.edition-opening figure { margin: 0; transform: translate3d(0, var(--figure-y, 0), 0); will-change: transform; }
.edition-opening figure {
  transform: translate3d(0, calc(var(--scene-balance) * -2rem), 0) rotate(calc(var(--scene-balance) * -.35deg)) scale(calc(.985 + (var(--scene-focus) * .02)));
}
.edition-opening .edition-copy {
  transform: translate3d(0, calc(var(--scene-balance) * 1.7rem), 0);
  will-change: transform;
}
.edition-opening figure img { width: 100%; height: auto; background: var(--night); }
.edition-opening figcaption,
.dispatch-visual figcaption {
  margin-top: .7rem;
  color: var(--ink-soft);
  font-size: .61rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.edition-opening h2,
.dispatch-feature h2,
.dispatch-cover h1 {
  margin: 1rem 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.8vw, 9.4rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}
.edition-opening .edition-copy > p:not(.edition-kicker) { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.65; }
.dispatch-feature {
  height: 162svh;
  color: var(--night-ink);
  background: #0b1519;
}
.dispatch-feature__stage {
  display: grid;
  grid-template-columns: minmax(19rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding: clamp(7rem, 13vh, 11rem) var(--gutter);
  color: var(--night-ink);
  background: linear-gradient(125deg, #0b1519, #101b1e);
}
.dispatch-feature__stage > :first-child {
  opacity: 1;
  transform: translate3d(calc(var(--scene-balance) * -2rem), 0, 0);
  will-change: transform, opacity;
}
.dispatch-feature .dispatch-visual {
  opacity: calc(.78 + (var(--scene-focus) * .22));
  transform: translate3d(calc(var(--scene-balance) * 2.2rem), calc(var(--scene-balance) * -1rem), 0) scale(calc(.985 + (var(--scene-focus) * .025)));
  will-change: transform, opacity;
}
.dispatch-feature h2 { max-width: 9ch; }
.dispatch-feature p:not(.dispatch-kicker) { max-width: 35rem; color: var(--night-soft); line-height: 1.65; }
.dispatch-feature img { width: 100%; height: auto; }
.dispatch-feature .editorial-link { color: var(--night-ink); }
.home-manifesto {
  padding: clamp(8rem, 16vh, 14rem) var(--gutter);
  color: var(--ink);
  background: var(--mineral);
}
.home-manifesto p {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 7.4vw, 9rem);
  line-height: .84;
  letter-spacing: -.065em;
  transform: translate3d(calc(var(--scene-balance) * -3.2rem), 0, 0);
  will-change: transform;
}

/* Miami remains an editorial dispatch inside the same publication spine. */
.dispatch-cover {
  height: 168svh;
  color: var(--night-ink);
  background: #0b1317;
}
.dispatch-cover__stage {
  display: grid;
  grid-template-columns: minmax(18rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding: calc(var(--header-h) + 4rem) var(--gutter) 5rem;
  color: var(--night-ink);
  background: linear-gradient(126deg, #0b1317, #10191d);
}
.dispatch-cover__copy {
  opacity: calc(1 - (var(--scene-exit) * .68));
  transform: translate3d(calc(var(--scene-balance) * -2.2rem), 0, 0);
  will-change: transform, opacity;
}
.dispatch-cover h1 { max-width: 8ch; }
.dispatch-cover__copy > p:not(.dispatch-kicker) { max-width: 34rem; color: var(--night-soft); line-height: 1.65; }
.dispatch-cover figure {
  margin: 0;
  opacity: calc(.72 + (var(--scene-focus) * .28) - (var(--scene-exit) * .48));
  transform: translate3d(calc(var(--scene-balance) * 2.3rem), calc(var(--scene-balance) * -1.1rem), 0) rotate(calc(var(--scene-balance) * .45deg)) scale(calc(.98 + (var(--scene-focus) * .03)));
  will-change: transform, opacity;
}
.dispatch-cover figure img { width: 100%; height: auto; }
.dispatch-cover figcaption { margin-top: .7rem; color: var(--night-soft); font-size: .61rem; letter-spacing: .1em; text-transform: uppercase; }
.dispatch-body {
  display: grid;
  grid-template-columns: minmax(13rem, .35fr) minmax(0, .65fr);
  gap: clamp(3rem, 10vw, 13rem);
  padding: clamp(8rem, 15vh, 13rem) var(--gutter);
  color: var(--ink);
  background: var(--mineral-bright);
}
.dispatch-body__aside { font-size: .62rem; font-weight: 700; letter-spacing: .13em; line-height: 1.6; text-transform: uppercase; }
.dispatch-body__aside {
  transform: translate3d(0, calc(var(--scene-balance) * -1.4rem), 0);
  will-change: transform;
}
.dispatch-body__copy {
  max-width: 48rem;
  transform: translate3d(0, calc(var(--scene-balance) * 1.5rem), 0);
  will-change: transform;
}
.dispatch-body__copy h2 {
  margin: 0 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.7vw, 8rem);
  font-weight: 400;
  line-height: .84;
  letter-spacing: -.06em;
}
.dispatch-body__copy p { color: var(--ink-soft); font-size: clamp(1rem, 1.2vw, 1.2rem); line-height: 1.75; }

/* Miami / a place-led dispatch with its own rhythm and the same publication spine. */
.miami-cover {
  position: relative;
  height: 248svh;
  color: var(--night-ink);
  background: #081115;
}
.miami-cover__stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  gap: 1.5rem var(--gutter);
  align-items: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  color: var(--night-ink);
  background: linear-gradient(132deg, #020706, #0b1212);
}
.miami-lattice {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .42;
  pointer-events: none;
}
.miami-lattice path {
  fill: none;
  stroke: rgba(186, 234, 235, .22);
  stroke-width: 1;
  stroke-dasharray: 11 24;
  stroke-dashoffset: calc(150 - (var(--scene-p) * 150));
  vector-effect: non-scaling-stroke;
}
.miami-lattice path:nth-child(even) { stroke: rgba(171, 121, 91, .18); stroke-dasharray: 4 34; stroke-dashoffset: calc(-90 + (var(--scene-p) * 180)); }
.miami-cover__title {
  z-index: 3;
  grid-column: 1 / 7;
  grid-row: 1;
  align-self: center;
  transform: translate3d(calc(var(--scene-balance) * -2.1rem), calc((var(--scene-p) - .5) * -1.3rem), 0);
  will-change: transform;
}
.miami-cover__title h1 {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(5.1rem, 10.6vw, 13rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.075em;
}
.miami-cover__title h1 span { display: block; }
.miami-cover__film {
  z-index: 2;
  grid-column: 6 / 13;
  grid-row: 1;
  align-self: center;
  width: 100%;
  margin: 0;
  transform: translate3d(calc(var(--scene-balance) * 1.2vw), calc(var(--scene-balance) * -1.2rem), 0) scale(calc(.91 + (var(--scene-focus) * .09)));
  transform-origin: center;
  will-change: transform;
}
.miami-cover__film .scroll-film__viewport {
  background: #000;
}
.miami-film-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: .75rem;
  color: #718083;
  border-top: 1px solid rgba(217, 242, 239, .12);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.miami-film-index span { opacity: .38; }
.miami-film-index span.is-active { color: var(--spectral); opacity: 1; }
.miami-cover__film figcaption {
  margin-top: .65rem;
  color: var(--night-soft);
  font-size: .57rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.miami-cover__deck {
  z-index: 4;
  grid-column: 1 / 5;
  grid-row: 2;
  align-self: end;
  max-width: 32rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline-dark);
  transform: translate3d(calc(var(--scene-balance) * -1.3rem), 0, 0);
  will-change: transform;
}
.miami-cover__deck > p { margin: 0; color: var(--night-soft); line-height: 1.62; }
.miami-cover__deck .article-meta { color: #c6d0d0; }
.miami-note {
  min-height: 118svh;
  display: grid;
  grid-template-columns: minmax(12rem, .28fr) minmax(0, .72fr);
  gap: clamp(3rem, 9vw, 12rem);
  align-items: start;
  padding: calc(var(--header-h) + clamp(4rem, 9vh, 8rem)) var(--gutter) clamp(8rem, 16vh, 14rem);
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.94%, rgba(16, 23, 25, .07) 50%, transparent 50.06%),
    var(--mineral-bright);
}
.miami-note__folio {
  padding-top: .35rem;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.65;
  text-transform: uppercase;
  transform: translate3d(0, calc(var(--scene-balance) * -1.6rem), 0);
}
.miami-note__copy { transform: translate3d(0, calc(var(--scene-balance) * 1.8rem), 0); }
.miami-note__copy h2,
.miami-filmstrip h2 {
  max-width: 10ch;
  margin: 1.2rem 0 2.2rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9.8rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}
.miami-note__lead {
  max-width: 30ch;
  margin: 0 0 4rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 3.4rem);
  line-height: 1.16;
}
.miami-note__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem);
  max-width: 58rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline-light);
}
.miami-note__columns p { margin: 0; color: var(--ink-soft); line-height: 1.72; }
.miami-filmstrip {
  min-height: 135svh;
  padding: clamp(8rem, 15vh, 13rem) var(--gutter);
  color: var(--ink);
  background: #e4e5e1;
}
.miami-filmstrip > header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, .5fr);
  column-gap: clamp(3rem, 8vw, 10rem);
  align-items: end;
  margin-bottom: clamp(5rem, 12vh, 10rem);
}
.miami-filmstrip > header .dispatch-kicker { grid-column: 1 / -1; }
.miami-filmstrip > header h2 { margin-bottom: 0; }
.miami-filmstrip > header > p:last-child { margin: 0; color: var(--ink-soft); line-height: 1.7; }
.miami-filmstrip__grid {
  display: grid;
  grid-template-columns: 1.05fr .82fr 1.05fr;
  gap: clamp(1rem, 2.8vw, 3.3rem);
  align-items: start;
}
.miami-filmstrip figure { margin: 0; will-change: transform; }
.miami-filmstrip figure:nth-child(1) { transform: translate3d(0, calc(var(--scene-balance) * -2.2rem), 0); }
.miami-filmstrip figure:nth-child(2) { margin-top: clamp(4rem, 12vh, 9rem); transform: translate3d(0, calc(var(--scene-balance) * 1.4rem), 0); }
.miami-filmstrip figure:nth-child(3) { transform: translate3d(0, calc(var(--scene-balance) * -1.2rem), 0); }
.miami-filmstrip img { width: 100%; height: auto; background: var(--night); }
.miami-filmstrip figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  margin-top: .8rem;
  padding-top: .7rem;
  border-top: 1px solid var(--hairline-light);
  color: var(--ink-soft);
  font-size: .59rem;
  letter-spacing: .1em;
  line-height: 1.5;
  text-transform: uppercase;
}
.miami-filmstrip figcaption span { color: var(--ink); }
.miami-boundary {
  min-height: 112svh;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .45fr);
  gap: clamp(3rem, 9vw, 12rem);
  align-items: end;
  padding: calc(var(--header-h) + clamp(4rem, 9vh, 8rem)) var(--gutter) clamp(6rem, 12vh, 10rem);
  color: var(--night-ink);
  background: linear-gradient(132deg, #071014, #0b1718);
}
.miami-boundary > .dispatch-kicker { grid-column: 1 / -1; align-self: start; color: var(--spectral); }
.miami-boundary blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 9.4vw, 11.5rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.072em;
  transform: translate3d(calc(var(--scene-balance) * -2.4rem), 0, 0);
}
.miami-boundary blockquote span { display: block; }
.miami-boundary > div { padding-top: 1rem; border-top: 1px solid var(--hairline-dark); transform: translate3d(0, calc(var(--scene-balance) * 1.4rem), 0); }
.miami-boundary > div p { margin: 0; color: var(--night-soft); line-height: 1.7; }
.miami-boundary .editorial-link { color: var(--night-ink); }

@media (max-width: 900px) {
  .edition-masthead { grid-template-columns: 1fr auto; }
  .masthead-nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: flex-start; justify-content: flex-end; }
  .edition-menu { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .edition-menu figure { display: none; }
  .edition-menu nav span { font-size: clamp(2.6rem, 12vw, 5rem); }

  .fashion-cover {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
    padding-top: calc(var(--header-h) + 3rem);
  }
  .cover-folio,
  .cover-title,
  .cover-object,
  .cover-deck { grid-column: 1; grid-row: auto; }
  .cover-title { padding: 1rem 0 0; }
  .fashion-cover .cover-folio { transform: translate3d(calc(var(--scene-balance) * -.3rem), 0, 0); }
  .cover-title { transform: translate3d(calc(var(--scene-balance) * -.6rem), 0, 0); }
  .cover-object { transform: translate3d(calc(var(--scene-balance) * .35rem), calc(var(--scene-balance) * -.65rem), 0) rotate(calc(var(--scene-balance) * .35deg)) scale(calc(.99 + (var(--scene-focus) * .015))); }
  .cover-deck { transform: translate3d(0, calc(var(--scene-balance) * .55rem), 0); }
  .cover-title h1 { font-size: clamp(4.1rem, 18vw, 8rem); }
  .cover-title h1 span { white-space: normal; }
  .cover-object { width: 100%; }
  .cover-deck { max-width: 40rem; }

  .living-frame { width: 92vw; height: 34svh; }
  .living-frame--film { width: 94vw; }
  .story-step {
    min-height: 105svh;
    align-items: flex-end;
    justify-content: stretch;
    padding: 53svh var(--gutter) 5rem;
  }
  .story-step--center { text-align: left; }
  .story-copy,
  .story-step--center .story-copy {
    width: 100%;
    max-width: 44rem;
    padding: 1.5rem 0;
    background: var(--night);
  }
  .story-step--left .story-copy,
  .story-step--right .story-copy { padding-inline: 0; }
  .story-copy h2 { font-size: clamp(3rem, 12vw, 5.7rem); }
  .has-js:not(.motion-reduced) .living-story.is-stage-active .story-copy.is-active,
  .has-js:not(.motion-reduced) .living-story.is-stage-active .story-step--left .story-copy.is-active,
  .has-js:not(.motion-reduced) .living-story.is-stage-active .story-step--right .story-copy.is-active,
  .has-js:not(.motion-reduced) .living-story.is-stage-active .story-step--center .story-copy.is-active {
    top: auto;
    right: var(--gutter);
    bottom: 2rem;
    left: var(--gutter);
    width: auto;
    max-width: none;
    transform: none;
  }

  .resolution-notes { width: 100%; grid-template-columns: 1fr; margin-left: 0; }
  .newsletter-grid { grid-template-columns: 1fr; }
  .newsletter-grid h2 { font-size: clamp(3.8rem, 16vw, 7rem); }
  .site-footer { align-items: flex-start; flex-direction: column; }

  .digest-hero { height: 158svh; }
  .digest-hero__stage { padding-top: calc(var(--header-h) + 2.5rem); }
  .digest-hero__media { inset: 34svh 0 14.5rem; }
  .digest-hero__media { transform: translate3d(calc(var(--scene-balance) * .25rem), calc(var(--scene-balance) * -.35rem), 0) scale(calc(.99 + (var(--scene-focus) * .012))); }
  .digest-hero__title {
    width: 100%;
    padding-top: 2rem;
    transform: translate3d(calc(var(--scene-balance) * -.65rem), 0, 0);
  }
  .digest-hero__title h1 { font-size: clamp(4rem, 17vw, 6.8rem); }
  .digest-hero__deck { right: var(--gutter); bottom: 3rem; left: var(--gutter); width: auto; }
  .edition-opening,
  .dispatch-body { grid-template-columns: 1fr; }
  .dispatch-feature { height: 154svh; }
  .dispatch-cover { height: 158svh; }
  .dispatch-feature__stage,
  .dispatch-cover__stage {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vh, 3rem);
  }
  .edition-opening figure { order: 1; }
  .edition-opening .edition-copy { order: 2; }
  .dispatch-feature .dispatch-visual { order: 1; }
  .dispatch-feature__stage > div:first-child { order: 2; }
  .dispatch-feature__stage > :first-child,
  .dispatch-cover__copy { transform: translate3d(calc(var(--scene-balance) * -.6rem), 0, 0); }
  .dispatch-feature .dispatch-visual,
  .dispatch-cover figure { transform: translate3d(calc(var(--scene-balance) * .4rem), calc(var(--scene-balance) * -.55rem), 0) scale(calc(.99 + (var(--scene-focus) * .015))); }
  .home-manifesto p { transform: translate3d(calc(var(--scene-balance) * -.55rem), 0, 0); }
  .editorial-resolution blockquote { transform: translate3d(calc(var(--scene-balance) * -.6rem), 0, 0); }
  .editorial-resolution .resolution-notes { transform: translate3d(calc(var(--scene-balance) * .35rem), 0, 0); }
  .newsletter-section .newsletter-kicker { transform: translate3d(calc(var(--scene-balance) * -.3rem), 0, 0); }
  .dispatch-feature h2,
  .dispatch-cover h1 { font-size: clamp(3.9rem, 14vw, 7rem); }

  .miami-cover { height: 226svh; }
  .miami-cover__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr auto;
    gap: clamp(.8rem, 2.2vh, 1.35rem);
    align-content: stretch;
    padding: calc(var(--header-h) + 1.55rem) var(--gutter) 1.45rem;
  }
  .miami-cover__title {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    transform: translate3d(calc(var(--scene-balance) * -.55rem), 0, 0);
  }
  .miami-cover__title h1 { margin-top: .7rem; font-size: clamp(3.7rem, 17vw, 7rem); }
  .miami-cover__film {
    grid-column: 1;
    grid-row: 2;
    width: calc(100% + (2 * var(--gutter)));
    margin-inline: calc(-1 * var(--gutter));
    transform: translate3d(calc(var(--scene-balance) * .45rem), calc(var(--scene-balance) * -.3rem), 0) scale(calc(.985 + (var(--scene-focus) * .015)));
  }
  .miami-film-index { gap: .35rem; padding-inline: var(--gutter); font-size: .49rem; }
  .miami-cover__film figcaption { padding-inline: var(--gutter); }
  .miami-cover__deck {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    transform: translate3d(calc(var(--scene-balance) * -.4rem), 0, 0);
  }
  .miami-note { grid-template-columns: 1fr; min-height: auto; }
  .miami-note__copy { transform: translate3d(0, calc(var(--scene-balance) * .6rem), 0); }
  .miami-note__columns { grid-template-columns: 1fr; }
  .miami-filmstrip > header { grid-template-columns: 1fr; }
  .miami-filmstrip > header .dispatch-kicker { grid-column: 1; }
  .miami-filmstrip > header > p:last-child { margin-top: 2rem; }
  .miami-filmstrip__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .miami-filmstrip figure:nth-child(2) { margin-top: 0; }
  .miami-filmstrip figure:nth-child(1),
  .miami-filmstrip figure:nth-child(2),
  .miami-filmstrip figure:nth-child(3) { transform: translate3d(0, calc(var(--scene-balance) * .55rem), 0); }
  .miami-boundary { grid-template-columns: 1fr; min-height: 100svh; }
  .miami-boundary > .dispatch-kicker { grid-column: 1; }
  .miami-boundary blockquote { transform: translate3d(calc(var(--scene-balance) * -.55rem), 0, 0); }
}

@media (orientation: landscape) and (max-height: 520px) {
  .digest-hero { height: 150svh; }
  .digest-hero__stage {
    padding: calc(var(--header-h) + 1.2rem) var(--gutter) 1.5rem;
  }
  .digest-hero__title {
    width: 40vw;
    padding-top: 0;
    transform: translate3d(calc(var(--scene-balance) * -.8rem), 0, 0);
  }
  .digest-hero__title p { margin-bottom: 1rem; }
  .digest-hero__title h1 { font-size: clamp(3.5rem, 7.4vw, 5rem); }
  .digest-hero__media {
    inset: calc(var(--header-h) + .55rem) .75rem 2.7rem 48vw;
    transform: translate3d(calc(var(--scene-balance) * .35rem), calc(var(--scene-balance) * -.25rem), 0) scale(calc(.99 + (var(--scene-focus) * .012)));
  }
  .digest-hero__media figcaption {
    right: auto;
    bottom: -1.35rem;
    left: 0;
    max-width: 34vw;
    line-height: 1.35;
  }
  .digest-hero__deck {
    right: auto;
    bottom: 1.15rem;
    left: var(--gutter);
    width: 42vw;
    font-size: clamp(.72rem, 1.65vw, .88rem);
  }
}

/* Revision 21: give the story index an intentional mineral-dark image field. */
.digest-archive .archive-list {
  --archive-accent: #a7e5e7;
  --archive-soft: #bdc9c9;
  color: var(--night-ink);
  background-color: #071014;
  background-image:
    radial-gradient(circle at 88% 12%, rgba(84, 165, 170, .19), transparent 32rem),
    radial-gradient(circle at 8% 74%, rgba(84, 165, 170, .1), transparent 28rem);
}

.digest-archive .archive-list article {
  padding-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid rgba(167, 229, 231, .2);
}

.digest-archive .archive-list article:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.digest-archive .archive-list article > a:first-child {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(167, 229, 231, .22);
  background: #0d1a1e;
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, .28);
}

.digest-archive .archive-list article img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: transparent;
  filter: saturate(1.12) contrast(1.035);
  transition: transform 700ms var(--motion-fluid), filter 220ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .digest-archive .archive-list article > a:first-child:hover img,
  .digest-archive .archive-list article > a:first-child:focus-visible img {
    transform: scale(1.012);
    filter: saturate(1.2) contrast(1.045);
  }
}

.digest-archive .archive-list article > div > p:first-child,
.digest-archive .archive-list .editorial-link {
  color: var(--archive-accent);
}

.digest-archive .archive-list article > div > p:not(:first-child) {
  color: var(--archive-soft);
}

@media (max-width: 700px) {
  .digest-archive .archive-list article {
    padding-top: clamp(2.5rem, 10vw, 4rem);
  }
}

/* Revision 16: two new cinematic headers and public-policy surfaces. */
.digest-film-hero .brand-hero__media .scroll-film__viewport { background: #020406; }
.digest-film-hero .brand-hero__media .scroll-film__poster > img,
.digest-film-hero .brand-hero__media video {
  object-fit: cover;
  object-position: center;
}
.digest-film-hero .brand-hero__media .scroll-film__viewport::after {
  background:
    linear-gradient(90deg, rgba(2, 4, 6, .55), rgba(2, 4, 6, .08) 58%, rgba(2, 4, 6, .18)),
    linear-gradient(180deg, rgba(2, 4, 6, .34), transparent 34%, transparent 68%, rgba(2, 4, 6, .6));
}
.digest-film-hero .brand-hero__title h1 {
  max-width: 9ch;
  font-size: clamp(6rem, 15vw, 18rem);
  line-height: .76;
}
.digest-film-hero .brand-hero__deck {
  right: auto;
  left: var(--gutter);
  width: min(31rem, calc(100% - (2 * var(--gutter))));
  padding: 1rem;
  background: rgba(2, 4, 6, .44);
  border: 1px solid rgba(245, 241, 232, .16);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  backdrop-filter: blur(10px) saturate(110%);
}
.digest-film-hero .brand-hero__deck p { margin-top: 0; }

.aetheranium-film-hero .brand-hero__media .scroll-film__viewport { background: #d2d0c8; }
.aetheranium-film-hero .brand-hero__media .scroll-film__poster > img,
.aetheranium-film-hero .brand-hero__media video {
  object-fit: cover;
  object-position: center;
}
.aetheranium-film-hero .brand-hero__media .scroll-film__viewport::after {
  background:
    linear-gradient(90deg, rgba(7, 16, 20, .58), rgba(7, 16, 20, .08) 58%, rgba(7, 16, 20, .1)),
    linear-gradient(180deg, rgba(7, 16, 20, .35), transparent 34%, transparent 64%, rgba(7, 16, 20, .48));
}
.aetheranium-film-hero .brand-hero__title h1 {
  max-width: 100%;
  font-size: clamp(5rem, 11vw, 12.5rem);
  line-height: .78;
}
.aetheranium-film-hero .brand-hero__title,
.aetheranium-film-hero .brand-hero__deck { text-shadow: 0 1px 1rem rgba(2, 4, 6, .42); }
.aetheranium-film-hero .brand-hero__deck {
  padding: 1rem;
  background: rgba(7, 16, 20, .48);
  border: 1px solid rgba(245, 241, 232, .2);
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  backdrop-filter: blur(10px) saturate(110%);
}
.aetheranium-film-hero .brand-hero__deck p { margin-top: 0; }

.site-footer__links {
  display: grid;
  gap: .15rem;
  justify-items: end;
}
.launch-contact .site-footer__links nav,
.policy-footer .site-footer__links nav { justify-content: flex-end; }
.site-footer__legal { opacity: .82; }
.newsletter-privacy-note {
  max-width: 34rem !important;
  margin-top: 1rem !important;
  color: var(--night-soft) !important;
  font-size: .72rem;
  line-height: 1.55 !important;
}
.newsletter-privacy-note a { color: inherit; }

.policy-document { background: var(--paper); }
.policy-hero {
  min-height: 72svh;
  display: grid;
  align-content: end;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem var(--gutter);
  padding: calc(var(--header-h) + clamp(4rem, 10vh, 8rem)) var(--gutter) clamp(5rem, 10vh, 8rem);
  border-bottom: 1px solid var(--hairline-light);
  background:
    radial-gradient(circle at 82% 38%, rgba(80, 188, 199, .13), transparent 24%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.policy-hero .edition-kicker { grid-column: 1 / -1; }
.policy-hero h1 {
  grid-column: 1 / 11;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.6rem, 10vw, 12rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.07em;
}
.policy-hero > p:not(.edition-kicker) {
  grid-column: 1 / 7;
  max-width: 42rem;
  margin: 2rem 0 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}
.policy-body {
  width: min(calc(100% - (2 * var(--gutter))), 78rem);
  margin: 0 auto;
  padding: clamp(6rem, 10vw, 11rem) 0;
}
.policy-summary {
  max-width: 54rem;
  margin: 0 0 clamp(5rem, 9vw, 9rem);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}
.policy-section {
  display: grid;
  grid-template-columns: minmax(11rem, .36fr) minmax(0, .64fr);
  gap: 2rem clamp(2rem, 7vw, 8rem);
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-top: 1px solid var(--hairline-light);
}
.policy-section:last-child { border-bottom: 1px solid var(--hairline-light); }
.policy-section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}
.policy-copy { max-width: 47rem; }
.policy-copy > :first-child { margin-top: 0; }
.policy-copy > :last-child { margin-bottom: 0; }
.policy-copy p,
.policy-copy li { line-height: 1.75; }
.policy-copy li + li { margin-top: .65rem; }
.policy-copy a { text-underline-offset: .18em; }
.policy-copy strong { font-weight: 750; }
.policy-effective {
  margin-top: 2rem;
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.policy-footer {
  margin-top: 0;
  padding: clamp(3rem, 6vw, 6rem) var(--gutter);
  color: var(--night-ink);
  background: var(--night);
  border-color: var(--hairline-dark);
}
.policy-footer > div:first-child { display: grid; gap: .3rem; }
.policy-footer strong { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2.4rem); font-weight: 400; }
.policy-footer small,
.policy-footer nav a,
.policy-footer p { color: var(--night-soft); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.policy-footer nav { display: flex; flex-wrap: wrap; gap: .25rem 1.4rem; }
.policy-footer nav a { min-height: 2.75rem; display: inline-flex; align-items: center; text-decoration: none; }

@media (max-width: 900px) {
  .digest-film-hero .brand-hero__title h1 { font-size: clamp(5rem, 22vw, 9rem); }
  .digest-film-hero .brand-hero__deck,
  .aetheranium-film-hero .brand-hero__deck { right: auto; left: var(--gutter); }
  .aetheranium-film-hero .brand-hero__title h1 { font-size: clamp(3.3rem, 15vw, 7rem); }
  .site-footer__links { justify-items: start; }
  .launch-contact .site-footer__links nav,
  .policy-footer .site-footer__links nav { justify-content: flex-start; }
  .policy-hero { min-height: 64svh; }
  .policy-hero h1,
  .policy-hero > p:not(.edition-kicker) { grid-column: 1 / -1; }
  .policy-section { grid-template-columns: 1fr; }
  .policy-footer { align-items: flex-start; flex-direction: column; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .digest-film-hero .brand-hero__title h1 { font-size: clamp(3.6rem, 10vw, 5.8rem); }
  .aetheranium-film-hero .brand-hero__title h1 { font-size: clamp(3rem, 8.5vw, 5rem); }
  .digest-film-hero .brand-hero__deck,
  .aetheranium-film-hero .brand-hero__deck { bottom: 2rem; width: min(23rem, 44vw); padding: .65rem .75rem; }
  .digest-film-hero .brand-hero__deck p,
  .aetheranium-film-hero .brand-hero__deck p { font-size: .74rem; line-height: 1.35; }
}

/* Launch system: Kreateur's Digest is the front door; brand and article routes stay distinct. */
.digest-launch,
.digest-archive,
.brand-profile-page,
.brand-destination,
.about-launch { background: var(--paper); }

.digest-launch .masthead-brand,
.digest-archive .masthead-brand,
.brand-profile-page .masthead-brand,
.brand-destination .masthead-brand,
.about-launch .masthead-brand { width: clamp(7.6rem, 10vw, 10.5rem); }

.digest-launch .masthead-context span,
.digest-archive .masthead-context span,
.brand-profile-page .masthead-context span,
.brand-destination .masthead-context span,
.about-launch .masthead-context span { margin-top: 0; }

.launch-intro,
.editorial-promise,
.brand-statement,
.about-ownership {
  min-height: 94svh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 6rem) var(--gutter);
  align-content: center;
  padding: clamp(8rem, 15vw, 15rem) var(--gutter);
  background: var(--paper);
}
.launch-intro > .edition-kicker,
.editorial-promise > .edition-kicker,
.brand-statement > .edition-kicker,
.about-ownership > .edition-kicker { grid-column: 1 / -1; }
.launch-intro > h2,
.editorial-promise > h2,
.brand-statement > h2,
.about-ownership > h2 {
  grid-column: 1 / 8;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 9.2vw, 11.5rem);
  font-weight: 400;
  line-height: .79;
  letter-spacing: -.07em;
}
.launch-intro__copy,
.editorial-promise > div,
.brand-statement > div,
.about-ownership > div {
  grid-column: 9 / -1;
  align-self: end;
  max-width: 35rem;
}
.launch-intro__copy > p,
.editorial-promise > div > p,
.brand-statement > div > p,
.about-ownership > div > p { font-size: clamp(1rem, 1.35vw, 1.22rem); line-height: 1.65; }

.launch-stories { padding: clamp(7rem, 12vw, 13rem) var(--gutter); background: var(--paper-warm); }
.launch-section-heading {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem var(--gutter);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.launch-section-heading .edition-kicker { grid-column: 1 / -1; }
.launch-section-heading h2 {
  grid-column: 1 / 8;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 9.5rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}
.launch-section-heading > p:last-child { grid-column: 9 / -1; max-width: 31rem; margin: 0; line-height: 1.55; }
.launch-story-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(5rem, 9vw, 11rem) clamp(1.5rem, 4vw, 5rem); }
.launch-story { min-width: 0; }
.launch-story--lead { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr); gap: clamp(2rem, 5vw, 6rem); align-items: end; }
.launch-story__image { display: block; overflow: hidden; }
.launch-story__image img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #e2e3de; transition: transform 800ms var(--motion-fluid), filter 400ms ease; }
.launch-story:not(.launch-story--lead) .launch-story__image img { aspect-ratio: 4 / 3; }
.launch-story__image:hover img,
.launch-story__image:focus-visible img { transform: scale(1.018); filter: saturate(1.04); }
.launch-story__eyebrow,
.launch-disclosure {
  margin: 1.25rem 0 .8rem;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.launch-disclosure { width: fit-content; margin-top: 1.2rem; padding: .45rem .6rem; border: 1px solid var(--hairline-light); color: var(--ink-soft); }
.launch-story h3 { margin: 0 0 1rem; font-family: var(--font-display); font-size: clamp(2.2rem, 4.4vw, 5.4rem); font-weight: 400; line-height: .94; letter-spacing: -.055em; }
.launch-story:not(.launch-story--lead) h3 { font-size: clamp(2rem, 3.2vw, 4rem); }
.launch-story h3 a { text-decoration: none; }
.launch-story__copy > p:not(.launch-story__eyebrow, .launch-disclosure) { max-width: 37rem; line-height: 1.6; }

.brand-directory,
.brand-links,
.about-principles {
  padding: clamp(8rem, 14vw, 15rem) var(--gutter);
  color: var(--night-ink);
  background: var(--night);
}
.brand-directory > header,
.brand-links > header,
.about-principles > header { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.5rem var(--gutter); margin-bottom: clamp(4rem, 8vw, 8rem); }
.brand-directory header .edition-kicker,
.brand-links header .edition-kicker,
.about-principles header .edition-kicker { grid-column: 1 / -1; color: var(--spectral); }
.brand-directory h2,
.brand-links h2,
.about-principles h2 {
  grid-column: 1 / 10;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.4vw, 10rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}
.brand-directory__list > a,
.brand-links > div > a {
  display: grid;
  grid-template-columns: 3.5rem minmax(12rem, .75fr) 1fr auto;
  gap: clamp(1rem, 3vw, 4rem);
  align-items: baseline;
  min-height: 5.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--hairline-dark);
  text-decoration: none;
}
.brand-directory__list > a:last-child,
.brand-links > div > a:last-child { border-bottom: 1px solid var(--hairline-dark); }
.brand-directory__list span { color: var(--spectral); font-size: .58rem; letter-spacing: .12em; }
.brand-directory__list strong,
.brand-links strong { font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 4.5rem); font-weight: 400; line-height: .9; }
.brand-directory__list small,
.brand-links small { color: var(--night-soft); font-size: .72rem; line-height: 1.45; letter-spacing: .08em; text-transform: uppercase; }
.brand-directory__list i,
.brand-links i { font-style: normal; transition: transform 260ms ease; }
.brand-directory__list > a:hover i,
.brand-directory__list > a:focus-visible i,
.brand-links a:hover i,
.brand-links a:focus-visible i { transform: translate(.25rem, -.25rem); }
.brand-links > div > a { grid-template-columns: minmax(13rem, .7fr) 1fr auto; }

.editorial-promise { background: var(--paper-warm); }
.launch-contact__button,
.profile-actions a,
.brand-hero__deck a,
.brand-static-hero > div > a {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: .85rem 1rem;
  border: 1px solid currentColor;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease;
}
.launch-contact__button:hover,
.launch-contact__button:focus-visible { color: var(--night); background: var(--night-ink); }
.launch-contact .site-footer { align-items: end; }
.launch-contact .site-footer > div { display: grid; gap: .3rem; }
.launch-contact .site-footer strong { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2.4rem); font-weight: 400; }
.launch-contact .site-footer small { color: var(--night-soft); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; }
.launch-contact .site-footer nav { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; }
.launch-contact .site-footer nav a { min-height: 2.75rem; display: inline-flex; align-items: center; color: var(--night-soft); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; }

/* Story archive. */
.archive-cover,
.profile-cover,
.about-cover {
  min-height: 106svh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem var(--gutter);
  padding: calc(var(--header-h) + clamp(2rem, 5vh, 5rem)) var(--gutter) clamp(4rem, 8vh, 7rem);
  background: var(--paper);
}
.archive-cover > .edition-kicker,
.profile-cover > .edition-kicker,
.about-cover > .edition-kicker { grid-column: 1 / -1; }
.archive-cover h1,
.profile-cover h1,
.about-cover h1 {
  z-index: 2;
  grid-column: 1 / 9;
  align-self: center;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10.4vw, 13rem);
  font-weight: 400;
  line-height: .76;
  letter-spacing: -.075em;
}
.archive-cover > p:not(.edition-kicker) { z-index: 2; grid-column: 1 / 5; align-self: end; max-width: 32rem; font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.6; }
.archive-cover figure,
.profile-cover figure,
.about-cover figure { grid-column: 7 / -1; grid-row: 2 / 4; align-self: center; margin: 0; }
.archive-cover figure img,
.profile-cover figure img,
.about-cover figure img { width: 100%; height: auto; object-fit: contain; }
.archive-cover figcaption,
.profile-cover figcaption,
.about-cover figcaption,
.brand-static-hero figcaption,
.brand-gallery figcaption,
.brand-editorial-link figcaption,
.profile-body figcaption,
.brand-hero figcaption {
  margin-top: .7rem;
  color: var(--ink-soft);
  font-size: .58rem;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.archive-list { padding: clamp(7rem, 12vw, 13rem) var(--gutter); background: var(--paper-warm); }
.archive-list > header { margin-bottom: clamp(4rem, 8vw, 8rem); }
.archive-list > header h2 { margin: 1rem 0 0; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 9rem); font-weight: 400; line-height: .8; letter-spacing: -.07em; }
.archive-list article { display: grid; grid-template-columns: minmax(0, .9fr) minmax(18rem, 1.1fr); gap: clamp(2rem, 6vw, 7rem); align-items: center; margin-bottom: clamp(6rem, 12vw, 13rem); }
.archive-list article:last-child { margin-bottom: 0; }
.archive-list article:nth-of-type(even) > a:first-child { order: 2; }
.archive-list article img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #e2e3de; }
.archive-list article > div > p:first-child { font-size: .58rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.archive-list article h3 { margin: 1rem 0; font-family: var(--font-display); font-size: clamp(2.8rem, 5.4vw, 6.5rem); font-weight: 400; line-height: .88; letter-spacing: -.06em; }
.archive-list article h3 a { text-decoration: none; }
.archive-list article > div > p:not(:first-child) { max-width: 38rem; line-height: 1.6; }

/* Brand profile articles. */
.profile-cover { background: var(--paper); }
.profile-cover--dark { color: var(--night-ink); background: var(--night); }
.profile-cover h1 { grid-column: 1 / 9; font-size: clamp(4.4rem, 8.8vw, 10.8rem); }
.profile-cover__dek { z-index: 2; grid-column: 1 / 6; align-self: end; max-width: 42rem; }
.profile-cover__dek > p { margin: 0; font-family: var(--font-display); font-size: clamp(1.3rem, 1.8vw, 1.9rem); line-height: 1.35; }
.profile-cover--dark figcaption,
.profile-cover--dark .article-meta { color: var(--night-soft); }
.profile-disclosure {
  display: grid;
  grid-template-columns: minmax(8rem, .25fr) 1fr;
  gap: 1rem 3rem;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  background: var(--paper-warm);
}
.profile-disclosure strong { font-size: .61rem; letter-spacing: .14em; text-transform: uppercase; }
.profile-disclosure p { max-width: 52rem; margin: 0; line-height: 1.55; }
.profile-body { width: min(100% - (2 * var(--gutter)), 72rem); margin: 0 auto; padding: clamp(7rem, 12vw, 12rem) 0; }
.profile-body > p,
.profile-body > h2 { max-width: 46rem; margin-inline: auto; }
.profile-body > p { font-size: clamp(1.02rem, 1.25vw, 1.18rem); line-height: 1.85; }
.profile-body .profile-standfirst { max-width: 54rem; margin-bottom: clamp(4rem, 8vw, 8rem); font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 4.1rem); line-height: 1.08; letter-spacing: -.035em; }
.profile-body > h2 { margin-top: clamp(4rem, 8vw, 8rem); margin-bottom: 1.5rem; font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 6.5rem); font-weight: 400; line-height: .88; letter-spacing: -.06em; }
.profile-body__wide { margin: clamp(6rem, 11vw, 11rem) 0; }
.profile-body__wide img { width: 100%; height: auto; object-fit: contain; }
.profile-actions { max-width: 46rem; display: flex; flex-wrap: wrap; gap: .8rem; margin: clamp(3rem, 6vw, 6rem) auto 0; }
.profile-actions a:hover,
.profile-actions a:focus-visible { color: var(--night-ink); background: var(--night); }
.profile-next { display: grid; grid-template-columns: 10rem 1fr; gap: 2rem; align-items: baseline; padding: clamp(4rem, 8vw, 8rem) var(--gutter); border-top: 1px solid var(--hairline-light); background: var(--paper-warm); }
.profile-next > span { font-size: .58rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.profile-next a { display: flex; justify-content: space-between; gap: 2rem; font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 6rem); line-height: .9; letter-spacing: -.055em; text-decoration: none; }
.profile-next i { font-style: normal; }

/* Brand destinations. */
.brand-hero { height: 190svh; color: var(--night-ink); background: var(--night); }
.brand-hero__stage { isolation: isolate; }
.brand-hero__media,
.brand-hero__media .scroll-film__viewport { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; }
.brand-hero__media .scroll-film__viewport { aspect-ratio: auto; overflow: hidden; background: #bec9c5; }
.brand-hero__media .scroll-film__viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(7, 16, 20, .34), transparent 30%, transparent 64%, rgba(7, 16, 20, .46));
  pointer-events: none;
}
.brand-hero__media .scroll-film__poster,
.brand-hero__media .scroll-film__poster > img,
.brand-hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.brand-hero__media figcaption { position: absolute; z-index: 5; right: var(--gutter); bottom: 1.2rem; left: var(--gutter); display: flex; justify-content: space-between; color: rgba(245, 241, 232, .8); }
.brand-hero__title { position: absolute; z-index: 4; top: calc(var(--header-h) + clamp(2rem, 5vh, 5rem)); right: var(--gutter); left: var(--gutter); }
.brand-hero__title h1 { margin: 1rem 0 0; font-family: var(--font-display); font-size: clamp(6rem, 14vw, 17rem); font-weight: 400; line-height: .7; letter-spacing: -.08em; }
.brand-hero__deck { position: absolute; z-index: 4; right: var(--gutter); bottom: clamp(4.5rem, 8vh, 7rem); width: min(28rem, calc(100% - (2 * var(--gutter)))); }
.brand-hero__deck p { font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2.3rem); line-height: 1.15; }
.brand-hero__deck a { color: var(--night-ink); }
.brand-hero__deck a:hover,
.brand-hero__deck a:focus-visible { color: var(--night); background: var(--night-ink); }
.has-js:not(.motion-reduced) .brand-hero__stage.is-pointer-enabled { cursor: ew-resize; }

.brand-static-hero {
  min-height: 108svh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 6rem) var(--gutter);
  align-items: center;
  padding: calc(var(--header-h) + clamp(2rem, 5vh, 5rem)) var(--gutter) clamp(4rem, 8vh, 7rem);
  background: var(--paper);
}
.brand-static-hero--dark { color: var(--night-ink); background: var(--night); }
.brand-static-hero > div { z-index: 2; grid-column: 1 / 7; }
.brand-static-hero > div h1 { margin: 1rem 0 2rem; font-family: var(--font-display); font-size: clamp(5.2rem, 10vw, 12rem); font-weight: 400; line-height: .73; letter-spacing: -.075em; }
.brand-static-hero > div > p:not(.edition-kicker) { max-width: 34rem; font-family: var(--font-display); font-size: clamp(1.3rem, 2vw, 2.1rem); line-height: 1.28; }
.brand-static-hero > figure { grid-column: 7 / -1; margin: 0; }
.brand-static-hero > figure img { width: 100%; height: auto; object-fit: contain; }
.brand-static-hero--dark figcaption { color: var(--night-soft); }
.brand-static-hero--dark > div > a { color: var(--night-ink); }
.brand-static-hero > div > a:hover,
.brand-static-hero > div > a:focus-visible { color: var(--night-ink); background: var(--night); }
.brand-static-hero--dark > div > a:hover,
.brand-static-hero--dark > div > a:focus-visible { color: var(--night); background: var(--night-ink); }
.brand-gallery { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(1rem, 3vw, 3rem); padding: 0 var(--gutter) clamp(8rem, 15vw, 15rem); background: var(--paper); }
.brand-gallery figure { margin: 0; }
.brand-gallery figure:nth-child(2) { margin-top: clamp(5rem, 12vw, 12rem); }
.brand-gallery img { width: 100%; height: auto; object-fit: contain; }
.brand-editorial-link,
.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, .95fr);
  gap: clamp(3rem, 8vw, 10rem);
  align-items: center;
  padding: clamp(8rem, 14vw, 15rem) var(--gutter);
  background: var(--paper-warm);
}
.brand-editorial-link > img,
.about-contact figure img { width: 100%; height: auto; object-fit: contain; }
.brand-editorial-link h2,
.about-contact h2 { margin: 1rem 0 1.5rem; font-family: var(--font-display); font-size: clamp(3.5rem, 7vw, 8rem); font-weight: 400; line-height: .82; letter-spacing: -.065em; }
.brand-editorial-link > div > p:not(.edition-kicker),
.about-contact > div > p:not(.edition-kicker) { max-width: 36rem; line-height: 1.65; }

/* About. */
.about-cover h1 { font-size: clamp(4.7rem, 9.2vw, 11.5rem); }
.about-cover > p:not(.edition-kicker) { z-index: 2; grid-column: 1 / 6; align-self: end; max-width: 38rem; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.65; }
.about-principles > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(3rem, 8vw, 10rem); }
.about-principles article { min-height: 18rem; padding: 1.5rem 0 3rem; border-top: 1px solid var(--hairline-dark); }
.about-principles article span { color: var(--spectral); font-size: .58rem; letter-spacing: .13em; }
.about-principles article h3 { margin: 2.5rem 0 1rem; font-family: var(--font-display); font-size: clamp(2rem, 3vw, 3.8rem); font-weight: 400; line-height: .92; }
.about-principles article p { max-width: 35rem; color: var(--night-soft); line-height: 1.65; }
.about-ownership dl { margin: 3rem 0 0; }
.about-ownership dl > div { padding: 1.1rem 0; border-top: 1px solid var(--hairline-light); }
.about-ownership dl > div:last-child { border-bottom: 1px solid var(--hairline-light); }
.about-ownership dt { font-family: var(--font-display); font-size: clamp(1.7rem, 2.7vw, 3rem); }
.about-ownership dd { margin: .4rem 0 0; color: var(--ink-soft); line-height: 1.5; }
.about-contact figure { margin: 0; }

@media (max-width: 900px) {
  .launch-intro,
  .editorial-promise,
  .brand-statement,
  .about-ownership { min-height: auto; grid-template-columns: 1fr; gap: 2rem; padding-block: clamp(7rem, 24vw, 11rem); }
  .launch-intro > .edition-kicker,
  .launch-intro > h2,
  .launch-intro__copy,
  .editorial-promise > .edition-kicker,
  .editorial-promise > h2,
  .editorial-promise > div,
  .brand-statement > .edition-kicker,
  .brand-statement > h2,
  .brand-statement > div,
  .about-ownership > .edition-kicker,
  .about-ownership > h2,
  .about-ownership > div { grid-column: 1; }
  .launch-intro > h2,
  .editorial-promise > h2,
  .brand-statement > h2,
  .about-ownership > h2 { font-size: clamp(3.7rem, 15vw, 7rem); }
  .launch-section-heading { grid-template-columns: 1fr; }
  .launch-section-heading .edition-kicker,
  .launch-section-heading h2,
  .launch-section-heading > p:last-child { grid-column: 1; }
  .launch-story-grid { grid-template-columns: 1fr; }
  .launch-story--lead { grid-column: 1; grid-template-columns: 1fr; }
  .launch-story:not(.launch-story--lead) h3,
  .launch-story h3 { font-size: clamp(2.5rem, 11vw, 4.7rem); }
  .brand-directory > header,
  .brand-links > header,
  .about-principles > header { grid-template-columns: 1fr; }
  .brand-directory header .edition-kicker,
  .brand-links header .edition-kicker,
  .about-principles header .edition-kicker,
  .brand-directory h2,
  .brand-links h2,
  .about-principles h2 { grid-column: 1; }
  .brand-directory h2,
  .brand-links h2,
  .about-principles h2 { font-size: clamp(3.7rem, 15vw, 7rem); }
  .brand-directory__list > a { grid-template-columns: 2rem 1fr auto; gap: 1rem; }
  .brand-directory__list > a small { grid-column: 2 / -1; }
  .brand-links > div > a { grid-template-columns: 1fr auto; }
  .brand-links > div > a small { grid-column: 1 / -1; grid-row: 2; }
  .launch-contact .site-footer { align-items: flex-start; }
  .archive-cover,
  .profile-cover,
  .about-cover { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; gap: 2rem; padding-top: calc(var(--header-h) + 2.5rem); }
  .archive-cover > .edition-kicker,
  .archive-cover h1,
  .archive-cover > p:not(.edition-kicker),
  .archive-cover figure,
  .profile-cover > .edition-kicker,
  .profile-cover h1,
  .profile-cover__dek,
  .profile-cover figure,
  .about-cover > .edition-kicker,
  .about-cover h1,
  .about-cover > p:not(.edition-kicker),
  .about-cover figure { grid-column: 1; grid-row: auto; }
  .archive-cover h1,
  .profile-cover h1,
  .about-cover h1 { font-size: clamp(4rem, 17vw, 7.5rem); overflow-wrap: anywhere; }
  .archive-cover figure,
  .profile-cover figure,
  .about-cover figure { order: 3; }
  .archive-list article { grid-template-columns: 1fr; }
  .archive-list article:nth-of-type(even) > a:first-child { order: 0; }
  .archive-list article h3 { font-size: clamp(2.8rem, 12vw, 5rem); }
  .profile-disclosure { grid-template-columns: 1fr; }
  .profile-body { width: calc(100% - (2 * var(--gutter))); }
  .profile-next { grid-template-columns: 1fr; }
  .profile-next a { font-size: clamp(2.5rem, 11vw, 5rem); }
  .brand-hero__title h1 { font-size: clamp(5.3rem, 22vw, 9rem); }
  .brand-hero__deck { right: auto; left: var(--gutter); }
  .brand-hero__media .scroll-film__poster > img,
  .brand-hero__media video { object-fit: contain; object-position: center; }
  .brand-static-hero { min-height: auto; grid-template-columns: 1fr; padding-top: calc(var(--header-h) + 3rem); }
  .brand-static-hero > div,
  .brand-static-hero > figure { grid-column: 1; }
  .brand-static-hero > div h1 { font-size: clamp(4.7rem, 18vw, 8rem); }
  .brand-gallery { grid-template-columns: 1fr; }
  .brand-gallery figure:nth-child(2) { margin-top: 3rem; }
  .brand-editorial-link,
  .about-contact { grid-template-columns: 1fr; }
  .about-principles > div { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brand-directory__list strong,
  .brand-links strong { font-size: 1.7rem; }
  .brand-directory__list > a,
  .brand-links > div > a { min-height: 6.5rem; }
  .launch-contact__button,
  .profile-actions a,
  .brand-hero__deck a,
  .brand-static-hero > div > a { width: 100%; }
  .profile-actions { display: grid; }
  .brand-hero__media figcaption { gap: .5rem; font-size: .5rem; }
  .brand-hero__media figcaption span:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-hero { height: 100svh; }
  .launch-story__image img,
  .brand-directory__list i,
  .brand-links i { transform: none !important; }
}

/* Revision 15: one Kreateur Media hierarchy and one responsive rhythm across routes. */
.revision-seven .edition-masthead {
  --resolved-header-h: clamp(4.75rem, 7vw, 6.25rem);
  height: var(--resolved-header-h);
  grid-template-columns: minmax(4.75rem, 1fr) auto minmax(4.75rem, 1fr);
  gap: clamp(.65rem, 2vw, 1.5rem);
  padding: max(1rem, env(safe-area-inset-top)) var(--gutter) 0;
}

.revision-seven .edition-masthead::after { height: calc(var(--resolved-header-h) + .4rem); }
.revision-seven .masthead-brand,
.revision-seven .edition-masthead.is-compact .masthead-brand {
  width: clamp(8.6rem, 12.5vw, 12.75rem);
  max-width: 31vw;
}
.revision-seven .menu-toggle {
  min-width: 4.75rem;
  min-height: 2.75rem;
  align-items: flex-start;
  padding-top: .05rem;
}
.revision-seven .masthead-context {
  max-width: min(16rem, 30vw);
  margin: 0;
  padding-top: .08rem;
  line-height: 1.25;
  text-wrap: balance;
}
.revision-seven .masthead-thread { right: var(--gutter); bottom: .25rem; left: var(--gutter); }

/* Menu numbers implied a closed set. The index now names a current selection. */
.revision-seven .edition-menu nav a { grid-template-columns: minmax(0, 1fr) auto; }
.revision-seven .edition-menu nav a::before { display: none; content: none; }
.revision-seven .edition-menu nav span { min-width: 0; overflow-wrap: anywhere; }

.operating-principles {
  padding: clamp(6rem, 9vw, 9rem) var(--gutter);
  color: var(--night-ink);
  background: var(--night);
}
.operating-principles > header {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem var(--gutter);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.operating-principles .edition-kicker { grid-column: 1 / -1; color: var(--spectral); }
.operating-principles h2 {
  grid-column: 1 / 10;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.4vw, 10rem);
  font-weight: 400;
  line-height: .8;
  letter-spacing: -.07em;
}
.operating-principles > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 5rem);
}
.operating-principles article {
  min-width: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hairline-dark);
}
.operating-principles h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.2vw, 4rem);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.045em;
}
.operating-principles article p {
  max-width: 34rem;
  margin: 0;
  color: var(--night-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.brand-directory > header { align-items: end; }
.brand-directory__note {
  grid-column: 10 / -1;
  align-self: end;
  max-width: 30rem;
  margin: 0;
  color: var(--night-soft);
  line-height: 1.6;
}
.brand-directory__list span { min-width: 2.5rem; }

/* Keep large editorial titles beside, rather than over, their media. */
@media (min-width: 901px) {
  .archive-cover h1,
  .about-cover h1,
  .profile-cover h1 { grid-column: 1 / 7; }
  .archive-cover > p:not(.edition-kicker),
  .about-cover > p:not(.edition-kicker),
  .profile-cover__dek { grid-column: 1 / 6; }
  .archive-cover figure,
  .about-cover figure,
  .profile-cover figure { grid-column: 7 / -1; }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .archive-cover h1,
  .about-cover h1 { font-size: clamp(4.6rem, 8vw, 7rem); }
  .profile-cover h1 { font-size: clamp(4rem, 7.2vw, 6.2rem); }
  .launch-intro > h2,
  .editorial-promise > h2,
  .about-ownership > h2 { font-size: clamp(4.2rem, 8vw, 7.5rem); }
}

@media (max-width: 900px) {
  .revision-seven .edition-masthead {
    grid-template-columns: minmax(4.75rem, 1fr) auto minmax(4.75rem, 1fr);
    gap: .65rem;
  }
  .revision-seven .masthead-brand,
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: clamp(8.25rem, 28vw, 10.5rem); }
  .revision-seven .masthead-context { display: block; max-width: 22vw; font-size: 0; }
  .revision-seven .masthead-context span { font-size: clamp(.45rem, 1.25vw, .54rem); }
  .revision-seven .edition-menu { padding-top: calc(var(--resolved-header-h) + 1rem); }
  .revision-seven .edition-menu nav a { grid-template-columns: minmax(0, 1fr); }
  .operating-principles > header,
  .operating-principles > div { grid-template-columns: 1fr; }
  .operating-principles .edition-kicker,
  .operating-principles h2 { grid-column: 1; }
  .operating-principles h2 { font-size: clamp(3.7rem, 15vw, 7rem); }
  .operating-principles > div { gap: 3.5rem; }
  .brand-directory__note { grid-column: 1; max-width: 36rem; }
}

@media (max-width: 480px) {
  .revision-seven .edition-masthead { grid-template-columns: 4.75rem 1fr 4.75rem; }
  .revision-seven .masthead-brand,
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: min(9.25rem, 42vw); max-width: none; }
  .revision-seven .masthead-context { display: none; }
  .operating-principles { padding-block: clamp(7rem, 26vw, 9rem); }
  .operating-principles h2 { overflow-wrap: anywhere; }
  .brand-directory__list > a { grid-template-columns: 2.75rem minmax(0, 1fr) auto; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-seven .edition-masthead { --resolved-header-h: 4.35rem; padding-top: .7rem; }
  .revision-seven .masthead-brand,
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: 8.25rem; }
  .revision-seven .edition-menu { padding-top: calc(var(--resolved-header-h) + .5rem); }
}

/* The second labradorite film is the About philosophy header, not section decoration. */
.about-film-hero {
  height: 195svh;
  color: var(--ink);
  background: #d7d2ca;
}
.about-film-hero .brand-hero__media .scroll-film__viewport { background: #d7d2ca; }
.about-film-hero .brand-hero__media .scroll-film__viewport::after {
  background:
    linear-gradient(180deg, rgba(246, 243, 236, .28), transparent 30%, transparent 68%, rgba(238, 235, 228, .36)),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(238, 235, 228, .08) 76%, rgba(238, 235, 228, .17));
  border: 0;
}
.about-film-hero .brand-hero__title {
  top: calc(var(--header-h) + clamp(1rem, 2.5vh, 2rem));
  pointer-events: none;
}
.about-film-hero .brand-hero__title .edition-kicker {
  margin: 0;
  color: var(--ink);
  text-shadow: 0 1px .55rem rgba(246, 243, 236, .9);
}
.about-film-hero .brand-hero__title h1 {
  width: 100%;
  margin-top: .7rem;
  color: rgba(17, 23, 25, .92);
  font-size: clamp(6rem, 13.5vw, 14rem);
  line-height: .86;
  text-shadow: 0 1px 1.4rem rgba(246, 243, 236, .36);
}
.about-film-hero .brand-hero__deck {
  right: auto;
  bottom: clamp(5.1rem, 10vh, 7.2rem);
  left: var(--gutter);
  padding: .9rem 1rem;
  color: var(--ink);
  background: rgba(238, 240, 236, .64);
  border: 1px solid rgba(17, 23, 25, .13);
  -webkit-backdrop-filter: blur(10px) saturate(108%);
  backdrop-filter: blur(10px) saturate(108%);
}
.about-film-hero .brand-hero__deck p {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(.9rem, 1.15vw, 1.04rem);
  font-weight: 600;
  line-height: 1.5;
}
.about-film-hero .brand-hero__media figcaption { color: rgba(17, 23, 25, .72); }

@media (max-width: 900px) and (orientation: portrait) {
  .about-film-hero .brand-hero__title { top: calc(var(--header-h) + .8rem); }
  .about-film-hero .brand-hero__title h1 { font-size: clamp(4.2rem, 18vw, 8.5rem); line-height: .88; }
  .about-film-hero .brand-hero__media .scroll-film__poster > img,
  .about-film-hero .brand-hero__media video {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(218vw, 132svh);
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  .about-film-hero .brand-hero__deck {
    bottom: clamp(5.2rem, 10vh, 6.2rem);
    left: var(--gutter);
    width: min(22rem, calc(100% - (2 * var(--gutter))));
  }
  .about-film-hero .brand-hero__media figcaption {
    gap: .75rem;
    color: rgba(17, 23, 25, .72);
    font-size: clamp(.5rem, 2.2vw, .61rem);
  }
  .about-film-hero .brand-hero__media figcaption > span:last-child { max-width: 9rem; text-align: right; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .about-film-hero .brand-hero__title { top: 4.7rem; }
  .about-film-hero .brand-hero__title h1 { font-size: clamp(3.2rem, 8vw, 4.8rem); }
  .about-film-hero .brand-hero__deck { bottom: 2.2rem; width: min(22rem, 42vw); padding: .65rem .75rem; }
  .about-film-hero .brand-hero__deck p { font-size: .74rem; line-height: 1.35; }
  .about-film-hero .brand-hero__media figcaption { bottom: .55rem; }
}

@media (prefers-reduced-motion: reduce) {
  .about-film-hero { height: 100svh; }
}

/* Revision 13: fill the viewport without cropping the Kre Core apparatus. */
body.revision-thirteen .house-hero,
body.revision-thirteen .house-hero__media,
body.revision-thirteen .house-hero__media .scroll-film__viewport {
  background: #d3d1ca;
}
body.revision-thirteen .house-hero__media .scroll-film__viewport {
  transform: none;
}
body.revision-thirteen .house-hero__media .scroll-film__poster,
body.revision-thirteen .house-hero__media .scroll-film__poster > img,
body.revision-thirteen .house-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
}
body.revision-thirteen .house-hero__identity h1 {
  color: rgba(17, 23, 25, .92);
  text-shadow: 0 1px 0 rgba(246, 243, 236, .72), 0 .025em .12em rgba(246, 243, 236, .32);
}
body.revision-thirteen .house-hero__deck {
  color: var(--ink);
  text-shadow: 0 1px .55rem rgba(246, 243, 236, .92);
}
body.revision-thirteen .house-hero__deck > p {
  max-width: 29ch;
  font-family: var(--font-text);
  font-size: clamp(.78rem, .92vw, .9rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: .015em;
}
body.revision-thirteen .house-hero__fields {
  max-width: 22rem;
  border-color: rgba(17, 23, 25, .3);
}

@media (max-width: 900px) and (orientation: portrait) {
  body.revision-thirteen .house-hero__media .scroll-film__poster,
  body.revision-thirteen .house-hero__media video {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }
  body.revision-thirteen .house-hero__media .scroll-film__poster > img,
  body.revision-thirteen .house-hero__media video {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: min(255vw, 170svh);
    height: auto;
    max-width: none;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    transform: translate(-50%, -50%);
  }
  body.revision-thirteen .house-hero__deck {
    max-width: min(18rem, 70vw);
  }
  body.revision-thirteen .house-hero__deck > p {
    font-size: clamp(.74rem, 3.25vw, .86rem);
    line-height: 1.42;
  }
  body.revision-thirteen .house-hero__fields {
    max-width: 18rem;
    font-size: .48rem;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  body.revision-thirteen .house-hero__media .scroll-film__poster > img,
  body.revision-thirteen .house-hero__media video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transform: none;
  }
}

/* Revision 12 visual treatment. Geometry is finalized in the closing cascade. */
.revision-twelve .house-hero {
  color: var(--ink);
  background: #d9d7d0;
}
.revision-twelve .house-hero__stage {
  position: sticky;
  isolation: isolate;
  grid-template-rows: minmax(0, 1fr);
}
.revision-twelve .house-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  overflow: hidden;
}
.revision-twelve .house-hero__media .scroll-film__viewport {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  overflow: hidden;
  transform: scale(calc(1.015 + (var(--film-phase-a, 0) * .012)));
  transform-origin: 50% 52%;
  will-change: transform;
}
.revision-twelve .house-hero__media .scroll-film__poster,
.revision-twelve .house-hero__media .scroll-film__poster > img,
.revision-twelve .house-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.revision-twelve .house-hero__media figcaption {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: var(--gutter);
  bottom: auto;
  left: auto;
  max-width: min(28rem, 44vw);
  margin: 0;
  color: var(--ink);
  opacity: .72;
  text-align: right;
  text-shadow: 0 1px .4rem rgba(246, 243, 236, .9);
  transform: translateY(-50%);
}
.revision-twelve .house-hero__identity {
  z-index: 2;
  color: var(--ink);
  pointer-events: none;
}
.revision-twelve .house-hero__identity .edition-kicker {
  color: var(--ink);
  opacity: .86;
  text-shadow: 0 1px .45rem rgba(246, 243, 236, .95);
}
.revision-twelve .house-hero__identity h1 {
  font-size: clamp(7.2rem, 15.8vw, 18rem);
  text-shadow: 0 1px 0 rgba(246, 243, 236, .75), 0 .03em .16em rgba(246, 243, 236, .42);
}
.revision-twelve .house-hero__deck {
  z-index: 3;
  grid-column: 1 / 4;
  grid-row: 1;
  align-self: center;
  color: var(--night-ink);
  text-shadow: 0 .08rem .7rem rgba(7, 16, 20, .7);
  pointer-events: none;
}
.revision-twelve .house-hero__fields {
  border-color: rgba(245, 241, 232, .48);
}

@media (max-width: 900px) {
  .revision-twelve .house-hero__stage {
    grid-template-rows: minmax(0, 1fr);
  }
  .revision-twelve .house-hero__identity {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
  }
  .revision-twelve .house-hero__identity h1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: .85rem;
    font-size: clamp(5.2rem, 22vw, 10rem);
    line-height: .67;
    white-space: nowrap;
  }
  .revision-twelve .house-hero__identity h1 span:last-child {
    align-self: flex-end;
    margin: 0 0 clamp(5.7rem, 18vh, 8rem);
  }
  .revision-twelve .house-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .revision-twelve .house-hero__media figcaption {
    top: auto;
    right: var(--gutter);
    bottom: 1rem;
    left: var(--gutter);
    max-width: none;
    transform: none;
  }
  .revision-twelve .house-hero__deck {
    grid-column: 1;
    grid-row: 1;
    max-width: min(22rem, 78vw);
    align-self: center;
  }
  .revision-twelve .house-hero__deck > p {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-twelve .house-hero__stage {
    grid-template-rows: minmax(0, 1fr);
  }
  .revision-twelve .house-hero__identity {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 100%;
    display: flex;
    align-self: stretch;
  }
  .revision-twelve .house-hero__identity h1 {
    display: flex;
    margin-top: .35rem;
    font-size: clamp(4rem, 11vw, 7rem);
  }
  .revision-twelve .house-hero__identity h1 span:last-child {
    align-self: flex-end;
    margin: 0 0 1.5rem;
  }
  .revision-twelve .house-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .revision-twelve .house-hero__deck {
    grid-column: 1 / 4;
    grid-row: 1;
    max-width: 18rem;
    align-self: center;
  }
}

/* Revision 15 closing cascade: resolve the masthead once, after legacy revisions. */
.revision-seven .edition-masthead {
  --resolved-header-h: clamp(4.75rem, 7vw, 6.25rem);
  height: var(--resolved-header-h);
  grid-template-columns: minmax(4.75rem, 1fr) auto minmax(4.75rem, 1fr);
  gap: clamp(.65rem, 2vw, 1.5rem);
  padding: max(1rem, env(safe-area-inset-top)) var(--gutter) 0;
}
.revision-seven .edition-masthead::after { height: calc(var(--resolved-header-h) + .4rem); }
.revision-seven .masthead-brand,
.revision-seven .edition-masthead.is-compact .masthead-brand {
  width: clamp(8.6rem, 12.5vw, 12.75rem);
  max-width: 31vw;
}
.revision-seven .menu-toggle {
  min-width: 4.75rem;
  min-height: 2.75rem;
  align-items: flex-start;
  padding-top: .05rem;
}
.revision-seven .masthead-context {
  display: block;
  max-width: min(16rem, 30vw);
  margin: 0;
  padding-top: .08rem;
  line-height: 1.25;
  text-wrap: balance;
}
.revision-seven .masthead-thread { right: var(--gutter); bottom: .25rem; left: var(--gutter); }
.revision-seven .edition-menu nav a { grid-template-columns: minmax(0, 1fr) auto; }
.revision-seven .edition-menu nav a::before { display: none; content: none; }
.revision-seven .edition-menu nav span { min-width: 0; overflow-wrap: anywhere; }

@media (max-width: 900px) {
  .revision-seven .edition-masthead {
    grid-template-columns: minmax(4.75rem, 1fr) auto minmax(4.75rem, 1fr);
    gap: .65rem;
  }
  .revision-seven .masthead-brand,
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: clamp(8.25rem, 28vw, 10.5rem); }
  .revision-seven .masthead-context { display: block; max-width: 22vw; font-size: 0; }
  .revision-seven .masthead-context span { font-size: clamp(.45rem, 1.25vw, .54rem); }
  .revision-seven .edition-menu { padding-top: calc(var(--resolved-header-h) + 1rem); }
  .revision-seven .edition-menu nav a { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .revision-seven .edition-masthead { grid-template-columns: 4.75rem 1fr 4.75rem; }
  .revision-seven .masthead-brand,
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: min(9.25rem, 42vw); max-width: none; }
  .revision-seven .masthead-context { display: none; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-seven .edition-masthead { --resolved-header-h: 4.35rem; padding-top: .7rem; }
  .revision-seven .masthead-brand,
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: 8.25rem; }
  .revision-seven .edition-menu { padding-top: calc(var(--resolved-header-h) + .5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .revision-twelve .house-hero__media .scroll-film__viewport { transform: none; }
}

/* Revision 8: customer-facing voice and authored cinematic handoffs. */
@keyframes kreateur-route-out {
  to { opacity: 0; transform: translate3d(0, -1.2rem, 0) scale(.992); }
}
@keyframes kreateur-route-in {
  from { opacity: 0; transform: translate3d(0, 1.8rem, 0) scale(1.008); }
  to { opacity: 1; transform: none; }
}
::view-transition-old(root) { animation: kreateur-route-out var(--motion-exit) cubic-bezier(.55, 0, 1, .45) both; }
::view-transition-new(root) { animation: kreateur-route-in var(--motion-enter) var(--motion-fluid) both; }
::view-transition-group(kreateur-mark),
::view-transition-group(kreateur-route-image) { animation-duration: 480ms; animation-timing-function: var(--motion-fluid); }

.revision-eight .masthead-brand { view-transition-name: kreateur-mark; }
.revision-eight .catalog-cover > figure,
.revision-eight .release-cover figure,
.revision-eight .crystal-house-cover__image,
.revision-eight .fashion-cover .cover-object { view-transition-name: kreateur-route-image; }

/* The masthead stays part of the composition without washing the page in blur. */
.revision-eight .edition-masthead::after { display: none; }
.revision-eight .masthead-brand,
.revision-eight .menu-toggle,
.revision-eight .masthead-context {
  filter: drop-shadow(0 .08rem .45rem rgba(246, 243, 236, .22));
}
.revision-eight .edition-masthead.is-on-dark .masthead-brand,
.revision-eight .edition-masthead.is-on-dark .menu-toggle,
.revision-eight .edition-masthead.is-on-dark .masthead-context {
  filter: drop-shadow(0 .08rem .5rem rgba(0, 0, 0, .45));
}
.revision-eight .masthead-context { padding-top: .08rem; }
.revision-eight .masthead-context span { margin-top: 0; }
.revision-eight .masthead-thread { opacity: calc(.16 + (var(--scroll-intensity, 0) * .18)); }
.revision-eight .masthead-thread i {
  transform: translate(-50%, -50%) rotate(calc(45deg + (var(--scroll-velocity, 0) * 1deg))) scale(calc(1 + (var(--scroll-intensity, 0) * .45)));
}

/* The Crystal Index opens like an aperture, then settles item by item. */
.revision-eight .edition-menu {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 12%);
  transform-origin: 50% 0;
  transition: clip-path 340ms cubic-bezier(.7, 0, 1, .45), visibility 0s linear 340ms;
}
.revision-eight .edition-menu.is-open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path 520ms var(--motion-fluid), visibility 0s;
}
.revision-eight .edition-menu::before {
  transform: scaleY(0);
  transform-origin: 50% 0;
  transition: transform 440ms var(--motion-fluid) 60ms;
}
.revision-eight .edition-menu.is-open::before { transform: scaleY(1); }
.revision-eight .edition-menu nav a {
  opacity: 0;
  transform: translate3d(0, 1.6rem, 0);
  transition: color 200ms ease, padding-left 320ms cubic-bezier(.16, 1, .3, 1), opacity 280ms ease, transform 520ms cubic-bezier(.16, 1, .3, 1);
}
.revision-eight .edition-menu.is-open nav a { opacity: 1; transform: none; }
.revision-eight .edition-menu.is-open nav a:nth-child(1) { transition-delay: 80ms; }
.revision-eight .edition-menu.is-open nav a:nth-child(2) { transition-delay: 115ms; }
.revision-eight .edition-menu.is-open nav a:nth-child(3) { transition-delay: 150ms; }
.revision-eight .edition-menu.is-open nav a:nth-child(4) { transition-delay: 185ms; }
.revision-eight .edition-menu.is-open nav a:nth-child(5) { transition-delay: 220ms; }
.revision-eight .edition-menu nav a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 5px;
  box-shadow: none;
}
.revision-eight .edition-menu__visual figure {
  transform: translate3d(2.2rem, 0, 0) scale(.965) rotate(.8deg);
  transform-origin: 50% 58%;
  transition: opacity 300ms ease, transform 720ms cubic-bezier(.16, 1, .3, 1);
}
.revision-eight .edition-menu__visual figure.is-active { transform: none; }
.revision-eight .crystal-index__axis span {
  transition: left 560ms cubic-bezier(.16, 1, .3, 1), transform 380ms cubic-bezier(.16, 1, .3, 1);
  transform: translate(-50%, -50%) rotate(calc(45deg + (var(--menu-index, 0) * 18deg))) scale(1.15);
}

/* Each field grows from the previous one instead of arriving as a hard cut. */
.revision-eight main > [data-scroll-scene] {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.revision-eight main > [data-scroll-scene]:not(:first-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: calc(100% - 1px);
  left: 0;
  height: 16svh;
  background: linear-gradient(to bottom, transparent, var(--section-ground, transparent));
  opacity: var(--bridge-p, 0);
  transform: scaleY(calc(.35 + (var(--bridge-p, 0) * .65)));
  transform-origin: 50% 100%;
  pointer-events: none;
}
.revision-eight main > [data-scroll-scene] > * { position: relative; z-index: 1; }
.revision-eight .digest-spread { --section-ground: #f3efe7; }
.revision-eight .project-register,
.revision-eight .about-threshold,
.revision-eight .editorial-resolution { --section-ground: #eef0ec; }
.revision-eight .product-shelf,
.revision-eight .digest-principle,
.revision-eight .newsletter-section,
.revision-eight .register-close { --section-ground: #091216; }
.revision-eight .crystal-house-portal,
.revision-eight .crystal-house-intro,
.revision-eight .crystal-chapter--studio { --section-ground: #f1eee6; }
.revision-eight .crystal-chapter--aetheranium,
.revision-eight .crystal-house-close { --section-ground: #0b171a; }

/* Home: scroll composes the stage; a fine pointer scrubs the photographed Kre Core. */
.revision-eight .house-hero { height: 182svh; }
.revision-eight .house-hero__identity {
  transform: translate3d(calc(var(--scene-balance) * -1.45rem), calc(var(--film-phase-c, 0) * -2.5svh), 0) scale(calc(1 - (var(--film-phase-d, 0) * .055)));
  transform-origin: 0 50%;
}
.revision-eight .house-hero__identity .edition-kicker {
  opacity: calc(1 - (var(--film-phase-d, 0) * .72));
  transform: translate3d(calc(var(--film-phase-b, 0) * 1.1rem), 0, 0);
}
.revision-eight .house-hero__media {
  transform: translate3d(calc((var(--scene-balance) * 1.2rem) - (var(--film-phase-d, 0) * 1.4rem)), calc((var(--scene-balance) * -.55rem) + (var(--film-phase-c, 0) * -1.2rem)), 0) scale(calc(.965 + (var(--film-phase-a, 0) * .045) - (var(--film-phase-d, 0) * .02)));
  transform-origin: 50% 54%;
}
.revision-eight .house-hero__deck {
  opacity: calc(1 - (var(--film-phase-d, 0) * .55));
  transform: translate3d(calc(var(--film-phase-c, 0) * -1rem), calc(var(--film-phase-d, 0) * 1.2rem), 0);
}
.kre-core-film .scroll-film__viewport { isolation: isolate; }
.kre-core-film .scroll-film__poster { display: block; }
.kre-core-film figcaption { display: flex; justify-content: space-between; gap: 1rem; }
.kre-core-film__instruction { display: none; }
.house-hero:has(.kre-core-film) .house-hero__identity,
.house-hero:has(.kre-core-film) .house-hero__deck { pointer-events: none; }
html.has-js:not(.motion-reduced) .kre-core-film.is-pointer-enabled { cursor: ew-resize; }
html.has-js:not(.motion-reduced) .kre-core-film.is-pointer-enabled .kre-core-film__instruction { display: inline; }
.revision-eight .house-hero__media::before,
.revision-eight .release-cover figure::before,
.revision-eight .crystal-chapter--aetheranium figure::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  right: -1.2rem;
  left: -1.2rem;
  height: 1px;
  opacity: calc(.08 + (var(--scene-focus, 0) * .32));
  background: linear-gradient(90deg, transparent, var(--spectral), transparent);
  transform: scaleX(calc(.18 + (var(--scene-p, 0) * .82)));
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Distinct devices across the homepage collection. */
.revision-eight .digest-spread__copy {
  opacity: calc(.55 + (var(--scene-enter, 0) * .45));
  transform: translate3d(calc((1 - var(--scene-enter, 0)) * -2.2rem), calc(var(--scene-balance, 0) * -.8rem), 0);
}
.revision-eight .digest-spread > figure {
  transform: translate3d(calc((1 - var(--scene-enter, 0)) * 3.2rem), calc(var(--scene-balance) * -1.7rem), 0) rotate(calc(var(--scene-balance) * .7deg)) scale(calc(.96 + (var(--scene-focus) * .045)));
}
.revision-eight .digest-spread__feature {
  transform: translate3d(calc(var(--scene-balance) * 2.4rem), 0, 0);
}
.revision-eight .project-register__list > a {
  transform: translate3d(calc((1 - var(--depth-p, .5)) * 2.8rem), 0, 0);
  transition: background-color 260ms ease, padding-inline 360ms cubic-bezier(.16, 1, .3, 1);
}
.revision-eight .project-register__list > a:hover,
.revision-eight .project-register__list > a:focus-visible { padding-inline: 1rem; background: rgba(111, 151, 156, .08); }
.revision-eight .product-shelf { position: relative; overflow: hidden; }
.revision-eight .product-shelf::after {
  content: "";
  position: absolute;
  right: var(--gutter);
  bottom: 8%;
  left: var(--gutter);
  height: 1px;
  opacity: .34;
  background: linear-gradient(90deg, transparent, var(--spectral), transparent);
  transform: scaleX(var(--scene-p, 0));
  transform-origin: 0 50%;
}
.revision-eight .product-shelf > figure {
  transform: translate3d(calc(var(--scene-balance) * -3rem), calc(var(--scene-balance) * .8rem), 0) rotate(calc(var(--scene-balance) * -1.1deg)) scale(calc(.95 + (var(--scene-focus) * .055)));
}
.revision-eight .product-shelf > div { transform: translate3d(calc(var(--scene-balance) * 1.6rem), 0, 0); }
.revision-eight .crystal-house-portal { position: relative; overflow: hidden; }
.revision-eight .crystal-house-portal > figure {
  position: relative;
  transform: translate3d(calc(var(--scene-balance) * 2.6rem), calc(var(--scene-balance) * -.7rem), 0) scale(calc(.955 + (var(--scene-focus) * .055)));
}
.revision-eight .crystal-house-portal > figure::after {
  content: "";
  position: absolute;
  inset: -1.1rem;
  border: 1px solid rgba(38, 64, 67, .25);
  opacity: var(--scene-focus, 0);
  transform: scale(calc(1.08 - (var(--scene-focus, 0) * .08)));
}
.revision-eight .about-threshold blockquote { transform: translate3d(calc(var(--scene-balance) * -3.5rem), 0, 0); }

/* Route-specific pacing: shorter pins, larger meaningful changes. */
.revision-eight .catalog-cover { min-height: 108svh; }
.revision-eight .catalog-cover h1 { transform: translate3d(calc(var(--scene-balance) * -2.5rem), calc((1 - var(--scene-enter, 0)) * 1.4rem), 0); }
.revision-eight .catalog-cover > figure { transform: translate3d(calc(var(--scene-balance) * 2.8rem), calc(var(--scene-balance) * -.8rem), 0) rotate(calc(var(--scene-balance) * .7deg)) scale(calc(.96 + (var(--scene-focus) * .045))); }
.revision-eight .editorial-index article figure { transform: translate3d(0, calc(var(--depth-balance, 0) * -2rem), 0) rotate(calc(var(--depth-balance, 0) * .55deg)); }
.revision-eight .digest-principle p { transform: scale(calc(.92 + (var(--scene-focus, 0) * .08))) translate3d(0, calc(var(--scene-balance) * -.9rem), 0); }
.revision-eight .release-cover { height: 164svh; }
.revision-eight .release-cover figure { position: relative; transform: translate3d(calc(var(--scene-balance) * 3.4rem), calc(var(--scene-balance) * -.9rem), 0) rotate(calc(var(--scene-balance) * .9deg)) scale(calc(.93 + (var(--scene-focus) * .075))); }
.revision-eight .release-cover__stage > div { transform: translate3d(calc(var(--scene-balance) * -2.3rem), 0, 0); }
.revision-eight .release-register__plates figure:first-child { transform: translate3d(0, calc(var(--depth-balance, 0) * -2.4rem), 0) rotate(calc(var(--depth-balance, 0) * -.65deg)); }
.revision-eight .release-register__plates figure:last-child { transform: translate3d(0, calc(var(--depth-balance, 0) * 2.4rem), 0) rotate(calc(var(--depth-balance, 0) * .65deg)); }

/* Miami moves through architecture, shadow and daylight instead of static plates. */
.revision-eight .crystal-house-cover { height: 172svh; }
.revision-eight .crystal-house-cover__identity { transform: translate3d(calc(var(--scene-balance) * -2.8rem), calc(var(--scene-balance) * .7rem), 0); }
.revision-eight .crystal-house-cover__image { transform: translate3d(calc(var(--scene-balance) * 3.3rem), calc(var(--scene-balance) * -.9rem), 0) scale(calc(.94 + (var(--scene-focus) * .07))); }
.revision-eight .crystal-house-cover__image::after {
  content: "";
  position: absolute;
  inset: -1.2rem;
  border: 1px solid rgba(35, 57, 60, .28);
  opacity: var(--scene-focus, 0);
  transform: scale(calc(1.1 - (var(--scene-focus, 0) * .1)));
}
.revision-eight .crystal-house-intro h2 { transform: translate3d(calc(var(--scene-balance) * -2.3rem), 0, 0); }
.revision-eight .crystal-house-intro > div { transform: translate3d(calc(var(--scene-balance) * 1.5rem), 0, 0); }
.revision-eight .crystal-chapter--aetheranium { height: 154svh; overflow: hidden; }
.revision-eight .crystal-chapter--aetheranium .crystal-chapter__copy { transform: translate3d(calc(var(--scene-balance) * -3.4rem), calc(var(--scene-balance) * .8rem), 0); }
.revision-eight .crystal-chapter--aetheranium .crystal-chapter__stage > figure {
  position: relative;
  transform: translate3d(calc(var(--scene-balance) * 4.2rem), calc(var(--scene-balance) * -1rem), 0) rotate(calc(var(--scene-balance) * .8deg)) scale(calc(.91 + (var(--scene-focus) * .1)));
}
.revision-eight .crystal-chapter--studio { min-height: 112svh; }
.revision-eight .crystal-chapter--studio .crystal-chapter__copy { transform: translate3d(calc(var(--scene-balance) * -2.1rem), 0, 0); }
.revision-eight .crystal-chapter--studio > figure { transform: translate3d(calc(var(--scene-balance) * 3rem), calc(var(--scene-balance) * -.8rem), 0) rotate(calc(var(--scene-balance) * -.7deg)) scale(calc(.96 + (var(--scene-focus) * .045))); }
.revision-eight .house-notes__grid figure:first-child { transform: translate3d(0, calc(var(--depth-balance, 0) * -2.8rem), 0) rotate(calc(var(--depth-balance, 0) * -.6deg)); }
.revision-eight .house-notes__grid figure:last-child { transform: translate3d(0, calc(var(--depth-balance, 0) * 2.8rem), 0) rotate(calc(var(--depth-balance, 0) * .6deg)); }
.revision-eight .crystal-house-close__name { transform: translate3d(calc(var(--scene-balance) * -3rem), 0, 0) scale(calc(.94 + (var(--scene-focus, 0) * .06))); }

/* The Living Edition Plate crossfades neighboring thoughts instead of snapping. */
.revision-eight .story-copy {
  transition: none;
  will-change: opacity;
}
.revision-eight .living-frame { transition: none; }
.revision-eight .editorial-resolution blockquote { transform: translate3d(calc(var(--scene-balance) * -3.8rem), 0, 0); }
.revision-eight .newsletter-grid > * { transform: translate3d(0, calc(var(--scene-balance) * 2.6rem), 0); }
.revision-eight .newsletter-grid > :last-child { transform: translate3d(0, calc(var(--scene-balance) * -1.8rem), 0); }

@media (max-width: 900px) {
  .revision-eight .house-hero { height: 174svh; }
  .revision-eight .house-hero__identity { transform: translate3d(calc(var(--scene-balance) * -.55rem), calc(var(--film-phase-c, 0) * -1svh), 0) scale(calc(1 - (var(--film-phase-d, 0) * .035))); }
  .revision-eight .house-hero__media { transform: translate3d(calc(var(--scene-balance) * .45rem), calc(var(--scene-balance) * -.3rem), 0) scale(calc(.98 + (var(--film-phase-a, 0) * .02))); }
  .crystal-articulation span { background-image: url("../imagen/hero-open-portrait.webp"); }
  .revision-eight main > [data-scroll-scene]:not(:first-child)::before { height: 10svh; }
  .revision-eight .edition-menu { clip-path: inset(0 0 100% 0); }
  .revision-eight .edition-menu.is-open { clip-path: inset(0); }
  .revision-eight .catalog-cover { min-height: 104svh; }
  .revision-eight .release-cover { height: 154svh; }
  .revision-eight .crystal-house-cover { height: 164svh; }
  .revision-eight .crystal-chapter--aetheranium { height: 148svh; }
  .revision-eight .product-shelf > figure,
  .revision-eight .crystal-house-portal > figure,
  .revision-eight .catalog-cover > figure,
  .revision-eight .release-cover figure,
  .revision-eight .crystal-house-cover__image,
  .revision-eight .crystal-chapter--aetheranium .crystal-chapter__stage > figure,
  .revision-eight .crystal-chapter--studio > figure { transform: translate3d(0, calc(var(--scene-balance) * -.7rem), 0) scale(calc(.98 + (var(--scene-focus, 0) * .02))); }
}

@media (prefers-reduced-motion: reduce) {
  .revision-eight .crystal-articulation { display: none; }
  .revision-eight main > [data-scroll-scene]::before { display: none; }
  .revision-eight .edition-menu,
  .revision-eight .edition-menu nav a,
  .revision-eight .edition-menu__visual figure { clip-path: none; transform: none; }
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

@media (max-width: 560px) {
  :root { --gutter: 1rem; --header-h: 4.8rem; }
  .masthead-brand { width: 10.6rem; height: auto; }
  .edition-masthead.is-compact .masthead-brand { width: 9.3rem; }
  .masthead-thread { bottom: .35rem; }
  .fashion-cover { padding-bottom: 4rem; }
  .cover-title h1 { letter-spacing: -.065em; }
  .living-frame { width: 96vw; height: 31svh; }
  .story-step { padding-top: 47svh; }
  .story-copy > p:not(.story-label, .object-caption) { line-height: 1.58; }
  .editorial-resolution blockquote { font-size: clamp(3.3rem, 16vw, 5.5rem); }
  .newsletter-section { min-height: auto; }
  .site-footer p { max-width: 17rem; line-height: 1.5; }
  .preview-badge { display: none; }
  .digest-hero__media figcaption { right: auto; left: var(--gutter); max-width: 17rem; line-height: 1.45; }
  .miami-cover__film figcaption { max-width: 18rem; line-height: 1.4; }
  .miami-cover__deck > p { font-size: .91rem; line-height: 1.55; }
  .miami-cover__deck .article-meta { margin-top: 1rem; }
  .miami-note,
  .miami-filmstrip,
  .miami-boundary { padding-inline: var(--gutter); }
  .miami-note__copy h2,
  .miami-filmstrip h2 { font-size: clamp(3.6rem, 15vw, 5.8rem); }
  .miami-boundary blockquote { font-size: clamp(3.8rem, 16.4vw, 6rem); }
}

/* Ordinary reading paths: no pinned stage, no video fetch, no dependence on JavaScript. */
html:not(.has-js) .living-stage,
html.motion-reduced .living-stage { display: none; }
html:not(.has-js) .scroll-film video,
html.motion-reduced .scroll-film video { display: none; }
html:not(.has-js) .scroll-film__poster,
html.motion-reduced .scroll-film__poster { opacity: 1 !important; }
html:not(.has-js) .imagen-pair__state,
html.motion-reduced .imagen-pair__state { display: none; }
html:not(.has-js) .imagen-pair__base,
html.motion-reduced .imagen-pair__base { transform: none !important; }
html:not(.has-js) [data-scene-mode="sticky"],
html.motion-reduced [data-scene-mode="sticky"] {
  height: auto;
  min-height: 100svh;
}
html:not(.has-js) .scene-stage,
html.motion-reduced .scene-stage {
  position: relative;
  top: auto;
  height: auto;
  min-height: 100svh;
  overflow: visible;
}
html:not(.has-js) [data-scroll-scene] *,
html.motion-reduced [data-scroll-scene] * {
  opacity: 1;
  transform: none;
}
html:not(.has-js) .edition-masthead {
  position: absolute;
  height: auto;
  grid-template-columns: 1fr;
  color: var(--ink);
}
html:not(.has-js) .masthead-nav {
  justify-self: start;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.2rem;
}
html:not(.has-js) .menu-toggle,
html:not(.has-js) .masthead-thread { display: none; }
html:not(.has-js) .story-track,
html.motion-reduced .story-track { margin-top: 0; }
html:not(.has-js) .story-step,
html.motion-reduced .story-step {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(17rem, .9fr) minmax(17rem, 1.1fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(6rem, 12vh, 10rem) var(--gutter);
  border-top: 1px solid var(--hairline-dark);
}
html:not(.has-js) .story-step:nth-child(even),
html.motion-reduced .story-step:nth-child(even) { background: #0a151a; }
html:not(.has-js) .story-copy,
html.motion-reduced .story-copy { width: auto; padding: 0; text-align: left; }
html:not(.has-js) .step-fallback,
html.motion-reduced .step-fallback { display: block; order: -1; }

@media (max-width: 760px) {
  html:not(.has-js) .story-step,
  html.motion-reduced .story-step { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Revision 7: The Crystal Index and the Kreateur Media ecosystem. */
@view-transition { navigation: auto; }

.revision-seven {
  --paper: #eef0ec;
  --paper-warm: #f3efe7;
  --marine: #6f979c;
  --nickel: #aeb8b7;
  --crystal-line: rgba(35, 57, 60, .19);
  background: var(--paper);
}

.revision-seven .edition-masthead {
  height: clamp(5.25rem, 8vw, 7.1rem);
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
  padding: clamp(1.05rem, 2vw, 1.7rem) var(--gutter) 0;
}
.revision-seven .edition-masthead::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  height: calc(var(--header-h) + .35rem);
  opacity: 0;
  background: linear-gradient(180deg, rgba(238, 240, 236, .96), rgba(238, 240, 236, .72) 67%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(108%);
  backdrop-filter: blur(14px) saturate(108%);
  transition: opacity 320ms ease, background 240ms ease;
}
.revision-seven .edition-masthead.is-compact::after { opacity: 1; }
.revision-seven .edition-masthead.is-on-dark.is-compact::after {
  background: linear-gradient(180deg, rgba(7, 16, 20, .94), rgba(7, 16, 20, .68) 67%, transparent);
}
.revision-seven .masthead-brand::before,
.revision-seven .menu-toggle::before { display: none; }
.revision-seven .masthead-brand {
  grid-column: 2;
  justify-self: center;
  width: clamp(10.3rem, 14.5vw, 15.4rem);
  transform-origin: 50% 0;
}
.revision-seven .edition-masthead.is-compact .masthead-brand { width: clamp(9.4rem, 12.2vw, 12.6rem); }
.revision-seven .menu-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: inline-flex;
  min-width: 4.5rem;
  min-height: 2.75rem;
  align-items: flex-start;
  gap: .55rem;
  cursor: pointer;
}
.revision-seven .menu-toggle::after {
  content: "";
  width: 1.55rem;
  height: .45rem;
  margin-top: .12rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: skewX(-24deg);
  transition: width 300ms cubic-bezier(.16, 1, .3, 1), transform 300ms cubic-bezier(.16, 1, .3, 1);
}
.revision-seven .menu-toggle:hover::after,
.revision-seven .menu-toggle:focus-visible::after { width: 2.15rem; }
.revision-seven .menu-toggle[aria-expanded="true"]::after { transform: skewX(0) rotate(90deg); }
.revision-seven .masthead-context {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  margin: .05rem 0 0;
  text-align: right;
  font-size: .55rem;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.revision-seven .masthead-context span { display: block; margin-top: .22rem; font-weight: 400; }
.revision-seven .masthead-thread { bottom: .15rem; opacity: .2; }
.revision-seven .masthead-thread span { height: 1px; background: currentColor; }
.revision-seven .masthead-thread i {
  width: .38rem;
  height: .38rem;
  border-radius: 0;
  background: currentColor;
  box-shadow: none;
  transform: translate(-50%, -50%) rotate(45deg);
}
.revision-seven.menu-open .masthead-brand__dark { opacity: 1; }
.revision-seven.menu-open .masthead-brand__light { opacity: 0; }

.revision-seven .edition-menu {
  z-index: 170;
  grid-template-columns: minmax(19rem, .86fr) minmax(20rem, 1.14fr);
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "heading visual" "nav visual" "utilities visual";
  gap: clamp(1.5rem, 4vw, 5rem);
  padding: calc(var(--header-h) + 1.2rem) var(--gutter) clamp(1.5rem, 3vw, 3rem);
  overflow: hidden;
  background: var(--paper);
  transition: opacity 280ms ease, visibility 0s linear 280ms;
}
.revision-seven .edition-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 280ms ease, visibility 0s;
}
.revision-seven .edition-menu::before {
  content: "";
  position: absolute;
  inset: var(--header-h) auto 0 53%;
  width: 1px;
  opacity: .45;
  background: linear-gradient(transparent, var(--crystal-line) 8%, var(--crystal-line) 92%, transparent);
}
.revision-seven .edition-menu__heading { grid-area: heading; align-self: start; }
.revision-seven .edition-menu__heading > p:last-child {
  max-width: 22rem;
  margin: .65rem 0 0;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  line-height: 1;
}
.revision-seven .edition-menu__label { grid-column: auto; }
.revision-seven .edition-menu nav {
  grid-area: nav;
  align-content: center;
  transform: translate3d(-1.2rem, 0, 0);
  transition: transform 520ms cubic-bezier(.16, 1, .3, 1);
}
.revision-seven .edition-menu.is-open nav { transform: translate3d(0, 0, 0); }
.revision-seven .edition-menu nav a {
  grid-template-columns: auto 1fr auto;
  gap: clamp(.7rem, 1.4vw, 1.5rem);
  padding: clamp(.58rem, 1.25vh, 1.05rem) 0;
  color: rgba(17, 23, 25, .45);
  transition: color 220ms ease, padding-left 340ms cubic-bezier(.16, 1, .3, 1);
}
.revision-seven .edition-menu nav a::before {
  content: "0" counter(crystal-item);
  align-self: center;
  font-size: .5rem;
  letter-spacing: .12em;
}
.revision-seven .edition-menu nav { counter-reset: crystal-item; }
.revision-seven .edition-menu nav a { counter-increment: crystal-item; }
.revision-seven .edition-menu nav a:hover,
.revision-seven .edition-menu nav a:focus-visible,
.revision-seven .edition-menu nav a.is-active { color: var(--ink); padding-left: .55rem; }
.revision-seven .edition-menu nav a[aria-current="page"]::after {
  content: "CURRENT";
  align-self: center;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.revision-seven .edition-menu nav span {
  font-size: clamp(2.35rem, 4.4vw, 5.6rem);
  line-height: .82;
}
.revision-seven .edition-menu nav small { justify-self: end; align-self: center; max-width: 8.5rem; text-align: right; }
.revision-seven .edition-menu__visual {
  position: relative;
  grid-area: visual;
  min-height: 0;
  align-self: stretch;
  display: grid;
  place-items: center;
  transform: translate3d(1.5rem, 0, 0);
  transition: transform 620ms cubic-bezier(.16, 1, .3, 1);
}
.revision-seven .edition-menu.is-open .edition-menu__visual { transform: translate3d(0, 0, 0); }
.revision-seven .edition-menu__visual figure {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  margin: 0;
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0) rotate(.35deg);
  transition: opacity 360ms ease, transform 620ms cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.revision-seven .edition-menu__visual figure.is-active { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
.revision-seven .edition-menu__visual figure img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - var(--header-h) - 5.6rem);
  object-fit: contain;
  object-position: center;
  background: transparent;
}
.revision-seven .edition-menu__visual figcaption { justify-self: end; }
.revision-seven .crystal-index__axis {
  position: absolute;
  z-index: 2;
  right: .7rem;
  bottom: 2.25rem;
  left: .7rem;
  height: 1px;
  display: flex;
  justify-content: space-between;
  background: rgba(246, 243, 236, .56);
  mix-blend-mode: difference;
}
.revision-seven .crystal-index__axis span {
  position: absolute;
  top: 50%;
  left: calc((var(--menu-index, 0) / 4) * 100%);
  width: .55rem;
  height: .55rem;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: left 620ms cubic-bezier(.16, 1, .3, 1);
}
.revision-seven .crystal-index__axis i { width: 1px; height: .45rem; background: #fff; transform: translateY(-50%); }
.revision-seven .edition-menu__utilities {
  grid-area: utilities;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem 2rem;
  align-items: center;
  font-size: .57rem;
  font-weight: 650;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.revision-seven .edition-menu__utilities a { min-height: 2.75rem; display: inline-flex; align-items: center; }
.revision-seven .edition-menu__utilities span { margin-left: auto; color: var(--ink-soft); }

.revision-seven .edition-kicker {
  margin: 0;
  font-size: .58rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.revision-seven .editorial-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  text-decoration: none;
}
.revision-seven .editorial-link span { transition: transform 260ms ease; }
.revision-seven .editorial-link:hover span,
.revision-seven .editorial-link:focus-visible span { transform: translate(.25rem, -.25rem); }
.revision-seven figure[data-photo-depth] { margin: 0; overflow: visible; }
.revision-seven [data-photo-depth] img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, calc(var(--depth-balance, 0) * -1rem), 0);
  transition: filter 500ms ease;
  will-change: transform;
}
.revision-seven figure figcaption {
  margin-top: .7rem;
  color: currentColor;
  opacity: .68;
  font-size: .55rem;
  line-height: 1.45;
  letter-spacing: .11em;
  text-transform: uppercase;
}

/* Kreateur Media home: one ecosystem, not a publication masthead. */
.house-hero { height: 220svh; color: var(--night-ink); background: var(--night); }
.house-hero__stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 1.2rem var(--gutter);
  padding: calc(var(--header-h) + clamp(1rem, 3vh, 2.6rem)) var(--gutter) clamp(1.4rem, 3vh, 2.6rem);
}
.house-hero__identity { z-index: 2; grid-column: 1 / 8; grid-row: 1 / 3; align-self: center; transform: translate3d(calc(var(--scene-balance) * -1.3rem), 0, 0); }
.house-hero__identity h1 {
  margin: clamp(1.5rem, 4vh, 3rem) 0 0;
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 11.4vw, 14rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.075em;
}
.house-hero__media {
  z-index: 1;
  grid-column: 6 / 13;
  grid-row: 1 / 4;
  align-self: center;
  margin: 0;
  transform: translate3d(calc(var(--scene-balance) * 1rem), calc(var(--scene-balance) * -.45rem), 0);
}
.house-hero__media .scroll-film__viewport { aspect-ratio: 16 / 9; }
.house-hero__media .imagen-pair__base {
  opacity: calc(1 - var(--film-articulate, 0));
  transform: translate3d(calc(var(--scene-balance) * -.25rem), 0, 0);
}
.house-hero__media .imagen-pair__state {
  opacity: var(--film-articulate, 0);
  transform: translate3d(calc((1 - var(--film-articulate, 0)) * .65rem), calc((1 - var(--film-articulate, 0)) * -.25rem), 0);
}
.house-hero__media figcaption { text-align: right; }
.house-hero__deck {
  z-index: 3;
  grid-column: 1 / 5;
  grid-row: 3;
  align-self: end;
  max-width: 31rem;
}
.house-hero__deck > p { margin: 0 0 1.35rem; font-family: var(--font-display); font-size: clamp(1.25rem, 2vw, 2rem); line-height: 1.08; }
.house-hero__fields { display: flex; flex-wrap: wrap; gap: .45rem 1.15rem; padding-top: .8rem; border-top: 1px solid var(--hairline-dark); font-size: .53rem; letter-spacing: .13em; text-transform: uppercase; }

.digest-spread,
.project-register,
.crystal-house-portal,
.about-threshold { padding: clamp(7rem, 14vw, 14rem) var(--gutter); }
.digest-spread {
  min-height: 130svh;
  display: grid;
  grid-template-columns: minmax(17rem, .8fr) minmax(20rem, 1.2fr);
  grid-template-rows: auto auto;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: var(--paper-warm);
}
.digest-spread__copy h2,
.project-register h2,
.crystal-house-portal h2,
.catalog-cover h1,
.project-archive h2,
.release-register h2 {
  margin: 1.2rem 0 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 11rem);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.065em;
}
.digest-spread__lead { max-width: 31rem; font-size: clamp(1rem, 1.45vw, 1.3rem); line-height: 1.5; }
.digest-spread > figure { transform: translate3d(calc(var(--scene-balance) * 1.1rem), 0, 0); }
.digest-spread__feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 8rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.3rem 0;
  border-top: 1px solid var(--hairline-light);
  border-bottom: 1px solid var(--hairline-light);
  text-decoration: none;
}
.digest-spread__feature strong { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 4.5rem); font-weight: 400; }
.digest-spread__feature span,
.digest-spread__feature small { font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; }

.project-register { min-height: 110svh; background: var(--paper); }
.project-register > header { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem var(--gutter); align-items: end; }
.project-register > header .edition-kicker { grid-column: 1 / -1; }
.project-register > header p:last-child { max-width: 27rem; margin: 0 0 2rem auto; line-height: 1.5; }
.project-register__list { margin: clamp(2rem, 5vw, 5rem) 0 2rem; }
.project-register__list > a {
  display: grid;
  grid-template-columns: minmax(10rem, .48fr) 1fr auto;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--hairline-light);
  text-decoration: none;
}
.project-register__list > a:last-child { border-bottom: 1px solid var(--hairline-light); }
.project-register__media img { width: 100%; height: auto; object-fit: contain; }
.project-register__list strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 5.2rem); font-weight: 400; line-height: .92; }
.project-register__list small { display: block; margin-top: .6rem; font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }
.project-register__list i { font-style: normal; font-size: .55rem; letter-spacing: .13em; text-transform: uppercase; }

.product-shelf {
  min-height: 115svh;
  display: grid;
  grid-template-columns: minmax(20rem, 1.15fr) minmax(17rem, .85fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  padding: clamp(7rem, 14vw, 14rem) var(--gutter);
  color: var(--night-ink);
  background: #091216;
}
.product-shelf > figure { transform: translate3d(calc(var(--scene-balance) * -1rem), 0, 0); }
.product-shelf h2 {
  margin: 1.2rem 0 1.8rem;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 7vw, 8.5rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.06em;
}
.product-shelf > div > p:not(.edition-kicker) { max-width: 31rem; color: var(--night-soft); line-height: 1.58; }

.crystal-house-portal {
  min-height: 135svh;
  display: grid;
  grid-template-columns: minmax(17rem, .72fr) minmax(23rem, 1.28fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  background: linear-gradient(150deg, #f4f0e7, #e6ece9 58%, #dce5e2);
}
.crystal-house-portal__title { transform: translate3d(calc(var(--scene-balance) * -.9rem), 0, 0); }
.crystal-house-portal__title > p:not(.edition-kicker) { max-width: 28rem; line-height: 1.55; }
.crystal-house-portal > figure { transform: translate3d(calc(var(--scene-balance) * .9rem), 0, 0); }
.about-threshold { min-height: 100svh; display: grid; align-content: center; background: var(--paper); }
.about-threshold blockquote {
  max-width: 15ch;
  margin: clamp(2rem, 5vw, 5rem) 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 10rem);
  line-height: .86;
  letter-spacing: -.06em;
}

/* Digest, project and release destinations share the system without sharing a template. */
.catalog-cover {
  min-height: 120svh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  gap: 1.5rem var(--gutter);
  padding: calc(var(--header-h) + clamp(3rem, 7vh, 7rem)) var(--gutter) clamp(5rem, 9vw, 9rem);
  background: var(--paper-warm);
}
.catalog-cover > .edition-kicker { grid-column: 1 / -1; }
.catalog-cover h1 { z-index: 2; grid-column: 1 / 8; align-self: center; transform: translate3d(calc(var(--scene-balance) * -1rem), 0, 0); }
.catalog-cover__lede { z-index: 2; grid-column: 1 / 5; align-self: end; max-width: 30rem; font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.55; }
.catalog-cover > figure { grid-column: 7 / 13; grid-row: 2 / 4; align-self: center; transform: translate3d(calc(var(--scene-balance) * 1rem), 0, 0); }
.editorial-index,
.project-archive,
.release-register { padding: clamp(7rem, 13vw, 13rem) var(--gutter); background: var(--paper); }
.editorial-index > header,
.project-archive > header { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem; margin-bottom: clamp(4rem, 9vw, 9rem); }
.editorial-index > header .edition-kicker,
.project-archive > header .edition-kicker { grid-column: 1 / -1; }
.editorial-index > header h2,
.project-archive > header h2 { margin: 0; font-family: var(--font-display); font-size: clamp(4rem, 8vw, 9rem); font-weight: 400; line-height: .82; letter-spacing: -.06em; }
.editorial-index article { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 7vw, 8rem); align-items: center; margin-bottom: clamp(6rem, 12vw, 13rem); }
.editorial-index article:nth-of-type(even) figure { order: 2; }
.editorial-index article h3,
.project-archive__entry h3 { margin: 1rem 0; font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 7.5rem); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.editorial-index article p { max-width: 32rem; line-height: 1.55; }
.digest-principle {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--gutter);
  color: var(--night-ink);
  background: var(--night);
}
.digest-principle p { max-width: 17ch; margin: 0; font-family: var(--font-display); font-size: clamp(4rem, 9vw, 11rem); line-height: .82; letter-spacing: -.06em; }

.project-archive > header > p:last-child { max-width: 31rem; justify-self: end; line-height: 1.55; }
.project-archive__entry {
  display: grid;
  grid-template-columns: minmax(19rem, 1.15fr) minmax(17rem, .85fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) 0;
  border-top: 1px solid var(--hairline-light);
  text-decoration: none;
}
.project-archive__entry:last-of-type { border-bottom: 1px solid var(--hairline-light); }
.project-archive__entry p,
.project-archive__entry span { font-size: .57rem; letter-spacing: .13em; text-transform: uppercase; }
.register-close {
  min-height: 82svh;
  display: grid;
  place-content: center start;
  gap: 2rem;
  padding: clamp(6rem, 12vw, 12rem) var(--gutter);
  color: var(--night-ink);
  background: var(--night);
}
.register-close > p { max-width: 17ch; margin: 0; font-family: var(--font-display); font-size: clamp(3.5rem, 7.5vw, 9rem); line-height: .84; letter-spacing: -.055em; }
.compact-footer { display: flex; justify-content: space-between; gap: 2rem; align-items: end; padding: 3rem var(--gutter); color: var(--night-ink); background: var(--night); border-top: 1px solid var(--hairline-dark); }
.compact-footer img { width: clamp(10rem, 18vw, 17rem); height: auto; }
.compact-footer p { margin: 0; font-size: .55rem; letter-spacing: .12em; text-transform: uppercase; }

.release-cover { height: 190svh; color: var(--night-ink); background: #071014; }
.release-cover__stage { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 8rem); align-items: center; padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem; }
.release-cover h1 { margin: 1.3rem 0 1.8rem; font-family: var(--font-display); font-size: clamp(4.7rem, 9.7vw, 12rem); font-weight: 400; line-height: .74; letter-spacing: -.07em; }
.release-cover__stage > div > p:last-child { max-width: 28rem; color: var(--night-soft); line-height: 1.55; }
.release-cover figure { transform: translate3d(calc(var(--scene-balance) * 1rem), 0, 0); }
.release-register h2 { max-width: 10ch; }
.release-register__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2rem, 7vw, 8rem); padding: clamp(2rem, 5vw, 5rem) 0; border-top: 1px solid var(--hairline-light); }
.release-register__grid span { display: block; margin-bottom: .7rem; font-size: .55rem; letter-spacing: .13em; text-transform: uppercase; }
.release-register__grid strong { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.4rem); font-weight: 400; }
.release-register__grid > p { max-width: 39rem; margin: 0; line-height: 1.6; }
.release-register__plates { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); margin-top: clamp(4rem, 9vw, 9rem); }

/* Kreateur Miami: a light, architectural Crystal House within the parent system. */
.crystal-house-page { --paper: #f2eee6; --paper-warm: #f5f0e6; background: var(--paper); }
.crystal-house-cover { height: 210svh; background: linear-gradient(145deg, #f4efe6 0%, #e5ece8 58%, #d6e3df 100%); }
.crystal-house-cover__stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 1fr auto;
  gap: 1.5rem var(--gutter);
  align-items: center;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 1.6rem;
}
.crystal-house-cover__identity { z-index: 2; grid-column: 1 / 7; grid-row: 1; transform: translate3d(calc(var(--scene-balance) * -1rem), 0, 0); }
.crystal-house-cover__identity > img { width: clamp(11rem, 19vw, 19rem); height: auto; }
.crystal-house-cover__identity h1 {
  max-width: 8ch;
  margin: clamp(2rem, 5vw, 5rem) 0 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10.5vw, 13rem);
  font-weight: 400;
  line-height: .73;
  letter-spacing: -.075em;
}
.crystal-house-cover__identity p { max-width: 26rem; font-family: var(--font-display); font-size: clamp(1.1rem, 1.7vw, 1.6rem); }
.crystal-house-cover__image { grid-column: 6 / 13; grid-row: 1; transform: translate3d(calc(var(--scene-balance) * .9rem), calc(var(--scene-balance) * -.35rem), 0); }
.crystal-house-local { grid-column: 1 / -1; grid-row: 2; display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--hairline-light); }
.crystal-house-local a { min-height: 2.75rem; display: inline-flex; align-items: center; font-size: .57rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; text-decoration: none; }
.crystal-house-intro { min-height: 105svh; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 7vw, 8rem); align-content: center; padding: clamp(7rem, 13vw, 13rem) var(--gutter); background: var(--paper); }
.crystal-house-intro .edition-kicker { grid-column: 1 / -1; }
.crystal-house-intro h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3.7rem, 7.5vw, 9rem); font-weight: 400; line-height: .84; letter-spacing: -.055em; }
.crystal-house-intro > div { align-self: end; max-width: 39rem; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.6; }
.crystal-chapter--aetheranium { height: 190svh; color: var(--night-ink); background: #0b171a; }
.crystal-chapter__stage { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(2.5rem, 7vw, 8rem); align-items: center; padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem; }
.crystal-chapter__copy { z-index: 2; transform: translate3d(calc(var(--scene-balance) * -.8rem), 0, 0); }
.crystal-chapter__copy h2 { margin: 1.2rem 0 1.8rem; font-family: var(--font-display); font-size: clamp(4.3rem, 8.2vw, 10rem); font-weight: 400; line-height: .78; letter-spacing: -.065em; }
.crystal-chapter__copy > p:last-child { max-width: 31rem; color: inherit; opacity: .72; line-height: 1.6; }
.crystal-chapter__stage > figure { transform: translate3d(calc(var(--scene-balance) * .9rem), 0, 0); }
.crystal-chapter--studio { min-height: 130svh; display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(3rem, 8vw, 9rem); align-items: center; padding: clamp(7rem, 13vw, 13rem) var(--gutter); background: linear-gradient(145deg, #f4efe6, #e8ece8); }
.crystal-chapter--studio > figure { transform: translate3d(calc(var(--scene-balance) * 1rem), 0, 0); }
.house-notes { padding: clamp(7rem, 13vw, 13rem) var(--gutter); background: var(--paper); }
.house-notes > header { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem var(--gutter); align-items: end; margin-bottom: clamp(4rem, 8vw, 8rem); }
.house-notes > header .edition-kicker { grid-column: 1 / -1; }
.house-notes h2 { margin: 0; font-family: var(--font-display); font-size: clamp(3.7rem, 7vw, 8rem); font-weight: 400; line-height: .82; letter-spacing: -.055em; }
.house-notes > header > p:last-child { max-width: 31rem; justify-self: end; line-height: 1.55; }
.house-notes__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: start; }
.house-notes__grid figure:nth-child(2) { margin-top: 12vw; }
.crystal-house-close { min-height: 105svh; display: grid; align-content: center; justify-items: start; gap: 2rem; padding: clamp(7rem, 13vw, 13rem) var(--gutter); color: var(--night-ink); background: linear-gradient(140deg, #071014, #102226); }
.crystal-house-close > img { width: clamp(12rem, 24vw, 25rem); height: auto; }
.crystal-house-close__name { max-width: 10ch; margin: 2rem 0 0; font-family: var(--font-display); font-size: clamp(4.2rem, 9vw, 11rem); line-height: .78; letter-spacing: -.065em; }
.crystal-house-close > p:not(.crystal-house-close__name) { max-width: 30rem; color: var(--night-soft); }

@media (max-width: 900px) {
  .revision-seven .edition-masthead { grid-template-columns: 1fr auto 1fr; }
  .revision-seven .masthead-context { font-size: 0; }
  .revision-seven .masthead-context span { margin-top: 0; font-size: .48rem; }
  .revision-seven .edition-menu {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "heading" "nav" "utilities";
    gap: 1rem;
    overflow-y: auto;
  }
  .revision-seven .edition-menu::before,
  .revision-seven .edition-menu__visual { display: none; }
  .revision-seven .edition-menu nav { align-content: center; }
  .revision-seven .edition-menu nav a { padding-block: clamp(.65rem, 1.5vh, 1rem); }
  .revision-seven .edition-menu nav span { font-size: clamp(2.35rem, 9.7vw, 4.8rem); }
  .revision-seven .edition-menu nav small { display: none; }
  .house-hero { height: 205svh; }
  .house-hero__stage { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; align-content: stretch; }
  .house-hero__identity { grid-column: 1; grid-row: 1; align-self: start; padding-top: 1rem; }
  .house-hero__identity h1 { font-size: clamp(4.8rem, 18vw, 8rem); }
  .house-hero__media { grid-column: 1; grid-row: 2; align-self: center; width: calc(100% + (2 * var(--gutter))); margin-inline: calc(-1 * var(--gutter)); }
  .house-hero__deck { grid-column: 1; grid-row: 3; max-width: 26rem; }
  .digest-spread,
  .product-shelf,
  .crystal-house-portal,
  .crystal-house-intro,
  .crystal-chapter--studio { grid-template-columns: 1fr; }
  .digest-spread { min-height: auto; }
  .digest-spread__feature { grid-template-columns: 1fr; gap: .4rem; }
  .project-register > header,
  .editorial-index > header,
  .project-archive > header,
  .house-notes > header { grid-template-columns: 1fr; }
  .project-register > header p:last-child,
  .project-archive > header > p:last-child,
  .house-notes > header > p:last-child { margin-left: 0; justify-self: start; }
  .project-register__list > a { grid-template-columns: minmax(8rem, .7fr) 1.3fr; }
  .project-register__list i { display: none; }
  .catalog-cover { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; gap: 2rem; }
  .catalog-cover > .edition-kicker,
  .catalog-cover h1,
  .catalog-cover__lede,
  .catalog-cover > figure { grid-column: 1; grid-row: auto; }
  .catalog-cover > figure { order: 3; }
  .editorial-index article,
  .project-archive__entry,
  .release-cover__stage,
  .release-register__grid,
  .crystal-chapter__stage { grid-template-columns: 1fr; }
  .editorial-index article:nth-of-type(even) figure { order: 0; }
  .release-cover { height: 205svh; }
  .release-cover__stage { align-content: center; }
  .release-register__plates { grid-template-columns: 1fr; }
  .crystal-house-cover { height: 215svh; }
  .crystal-house-cover__stage { grid-template-columns: 1fr; grid-template-rows: auto 1fr auto; align-content: stretch; }
  .crystal-house-cover__identity { grid-column: 1; grid-row: 1; align-self: start; }
  .crystal-house-cover__identity h1 { font-size: clamp(4.8rem, 17vw, 8rem); margin-top: 1.4rem; }
  .crystal-house-cover__image { grid-column: 1; grid-row: 2; align-self: center; width: calc(100% + (2 * var(--gutter))); margin-inline: calc(-1 * var(--gutter)); }
  .route-scroll-film--miami figcaption { padding-inline: var(--gutter); }
  .crystal-house-local { grid-column: 1; grid-row: 3; flex-wrap: wrap; }
  .crystal-house-intro { min-height: auto; }
  .crystal-chapter--aetheranium { height: 205svh; }
  .crystal-chapter__stage { align-content: center; }
  .crystal-chapter--studio { min-height: auto; }
}

@media (max-width: 560px) {
  html.has-js:not(.motion-reduced) .route-scroll-film.is-pointer-enabled .scroll-film__viewport { transform: none; }
  .route-scroll-film figcaption { align-items: start; line-height: 1.45; }
  .route-scroll-film figcaption span:last-child { max-width: 7rem; text-align: right; }
  .revision-seven .edition-masthead { padding-top: .9rem; }
  .revision-seven .masthead-brand { width: 9.8rem; }
  .revision-seven .edition-masthead.is-compact .masthead-brand { width: 8.9rem; }
  .revision-seven .masthead-context { max-width: 5rem; }
  .revision-seven .edition-menu { padding-top: calc(var(--header-h) + .6rem); padding-bottom: 1.2rem; }
  .revision-seven .edition-menu__heading > p:last-child { font-size: 1.15rem; }
  .revision-seven .edition-menu nav a { grid-template-columns: 1.5rem 1fr auto; }
  .revision-seven .edition-menu nav span { font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .revision-seven .edition-menu__utilities { gap: .5rem 1.2rem; }
  .revision-seven .edition-menu__utilities span { width: 100%; margin-left: 0; }
  .house-hero__identity h1 { font-size: clamp(4.4rem, 20vw, 7rem); }
  .digest-spread,
  .project-register,
  .product-shelf,
  .crystal-house-portal,
  .about-threshold,
  .editorial-index,
  .project-archive,
  .release-register,
  .crystal-house-intro,
  .crystal-chapter--studio,
  .house-notes { padding-inline: var(--gutter); }
  .project-register__list > a { grid-template-columns: 1fr; }
  .project-register__list strong { font-size: 2.6rem; }
  .digest-spread__copy h2,
  .project-register h2,
  .crystal-house-portal h2,
  .catalog-cover h1,
  .project-archive h2,
  .release-register h2 { font-size: clamp(3.8rem, 17vw, 6.5rem); }
  .editorial-index article,
  .project-archive__entry { grid-template-columns: 1fr; }
  .house-notes__grid { grid-template-columns: 1fr; gap: 4rem; }
  .house-notes__grid figure:nth-child(2) { margin-top: 0; }
  .compact-footer { align-items: start; flex-direction: column; }
}

@media (max-width: 380px) {
  .revision-seven .masthead-context { display: none; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .house-hero,
  .release-cover,
  .crystal-house-cover,
  .crystal-chapter--aetheranium { height: 175svh; }
  .house-hero__stage,
  .release-cover__stage,
  .crystal-house-cover__stage,
  .crystal-chapter__stage { padding-top: calc(var(--header-h) + .5rem); padding-bottom: .7rem; }
  .house-hero__identity h1,
  .crystal-house-cover__identity h1 { font-size: clamp(3.1rem, 7.5vw, 4.5rem); }
  .house-hero__deck > p { font-size: .95rem; }
  .crystal-house-cover__identity > img { width: 9rem; }
  .house-hero__stage {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 1fr auto;
  }
  .house-hero__identity { grid-column: 1 / 5; grid-row: 1; align-self: center; }
  .house-hero__media { grid-column: 6 / 13; grid-row: 1 / 3; align-self: center; width: auto; margin: 0; }
  .house-hero__deck { grid-column: 1 / 5; grid-row: 2; }
  .house-hero__deck > p { margin-bottom: .5rem; }
  .house-hero__fields { display: none; }
  .preview-badge { display: none; }
}

html:not(.has-js) .revision-seven .edition-masthead {
  position: relative;
  height: auto;
  grid-template-columns: 1fr;
  padding-bottom: 1rem;
}
html:not(.has-js) .revision-seven .masthead-brand { grid-column: 1; grid-row: 1; justify-self: start; }
html:not(.has-js) .revision-seven .masthead-context { grid-column: 1; grid-row: 2; justify-self: start; text-align: left; }
html:not(.has-js) .revision-seven .edition-menu {
  position: relative;
  inset: auto;
  min-height: auto;
  display: block;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  padding: 2rem var(--gutter) 4rem;
}
html:not(.has-js) .revision-seven .edition-menu__heading { margin-bottom: 2rem; }
html:not(.has-js) .revision-seven .edition-menu nav { transform: none; }
html:not(.has-js) .revision-seven .edition-menu__visual { display: none; }
html:not(.has-js) .revision-seven .edition-menu__utilities { margin-top: 1.5rem; }
html:not(.has-js) .revision-seven .house-hero,
html.motion-reduced .revision-seven .house-hero,
html:not(.has-js) .revision-seven .release-cover,
html.motion-reduced .revision-seven .release-cover,
html:not(.has-js) .revision-seven .crystal-house-cover,
html.motion-reduced .revision-seven .crystal-house-cover,
html:not(.has-js) .revision-seven .crystal-chapter--aetheranium,
html.motion-reduced .revision-seven .crystal-chapter--aetheranium { height: auto; }
html:not(.has-js) .revision-seven [data-photo-depth] img,
html.motion-reduced .revision-seven [data-photo-depth] img { transform: none; }

/* Revision 8 final cascade: route media is unique during an open Crystal Index,
   and mobile pacing stays deliberately shorter than the desktop composition. */
.revision-eight.menu-open .catalog-cover > figure,
.revision-eight.menu-open .release-cover figure,
.revision-eight.menu-open .crystal-house-cover__image,
.revision-eight.menu-open .fashion-cover .cover-object { view-transition-name: none; }

@media (max-width: 900px) {
  .revision-eight .house-hero { height: 174svh; }
  .revision-eight .release-cover { height: 154svh; }
  .revision-eight .crystal-house-cover { height: 164svh; }
  .revision-eight .crystal-chapter--aetheranium { height: 148svh; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-eight .house-hero,
  .revision-eight .release-cover,
  .revision-eight .crystal-house-cover,
  .revision-eight .crystal-chapter--aetheranium { height: 168svh; }
}

/* Revision 9: purposeful pacing, product development catalogue and mobile containment. */
.revision-eight .house-hero { height: 134svh; }
.revision-eight .house-hero__identity {
  transform: translate3d(calc(var(--scene-balance) * -.8rem), calc(var(--film-phase-c, 0) * -1svh), 0) scale(calc(1 - (var(--film-phase-d, 0) * .025)));
}
.revision-eight .house-hero__identity .edition-kicker { opacity: calc(1 - (var(--film-phase-d, 0) * .28)); }
.revision-eight .house-hero__deck {
  opacity: calc(1 - (var(--film-phase-d, 0) * .18));
  transform: translate3d(calc(var(--film-phase-c, 0) * -.5rem), calc(var(--film-phase-d, 0) * .35rem), 0);
}
.revision-eight main > [data-scroll-scene]:not(:first-child)::before { height: 6svh; }

.revision-eight .digest-spread,
.revision-eight .project-register,
.revision-eight .product-shelf,
.revision-eight .crystal-house-portal,
.revision-eight .about-threshold {
  min-height: auto;
  padding-block: clamp(4.5rem, 7vw, 7rem);
}
.revision-eight .catalog-cover { min-height: 96svh; }
.revision-eight .release-cover { height: 138svh; }
.revision-eight .project-archive,
.revision-eight .release-register { padding-block: clamp(5.5rem, 9vw, 9rem); }
.revision-eight .project-archive > header { margin-bottom: clamp(2.5rem, 5vw, 5rem); }
.revision-eight .project-archive__entry { padding-block: clamp(2.8rem, 5vw, 5rem); }
.revision-eight .project-archive__entry .project-archive__description {
  max-width: 35rem;
  margin: 1.4rem 0 0;
  font-size: clamp(.95rem, 1.15vw, 1.08rem);
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
  text-transform: none;
}
.revision-eight .project-archive__entry figure,
.revision-eight .development-card figure { overflow: hidden; background: #e7e5df; }
.revision-eight .project-archive__entry img,
.revision-eight .development-card img { width: 100%; height: auto; object-fit: contain; }

.development-catalog__intro {
  max-width: 42rem;
  margin: 0 0 clamp(3rem, 6vw, 6rem);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.62;
}
.development-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem) var(--gutter);
}
.development-card {
  min-width: 0;
  border-top: 1px solid var(--hairline-light);
  padding-top: 1rem;
}
.development-card:nth-child(5) {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .65fr);
  align-items: end;
  gap: var(--gutter);
}
.development-card:nth-child(5) figure { margin-bottom: 0; }
.development-card figure { margin: 0 0 1.4rem; }
.development-card h3 {
  margin: .65rem 0 .85rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 6.3rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.055em;
}
.development-card p,
.development-card span {
  display: block;
  margin: 0;
  font-size: .57rem;
  line-height: 1.5;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.development-card span { max-width: 29rem; }

@media (max-width: 900px) {
  .revision-eight .house-hero { height: 132svh; }
  .revision-eight .release-cover { height: 132svh; }
  .revision-eight .house-hero__media {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    transform: translate3d(0, calc(var(--scene-balance) * -.2rem), 0) scale(calc(.985 + (var(--film-phase-a, 0) * .015)));
  }
  .revision-eight .house-hero__identity { transform: translate3d(0, calc(var(--film-phase-c, 0) * -.45rem), 0) scale(calc(1 - (var(--film-phase-d, 0) * .015))); }
  .revision-eight .house-hero__deck { transform: none; }
  .revision-eight .digest-spread,
  .revision-eight .project-register,
  .revision-eight .product-shelf,
  .revision-eight .crystal-house-portal,
  .revision-eight .about-threshold,
  .revision-eight .project-archive,
  .revision-eight .release-register { padding-block: clamp(4.5rem, 12vw, 7rem); }
  .revision-eight .project-register__list > a,
  .revision-eight .project-archive__entry,
  .revision-eight .development-card,
  .revision-eight .project-register__media,
  .revision-eight .project-archive__entry figure,
  .revision-eight .development-card figure {
    max-width: 100%;
    transform: none !important;
  }
  .revision-eight .project-register__list > a { padding-inline: 0; }
  .revision-eight .project-register__list > a:hover,
  .revision-eight .project-register__list > a:focus-visible { padding-inline: 0; }
  .development-grid { grid-template-columns: 1fr; }
  .development-card:nth-child(5) { grid-column: auto; display: block; width: 100%; }
  .development-card:nth-child(5) figure { margin-bottom: 1.4rem; }
}

@media (max-width: 560px) {
  .revision-eight .house-hero { height: 126svh; }
  .revision-eight .project-register__list > a { grid-template-columns: 1fr; gap: 1rem; }
  .revision-eight .project-register__media { width: 100%; }
  .revision-eight .project-register__list strong { font-size: clamp(2.5rem, 13vw, 4.2rem); }
  .revision-eight .project-archive__entry { gap: 1.6rem; }
  .development-card h3 { font-size: clamp(3rem, 15vw, 5rem); }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-eight .house-hero,
  .revision-eight .release-cover { height: 138svh; }
}

/* Revision 10: one responsive hero field and one shared, fluid motion cadence. */
.revision-ten .house-hero__stage {
  --pointer-p: .5;
  --pointer-balance: 0;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.revision-ten .house-hero__identity {
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  align-self: start;
  transform: translate3d(calc(var(--scene-balance) * -.45rem), calc(var(--film-phase-c, 0) * -.7rem), 0);
  transform-origin: 50% 50%;
}
.revision-ten .house-hero__identity h1 {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: clamp(1rem, 4vw, 4rem);
  margin: clamp(.8rem, 2vh, 1.5rem) 0 0;
  font-size: clamp(5rem, 10.4vw, 12.5rem);
  line-height: .72;
  white-space: nowrap;
}
.revision-ten .house-hero__identity h1 span {
  display: block;
  will-change: transform;
}
.revision-ten .house-hero__identity h1 span:first-child {
  transform: translate3d(calc(var(--pointer-balance, 0) * -.65rem), 0, 0) rotate(calc(var(--pointer-balance, 0) * -.08deg));
  transform-origin: 0 50%;
}
.revision-ten .house-hero__identity h1 span:last-child {
  transform: translate3d(calc(var(--pointer-balance, 0) * .65rem), 0, 0) rotate(calc(var(--pointer-balance, 0) * .08deg));
  transform-origin: 100% 50%;
}
.revision-ten .house-hero__media {
  z-index: 1;
  grid-column: 3 / 11;
  grid-row: 2;
  width: min(50vw, 50rem);
  max-width: 100%;
  justify-self: center;
  align-self: center;
  margin: 0;
  transform: translate3d(calc((var(--scene-balance) * .35rem) + (var(--pointer-balance, 0) * .32rem)), calc(var(--scene-balance) * -.22rem), 0) rotate(calc(var(--pointer-balance, 0) * .12deg)) scale(calc(.985 + (var(--film-phase-a, 0) * .015)));
  transform-origin: 50% 55%;
  will-change: transform;
}
.revision-ten .house-hero__deck {
  grid-column: 1 / 5;
  grid-row: 3;
  opacity: calc(1 - (var(--film-phase-d, 0) * .18));
  transform: translate3d(calc(var(--film-phase-c, 0) * -.35rem), calc(var(--film-phase-d, 0) * .3rem), 0);
}
html.has-js:not(.motion-reduced) .revision-ten .house-hero__stage.is-pointer-enabled { cursor: ew-resize; }
html.has-js:not(.motion-reduced) .revision-ten .house-hero__stage.is-pointer-enabled .kre-core-film__instruction { display: inline; }

@media (max-width: 900px) {
  .revision-ten .house-hero__identity {
    grid-column: 1;
    grid-row: 1;
    padding-top: 1rem;
    transform: translate3d(0, calc(var(--film-phase-c, 0) * -.35rem), 0);
  }
  .revision-ten .house-hero__identity h1 {
    display: grid;
    gap: 0;
    font-size: clamp(4.4rem, 19vw, 7.4rem);
    line-height: .7;
    white-space: normal;
  }
  .revision-ten .house-hero__identity h1 span:last-child {
    justify-self: end;
    margin-top: -.05em;
  }
  .revision-ten .house-hero__identity h1 span {
    transform: none;
  }
  .revision-ten .house-hero__media {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    transform: translate3d(0, calc(var(--scene-balance) * -.14rem), 0) scale(calc(.99 + (var(--film-phase-a, 0) * .01)));
  }
  .revision-ten .house-hero__deck {
    grid-column: 1;
    grid-row: 3;
    transform: none;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-ten .house-hero__identity {
    grid-column: 1 / 5;
    grid-row: 1;
    align-self: center;
    padding-top: 0;
  }
  .revision-ten .house-hero__identity h1 {
    display: block;
    font-size: clamp(3.1rem, 7.5vw, 4.5rem);
    white-space: normal;
  }
  .revision-ten .house-hero__identity h1 span {
    display: block;
    justify-self: start;
    margin: 0;
    transform: none;
  }
  .revision-ten .house-hero__media {
    grid-column: 6 / 13;
    grid-row: 1 / 3;
    width: auto;
    max-width: none;
    margin: 0;
  }
  .revision-ten .house-hero__deck {
    grid-column: 1 / 5;
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .revision-ten .house-hero__identity,
  .revision-ten .house-hero__identity h1 span,
  .revision-ten .house-hero__media,
  .revision-ten .house-hero__deck { transform: none; }
}

/* Revision 11: the opening title occupies the full first viewport. */
.revision-eleven .house-hero__stage {
  grid-template-rows: minmax(0, 1fr);
}
.revision-eleven .house-hero__identity {
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 0;
}
.revision-eleven .house-hero__identity h1 {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: clamp(.65rem, 1.5vh, 1rem) 0 0;
  font-size: clamp(7rem, 15.4vw, 17.5rem);
  line-height: .68;
  white-space: nowrap;
}
.revision-eleven .house-hero__identity h1 span:last-child {
  align-self: flex-end;
}
.revision-eleven .house-hero__media {
  z-index: 2;
  grid-column: 4 / 10;
  grid-row: 1;
  width: min(40vw, 38rem);
  max-width: 100%;
  justify-self: center;
  align-self: center;
}
.revision-eleven .house-hero__deck {
  z-index: 3;
  grid-column: 1 / 4;
  grid-row: 1;
  width: 100%;
  max-width: 22rem;
  align-self: center;
}
.revision-eleven .house-hero__deck > p {
  font-size: clamp(1.05rem, 1.55vw, 1.5rem);
  line-height: 1.12;
}

@media (max-width: 900px) {
  .revision-eleven .house-hero__stage {
    grid-template-rows: auto minmax(0, 1fr) auto;
  }
  .revision-eleven .house-hero__identity {
    grid-column: 1;
    grid-row: 1;
    height: auto;
    display: block;
    align-self: start;
    padding-top: 1rem;
  }
  .revision-eleven .house-hero__identity h1 {
    display: grid;
    gap: 0;
    margin-top: .85rem;
    font-size: clamp(4.8rem, 20vw, 9rem);
    line-height: .68;
    white-space: normal;
  }
  .revision-eleven .house-hero__identity h1 span:last-child {
    justify-self: end;
    margin-top: -.05em;
  }
  .revision-eleven .house-hero__media {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    align-self: center;
  }
  .revision-eleven .house-hero__deck {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    max-width: 26rem;
    align-self: end;
  }
  .revision-eleven .house-hero__deck > p {
    font-size: clamp(1.12rem, 5.1vw, 1.45rem);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-eleven .house-hero__stage {
    grid-template-rows: 1fr auto;
  }
  .revision-eleven .house-hero__identity {
    grid-column: 1 / 5;
    grid-row: 1;
    height: auto;
    display: block;
    align-self: center;
    padding-top: 0;
  }
  .revision-eleven .house-hero__identity h1 {
    display: block;
    margin-top: .6rem;
    font-size: clamp(3.1rem, 7.5vw, 4.5rem);
    line-height: .72;
  }
  .revision-eleven .house-hero__identity h1 span:last-child {
    margin: 0;
  }
  .revision-eleven .house-hero__media {
    grid-column: 6 / 13;
    grid-row: 1 / 3;
    width: auto;
    max-width: none;
    justify-self: stretch;
  }
  .revision-eleven .house-hero__deck {
    grid-column: 1 / 5;
    grid-row: 2;
    max-width: none;
  }
}

/* Revision 12 final cascade: the media, not a picture card, fills the header. */
.revision-twelve .house-hero__stage {
  grid-template-rows: minmax(0, 1fr);
}
.revision-twelve .house-hero__identity {
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  padding: 0;
}
.revision-twelve .house-hero__identity h1 {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  margin: clamp(.65rem, 1.5vh, 1rem) 0 0;
  font-size: clamp(7.2rem, 15.8vw, 18rem);
  line-height: .68;
  white-space: nowrap;
}
.revision-twelve .house-hero__identity h1 span:last-child {
  align-self: flex-end;
}
.revision-twelve .house-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  transform: none;
  overflow: hidden;
}
.revision-twelve .house-hero__deck {
  z-index: 3;
  grid-column: 1 / 4;
  grid-row: 1;
  width: 100%;
  max-width: 22rem;
  align-self: center;
}

@media (max-width: 900px) {
  .revision-twelve .house-hero__stage {
    grid-template-rows: minmax(0, 1fr);
  }
  .revision-twelve .house-hero__identity {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
  }
  .revision-twelve .house-hero__identity h1 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: .85rem;
    font-size: clamp(5.2rem, 22vw, 10rem);
    line-height: .67;
    white-space: nowrap;
  }
  .revision-twelve .house-hero__identity h1 span:last-child {
    align-self: flex-end;
    margin: 0 0 clamp(5.7rem, 18vh, 8rem);
  }
  .revision-twelve .house-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .revision-twelve .house-hero__deck {
    grid-column: 1;
    grid-row: 1;
    max-width: min(22rem, 78vw);
    align-self: center;
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-twelve .house-hero__identity {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 100%;
    display: flex;
    align-self: stretch;
  }
  .revision-twelve .house-hero__identity h1 {
    display: flex;
    margin-top: .35rem;
    font-size: clamp(4rem, 11vw, 7rem);
  }
  .revision-twelve .house-hero__identity h1 span:last-child {
    align-self: flex-end;
    margin: 0 0 1.5rem;
  }
  .revision-twelve .house-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .revision-twelve .house-hero__deck {
    grid-column: 1 / 4;
    grid-row: 1;
    max-width: 18rem;
    align-self: center;
  }
}

/* Revision 17: every interactive brand film stays full-screen while scroll scrubs it. */
html.has-js:not(.motion-reduced) .brand-hero[data-scene-mode="sticky"] > .brand-hero__stage.scene-stage {
  position: sticky;
  top: 0;
  height: 100svh;
}

/* Copy belongs to the film plane; avoid detached cards over cinematic headers. */
body.home-page .house-hero .house-hero__deck,
.brand-hero--film .brand-hero__deck,
.about-film-hero .brand-hero__deck {
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.home-page .house-hero .house-hero__deck,
.about-film-hero .brand-hero__deck {
  text-shadow: 0 1px .75rem rgba(246, 243, 236, .96);
}

.digest-film-hero .brand-hero__deck,
.brand-destination--miami .brand-hero__deck,
.aetheranium-film-hero .brand-hero__deck {
  text-shadow: 0 1px 1rem rgba(2, 4, 6, .72);
}

/* Revision 19: high-resolution route films, seamless edges and quiet local-time themes. */
html[data-theme="dark"] body.revision-seven {
  --paper: #0b1215;
  --paper-warm: #111a1d;
  --marine: #7ba7ab;
  --nickel: #879496;
  --crystal-line: rgba(211, 230, 230, .18);
}

html[data-theme="dark"] .fashion-cover {
  background: linear-gradient(115deg, var(--mineral-bright), var(--mineral) 60%, #101a1d);
}

html[data-theme="dark"] .miami-filmstrip,
html[data-theme="dark"] .launch-story__image img,
html[data-theme="dark"] .archive-list article img,
html[data-theme="dark"] .revision-eight .development-card figure {
  background: #141e21;
}

html[data-theme="dark"] .about-film-hero,
html[data-theme="dark"] .about-film-hero .brand-hero__media .scroll-film__viewport {
  background: #0b1215;
}

html[data-theme="dark"] body.home-page .house-hero__media .scroll-film__poster > img,
html[data-theme="dark"] body.home-page .house-hero__media video,
html[data-theme="dark"] .about-film-hero .brand-hero__media .scroll-film__poster > img,
html[data-theme="dark"] .about-film-hero .brand-hero__media video {
  filter: brightness(.58) saturate(.86);
  transition: filter 260ms var(--motion-fluid), opacity 180ms ease;
}

html[data-theme="dark"] body.home-page .house-hero__identity h1,
html[data-theme="dark"] body.home-page .house-hero__identity .edition-kicker,
html[data-theme="dark"] body.home-page .house-hero .house-hero__deck,
html[data-theme="dark"] .about-film-hero .brand-hero__title,
html[data-theme="dark"] .about-film-hero .brand-hero__deck {
  color: var(--night-ink);
  text-shadow: 0 .08rem .8rem rgba(2, 4, 6, .82);
}

html[data-theme="dark"] .about-film-hero .brand-hero__media figcaption { color: rgba(245, 241, 232, .78); }
html[data-theme="dark"] body.menu-open .masthead-brand__dark { opacity: 0; }
html[data-theme="dark"] body.menu-open .masthead-brand__light { opacity: 1; }

body,
.edition-menu,
.fashion-cover,
.editorial-resolution,
.edition-opening,
.dispatch-body,
.home-manifesto,
.policy-document,
.policy-hero,
.launch-intro,
.launch-stories,
.editorial-promise,
.archive-cover,
.archive-list,
.profile-cover,
.profile-disclosure,
.profile-next,
.brand-static-hero,
.brand-gallery,
.brand-editorial-link,
.about-ownership,
.project-register,
.about-threshold,
.release-register,
.crystal-house-intro,
.house-notes {
  transition: color 260ms var(--motion-fluid), background-color 260ms var(--motion-fluid), border-color 260ms var(--motion-fluid);
}

.theme-toggle {
  grid-column: 3;
  grid-row: 1;
  z-index: 3;
  justify-self: end;
  align-self: start;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  margin: 1.75rem -.85rem 0 0;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  opacity: .52;
  cursor: pointer;
  transition: opacity 180ms ease, transform 240ms var(--motion-fluid);
}
.theme-toggle:hover,
.theme-toggle:focus-visible { opacity: 1; transform: rotate(10deg); }
.theme-toggle:disabled { opacity: 0; pointer-events: none; }
.theme-toggle__glyph {
  width: .86rem;
  height: .86rem;
  display: block;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: conic-gradient(currentColor 0 50%, transparent 50% 100%);
  box-shadow: 0 0 0 .22rem color-mix(in srgb, currentColor 7%, transparent);
}
.theme-toggle[data-mode="light"] .theme-toggle__glyph { background: transparent; }
.theme-toggle[data-mode="dark"] .theme-toggle__glyph { background: currentColor; }

body .house-hero .house-hero__media .scroll-film__viewport::after,
body .brand-hero--film .brand-hero__media .scroll-film__viewport::after,
body .about-film-hero .brand-hero__media .scroll-film__viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: -1px;
  border: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--hero-edge, rgba(7, 16, 20, .7)) 0, transparent 9%, transparent 91%, var(--hero-edge, rgba(7, 16, 20, .7)) 100%),
    linear-gradient(180deg, var(--hero-edge, rgba(7, 16, 20, .7)) 0, transparent 12%, transparent 82%, var(--hero-edge, rgba(7, 16, 20, .7)) 100%);
  opacity: .64;
}
body.home-page .house-hero { --hero-edge: rgba(211, 209, 202, .92); }
.digest-film-hero { --hero-edge: rgba(2, 4, 6, .92); }
.brand-destination--miami { --hero-edge: rgba(7, 16, 20, .82); }
.aetheranium-film-hero { --hero-edge: rgba(210, 208, 200, .82); }
.about-film-hero { --hero-edge: rgba(215, 210, 202, .9); }
html[data-theme="dark"] body.home-page .house-hero,
html[data-theme="dark"] .about-film-hero { --hero-edge: rgba(7, 16, 20, .94); }

@media (max-width: 900px) {
  .theme-toggle { margin-top: 1.35rem; }
  .digest-film-hero .brand-hero__media .scroll-film__poster > img,
  .digest-film-hero .brand-hero__media video { object-position: 50% 50%; }
  .aetheranium-film-hero .brand-hero__media .scroll-film__poster > img,
  .aetheranium-film-hero .brand-hero__media video { object-position: 50% 52%; }
  body .house-hero .house-hero__media .scroll-film__viewport::after,
  body .brand-hero--film .brand-hero__media .scroll-film__viewport::after,
  body .about-film-hero .brand-hero__media .scroll-film__viewport::after {
    background:
      linear-gradient(90deg, var(--hero-edge, rgba(7, 16, 20, .7)) 0, transparent 14%, transparent 86%, var(--hero-edge, rgba(7, 16, 20, .7)) 100%),
      linear-gradient(180deg, var(--hero-edge, rgba(7, 16, 20, .7)) 0, transparent 14%, transparent 76%, var(--hero-edge, rgba(7, 16, 20, .7)) 100%);
    opacity: .72;
  }
  .digest-film-hero .brand-hero__title,
  .aetheranium-film-hero .brand-hero__title { top: calc(var(--header-h) + clamp(.9rem, 3.2vh, 2rem)); }
  .digest-film-hero .brand-hero__deck,
  .aetheranium-film-hero .brand-hero__deck {
    bottom: clamp(3.5rem, 7.5vh, 5.5rem);
    max-width: calc(100% - (2 * var(--gutter)));
  }
}

@media (max-width: 480px) {
  .theme-toggle { margin: 0 -.75rem 0 0; }
  .digest-film-hero .brand-hero__title h1 {
    max-width: 7ch;
    font-size: clamp(4.1rem, 20vw, 6.2rem);
    line-height: .78;
  }
  .aetheranium-film-hero .brand-hero__title h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 15.8vw, 5.1rem);
    line-height: .84;
  }
  .digest-film-hero .brand-hero__deck,
  .aetheranium-film-hero .brand-hero__deck { width: min(20rem, calc(100% - (2 * var(--gutter)))); }
  .digest-film-hero .brand-hero__deck p,
  .aetheranium-film-hero .brand-hero__deck p { font-size: clamp(1.05rem, 5vw, 1.32rem); line-height: 1.18; }
}

@media (orientation: landscape) and (max-height: 520px) {
  .revision-seven .masthead-context { display: none; }
  .theme-toggle { margin-top: .65rem; }
  .digest-film-hero .brand-hero__title,
  .aetheranium-film-hero .brand-hero__title { top: calc(var(--header-h) + .25rem); }
  .digest-film-hero .brand-hero__deck,
  .aetheranium-film-hero .brand-hero__deck { bottom: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
  .theme-toggle,
  body,
  .edition-menu { transition: none; }
}

/* Revision 20: preserve mineral color, protect Miami copy and keep the index legible in both themes. */
html[data-theme="dark"] body.home-page .house-hero__media .scroll-film__poster > img,
html[data-theme="dark"] body.home-page .house-hero__media video {
  filter: brightness(.67) saturate(1.12) contrast(1.05);
}

html[data-theme="dark"] body.home-page .house-hero__identity h1,
html[data-theme="dark"] body.home-page .house-hero__identity .edition-kicker,
html[data-theme="dark"] body.home-page .house-hero .house-hero__deck {
  text-shadow: 0 .08rem 1rem rgba(2, 4, 6, .9), 0 0 .12rem rgba(2, 4, 6, .72);
}

.revision-seven .edition-menu {
  --menu-ink: #111719;
  --menu-muted: #4c5758;
  --menu-soft: #505b5c;
  --menu-line: rgba(17, 23, 25, .24);
  --menu-focus: #245968;
  color: var(--menu-ink);
}

html[data-theme="dark"] .revision-seven .edition-menu {
  --menu-ink: #f0ede6;
  --menu-muted: #bdc7c7;
  --menu-soft: #b5c0c1;
  --menu-line: rgba(224, 235, 234, .24);
  --menu-focus: #bcecff;
}

.revision-seven .edition-menu::before {
  background: linear-gradient(transparent, var(--menu-line) 8%, var(--menu-line) 92%, transparent);
}

.revision-seven .edition-menu__heading > p:last-child,
.revision-seven .edition-menu__utilities span,
.revision-seven .edition-menu__visual figcaption {
  color: var(--menu-soft);
}

.revision-seven .edition-menu nav a {
  color: var(--menu-muted);
  border-color: var(--menu-line);
}

.revision-seven .edition-menu nav a:last-child {
  border-bottom-color: var(--menu-line);
}

.revision-seven .edition-menu a:focus-visible {
  outline-color: var(--menu-focus);
}

.revision-seven .edition-menu nav a:hover,
.revision-seven .edition-menu nav a:focus-visible,
.revision-seven .edition-menu nav a.is-active,
.revision-seven .edition-menu nav a[aria-current="page"] {
  color: var(--menu-ink);
}

.brand-destination--miami .brand-hero {
  --miami-hero-ink: #111719;
}

.brand-destination--miami .brand-hero__title,
.brand-destination--miami .brand-hero__deck {
  color: var(--miami-hero-ink);
  text-shadow: none;
}

.brand-destination--miami .brand-hero__deck a {
  color: var(--miami-hero-ink);
  background: rgba(246, 243, 236, .12);
}

.brand-destination--miami .brand-hero__deck a:hover,
.brand-destination--miami .brand-hero__deck a:focus-visible {
  color: #f5f1e8;
  background: #111719;
}

.miami-hero__scrim {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.miami-hero__scrim--title {
  top: calc(var(--header-h) + .25rem);
  left: 0;
  width: min(66rem, 72vw);
  height: min(62vh, 38rem);
  background: radial-gradient(ellipse at 26% 42%, rgba(246, 243, 236, .66) 0, rgba(246, 243, 236, .34) 43%, transparent 73%);
}

.miami-hero__scrim--deck {
  right: 0;
  bottom: 0;
  width: min(50rem, 62vw);
  height: min(54vh, 34rem);
  background: radial-gradient(ellipse at 70% 57%, rgba(246, 243, 236, .76) 0, rgba(246, 243, 236, .36) 40%, transparent 72%);
}

@media (max-width: 900px) {
  .miami-hero__scrim--title {
    width: 100%;
    height: 54vh;
    background: radial-gradient(ellipse at 30% 35%, rgba(246, 243, 236, .72) 0, rgba(246, 243, 236, .38) 46%, transparent 76%);
  }

  .miami-hero__scrim--deck {
    right: auto;
    left: 0;
    width: 100%;
    height: 47vh;
    background: linear-gradient(0deg, rgba(246, 243, 236, .8) 0, rgba(246, 243, 236, .36) 47%, transparent 82%);
  }
}

@media (orientation: landscape) and (max-height: 520px) {
  .miami-hero__scrim--title { height: 74vh; }
  .miami-hero__scrim--deck { width: 52vw; height: 72vh; }

  .brand-destination--miami .brand-hero__title {
    top: calc(var(--header-h) + .15rem);
    right: auto;
    width: 46vw;
  }

  .brand-destination--miami .brand-hero__title h1 {
    font-size: clamp(3.45rem, 8vw, 4.3rem);
    line-height: .76;
  }

  .brand-destination--miami .brand-hero__deck {
    right: var(--gutter);
    bottom: 4.15rem;
    left: auto;
    width: min(21rem, 40vw);
  }

  .brand-destination--miami .brand-hero__deck p {
    margin-top: 0;
    font-size: clamp(.78rem, 1.7vw, .92rem);
    line-height: 1.35;
  }
}

/* Revision 21: two-axis, momentum-aware pointer response and tighter reading rhythm. */
@media (hover: hover) and (pointer: fine) {
  html.has-js:not(.motion-reduced) .scene-stage.is-pointer-enabled { cursor: default; }

  html.has-js:not(.motion-reduced) .brand-hero__stage.is-pointer-enabled .brand-hero__media .scroll-film__viewport {
    transform:
      perspective(72rem)
      translate3d(calc(var(--pointer-x, 0) * .3rem), calc(var(--pointer-y, 0) * .22rem), 0)
      rotateX(calc(var(--pointer-y, 0) * -.7deg))
      rotateY(calc(var(--pointer-x, 0) * 1deg))
      scale(1.008);
    transform-origin: center;
    will-change: transform;
  }
}

@media (min-width: 901px) {
  .launch-intro {
    min-height: 78svh;
    padding-block: clamp(6.5rem, 10vw, 10rem);
  }
}
