:root {
  --bg: #06071a;
  --surface: #0b0b0d;
  --surface-2: #0d1023;
  --ecru: #f7f4ee;
  --white: #ffffff;
  --stone: #9a9080;
  --line: rgba(247, 244, 238, 0.16);
  --line-strong: rgba(247, 244, 238, 0.28);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  --ceremonial: Cinzel, "Times New Roman", serif;
  --pad: clamp(1.4rem, 5vw, 6.5rem);

  --house-editorial-axis: var(--pad);
  --header-h: 6rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --entrance-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
}


:root {

  --font-display: "Cormorant Garamond", "EB Garamond", Garamond, Georgia, serif;
  --font-narrative: "EB Garamond", "Cormorant Garamond", Garamond, Georgia, serif;
  --font-label: Cinzel, "Times New Roman", serif;

  --font-functional: var(--sans);


  --type-display-hero: clamp(2.75rem, 5.4vw, 5.25rem);
  --type-display-section: clamp(2.1rem, 4.2vw, 3.5rem);
  --type-display-chapter: clamp(2.4rem, 4.8vw, 4rem);
  --type-narrative-lead: clamp(1.35rem, 2.3vw, 1.95rem);
  --type-body-large: clamp(1.18rem, 1.7vw, 1.4rem);
  --type-body: clamp(1.05rem, 1.4vw, 1.2rem);
  --type-functional: clamp(0.85rem, 1vw, 0.95rem);
  --type-metadata: 0.72rem;
  --type-house-label: clamp(0.62rem, 0.85vw, 0.72rem);

  --lh-display-hero: 1.04;
  --lh-display: 1.08;
  --lh-lead: 1.3;
  --lh-body-large: 1.55;
  --lh-body: 1.66;
  --lh-functional: 1.4;

  --track-display: -0.022em;
  --track-tight: -0.012em;
  --track-label: 0.18em;
  --track-metadata: 0.14em;


  --measure-hero: 17ch;
  --measure-statement: 24ch;
  --measure-lead: 34ch;
  --measure-body: 60ch;


  --color-house-bg: #06071a;
  --color-house-depth: #04050f;
  --color-text-primary: #f7f4ee;
  --color-text-secondary: rgba(247, 244, 238, 0.82);
  --color-text-muted: rgba(247, 244, 238, 0.62);
  --color-text-functional: rgba(247, 244, 238, 0.78);
  --color-accent-stone: #9a9080;
  --color-divider: rgba(247, 244, 238, 0.14);
  --color-focus: #f7f4ee;
  --color-media-atmosphere: rgba(247, 244, 238, 0.05);


  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;  --space-4: 1rem;
  --space-5: 1.5rem;   --space-6: 2rem;     --space-7: 3rem;     --space-8: 4rem;
  --space-9: 6rem;     --space-10: 8rem;    --space-11: 10rem;   --space-12: 12rem;
  --space-13: 16rem;
  --space-label-to-title: var(--space-5);
  --space-title-to-body: var(--space-4);
  --space-body-to-action: var(--space-6);
  --space-copy-to-media: clamp(3rem, 8vh, 6rem);
  --space-narrative-beat: clamp(4.5rem, 13vh, 8rem);
  --space-section-entry: clamp(6rem, 15vh, 11rem);
  --space-section-release: clamp(7rem, 16vh, 12rem);


  --grid-max: 90rem;
  --grid-gap: clamp(1.5rem, 2vw, 2rem);
  --measure-narrow: 34rem;
  --measure-medium: 48rem;
  --measure-wide: 64rem;
  --media-wide: 88rem;


  --dur-feedback: 160ms;
  --dur-ui: 320ms;
  --dur-atmos: 600ms;
  --ease-standard: var(--ease);
  --ease-settle: var(--entrance-ease);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.hall-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }


@media (prefers-reduced-motion: no-preference) {
  @view-transition { navigation: auto; }
}

.skip-link {
  position: fixed;
  z-index: 200;
  left: 1rem;
  top: 1rem;
  padding: 0.8rem 1rem;
  background: var(--ecru);
  color: var(--surface);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.passage {
  position: fixed;
  z-index: 150;
  inset: 0;
  background: #02030c;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.34s ease;
}
body.is-passing .passage { opacity: 1; }

.house-nav {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  padding-top: var(--safe-t);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: calc(var(--house-editorial-axis) + var(--safe-l)) calc(var(--house-editorial-axis) + var(--safe-r));
  pointer-events: none;
}
.house-nav > * { pointer-events: auto; }
.hall-trigger {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.19em;

  margin-left: -0.715rem;
}
.hall-trigger__label { display: none; }
.hall-trigger__mark {
  position: relative;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(247, 244, 238, 0.28);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.35s ease, background 0.35s ease;
}
.hall-trigger__mark span {
  position: absolute;
  left: 50%;
  width: 0.92rem;
  height: 1px;
  margin-left: -0.46rem;
  background: currentColor;
  transition: transform 0.45s var(--ease), top 0.45s var(--ease), opacity 0.3s ease;
}
.hall-trigger__mark span:nth-child(1) { top: 0.7rem; }
.hall-trigger__mark span:nth-child(2) { top: 1.15rem; }
.hall-trigger__mark span:nth-child(3) { top: 1.6rem; }
.hall-trigger[aria-expanded="true"] .hall-trigger__mark {
  border-color: rgba(247, 244, 238, 0.46);
  background: rgba(247, 244, 238, 0.04);
}
.hall-trigger[aria-expanded="true"] .hall-trigger__mark span:nth-child(1) { top: 1.15rem; transform: rotate(45deg); }
.hall-trigger[aria-expanded="true"] .hall-trigger__mark span:nth-child(2) { opacity: 0; }
.hall-trigger[aria-expanded="true"] .hall-trigger__mark span:nth-child(3) { top: 1.15rem; transform: rotate(-45deg); }
.house-seal {
  justify-self: center;
  font-family: var(--ceremonial);
  font-size: 1.45rem;
  letter-spacing: 0.2em;
  padding-left: 0.2em;
}
.house-action {
  justify-self: end;
  text-align: right;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  font-family: var(--ceremonial);
}
.house-action a,
.hall-trigger,
.house-seal { transition: color 0.35s ease, opacity 0.35s ease; }
.house-action a:hover,
.hall-trigger:hover,
.house-seal:hover { color: var(--stone); }
.hall-trigger:hover .hall-trigger__mark { border-color: rgba(127, 96, 0, 0.65); }

.hall {
  position: fixed;
  z-index: 90;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}
.hall.is-open { visibility: visible; opacity: 1; }
.hall[inert] { pointer-events: none; }
.hall__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 4, 14, 0.62);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  cursor: default;
}
.hall__card {
  position: absolute;
  top: calc(var(--header-h) + 0.75rem);
  left: var(--pad);
  width: min(31rem, calc(100vw - (2 * var(--pad))));
  max-height: calc(100vh - var(--header-h) - 2rem);
  max-height: calc(100svh - var(--header-h) - 2rem);
  overflow: auto;
  padding: clamp(2rem, 4vw, 3.4rem);
  background: var(--ecru);
  color: #151515;
  border: 1px solid rgba(154, 144, 128, 0.35);
  border-radius: 1.05rem;
  box-shadow: 0 2rem 7rem rgba(0, 0, 0, 0.42);
  transform-origin: top left;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 0.65s var(--ease), opacity 0.5s ease;
}
.hall.is-open .hall__card { transform: scale(1); opacity: 1; }
.hall__heading p,
.eyebrow,
.chapter__register,
.location-mark,
.hall__position {
  text-transform: uppercase;
  font-size: 0.64rem;
  letter-spacing: 0.19em;
}
.hall__heading p { color: #6d675f; }
.hall__heading h2 {
  margin-top: 0.75rem;
  font-family: var(--ceremonial);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.world-list {
  list-style: none;
  display: grid;
  gap: clamp(1.15rem, 3vh, 1.8rem);
  margin-top: 2.5rem;
}
.world {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.9rem;
  align-items: start;
}
.world__num { font-family: var(--ceremonial); font-size: 0.78rem; color: #6f685f; }
.world a,
.world > span:last-child { display: grid; gap: 0.2rem; }
.world__name { font-family: var(--serif); font-size: 1.3rem; line-height: 1.05; }
.world__state { text-transform: uppercase; font-size: 0.58rem; letter-spacing: 0.15em; color: #746e65; }
.world--open a { transition: color 0.3s ease, transform 0.4s var(--ease); }
.world--open a:hover { color: #6d6254; transform: translateX(0.25rem); }
.world--closed { opacity: 0.48; }
.hall__position {
  margin-top: 2.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(21, 21, 21, 0.14);
  color: #736d64;
}

.view { min-height: 100vh; min-height: 100dvh; }
.view[hidden] { display: none; }
.scene { padding: calc(var(--header-h) + 4rem) var(--pad) 8rem; }
.eyebrow { color: var(--stone); }
.text-action,
.chapter__door,
.room-return a,
.room-return button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  padding: 0 0 0.45rem;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.17em;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease, gap 0.4s var(--ease);
}
.text-action:hover,
.chapter__door:hover,
.room-return a:hover,
.room-return button:hover { color: var(--stone); border-color: var(--stone); gap: 1rem; }

.threshold {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.threshold::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -3;
  background:
    radial-gradient(135% 135% at 50% 42%, transparent 54%, rgba(2, 3, 10, 0.4) 100%),
    radial-gradient(circle at 62% 40%, rgba(56, 62, 102, 0.2), transparent 28%),
    radial-gradient(circle at 28% 65%, rgba(154, 144, 128, 0.09), transparent 25%),
    linear-gradient(145deg, #06071a 0%, #080b20 45%, #03040e 100%);
}
.threshold__architecture { position: absolute; inset: 0; z-index: -1; perspective: 60rem; transform-style: preserve-3d; }
.plane {
  position: absolute;
  background: rgba(255, 255, 255, 0.018);
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --hover-lift: 0px;
  will-change: transform;
  transition: transform 0.15s linear, border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
.plane--one {
  width: 44vw; height: 65vh; left: -9vw; top: 19vh;
  border: 1px solid rgba(247, 244, 238, 0.1);
  filter: blur(0.4px);
  box-shadow:
    inset 0 0 3.2rem rgba(2, 3, 10, 0.34),
    0 0 4.5rem rgba(2, 3, 10, 0.3);
  background: linear-gradient(155deg, rgba(154, 144, 128, 0.045), rgba(255, 255, 255, 0.012) 55%, transparent);
  transform:
    translateZ(calc(-92px + var(--hover-lift)))
    rotateY(calc(28deg + var(--tilt-y)))
    rotateZ(-7deg)
    rotateX(var(--tilt-x));
}
.plane--two {
  width: 40vw; height: 54vh; right: -10vw; top: 9vh;
  border: 1px solid var(--line);
  box-shadow: 0 0 5rem rgba(2, 3, 10, 0.28);
  background: linear-gradient(-18deg, rgba(112, 132, 182, 0.05), rgba(255, 255, 255, 0.014) 55%, transparent);
  transform:
    translateZ(var(--hover-lift))
    rotateY(calc(-32deg + var(--tilt-y)))
    rotateZ(8deg)
    rotateX(var(--tilt-x));
}
.plane--three {
  width: 30vw; height: 42vh; right: 16vw; bottom: -20vh;
  border: 1px solid var(--line-strong);
  box-shadow:
    inset 0 0 2rem rgba(2, 3, 10, 0.16),
    0 0 3.6rem rgba(2, 3, 10, 0.4);
  background:
    repeating-linear-gradient(92deg, rgba(232, 227, 214, 0.026) 0, rgba(232, 227, 214, 0.026) 1px, transparent 1px, transparent 13px),
    rgba(255, 255, 255, 0.013);
  transform:
    translateZ(calc(112px + var(--hover-lift)))
    rotateZ(calc(-17deg + var(--tilt-y)))
    rotateX(var(--tilt-x));
}
.plane__corner { position: absolute; width: 0; height: 0; pointer-events: none; }
.plane__corner--tl { top: 0; left: 0; }
.plane__corner--tr { top: 0; right: 0; }
.plane__corner--br { bottom: 0; right: 0; }
.plane__corner--bl { bottom: 0; left: 0; }
.plane.is-near {
  --hover-lift: 26px;
  border-color: rgba(247, 244, 238, 0.44);
  filter: blur(0px);
  box-shadow: inset 0 0 1.4rem rgba(2, 3, 10, 0.1), 0 0 5.5rem rgba(0, 0, 0, 0.42);
}
.threshold__content {
  width: min(52rem, calc(100vw - 2 * var(--pad)));
  text-align: center;
  padding-top: 2rem;
}
.threshold h1,
.sports-opening h1,
.room__header h1 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--ecru);
  line-height: 0.9;
}
.threshold h1 { margin-top: 1rem; font-size: clamp(4rem, 10vw, 8.2rem); }
.welcome-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0.01em;
}
.welcome-word__w {
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 400;
}
.welcome-word__rest {
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-weight: 400;
}
.welcome-word__o {
  font-style: italic;
}
.ceremonial {
  margin-top: 1.45rem;
  font-family: var(--ceremonial);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.82rem, 1.1vw, 0.94rem);
  color: #b8a98a;
}
.threshold__intro {
  width: min(34rem, 100%);
  margin: 1.8rem auto 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  line-height: 1.6;
  letter-spacing: 0.006em;
}
.threshold .text-action { margin-top: 2.8rem; font-family: var(--ceremonial); }
.location-mark {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 1.7rem;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-family: var(--ceremonial);
  pointer-events: none;
}

.sports { background: var(--bg); }
.sports-opening {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(154,144,128,.04) 1px, transparent 1px) 0 0 / 9vw 100%,
    radial-gradient(circle at 70% 45%, rgba(60, 66, 112, .2), transparent 24%);
}
.sports-opening h1 { margin-top: 1.6rem; font-size: clamp(4rem, 9vw, 8rem); max-width: 10ch; }
.sports-opening__statement { margin-top: 2.2rem; width: min(35rem, 100%); font-family: var(--serif); font-size: clamp(1.45rem, 2.6vw, 2.35rem); line-height: 1.25; color: var(--ecru); }
.sports-opening .text-action { margin-top: 3rem; align-self: flex-start; }


.corridor {
  --rail-line: 1.4rem;
  --rail-num-gap: 0.9rem;
  position: relative;
}
.corridor::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--pad) + var(--rail-line));
  width: 1px;
  background: linear-gradient(var(--line), rgba(247,244,238,.04), var(--line));
}
.chapter__stage {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding-block: clamp(6rem, 12vh, 10rem);
  padding-right: var(--pad);
  padding-left: calc(var(--pad) + var(--rail-line) + 1.8rem);
}
.chapter__landmark {
  position: absolute;
  left: 0;

  top: 50vh;
  top: 50dvh;
  transform: translateY(-50%);
  width: calc(var(--pad) + var(--rail-line));
  padding-right: var(--rail-num-gap);
  text-align: right;
  font-family: var(--ceremonial);
  font-size: 0.78rem;
  color: var(--stone);
}
.chapter__body { max-width: 39rem; }
.chapter__register { display: flex; flex-wrap: wrap; gap: 0.8rem 1.6rem; color: var(--stone); }
.chapter h2 { margin-top: 1.4rem; font-family: var(--serif); font-weight: 300; font-size: clamp(3rem, 6vw, 6rem); line-height: 0.95; color: var(--ecru); }
.chapter__body > p { margin-top: 1.8rem; max-width: 32rem; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.chapter__door { margin-top: 2.8rem; }
.chapter__closed { display: block; margin-top: 2.5rem; text-transform: uppercase; font-size: 0.62rem; letter-spacing: 0.16em; color: var(--stone); }
.chapter__plate {
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 17rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247,244,238,.14);
  background: linear-gradient(135deg, rgba(247,244,238,.02), rgba(154,144,128,.03));
  color: rgba(255,255,255,.34);
  text-transform: uppercase;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}
.chapter--open .chapter__plate { border-color: rgba(154,144,128,.45); }
.chapter--reserved { color: rgba(255,255,255,.78); }
.chapter--reserved h2 { color: rgba(247,244,238,.62); }
.world-return { padding: 8rem var(--pad); display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.world-return p { color: rgba(255,255,255,.5); }

.room { position: relative; background: #050617; }
.room__header { min-height: 85vh; display: flex; flex-direction: column; justify-content: flex-end; }
.room__header h1 { margin-top: 1.5rem; font-size: clamp(4rem, 10vw, 9rem); max-width: 10ch; }
.room__lede { margin-top: 2.3rem; width: min(34rem, 100%); font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); color: var(--ecru); }
.proof {
  display: grid;
  grid-template-columns: minmax(18rem, .75fr) minmax(22rem, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  align-items: center;
}
.proof__copy h2,
.commission-path h2 { margin-top: 1.3rem; font-family: var(--serif); font-weight: 300; font-size: clamp(2.7rem, 5vw, 5rem); line-height: 1; color: var(--ecru); }
.proof__copy > p:last-child,
.commission-path > p:last-of-type { margin-top: 1.8rem; max-width: 31rem; }
.proof__plate {
  position: relative;
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  text-align: center;
  border: 1px solid rgba(154,144,128,.45);
  background: radial-gradient(circle at 50% 50%, rgba(154,144,128,.06), transparent 45%);
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,.65);
}
.proof__plate small { font-size: 0.52rem; color: rgba(255,255,255,.35); }
.proof__corner { position: absolute; width: 1.2rem; height: 1.2rem; border-color: var(--stone); opacity: .7; }
.proof__corner--tl { top: .8rem; left: .8rem; border-top: 1px solid; border-left: 1px solid; }
.proof__corner--tr { top: .8rem; right: .8rem; border-top: 1px solid; border-right: 1px solid; }
.proof__corner--bl { bottom: .8rem; left: .8rem; border-bottom: 1px solid; border-left: 1px solid; }
.proof__corner--br { bottom: .8rem; right: .8rem; border-bottom: 1px solid; border-right: 1px solid; }
.commission-path { min-height: 75vh; padding: clamp(7rem, 15vh, 12rem) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.commission-button {
  align-self: flex-start;
  margin-top: 2.8rem;
  padding: 1rem 1.45rem;
  border: 1px solid var(--stone);
  background: var(--stone);
  color: #090a10;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: .17em;
  transition: background .35s ease, color .35s ease;
}
.commission-button:hover { background: transparent; color: var(--white); }
.room-return { padding: 2.2rem var(--pad) 3rem; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--line); }
.room-return button { border-left: 0; border-right: 0; border-top: 0; }
@media (max-width: 900px) {
  :root { --header-h: 5.4rem; }
  .corridor { --rail-line: 1.3rem; --rail-num-gap: 0.7rem; }
  .chapter { height: 240vh; }
  .chapter__stage {
    grid-template-columns: 1fr;
    padding-left: calc(var(--pad) + var(--rail-line) + 1.4rem);
  }
  .chapter__plate { width: 100%; margin-top: 1rem; }
  .proof { grid-template-columns: 1fr; }
  .world-return { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  :root { --pad: 1.35rem; --header-h: 5rem; }
  .house-action { max-width: 8rem; font-size: 0.58rem; }
  .hall__card {
    top: calc(var(--header-h) + 0.45rem);
    width: calc(100vw - 2 * var(--pad));
    padding: 1.8rem;
    max-height: calc(100vh - var(--header-h) - 1.5rem);
    max-height: calc(100svh - var(--header-h) - 1.5rem);
  }
  .threshold h1 { font-size: clamp(3.5rem, 19vw, 5.8rem); }
  .threshold__intro { max-width: 19rem; }
  .location-mark { font-size: .52rem; }
  .sports-opening { min-height: 92vh; }
  .sports-opening h1 { font-size: clamp(3.5rem, 17vw, 5rem); }
  .sports-opening__statement { font-size: 1.55rem; }

  .chapter { height: 260vh; }
  .chapter__stage {
    grid-template-columns: 2.2rem 1fr;
    gap: 1rem;
    padding-block: 5.5rem;
    padding-left: var(--pad);
    padding-right: var(--pad);
  }
  .chapter__landmark {
    position: static;
    align-self: start;
    padding-top: 0.5rem;
    transform: none;
    width: auto;
    text-align: left;
    padding-right: 0;
    font-size: .65rem;
  }
  .chapter__plate { grid-column: 1 / -1; margin-top: 1.4rem; min-height: 13rem; }
  .corridor::before { display: none; }
  .chapter h2 { font-size: clamp(2.8rem, 14vw, 4.2rem); }
  .chapter__register { display: grid; gap: .35rem; }
  .room__header { min-height: 75vh; }
  .room__header h1 { font-size: clamp(3.6rem, 18vw, 5.8rem); }
  .proof { padding-block: 6rem; }
  .commission-path { min-height: 65vh; }
  .room-return { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


.passage {
  display: grid;
  place-content: center;
  gap: 1.15rem;
  text-align: center;
}
.passage__rule {
  width: 4.5rem;
  height: 1px;
  margin-inline: auto;
  background: var(--stone);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .34s var(--ease);
}
.passage__label {
  color: rgba(255,255,255,.68);
  text-transform: uppercase;
  font-size: .58rem;
  letter-spacing: .24em;
  opacity: 0;
  transform: translateY(.4rem);
  transition: opacity .24s ease, transform .34s var(--ease);
}
body.is-passing .passage__rule { transform: scaleX(1); }
body.is-passing .passage__label { opacity: 1; transform: translateY(0); }

.location-trail {
  position: fixed;
  z-index: 78;
  top: calc(var(--header-h) - .15rem);
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  font-size: .54rem;
  letter-spacing: .16em;
  transition: opacity .35s ease;
}
.location-trail button,
.location-trail a {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  transition: color .3s ease;
}
.location-trail button:hover,
.location-trail a:hover { color: var(--stone); }
.location-trail__room { display: inline-flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.7); }
.location-trail__room[hidden] { display: none; }

.hall__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #6d675f;
  text-transform: uppercase;
  font-size: .58rem;
  letter-spacing: .16em;
}
.hall__meta p { color: inherit; }
.hall__instruction {
  max-width: 24rem;
  margin-top: 1rem;
  color: #746e65;
  font-size: .82rem;
  line-height: 1.5;
}
.world {
  position: relative;
  padding-left: .8rem;
}
.world::before {
  content: "";
  position: absolute;
  left: -.05rem;
  top: .35rem;
  width: 1px;
  height: 1.8rem;
  background: rgba(21,21,21,.16);
}
.world--open::before { background: #8a7e6d; }
.world[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: -.18rem;
  top: .32rem;
  width: .26rem;
  height: .26rem;
  border-radius: 50%;
  background: #8a7e6d;
}

.threshold__architecture,
.sports-opening__architecture,
.room__threshold {
  --depth-x: 0px;
  --depth-y: 0px;
}
.threshold__architecture {
  transform: translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 1.1s var(--ease);
}
.sports-opening__architecture {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 1.1s var(--ease);
}
.sports-opening__architecture span {
  position: absolute;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(transparent, rgba(247,244,238,.12), transparent);
}
.sports-opening__architecture span:nth-child(1) { left: 18%; }
.sports-opening__architecture span:nth-child(2) { left: 50%; opacity: .5; }
.sports-opening__architecture span:nth-child(3) { right: 18%; }
.room__threshold {
  position: absolute;
  inset: var(--header-h) var(--pad) auto;
  height: 42vh;
  pointer-events: none;
  transform: translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 1.1s var(--ease);
}
.room__threshold span {
  position: absolute;
  inset-block: 0;
  width: 1px;
  background: linear-gradient(transparent, rgba(154,144,128,.24), transparent);
}
.room__threshold span:first-child { left: 0; }
.room__threshold span:last-child { right: 0; }

@media (max-width: 640px) {
  .location-trail {
    top: calc(var(--header-h) - .1rem);
    max-width: calc(100vw - 2 * var(--pad));
    gap: .45rem;
    font-size: .47rem;
    letter-spacing: .12em;
    white-space: nowrap;
    overflow: hidden;
  }
  .location-trail__room { gap: .45rem; overflow: hidden; text-overflow: ellipsis; }
  .hall__instruction { font-size: .76rem; }
}

@media (prefers-reduced-motion: reduce) {
  .threshold__architecture,
  .sports-opening__architecture,
  .room__threshold { transform: none !important; }
}


.hall__card {
  width: min(36rem, calc(100vw - (2 * var(--pad))));
  padding: clamp(2.5rem, 4.6vw, 4.2rem);
  overflow: hidden auto;
  isolation: isolate;
  background:
    linear-gradient(138deg, rgba(255,255,255,.82), rgba(247,244,238,.98) 42%, rgba(232,226,215,.96)),
    var(--ecru);
  border-color: rgba(127, 96, 0, 0.26);
  border-radius: 1.25rem;
  box-shadow:
    0 2.5rem 8rem rgba(0, 0, 0, 0.48),
    inset 0 1px rgba(255,255,255,.72);
  clip-path: inset(0 100% 100% 0 round 1.25rem);
  transform: translate3d(-.6rem, -.45rem, 0) scale(.985);
  transition:
    clip-path .72s var(--ease),
    transform .72s var(--ease),
    opacity .42s ease;
}
.hall.is-open .hall__card {
  clip-path: inset(0 0 0 0 round 1.25rem);
  transform: translate3d(0,0,0) scale(1);
}
.hall__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 4%, rgba(127,96,0,.09), transparent 28%),
    linear-gradient(90deg, transparent 0 91%, rgba(21,21,21,.035) 91% 91.2%, transparent 91.2%);
}
.hall__card::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 3.1rem;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(127,96,0,.18) 17%, rgba(127,96,0,.08) 82%, transparent);
}
.hall__architecture {
  position: absolute;
  inset: 1rem;
  pointer-events: none;
  opacity: .68;
}
.hall__axis {
  position: absolute;
  background: rgba(21,21,21,.09);
}
.hall__axis--vertical { top: 2.2rem; bottom: 2.2rem; left: 1.05rem; width: 1px; }
.hall__axis--horizontal { left: 2.2rem; right: 2.2rem; top: 1.05rem; height: 1px; }
.hall__corner {
  position: absolute;
  width: 1.15rem;
  height: 1.15rem;
  border-color: rgba(127,96,0,.32);
}
.hall__corner--tl { top: .5rem; left: .5rem; border-top: 1px solid; border-left: 1px solid; }
.hall__corner--br { right: .5rem; bottom: .5rem; border-right: 1px solid; border-bottom: 1px solid; }
.hall__heading {
  position: relative;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(21,21,21,.12);
}
.hall__meta {
  font-family: var(--ceremonial);
  font-size: .58rem;
  letter-spacing: .18em;
}
.hall__heading h2 {
  max-width: 14ch;
  margin-top: 1.15rem;
  color: #1a1712;
}
.hall__title-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: color .3s ease, transform .4s var(--ease);
}
.hall__title-link:hover,
.hall__title-link:focus-visible {
  color: #6d6254;
  transform: translateX(.25rem);
}
.hall__instruction {
  max-width: 29rem;
  margin-top: 1.2rem;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #625b51;
}
.world-list {
  gap: 0;
  margin-top: 1.3rem;
  border-bottom: 1px solid rgba(21,21,21,.12);
}
.world {
  position: relative;
  grid-template-columns: 2.35rem 1fr;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 1.25rem .2rem 1.15rem;
  border-top: 1px solid rgba(21,21,21,.12);
  transition: opacity .35s ease, background .35s ease;
}
.world::before {
  content: "";
  position: absolute;
  left: -1.05rem;
  top: 50%;
  width: .28rem;
  height: .28rem;
  border: 1px solid rgba(127,96,0,.38);
  border-radius: 50%;
  transform: translateY(-50%) scale(.7);
  opacity: 0;
  transition: opacity .35s ease, transform .45s var(--ease), background .35s ease;
}
.world--open::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
  background: #7f6000;
}
.world__num {
  padding-top: .2rem;
  font-size: .7rem;
  color: #8b7f70;
}
.world__name {
  font-size: 1.27rem;
  color: #1d1914;
}

.world__name { text-transform: uppercase; }
.world__state {
  margin-top: .2rem;
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .17em;
  color: #857a6c;
}
.world--open a {
  position: relative;
  padding-right: 2.4rem;
}
.world--open a::after {
  content: "→";
  position: absolute;
  top: .1rem;
  right: .2rem;
  color: #7f6000;
  opacity: .58;
  transform: translateX(-.25rem);
  transition: transform .4s var(--ease), opacity .3s ease;
}
.world--open:hover {
  background: linear-gradient(90deg, rgba(127,96,0,.055), transparent 72%);
}
.world--open a:hover {
  color: #1d1914;
  transform: translateX(.35rem);
}
.world--open a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
.world--closed { opacity: .42; }
.world--closed:hover { opacity: .58; }
.hall__position {
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .18em;
  color: #83786a;
}

@media (max-width: 640px) {
  .hall__card {
    width: calc(100vw - 2 * var(--pad));
    padding: 2.2rem 1.9rem 2rem;
    border-radius: 1rem;
    clip-path: inset(0 100% 100% 0 round 1rem);
  }
  .hall.is-open .hall__card { clip-path: inset(0 0 0 0 round 1rem); }
  .hall__card::after { right: 1.45rem; }
  .hall__architecture { inset: .7rem; }
  .hall__heading { padding-bottom: 1.7rem; }
  .hall__heading h2 { font-size: 1.16rem; letter-spacing: .15em; }
  .hall__instruction { font-size: .96rem; }
  .world { min-height: 4.35rem; padding-block: 1.05rem; grid-template-columns: 1.85rem 1fr; gap: .75rem; }
  .world__name { font-size: 1.22rem; }
  .world--open a { padding-right: 1.6rem; }
}



.house-seal {
  padding-left: 0;
  line-height: 0;
}
.house-seal__logo {
  display: block;
  width: clamp(2.25rem, 2.6vw, 2.85rem);
  height: auto;
}


.threshold h1 {
  font-size: clamp(3.7rem, 7.4vw, 6.75rem);
}
.welcome-word {
  gap: 0;
  white-space: nowrap;
}
.welcome-word__w {
  margin-right: -0.055em;
}


.hall-trigger {
  gap: .72rem;
  font-family: var(--ceremonial);
}
.hall-trigger__label {
  display: inline-block;
  max-width: 5rem;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  transition: opacity .28s ease, max-width .38s var(--ease), transform .38s var(--ease);
}
.hall-trigger__mark {
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  background: transparent;
  isolation: isolate;
}
.hall-trigger__mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(190, 190, 190, .16);
  opacity: 0;
  transform: scale(.72);
  transition: opacity .28s ease, transform .38s var(--ease);
}
.hall-trigger[aria-expanded="true"] {
  gap: 0;
}
.hall-trigger[aria-expanded="true"] .hall-trigger__label {
  max-width: 0;
  opacity: 0;
  transform: translateX(-.3rem);
}
.hall-trigger[aria-expanded="true"] .hall-trigger__mark {
  border-color: transparent;
  background: transparent;
}
.hall-trigger[aria-expanded="true"]:hover .hall-trigger__mark::before,
.hall-trigger[aria-expanded="true"]:focus-visible .hall-trigger__mark::before {
  opacity: 1;
  transform: scale(1);
}
.hall-trigger:hover .hall-trigger__mark {
  border-color: transparent;
}


.hall__architecture,
.hall__corner,
.hall__axis {
  display: none !important;
}
.hall__card::after {
  content: none !important;
  display: none !important;
}
.hall__card::before {
  background: radial-gradient(circle at 20% 4%, rgba(127,96,0,.09), transparent 28%);
}
.world::before,
.world[aria-current="page"]::after {
  content: none !important;
  display: none !important;
}
.world:hover {
  background: linear-gradient(90deg, rgba(127,96,0,.055), rgba(127,96,0,.018) 46%, transparent 78%);
}

@media (max-width: 640px) {
  .threshold h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .house-seal__logo { width: 2.25rem; }
  .hall-trigger { gap: .55rem; }
  .hall-trigger__label { font-size: .58rem; }
}


.sports-opening {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, .85fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: clamp(4.5rem, 9vh, 7.5rem);
  overflow: hidden;
  background:
    radial-gradient(135% 135% at 50% 42%, transparent 54%, rgba(2, 3, 10, 0.4) 100%),
    radial-gradient(circle at 62% 40%, rgba(56, 62, 102, 0.2), transparent 28%),
    radial-gradient(circle at 28% 65%, rgba(154, 144, 128, 0.09), transparent 25%),
    linear-gradient(145deg, #06071a 0%, #080b20 45%, #03040e 100%);
}
.sports-opening::after {
  content: "";
  position: absolute;
  inset: auto var(--pad) 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247,244,238,.22) 18%, rgba(247,244,238,.08) 78%, transparent);
}
.sports-opening__copy {
  position: relative;
  z-index: 2;
  max-width: 50rem;
}
.sports-opening h1 {
  max-width: none;
  margin-top: 1.35rem;
  font-size: clamp(4.6rem, 9vw, 8.8rem);
  letter-spacing: -.025em;
}
.sports-opening__statement {
  width: min(38rem, 100%);
  margin-top: 2rem;
  font-size: clamp(1.35rem, 2.25vw, 2.05rem);
  line-height: 1.28;
}
.sports-opening .text-action {
  margin-top: 2.65rem;
  font-family: var(--ceremonial);
}

.chapter-index {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(31rem, 100%);
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(247,244,238,.24);
}
.chapter-index__label {
  margin-bottom: 1rem;
  color: var(--stone);
  font-family: var(--ceremonial);
  text-transform: uppercase;
  font-size: .58rem;
  letter-spacing: .2em;
  transition: color .32s ease;
}
.chapter-index:hover .chapter-index__label,
.chapter-index:focus-within .chapter-index__label {
  color: rgba(247, 244, 238, .82);
}
.chapter-index ol { list-style: none; }
.chapter-index li { border-top: 1px solid rgba(247,244,238,.16); }
.chapter-index li:last-child { border-bottom: 1px solid rgba(247,244,238,.16); }
.chapter-index a {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: .95rem .2rem .9rem;
  color: rgba(255,255,255,.58);
  transition: color .32s ease, padding .42s var(--ease), background .32s ease;
}
.chapter-index a::before {
  content: "";
  position: absolute;
  inset: .28rem -.7rem;
  z-index: -1;
  background: linear-gradient(90deg, rgba(127,96,0,.11), rgba(127,96,0,.02) 62%, transparent);
  opacity: 0;
  transform: scaleX(.94);
  transform-origin: left;
  transition: opacity .32s ease, transform .42s var(--ease);
}

.chapter-index a[aria-current="true"] {
  color: var(--ecru);
}
@media (hover: hover) and (pointer: fine) {
  .chapter-index a:hover {
    color: var(--ecru);
  }
  .chapter-index a:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }
}
.chapter-index a:focus-visible {
  color: var(--ecru);
}
.chapter-index a:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}
.chapter-index a > span {
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .68rem;
}
.chapter-index strong {
  display: inline-block;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 1.22rem;
  font-weight: 400;
  transition: transform .32s var(--ease);
}

.chapter-index a:hover strong,
.chapter-index a[aria-current="true"] strong {
  transform: translateX(.4rem);
}
.chapter-index small {
  color: rgba(255,255,255,.48);
  font-family: var(--ceremonial);
  text-transform: uppercase;
  font-size: .48rem;
  letter-spacing: .15em;
}

@media (hover: hover) and (pointer: fine) {
  .chapter-index a:hover small { color: #a48632; }
}
.chapter-index a:focus-visible small { color: #a48632; }


.corridor {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.018), transparent 18%, transparent 82%, rgba(255,255,255,.014)),
    linear-gradient(
      180deg,
      #040512 0%,
      #080a1e 10%,
      #05060f 20%,
      #0a0d24 30%,
      #060815 40%,
      #0d1029 50%,
      #060815 60%,
      #10142f 70%,
      #0a0d24 80%,
      #04050e 90%,
      #020306 100%
    );
}
.corridor::before {
  left: calc(var(--pad) + var(--rail-line));
  background: linear-gradient(transparent, rgba(154,144,128,.42) 8%, rgba(247,244,238,.06) 92%, transparent);
}

.chapter {
  position: relative;
  height: 220vh;
  isolation: isolate;
}
.chapter__stage {
  position: sticky;
  top: 0;

  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.chapter__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 73% 50%, rgba(127,96,0,.065), transparent 27%);
  opacity: 0;
  transition: opacity .55s ease;
}
.chapter__stage:hover::before,
.chapter.is-observed .chapter__stage::before { opacity: 1; }
.chapter__landmark {
  font-size: .82rem;
}
.chapter__register {
  font-family: var(--ceremonial);
  font-size: .57rem;
}
.chapter h2 {
  font-size: clamp(3.25rem, 6vw, 6.25rem);
  letter-spacing: -.018em;
}
.chapter__body > p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.chapter__door { font-family: var(--ceremonial); }

.chapter__plate {
  position: relative;
  min-height: 25rem;
  aspect-ratio: 3 / 4;

  max-height: calc(100vh - 2 * clamp(6rem, 12vh, 10rem));
  max-height: calc(100dvh - 2 * clamp(6rem, 12vh, 10rem));
  place-content: end start;
  gap: .55rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  border-color: rgba(247,244,238,.12);
  background:
    linear-gradient(160deg, rgba(255,255,255,.025), transparent 42%),
    linear-gradient(0deg, rgba(0,0,0,.5), transparent 58%),
    rgba(255,255,255,.012);
  text-align: left;
}
.chapter__plate::before {
  content: "";
  position: absolute;
  inset: 1.15rem;
  border: 1px solid rgba(247,244,238,.08);
  transition: inset .55s var(--ease), border-color .45s ease;
}
.chapter:hover .chapter__plate::before { inset: .82rem; }

.chapter__plate--open {
  background:
    linear-gradient(0deg, rgba(0,0,0,.62), transparent 64%),
    linear-gradient(145deg, #12152a, #070818 62%, #03040d);
}
.chapter__plate-number,
.chapter__plate-state {
  position: relative;
  z-index: 1;
  font-family: var(--ceremonial);
  text-transform: uppercase;
  font-size: .52rem;
  letter-spacing: .18em;
}
.chapter__plate-number { color: var(--stone); }
.chapter__plate-title {
  position: relative;
  z-index: 1;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.05;
  color: var(--ecru);
  text-transform: none;
  letter-spacing: 0;
}
.chapter__plate-state { color: rgba(255,255,255,.38); }
.chapter--reserved .chapter__plate-title { color: rgba(247,244,238,.48); }

.world-return {
  min-height: 42vh;
  border-top: 0;
  background: #04050f;
}
.world-return .text-action { font-family: var(--ceremonial); }

@media (max-width: 900px) {
  .sports-opening {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 4rem;
  }
  .chapter-index { width: 100%; }
  .chapter__plate { aspect-ratio: 16 / 10; min-height: 19rem; }
}

@media (max-width: 640px) {
  .sports-opening {
    min-height: auto;
    padding-top: calc(var(--header-h) + 6rem);
    padding-bottom: 5rem;
    gap: 3.5rem;
  }
  .sports-opening h1 { font-size: clamp(3.7rem, 18vw, 5.5rem); }
  .sports-opening__statement { font-size: 1.42rem; }
  .chapter-index a {
    grid-template-columns: 1.7rem 1fr auto;
    gap: .65rem;
  }
  .chapter-index strong { font-size: 1.08rem; }
  .chapter__plate { min-height: 16rem; aspect-ratio: 4 / 3; }
}


.house-nav {
  background: linear-gradient(180deg, rgba(6, 7, 26, .94), rgba(6, 7, 26, .82));
  border-bottom: 1px solid rgba(247, 244, 238, .075);
  box-shadow: 0 .85rem 2.8rem rgba(0, 0, 0, .16);
  -webkit-backdrop-filter: blur(18px) saturate(118%);
  backdrop-filter: blur(18px) saturate(118%);
}

.room__header {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, .62fr);
  align-items: end;
  gap: clamp(4rem, 9vw, 10rem);
  padding-bottom: clamp(5rem, 10vh, 8rem);
  background:
    radial-gradient(circle at 76% 46%, rgba(69, 74, 121, .16), transparent 28%),
    linear-gradient(145deg, #050617 0%, #07091e 58%, #03040d 100%);

  --room-line-gap: clamp(1.2rem, 3vw, 2.4rem);
}
.room__opening-copy {
  position: relative;
  z-index: 2;
  max-width: 58rem;

  padding-left: var(--room-line-gap);
}
.room__header .text-action {
  margin-top: 2.8rem;
  font-family: var(--ceremonial);
}
.room-ledger {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(247, 244, 238, .17);
}

@media (min-width: 901px) {
  .room-ledger { transform: translateX(calc(-1 * var(--room-line-gap))); }
}
.room-ledger__label {
  margin-bottom: .85rem;
  color: var(--stone);
  font-family: var(--ceremonial);
  text-transform: uppercase;
  font-size: .56rem;
  letter-spacing: .2em;
}
.room-ledger dl {
  display: grid;
}
.room-ledger dl > div {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-top: 1px solid rgba(247, 244, 238, .085);
}
.room-ledger dl > div:last-child {
  border-bottom: 1px solid rgba(247, 244, 238, .085);
}
.room-ledger dt,
.room-ledger dd {
  transition: color .28s ease, transform .32s var(--ease);
}
.room-ledger dt {
  color: rgba(255,255,255,.38);
  font-family: var(--ceremonial);
  text-transform: uppercase;
  font-size: .5rem;
  letter-spacing: .15em;
}
.room-ledger dd {
  margin: 0;
  color: rgba(247,244,238,.84);
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 1.03rem;
}

.room-ledger dl > div:hover dt,
.room-ledger dl > div:focus-visible dt {
  color: rgba(255,255,255,.6);
  transform: translateX(.3rem);
}
.room-ledger dl > div:hover dd,
.room-ledger dl > div:focus-visible dd {
  color: #f7f4ee;
  transform: translateX(.3rem);
}

.commission-approach {
  display: grid;
  grid-template-columns: minmax(18rem, .75fr) minmax(24rem, 1.25fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: start;
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  background:
    linear-gradient(90deg, rgba(255,255,255,.014), transparent 23%, transparent 78%, rgba(255,255,255,.012)),
    #050617;
}
.commission-approach__heading {
  position: sticky;
  top: calc(var(--header-h) + 3rem);
}
.commission-approach__heading h2 {
  margin-top: 1.3rem;
  max-width: 10ch;
  color: var(--ecru);
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}
.commission-approach__heading > p:last-child {
  margin-top: 1.8rem;
  max-width: 31rem;
}
.commission-sequence {
  list-style: none;
  border-top: 1px solid rgba(247,244,238,.13);
}
.commission-sequence li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  padding: clamp(2rem, 4vh, 3rem) .35rem;
  border-bottom: 1px solid rgba(247,244,238,.11);
  transition: background .42s ease, padding .42s var(--ease);
}
.commission-sequence li:hover {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(127,96,0,.075), rgba(127,96,0,.014) 68%, transparent);
}
.commission-sequence li > span {
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .63rem;
  letter-spacing: .12em;
}
.commission-sequence h3 {
  color: var(--ecru);
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.25rem);
  font-weight: 400;
  line-height: 1;
}
.commission-sequence p {
  margin-top: .8rem;
  max-width: 35rem;
  color: rgba(255,255,255,.66);
}

.proof {
  background:
    radial-gradient(circle at 72% 48%, rgba(127,96,0,.055), transparent 30%),
    #050617;
}
.proof__plate {
  min-height: 25rem;
  box-shadow: inset 0 0 5rem rgba(0,0,0,.24);
}
.commission-path {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  background:
    radial-gradient(circle at 75% 50%, rgba(69,74,121,.15), transparent 26%),
    #04050f;
}
.commission-path > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .room__header {
    grid-template-columns: 1fr;
    align-content: end;
    gap: 4rem;
  }
  .room-ledger { width: min(34rem, 100%); }
  .commission-approach { grid-template-columns: 1fr; }
  .commission-approach__heading { position: static; }
}

@media (max-width: 640px) {
  .house-nav {
    background: rgba(6, 7, 26, .9);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
  }
  .room__header {
    min-height: auto;
    padding-top: calc(var(--header-h) + 7rem);
    padding-bottom: 5rem;
  }
  .room-ledger dl > div { grid-template-columns: 4.8rem 1fr; }
  .commission-approach { padding-block: 6rem; }
  .commission-sequence li { grid-template-columns: 2.5rem 1fr; }
  .proof__plate { min-height: 17rem; }
}


:root {
  --nav-main-h: 6rem;
  --nav-context-h: 0rem;
  --header-h: calc(var(--nav-main-h) + var(--nav-context-h) + var(--safe-t));
}

body[data-view="sports"],
body[data-view="room"] {
  --nav-context-h: 1.85rem;
}

.house-nav {
  height: var(--header-h);
  grid-template-rows: var(--nav-main-h) var(--nav-context-h);
  align-items: center;
  transition: height .45s var(--ease), background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease, border-color .35s ease;
}

.hall-trigger,
.house-seal,
.house-action {
  grid-row: 1;
}

.location-trail {
  position: static;
  z-index: auto;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  width: 100%;
  min-width: 0;
  padding: 0 0 .62rem;
  color: rgba(255,255,255,.48);
  opacity: 1;
}

.location-trail::before {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: var(--nav-context-h);
  height: 1px;
  background: rgba(247,244,238,.055);
  pointer-events: none;
}

.location-trail[hidden] {
  display: none;
}

.location-trail__room {
  color: rgba(255,255,255,.76);
}

@media (max-width: 900px) {
  :root {
    --nav-main-h: 5.4rem;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-main-h: 5rem;
  }

  body[data-view="sports"],
  body[data-view="room"] {
    --nav-context-h: 1.72rem;
  }

  .location-trail {
    position: static;
    top: auto;
    max-width: 100%;
    padding-bottom: .58rem;
  }
}


.house-nav {
  background: linear-gradient(180deg, rgba(6, 7, 26, .76), rgba(6, 7, 26, .58));
  border-bottom-color: rgba(247, 244, 238, .045);
  box-shadow: 0 .9rem 3rem rgba(0, 0, 0, .12);
  -webkit-backdrop-filter: blur(26px) saturate(112%);
  backdrop-filter: blur(26px) saturate(112%);
}

.threshold__content {
  padding-top: 0;
}
.threshold .ceremonial {
  margin-top: 2.15rem;
}
.threshold .text-action {
  margin-top: 3.65rem;
}
.location-mark {
  letter-spacing: .18em;
}

.hall__heading {
  padding-bottom: 0;
  border-bottom: 0;
}
.hall__heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.2rem, 1.85vw, 1.55rem);
  letter-spacing: .16em;
}
.hall__instruction {
  margin-top: 1rem;
}
.world-list {
  margin-top: .8rem;
}

body[data-view="sports"],
body[data-view="room"] {
  --nav-context-h: 2.2rem;
}
.location-trail {
  padding-bottom: .72rem;
}
.location-trail::before {
  content: none;
  display: none;
}

.sports-opening__copy {
  max-width: 43rem;
}
.sports-opening h1 {
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(3.7rem, 6.9vw, 6.45rem);
  font-weight: 400;
  letter-spacing: .015em;
  line-height: .94;
}
.sports-opening__statement {
  width: min(40rem, 100%);
  margin-top: 2.2rem;
  font-size: clamp(1.18rem, 1.75vw, 1.62rem);
  line-height: 1.46;
}
.sports-opening .text-action {
  margin-top: 3.15rem;
}

.chapter__register {
  font-size: .5rem;
  letter-spacing: .17em;
}
.chapter h2 {
  font-size: clamp(2.8rem, 4.85vw, 5.15rem);
  line-height: 1;
}
.chapter__plate-title {
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
}
.chapter__plate-number,
.chapter__plate-state {
  font-size: .47rem;
}

@media (max-width: 640px) {
  .hall__heading h2 {
    white-space: normal;
    font-size: 1.06rem;
  }
  body[data-view="sports"],
  body[data-view="room"] {
    --nav-context-h: 2rem;
  }
  .sports-opening h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
  .sports-opening__statement {
    font-size: 1.24rem;
    line-height: 1.48;
  }
  .chapter h2 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }
}



:root {
  --nav-main-h: 5rem;
}

.house-nav {
  background: linear-gradient(180deg, rgba(6, 7, 26, .48), rgba(6, 7, 26, .31));
  border-bottom-color: rgba(247, 244, 238, .028);
  box-shadow: 0 .65rem 2.6rem rgba(0, 0, 0, .08);
  -webkit-backdrop-filter: blur(30px) saturate(108%);
  backdrop-filter: blur(30px) saturate(108%);
}


body[data-view="threshold"]:not(.house-entered):not(.is-entering-house):not(.hall-open) .house-nav {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}


html[data-threshold-return="true"] .hall,
body.is-threshold-returning .hall {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: none !important;
}
html[data-threshold-return="true"] .hall__card,
body.is-threshold-returning .hall__card {
  opacity: 0 !important;
  transition: none !important;
}
html[data-threshold-return="true"] .house-nav,
body.is-threshold-returning .house-nav {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  transition: none !important;
}


body[data-view="threshold"] .threshold__content {
  transform: translateY(2.55rem);
  transition: transform 0.75s ease, opacity 0.75s ease;
}
body[data-view="threshold"] .threshold .ceremonial {
  margin-top: 1.6rem;
}
body[data-view="threshold"] .threshold__intro {
  margin-top: 0.7rem;
}
body[data-view="threshold"] .threshold .text-action {
  margin-top: 4.8rem;
}
body[data-view="threshold"] .location-mark {
  justify-content: flex-start;
}


body[data-view="sports"],
body[data-view="room"] {
  --nav-main-h: 4.7rem;
  --nav-context-h: 1.55rem;
}
body[data-view="sports"] .location-trail,
body[data-view="room"] .location-trail {
  padding-bottom: .46rem;
}

.sports-opening .eyebrow {
  font-family: var(--ceremonial);
  font-weight: 500;
}
.sports-opening h1 {
  font-size: clamp(2.9rem, 5.15vw, 4.9rem);
  line-height: .98;
  letter-spacing: .018em;
}
.sports-opening__statement {
  width: min(35rem, 100%);
  margin-top: 1.65rem;
  font-size: clamp(1.02rem, 1.38vw, 1.3rem);
  line-height: 1.52;
}
.sports-opening .text-action {
  margin-top: 2.85rem;
}

.chapter-index strong,
.chapter h2 {
  font-family: var(--ceremonial);
  font-weight: 400;
}
.chapter-index strong {
  font-size: 1.02rem;
  letter-spacing: .035em;
}
.chapter h2 {
  letter-spacing: .012em;
}

@media (max-width: 900px) {
  :root {
    --nav-main-h: 4.8rem;
  }
  body[data-view="sports"],
  body[data-view="room"] {
    --nav-main-h: 4.65rem;
    --nav-context-h: 1.55rem;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-main-h: 4.55rem;
  }
  body[data-view="threshold"] .threshold__content {
    transform: translateY(1.5rem);
  }
  body[data-view="threshold"] .threshold .ceremonial {
    margin-top: 1.3rem;
  }
  body[data-view="threshold"] .threshold__intro {
    margin-top: .6rem;
  }
  body[data-view="threshold"] .threshold .text-action {
    margin-top: 3.8rem;
  }
  body[data-view="sports"],
  body[data-view="room"] {
    --nav-main-h: 4.45rem;
    --nav-context-h: 1.48rem;
  }
  .sports-opening h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }
  .sports-opening__statement {
    font-size: 1.08rem;
    line-height: 1.5;
  }
  .chapter-index strong {
    font-size: .92rem;
  }
}



body[data-view="sports"] .location-trail,
body[data-view="room"] .location-trail {
  grid-column: 1;
  width: max-content;
  max-width: calc(100vw - (2 * var(--pad)));
  align-self: start;
  justify-self: start;
  padding: .18rem 0 0;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chapter-index strong,
.chapter h2 {
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-weight: 400;
  letter-spacing: .01em;
}

body[data-view="threshold"] .threshold__content {
  animation: threshold-drift 11s ease-in-out infinite;
  will-change: translate;
}

@keyframes threshold-drift {
  0%, 100% { translate: 0 -.28rem; }
  50% { translate: 0 .38rem; }
}

@media (max-width: 640px) {
  body[data-view="sports"] .location-trail,
  body[data-view="room"] .location-trail {
    grid-column: 1 / -1;
    width: 100%;
    padding-top: .14rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-view="threshold"] .threshold__content {
    animation: none;
    translate: none;
  }
}



body[data-view="room"] .room__opening-copy > .eyebrow,
body[data-view="room"] .commission-approach .eyebrow,
body[data-view="room"] .proof .eyebrow,
body[data-view="room"] .commission-path .eyebrow {
  font-family: var(--ceremonial);
  font-weight: 500;
  letter-spacing: .18em;
}

body[data-view="room"] .room__opening-copy > .eyebrow {
  margin-bottom: 1.15rem;
}

body[data-view="room"] .room__header h1 {
  margin-top: 0;
  max-width: 13ch;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.9rem, 5.15vw, 4.9rem);
  font-weight: 400;
  letter-spacing: .018em;
  line-height: .98;
}

body[data-view="room"] .room__lede {
  width: min(35rem, 100%);
  margin-top: 1.65rem;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.02rem, 1.38vw, 1.3rem);
  font-weight: 400;
  line-height: 1.52;
}

body[data-view="room"] .room__header .text-action {
  margin-top: 2.85rem;
}

body[data-view="room"] .room-ledger__label,
body[data-view="room"] .room-ledger dt,
body[data-view="room"] .commission-sequence li > span {
  font-family: var(--ceremonial);
}

body[data-view="room"] .commission-approach__heading h2,
body[data-view="room"] .proof__copy h2,
body[data-view="room"] .commission-path h2 {
  margin-top: 1.15rem;
  max-width: 12ch;
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.25rem, 3.85vw, 3.85rem);
  font-weight: 400;
  letter-spacing: .008em;
  line-height: 1.03;
}

body[data-view="room"] .commission-approach__heading > p:last-child,
body[data-view="room"] .proof__copy > p:last-child,
body[data-view="room"] .commission-path > p:last-of-type {
  margin-top: 1.45rem;
  font-size: clamp(.94rem, 1.08vw, 1.05rem);
  line-height: 1.62;
}

body[data-view="room"] .commission-sequence h3 {
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.4rem, 2.15vw, 1.9rem);
  font-weight: 400;
  line-height: 1.08;
}

body[data-view="room"] .commission-sequence p {
  margin-top: .72rem;
  font-size: clamp(.92rem, 1.05vw, 1rem);
  line-height: 1.58;
}

@media (max-width: 640px) {
  body[data-view="room"] .room__header h1 {
    font-size: clamp(2.55rem, 12vw, 3.55rem);
  }

  body[data-view="room"] .room__lede {
    font-size: 1.08rem;
    line-height: 1.5;
  }

  body[data-view="room"] .commission-approach__heading h2,
  body[data-view="room"] .proof__copy h2,
  body[data-view="room"] .commission-path h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
}




.threshold::before {
  animation: passage-atmosphere 32s ease-in-out infinite;
}




.threshold__passage {
  position: absolute;
  inset: -12%;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: linear-gradient(to top, rgba(2, 3, 10, 0.4), transparent 34%);
  opacity: 0.8;
  --depth-x: 0px;
  --depth-y: 0px;
  transform: translate3d(var(--depth-x), var(--depth-y), 0);
  transition: transform 1.4s var(--ease), opacity 0.75s ease;
}
.threshold__glow {
  position: absolute;
  left: 56%;
  top: 22%;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82, 94, 140, 0.1), rgba(82, 94, 140, 0) 66%);
  filter: blur(42px);
  animation: passage-breathe 18s ease-in-out infinite;
}
.threshold__sheen {
  position: absolute;
  left: 20%;
  top: -25%;
  width: 2px;
  height: 150%;
  background: linear-gradient(180deg, transparent, rgba(216, 199, 168, 0.12), transparent);
  filter: blur(7px);
  transform: rotate(11deg);
  animation: passage-sheen 30s ease-in-out infinite;
}
.threshold__opening {
  position: absolute;
  left: 40%;
  top: 12vh;
  width: 15vw;
  height: 74vh;
  background: linear-gradient(180deg, transparent, rgba(2, 3, 10, 0.46), transparent);
  filter: blur(34px);
  transform-origin: center;
  animation: passage-opening 26s ease-in-out infinite;
}

@keyframes passage-atmosphere {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
@keyframes passage-breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.94); }
  50% { opacity: 0.78; transform: scale(1.04); }
}
@keyframes passage-sheen {
  0%, 100% { left: 14%; opacity: 0.32; }
  50% { left: 33%; opacity: 0.62; }
}
@keyframes passage-opening {
  0%, 100% { transform: scaleX(1); opacity: 0.46; }
  50% { transform: scaleX(0.74); opacity: 0.7; }
}

@media (max-width: 640px) {
  .threshold__glow { width: 70vw; height: 70vw; }
  .threshold__opening { width: 26vw; }
}

@media (prefers-reduced-motion: reduce) {
  .threshold::before,
  .threshold__glow,
  .threshold__sheen,
  .threshold__opening {
    animation: none !important;
  }
  .threshold__passage {
    transform: none !important;
    transition: none !important;
  }
}


body.is-entering-house .threshold__architecture,
body.house-entered .threshold__architecture {
  transition: transform 1.3s var(--entrance-ease), perspective 1.3s var(--entrance-ease);
  perspective: 40rem;
  transform: translate3d(var(--depth-x), var(--depth-y), 0) scale(1.09);
}
body.is-leaving-house .threshold__architecture {
  transition: transform 1.25s var(--entrance-ease), perspective 1.25s var(--entrance-ease);
}

body.is-entering-house .plane,
body.house-entered .plane,
body.is-leaving-house .plane {
  pointer-events: none;
  transition: transform 1.3s var(--entrance-ease), border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
body.is-entering-house .plane--one,
body.house-entered .plane--one {
  transform:
    translateZ(calc(-45px + var(--hover-lift)))
    translateX(-320px)
    rotateY(calc(28deg + var(--tilt-y)))
    rotateZ(-7deg)
    rotateX(var(--tilt-x));
}
body.is-entering-house .plane--two,
body.house-entered .plane--two {
  transform:
    translateZ(calc(-170px + var(--hover-lift)))
    translateX(260px)
    translateY(-110px)
    rotateY(calc(-32deg + var(--tilt-y)))
    rotateZ(8deg)
    rotateX(var(--tilt-x));
}
body.is-entering-house .plane--three,
body.house-entered .plane--three {
  transform:
    translateZ(calc(165px + var(--hover-lift)))
    translateX(155px)
    translateY(110px)
    rotateZ(calc(-17deg + var(--tilt-y)))
    rotateX(var(--tilt-x));
}

body.is-leaving-house .plane--one {
  transition: transform 1.15s var(--entrance-ease), border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
body.is-leaving-house .plane--two {
  transition: transform 1.25s var(--entrance-ease), border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}
body.is-leaving-house .plane--three {
  transition: transform 1.05s var(--entrance-ease), border-color 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
}


body[data-view="threshold"] .threshold__content {
  transition: transform 1.1s var(--entrance-ease) 0.2s, opacity 1.1s var(--entrance-ease) 0.2s;
}
body.is-entering-house .threshold__content,
body.house-entered .threshold__content {
  transform: translateY(calc(2.55rem - 1.6rem)) scale(0.92);
  opacity: 0.05;
}
body.is-leaving-house[data-view="threshold"] .threshold__content {
  transition: transform 1.05s var(--entrance-ease) 0.13s, opacity 1.05s var(--entrance-ease) 0.13s;
}

.threshold__passage {
  transition: transform 1.4s var(--ease), opacity 1.3s var(--entrance-ease);
}
body.is-entering-house .threshold__passage,
body.house-entered .threshold__passage {
  opacity: 1;
}
body.is-leaving-house .threshold__passage {
  transition: transform 1.4s var(--ease), opacity 1.2s var(--entrance-ease);
}

@media (max-width: 640px) {
  body[data-view="threshold"] .threshold__content {
    transition: transform 1s var(--entrance-ease) 0.15s, opacity 1s var(--entrance-ease) 0.15s;
  }
  body.is-entering-house .threshold__content,
  body.house-entered .threshold__content {
    transform: translateY(calc(1.5rem - 1.1rem)) scale(0.94);
    opacity: 0.05;
  }
  body.is-leaving-house[data-view="threshold"] .threshold__content {
    transition: transform 0.95s var(--entrance-ease) 0.1s, opacity 0.95s var(--entrance-ease) 0.1s;
  }
}


body[data-view="threshold"] .hall {
  transition: opacity 1s var(--entrance-ease), visibility 1s var(--entrance-ease);
}
body[data-view="threshold"] .hall__card {
  clip-path: inset(0 92% 92% 0 round 1.25rem);
  transform-origin: top left;
  transform: scale(0.94) translate3d(-8px, -8px, 0);
  opacity: 0;
  transition: clip-path 0.94s var(--entrance-ease) 0.06s, transform 0.94s var(--entrance-ease) 0.06s, opacity 0.5s ease 0.06s;
}
body[data-view="threshold"] .hall.is-open .hall__card {
  clip-path: inset(0 round 1.25rem);
  transform: scale(1) translate3d(0, 0, 0);
  opacity: 1;
}
body.is-leaving-house[data-view="threshold"] .hall__card {
  transition: clip-path 0.9s var(--entrance-ease), transform 0.9s var(--entrance-ease), opacity 0.45s ease;
}

@media (max-width: 640px) {
  body[data-view="threshold"] .hall__card {
    clip-path: inset(0 92% 92% 0 round 1rem);
  }
  body[data-view="threshold"] .hall.is-open .hall__card {
    clip-path: inset(0 round 1rem);
  }
}




.location-mark {
  left: calc(var(--pad) + var(--safe-l));
  right: calc(var(--pad) + var(--safe-r));
  bottom: calc(1.7rem + var(--safe-b));
}


@media (min-width: 641px) and (max-width: 1024px) {
  body.is-entering-house .plane--one,
  body.house-entered .plane--one {
    transform:
      translateZ(calc(-45px + var(--hover-lift)))
      translateX(-180px)
      rotateY(calc(28deg + var(--tilt-y)))
      rotateZ(-7deg)
      rotateX(var(--tilt-x));
  }
  body.is-entering-house .plane--two,
  body.house-entered .plane--two {
    transform:
      translateZ(calc(-170px + var(--hover-lift)))
      translateX(145px)
      translateY(-60px)
      rotateY(calc(-32deg + var(--tilt-y)))
      rotateZ(8deg)
      rotateX(var(--tilt-x));
  }
  body.is-entering-house .plane--three,
  body.house-entered .plane--three {
    transform:
      translateZ(calc(165px + var(--hover-lift)))
      translateX(85px)
      translateY(60px)
      rotateZ(calc(-17deg + var(--tilt-y)))
      rotateX(var(--tilt-x));
  }
}

@media (max-width: 640px) {
  body.is-entering-house .plane--one,
  body.house-entered .plane--one {
    transform:
      translateZ(calc(-45px + var(--hover-lift)))
      translateX(-105px)
      rotateY(calc(28deg + var(--tilt-y)))
      rotateZ(-7deg)
      rotateX(var(--tilt-x));
  }
  body.is-entering-house .plane--two,
  body.house-entered .plane--two {
    transform:
      translateZ(calc(-170px + var(--hover-lift)))
      translateX(85px)
      translateY(-35px)
      rotateY(calc(-32deg + var(--tilt-y)))
      rotateZ(8deg)
      rotateX(var(--tilt-x));
  }
  body.is-entering-house .plane--three,
  body.house-entered .plane--three {
    transform:
      translateZ(calc(165px + var(--hover-lift)))
      translateX(50px)
      translateY(35px)
      rotateZ(calc(-17deg + var(--tilt-y)))
      rotateX(var(--tilt-x));
  }
}


@media (max-height: 500px) and (orientation: landscape) {
  .threshold { align-items: start; padding-top: calc(var(--header-h) + 1rem); }
  .threshold__content { padding-top: 0; }
  .threshold h1 { margin-top: 0.4rem; font-size: clamp(2.4rem, 9vh, 4rem); }
  .ceremonial { margin-top: 0.7rem; }
  .threshold__intro { margin-top: 1rem; }
  .threshold .text-action { margin-top: 1.4rem; }
  .location-mark { bottom: calc(0.9rem + var(--safe-b)); }
}


@media (hover: hover) and (pointer: fine) {
  .plane:hover {
    --hover-lift: 26px;
    border-color: rgba(247, 244, 238, 0.44);
    filter: blur(0px);
    box-shadow: inset 0 0 1.4rem rgba(2, 3, 10, 0.1), 0 0 5.5rem rgba(0, 0, 0, 0.42);
  }
}


@media (pointer: coarse) {
  .hall-trigger,
  .house-seal,
  .text-action,
  .chapter__door,
  .room-return a,
  .room-return button,
  .world a,
  .location-trail button,
  .location-trail a {
    position: relative;
  }
  .hall-trigger::after,
  .house-seal::after,
  .text-action::after,
  .chapter__door::after,
  .room-return a::after,
  .room-return button::after,
  .world a::after,
  .location-trail button::after,
  .location-trail a::after {
    content: "";
    position: absolute;
    inset: -10px;
  }
}


.sports-world {
  position: relative;
  height: 300vh;
  --sports-world-progress: 0;
  --sw-arrival:  clamp(0, calc(var(--sports-world-progress) / 0.14), 1);
  --sw-enter:    clamp(0, calc((var(--sports-world-progress) - 0.12) / 0.26), 1);

  --sw-chapters: clamp(0, calc((var(--sports-world-progress) - 0.08) / 0.82), 1);
  --sw-focus:    clamp(0, calc((var(--sports-world-progress) - 0.21) / 0.55), 1);
  --sw-release:  clamp(0, calc((var(--sports-world-progress) - 0.86) / 0.14), 1);
}


.sports-world .sports-opening {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(30rem, 40%);
  grid-template-rows: 1fr;
  align-content: center;
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  padding-block: calc(var(--header-h) + clamp(1.5rem, 4vh, 3.5rem)) clamp(2rem, 5vh, 4rem);
  padding-inline: max(var(--pad), calc((100% - 92rem) / 2 + var(--pad)));
  overflow: hidden;
  isolation: isolate;
}


.world-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  perspective: 1150px;
  perspective-origin: 50% 46%;
}
.world-stage__space {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}


.world-gate--1 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62rem, 76%);
  height: min(34rem, 64%);
  transform: translate(-50%, -50%);
}


.sports-world .sports-opening__copy,
.sports-world .chapter-index {
  position: relative;
  z-index: 2;
}


.sports-world .sports-opening__copy {
  transform-origin: left top;
  transform: scale(calc(1 - var(--sw-chapters) * 0.24)) translateY(calc(var(--sw-chapters) * -0.9rem));
  opacity: calc(1 - var(--sw-chapters) * 0.78);
  transition: transform 0.12s linear, opacity 0.12s linear;
}
.sports-world .sports-opening .text-action {
  opacity: calc(1 - var(--sw-chapters) * 0.9);
  transition: opacity 0.12s linear;
}


.sports-world .chapter-index {
  align-self: center;
  width: 100%;
  border-top-color: rgba(247,244,238, calc(0.1 + var(--sw-chapters) * 0.2));

  opacity: calc(0.32 + var(--sw-chapters) * 0.68);
  transform: scale(calc(0.84 + var(--sw-chapters) * 0.16)) translateY(calc((1 - var(--sw-chapters)) * 0.9rem));
  transform-origin: center right;
  transition: opacity 0.12s linear, transform 0.12s linear;
}

.chapter-ledger__item {
  --li-in: clamp(0, calc((var(--sw-chapters) - var(--li-delay, 0)) / 0.34), 1);
  opacity: calc((0.34 + var(--li-in) * 0.66) * (1 - var(--sw-focus) * 0.42));
  transition: opacity 0.12s linear;
}
.chapter-ledger__item:nth-child(1) { --li-delay: 0; }
.chapter-ledger__item:nth-child(2) { --li-delay: 0.14; }
.chapter-ledger__item:nth-child(3) { --li-delay: 0.28; }
.chapter-ledger__item:nth-child(4) { --li-delay: 0.42; }
.chapter-ledger__item:nth-child(5) { --li-delay: 0.56; }


.sports-world .chapter-ledger__item--open {
  opacity: calc(0.34 + var(--li-in) * 0.66);
}

.chapter-ledger__item--open a { color: color-mix(in srgb, var(--ecru) calc(40% + var(--sw-focus) * 60%), rgba(255,255,255,.42)); }
.sports-world .chapter-ledger__item--open a strong {
  transform: translateX(calc(var(--sw-focus) * 0.3rem));
}
.sports-world .chapter-ledger__item--open a:hover strong,
.sports-world .chapter-ledger__item--open a[aria-current="true"] strong {
  transform: translateX(calc(var(--sw-focus) * 0.3rem + 0.4rem));
}




@media (min-width: 1001px) and (max-width: 1366px) and (orientation: landscape) and (max-height: 900px) {
  .sports-world { height: 260vh; }
  .sports-world .sports-opening {
    grid-template-columns: minmax(0, 1fr) min(26rem, 38%);
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-block: calc(var(--header-h) + 1.5rem) 2rem;
    padding-inline: max(var(--pad), calc((100% - 74rem) / 2 + var(--pad)));
  }
}


@media (min-width: 641px) and (max-width: 1024px) and (orientation: portrait) {
  .sports-world { height: 250vh; }
  .sports-world .sports-opening {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    align-content: stretch;
    gap: clamp(1.5rem, 4vh, 3rem);
    padding-block: calc(var(--header-h) + clamp(2rem, 6vh, 4rem)) clamp(2.5rem, 6vh, 4.5rem);
  }
  .sports-world .sports-opening__copy { grid-row: 1; align-self: start; max-width: 40rem; }
  .sports-world .chapter-index {
    grid-row: 3;
    align-self: end;
    justify-self: stretch;
    width: 100%;
  }
  .chapter-ledger ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(1.5rem, 4vw, 3rem);
  }
  .chapter-ledger__item--open { grid-column: 1 / -1; }
}


@media (max-width: 640px) {
  .sports-world { height: 230vh; }
  .sports-world .sports-opening {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    align-content: stretch;
    gap: clamp(1rem, 3vh, 2rem);
    padding-block: calc(var(--header-h) + clamp(1rem, 3.5vh, 2.25rem) + var(--safe-t)) calc(clamp(1.25rem, 4vh, 2rem) + var(--safe-b));
  }
  .sports-world .sports-opening__copy { grid-row: 1; align-self: start; }
  .sports-world .chapter-index {
    grid-row: 2;
    align-self: end;
    padding-top: 1rem;
  }
  .chapter-ledger a { padding-block: .72rem; }
}


@media (max-width: 640px) and (max-height: 740px) {
  .sports-world .sports-opening {
    grid-template-rows: 1fr auto;
    row-gap: .75rem;
    padding-block: calc(var(--header-h) + .75rem + var(--safe-t)) calc(.9rem + var(--safe-b));
  }
  .sports-world .sports-opening__copy { align-self: start; }
  .sports-world .sports-opening h1 { font-size: clamp(2.3rem, 11vw, 3rem); margin-top: .5rem; }
  .sports-world .sports-opening__statement { font-size: .9rem; line-height: 1.3; margin-top: .8rem; width: 100%; }
  .sports-world .sports-opening .text-action { margin-top: 1rem; }
  .sports-world .chapter-index { align-self: end; padding-top: .55rem; }
  .chapter-ledger__label { margin-bottom: .5rem; }
  .chapter-ledger a { padding-block: .5rem; grid-template-columns: 1.8rem 1fr auto; gap: .6rem; }
  .chapter-ledger strong { font-size: 1.02rem; }
}


@media (max-height: 500px) and (orientation: landscape) {
  .sports-world { height: 200vh; }
  .sports-world .sports-opening {
    grid-template-columns: minmax(0, 1fr) min(20rem, 44%);
    grid-template-rows: 1fr;
    align-content: center;
    gap: clamp(1rem, 4vw, 2.5rem);
    padding-block: calc(var(--header-h) + .5rem) .75rem;
  }
  .sports-world .sports-opening__copy { grid-row: 1; align-self: center; }
  .sports-world .sports-opening__statement { font-size: .98rem; line-height: 1.3; margin-top: 1rem; }
  .sports-world .chapter-index { grid-row: 1; align-self: center; padding-top: .6rem; }
  .chapter-ledger a { padding-block: .4rem; grid-template-columns: 1.7rem 1fr auto; gap: .6rem; }
  .chapter-ledger strong { font-size: .98rem; }
  .chapter-ledger small { display: none; }
}


@media (max-height: 380px) and (orientation: landscape) {
  .sports-world .sports-opening {
    align-content: start;
    padding-block: calc(var(--header-h) + .35rem) .5rem;
  }
  .sports-world .sports-opening h1 { font-size: clamp(1.7rem, 6vw, 2.3rem); margin-top: .3rem; }
  .sports-world .sports-opening__statement { font-size: .82rem; line-height: 1.28; margin-top: .55rem; }
  .sports-world .sports-opening .text-action { display: none; }
  .chapter-ledger a { padding-block: .32rem; }
}


@media (prefers-reduced-motion: reduce) {
  .sports-world { height: auto; }
  .sports-world .sports-opening {
    position: static;
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .world-stage { display: none; }
  .sports-world .sports-opening__copy,
  .sports-world .sports-opening .text-action,
  .sports-world .chapter-index,
  .sports-world .chapter-ledger__item,
  .sports-world .chapter-ledger__item--open {
    opacity: 1;
    transform: none;
  }
  .chapter-ledger__item--open a { color: var(--ecru); }
}


.house-seal { view-transition-name: seal; }

body[data-view="threshold"] .hall__card { view-transition-name: aperture; }
body[data-view="sports"] .world-gate--1 { view-transition-name: aperture; }

body[data-view="sports"] .chapter-ledger__item--open a { view-transition-name: chapter-aperture; }
body[data-view="room"] .proof__plate { view-transition-name: chapter-aperture; }


::view-transition-group(aperture) {
  animation-duration: 0.95s;
  animation-timing-function: var(--entrance-ease);
}
::view-transition-group(chapter-aperture) {
  animation-duration: 0.72s;
  animation-timing-function: var(--entrance-ease);
}
::view-transition-group(seal) {
  animation-duration: 0.55s;
  animation-timing-function: var(--ease);
}
::view-transition-old(aperture),
::view-transition-new(aperture) {
  animation-duration: 0.6s;
  animation-timing-function: var(--ease);
}
::view-transition-old(root),
::view-transition-new(root),
::view-transition-old(chapter-aperture),
::view-transition-new(chapter-aperture) {
  animation-duration: 0.5s;
  animation-timing-function: var(--ease);
}





html[data-passage-out="hall-to-sports"] .hall__card {
  transition: opacity .42s ease, transform .42s var(--ease);
}

html[data-passage-out="hall-to-sports"].is-passing-out .hall.is-open .hall__card {
  opacity: 0;
  transform: scale(.97) translateY(-.5rem);
}


html[data-passage-out="hall-to-community"] .hall__card {
  transition: opacity .42s ease, transform .42s var(--ease);
}
html[data-passage-out="hall-to-community"].is-passing-out .hall.is-open .hall__card {
  opacity: 0;
  transform: scale(.97) translateY(-.5rem);
}

html[data-passage-out="rooms-to-threshold"] .view,
html[data-passage-out="sports-to-room"] .view,
html[data-passage-out="room-to-sports"] .view {
  transition: opacity .45s ease, transform .45s var(--ease);
}
html[data-passage-out="rooms-to-threshold"].is-passing-out .view,
html[data-passage-out="sports-to-room"].is-passing-out .view,
html[data-passage-out="room-to-sports"].is-passing-out .view {
  opacity: 0;
  transform: translateY(-.6rem);
}


html[data-passage-out="rooms-to-threshold"] .house-nav,
html[data-passage-out="rooms-to-threshold"] .hall {
  transition: opacity .42s ease;
}
html[data-passage-out="rooms-to-threshold"].is-passing-out .house-nav,
html[data-passage-out="rooms-to-threshold"].is-passing-out .hall {
  opacity: 0;
}


html[data-passage-in="hall-to-sports"] .view,
html[data-passage-in="sports-to-room"] .view,
html[data-passage-in="room-to-sports"] .view {
  opacity: 0;
  transform: translateY(.6rem);
}
html[data-passage-in="hall-to-sports"].is-arriving .view {
  transition: opacity .72s var(--entrance-ease), transform .72s var(--entrance-ease);
  opacity: 1;
  transform: none;
}
html[data-passage-in="sports-to-room"].is-arriving .view {
  transition: opacity .8s var(--entrance-ease), transform .8s var(--entrance-ease);
  opacity: 1;
  transform: none;
}
html[data-passage-in="room-to-sports"].is-arriving .view {
  transition: opacity .68s var(--entrance-ease), transform .68s var(--entrance-ease);
  opacity: 1;
  transform: none;
}


html[data-passage-in="hall-to-community"] .view {
  opacity: 0;
}
html[data-passage-in="hall-to-community"].is-arriving .view {
  transition: opacity .9s var(--entrance-ease);
  opacity: 1;
}


.view.room > * {
  transition: transform .55s var(--entrance-ease) .12s, opacity .55s ease .12s;
}


.chapter {
  --reveal: 0;
  scroll-margin-top: var(--header-h);
}

.chapter__stage {
  --reveal-curve: calc(
    clamp(0, calc(var(--reveal) / 0.22), 1) *
    clamp(0, calc((1 - var(--reveal)) / 0.22), 1)
  );
  --chapter-enter: clamp(0, calc((0.22 - var(--reveal)) / 0.22), 1);
  --chapter-exit: clamp(0, calc((var(--reveal) - 0.78) / 0.22), 1);
  --chapter-motion: calc(var(--chapter-enter) - var(--chapter-exit));
  opacity: var(--reveal-curve);
  transition: opacity .1s linear;
}
.chapter__body {
  transform:
    translateY(calc(var(--chapter-motion) * 2.4rem))
    scale(calc(1 - var(--chapter-enter) * 0.08 - var(--chapter-exit) * 0.06));
  transition: transform .1s linear;
}
.chapter__plate {
  transform: translateY(calc(var(--chapter-motion) * 1rem));
  transition: transform .1s linear;
}




.chapter__door:focus-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .chapter { height: auto; }
  .chapter__stage {
    display: block;
    position: static;
    min-height: 0;
    opacity: 1;
    padding: clamp(2rem, 6vh, 4rem) var(--pad);
  }
  .chapter__body,
  .chapter__plate {
    transform: none;
  }

  .chapter__landmark {
    position: static;
    width: auto;
    text-align: left;
    padding-right: 0;
    margin-bottom: 0.75rem;
  }
  .chapter__plate {
    margin-top: 2rem;
    width: 100%;
    max-width: 28rem;

    max-height: none;
  }
  .corridor::before {
    display: none;
  }
}



.community {
  position: relative;
  background: #06071a;
  overflow-x: hidden;
  --media-bleed: clamp(1.5rem, 5vw, 6rem);
  --media-text-safe: clamp(1.25rem, 3vw, 3rem);
  --media-edge: 66%;
  --media-atmos: rgba(247, 244, 238, .05);
}


[data-media-role] {
  position: relative;
  overflow: hidden;
  --media-focal-x: 50%;
  --media-focal-y: 50%;
  --media-focal-mobile-x: 50%;
  --media-focal-mobile-y: 45%;
}
[data-media-role] > img,
[data-media-role] > picture,
[data-media-role] > picture img,
[data-media-role] > video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-focal-x) var(--media-focal-y);
}
@media (max-width: 640px) {
  [data-media-role] > img,
  [data-media-role] > picture img,
  [data-media-role] > video {
    object-position: var(--media-focal-mobile-x) var(--media-focal-mobile-y);
  }
}

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


[data-reveal] {
  --reveal: 1;
  --own: 1;

  opacity: calc(.035 + var(--own) * .965);
  transform: translateY(calc((1 - var(--reveal)) * 1rem - (1 - var(--own)) * .45rem));
}

.community.is-live [data-reveal] {
  transition: opacity .14s linear, transform .16s linear;
}

.community-standard__frame,
.community-film-stage,
.community-chapter__frame {
  opacity: calc(.18 + var(--reveal) * .82);
  transform: translateY(calc((1 - var(--reveal)) * .9rem));
}


.media-frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(130% 96% at 30% 22%, rgba(247, 244, 238, .055), transparent 58%),
    linear-gradient(158deg, #0a0c20, #070819 54%, #05060f);
  -webkit-mask-image: radial-gradient(135% 135% at 50% 46%, #000 66%, transparent 100%);
          mask-image: radial-gradient(135% 135% at 50% 46%, #000 66%, transparent 100%);
}
.media-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 72% 84%, rgba(0, 0, 0, .3), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .016), transparent 44%);
  pointer-events: none;
}
.media-frame__caption {
  position: relative;
  margin-top: var(--space-2);
  color: var(--color-text-muted);
  font-family: var(--font-functional);
  text-transform: uppercase;
  font-size: var(--type-metadata);
  letter-spacing: var(--track-metadata);
}

.community-eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: var(--type-house-label);
  letter-spacing: var(--track-label);
  color: var(--color-text-muted);
}



.community-arrival {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.community-arrival__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(154, 144, 128, .05), transparent 60%),
    linear-gradient(175deg, #0a0c20, #06071a 55%, #04050f);
}

.community-arrival__hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  column-gap: clamp(1.5rem, 4vw, 4rem);
  padding: calc(var(--header-h) + 3rem) 0 6rem;
}
.community-arrival__identity {
  padding-left: var(--pad);
  padding-right: var(--media-text-safe);
  max-width: 42rem;
  justify-self: start;
}

.community-arrival__film {
  --media-focal-y: 42%;
  align-self: stretch;
  margin: clamp(3rem, 8vh, 7rem) 0;
  min-height: 42vh;
  border-radius: 0;
  background:
    radial-gradient(120% 90% at 64% 34%, rgba(247, 244, 238, .06), transparent 58%),
    linear-gradient(155deg, #0a0c22, #070819 52%, #04050f);
  -webkit-mask-image: radial-gradient(140% 128% at 58% 46%, #000 var(--media-edge), transparent 100%);
          mask-image: radial-gradient(140% 128% at 58% 46%, #000 var(--media-edge), transparent 100%);
}
.community-arrival__label {
  margin-top: var(--space-2);

  color: rgba(247, 244, 238, .52);
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: .58rem;
  letter-spacing: var(--track-label);
}

.community-arrival__lead {
  margin-top: clamp(2.2rem, 6vh, 4rem);
  display: grid;
  gap: .45rem;
}

@keyframes community-settle {
  from { opacity: 0; transform: translateY(.7rem); }
  to { opacity: 1; transform: none; }
}
.community-arrival__opening {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-hero);
  line-height: var(--lh-display-hero);
  letter-spacing: var(--track-display);
  max-width: var(--measure-hero);
  opacity: 0;
  animation: community-settle 1.15s var(--entrance-ease) .65s forwards;
}
.community-arrival__opening:nth-child(2) { animation-delay: .92s; }

.community-arrival__continuation {
  max-width: 34rem;
  padding: 0 var(--pad) clamp(6rem, 14vh, 10rem);
  display: grid;

  gap: clamp(6.5rem, 18vh, 12rem);
}
.community-arrival__continuation p {
  color: var(--color-text-secondary);
  font-family: var(--font-narrative);
  font-weight: 400;
  font-size: var(--type-narrative-lead);
  line-height: var(--lh-lead);
  max-width: var(--measure-lead);
}
.community-arrival__continuation .community-arrival__pivot,
.community-arrival__continuation p:last-child {
  color: var(--ecru);
}
.community-arrival__continuation p[data-reveal] {
  transform: translateY(calc((1 - var(--reveal)) * 1rem - (1 - var(--own)) * .5rem)) scale(calc(.99 + var(--own) * .01));
}


.community-standard,
.community-movement,
.community-memory { position: relative; isolation: isolate; }
.community-standard::before,
.community-movement::before,
.community-memory::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  pointer-events: none;
}
.community-standard::before {
  background: radial-gradient(90% 60% at 26% 30%, rgba(154, 144, 128, .05), transparent 62%);
}
.community-memory::before {
  background: radial-gradient(78% 54% at 72% 22%, rgba(154, 144, 128, .045), transparent 60%);
}


.community-standard {
  padding: var(--space-section-entry) var(--pad);
  max-width: var(--measure-wide);
  margin-inline: auto;
  display: grid;
  gap: var(--space-narrative-beat);
}

.community-standard__thought,
.community-standard__statement {
  max-width: var(--measure-statement);
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-section);
  line-height: var(--lh-display);
  letter-spacing: var(--track-tight);
}
.community-standard p {
  max-width: var(--measure-lead);
  color: var(--color-text-secondary);
  font-family: var(--font-narrative);
  font-size: var(--type-body-large);
  line-height: var(--lh-body-large);
}
.community-standard__frame {
  justify-self: center;
  width: min(100%, 27rem);
}
.community-standard__frame .media-frame { aspect-ratio: 4 / 5; }

.community-standard > p[data-reveal] {
  transform: translateY(calc((1 - var(--reveal)) * 1rem - (1 - var(--own)) * .5rem)) scale(calc(.985 + var(--own) * .015));
}


.community-movement {

  padding: var(--space-section-entry) 0 var(--space-section-release);
}
.community-movement::before {
  background: radial-gradient(82% 72% at 60% 40%, rgba(154, 144, 128, .05), transparent 64%);
}

.community-movement__copy {
  max-width: var(--measure-narrow);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  gap: clamp(2.6rem, 5vh, 3.4rem);
}
.community-movement__copy p {
  color: var(--color-text-secondary);
  font-family: var(--font-narrative);
  font-weight: 400;
  font-size: var(--type-narrative-lead);
  line-height: var(--lh-lead);
}
.community-movement__copy--close { margin-top: var(--space-narrative-beat); }

.community-movement__copy--close p:last-child {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: var(--type-display-section);
  line-height: var(--lh-display);
  letter-spacing: var(--track-tight);
  max-width: var(--measure-statement);
  margin-top: var(--space-5);
}

.community-film-stage {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-block: clamp(4.5rem, 11vh, 7.5rem);
}
.community-film-stage .media-frame {
  width: min(100%, 88rem);
  margin-inline: auto;

  aspect-ratio: 2 / 1;
  min-height: clamp(22rem, 58vh, 40rem);
  transform: scale(calc(.99 + var(--own, 0) * .015));
  background:
    radial-gradient(120% 130% at 50% 30%, rgba(247, 244, 238, .05), transparent 60%),
    linear-gradient(172deg, #0b0d22, #070819 52%, #04050e);
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent),
    linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  mask-composite: intersect;
}
.community.is-live .community-film-stage .media-frame { transition: transform .2s linear; }
.community-film-stage .media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(58% 92% at 50% 44%, rgba(154, 144, 128, calc(.04 + var(--own, 0) * .08)), transparent 68%);
}

.community-movement__copy > p[data-reveal] {
  transform: translateY(calc((1 - var(--reveal)) * .5rem - (1 - var(--own)) * .3rem)) scale(calc(.99 + var(--own) * .01));
}


.community-chapters { position: relative; }

.community-chapter {
  position: relative;
  min-height: 84vh;
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
  display: grid;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  align-content: center;
}

.community-chapter h3 {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-chapter);
  line-height: var(--lh-display);
  letter-spacing: var(--track-tight);
}
.community-chapter p {
  margin-top: var(--space-title-to-body);
  max-width: var(--measure-lead);
  color: var(--color-text-secondary);
  font-family: var(--font-narrative);
  font-size: var(--type-body-large);
  line-height: var(--lh-body-large);
}
.community-chapter p:last-of-type { color: var(--color-text-primary); }

.community-chapter h3,
.community-chapter p {
  opacity: calc(.1 + var(--reveal) * .9);
  transform: translateY(calc((1 - var(--reveal)) * 1rem));
}

.community-chapter--hyrox {
  grid-template-columns: minmax(16rem, 1fr) minmax(14rem, .8fr);
  background: linear-gradient(165deg, #0a0c22, #070818 60%, #04050f);
}
.community-chapter--hyrox .media-frame {
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(92% 72% at 62% 18%, rgba(247, 244, 238, .065), transparent 52%),
    linear-gradient(202deg, #0c0f26, #070819 50%, #050610);
  -webkit-mask-image: radial-gradient(140% 122% at 46% 40%, #000 60%, transparent 100%);
          mask-image: radial-gradient(140% 122% at 46% 40%, #000 60%, transparent 100%);
}

.community-chapter--run {
  grid-template-columns: minmax(16rem, .85fr) minmax(18rem, 1.15fr);
  background: linear-gradient(165deg, #0c0f2a, #080a1e 60%, #05060f);
}
.community-chapter--run .media-frame {
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(120% 104% at 28% 22%, rgba(247, 244, 238, .08), transparent 62%),
    linear-gradient(150deg, #0d1030, #0a0c22 55%, #070819);
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent),
    radial-gradient(150% 150% at 50% 46%, #000 70%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent),
    radial-gradient(150% 150% at 50% 46%, #000 70%, transparent 100%);
  mask-composite: intersect;
}
.community-chapter--run .community-chapter__body { order: 2; }

.community-chapter--gatherings {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  text-align: center;
  background: linear-gradient(165deg, #0a0c1f, #06081a 60%, #04050f);
}
.community-chapter--gatherings p { margin-inline: auto; }
.community-chapter--gatherings .media-frame {
  width: min(100%, 46rem);
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(92% 82% at 50% 88%, rgba(154, 144, 128, .09), transparent 60%),
    linear-gradient(180deg, #0a0c1e, #070819 55%, #05060f);
  -webkit-mask-image: radial-gradient(150% 150% at 50% 56%, #000 64%, transparent 100%);
          mask-image: radial-gradient(150% 150% at 50% 56%, #000 64%, transparent 100%);
}



.community-memory {
  padding: var(--space-section-entry) var(--pad) var(--space-section-release);
  max-width: var(--grid-max);
  margin-inline: auto;
}

.community-memory > h2 {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-display-section);
  line-height: var(--lh-display);
  letter-spacing: var(--track-tight);
  opacity: calc(.05 + var(--reveal) * .95);
  transform: translateY(calc((1 - var(--reveal)) * .8rem));
}
.memory-grid {
  margin-top: var(--space-8);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: var(--grid-gap);
  row-gap: clamp(4rem, 12vh, 9rem);
  align-items: start;
}
.memory {
  position: relative;
  opacity: calc(.16 + var(--reveal) * .84);
  transform: translateY(calc((1 - var(--reveal)) * .9rem));
}

.memory figcaption {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
  font-family: var(--font-functional);
  text-transform: uppercase;
  font-size: var(--type-metadata);
  letter-spacing: var(--track-metadata);
  line-height: 1.7;
}
.memory--large { grid-column: 1 / 8; }
.memory--large .media-frame { aspect-ratio: 4 / 3; }
.memory--text {
  grid-column: 9 / 13;
  align-self: center;
  margin-top: clamp(2rem, 9vh, 6.5rem);
}
.memory--text p {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--type-narrative-lead);
  line-height: var(--lh-lead);
}
.memory--film {
  grid-column: 4 / 10;
  margin-top: clamp(1rem, 4vh, 3rem);
}
.memory--film .media-frame {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(96% 84% at 40% 30%, rgba(247, 244, 238, .05), transparent 58%),
    linear-gradient(168deg, #0a0c20, #06071a 56%, #04050e);
}


.community-ending {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.community-ending__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(154, 144, 128, .04), transparent 62%),
    linear-gradient(175deg, #04050f, #06071a 55%, #030408);
}
.community-ending__inner {
  display: grid;
  justify-items: center;
  gap: var(--space-6);
  text-align: center;
}
.community-ending__mark {
  color: var(--color-text-muted);
  font-family: var(--font-label);
  text-transform: uppercase;
  font-size: var(--type-house-label);
  letter-spacing: var(--track-label);
}

@media (max-width: 900px) {

  .community-arrival__hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(30vh, 1fr);
    row-gap: clamp(2rem, 5vh, 4rem);
    align-content: center;
    padding-inline: 0;
  }
  .community-arrival__identity { padding-right: var(--pad); max-width: none; }
  .community-arrival__film {
    --media-focal-mobile-y: 40%;
    margin: 0 var(--pad);
    min-height: 30vh;
  }
  .community-chapter,
  .community-chapter--hyrox,
  .community-chapter--run {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .community-chapter--run .community-chapter__body { order: 0; }
  .community-chapter--gatherings .media-frame { width: 100%; }

  .memory-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(3.5rem, 10vh, 6rem);
  }
  .memory--large,
  .memory--text,
  .memory--film {
    grid-column: 1 / -1;
    margin-top: 0;
  }
  .memory--large .media-frame { width: min(100%, 34rem); }
  .memory--film { justify-self: end; }
  .memory--film .media-frame { width: min(100%, 30rem); }
  .memory--text { justify-self: start; margin-left: clamp(0rem, 6vw, 4rem); }
}

@media (max-width: 640px) {
  .community-arrival__hero { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 4rem; grid-template-rows: auto minmax(38vh, 1fr); }
  .community-arrival__film { min-height: 38vh; }
  .community-arrival__continuation { gap: clamp(3.5rem, 10vh, 6rem); }
  .community-standard,
  .community-movement__copy,
  .community-memory { padding-inline: var(--pad); }
  .community-chapter { min-height: auto; padding-block: clamp(4.5rem, 12vh, 7rem); }
  .memory--large .media-frame,
  .memory--film .media-frame { width: 100%; }
  .memory--film { justify-self: stretch; }
  .memory--text { margin-left: 0; }
}

@media (max-height: 500px) and (orientation: landscape) {
  .community-ending { min-height: 100vh; padding-block: calc(var(--header-h) + 1.5rem) 2rem; align-items: flex-start; justify-content: flex-start; }

  .community-arrival__hero {
    min-height: auto;
    grid-template-rows: auto auto;
    padding-block: calc(var(--header-h) + 1rem) 2.5rem;
  }
  .community-arrival__film { min-height: 24vh; margin-block: 0; }
  .community-arrival__opening { font-size: clamp(1.7rem, 4.4vw, 2.4rem); }
  .community-arrival__continuation { gap: clamp(3rem, 12vh, 5rem); padding-bottom: 3rem; }

  .community-chapter {
    min-height: auto;
    padding-top: calc(var(--header-h) + 1rem);
    padding-bottom: clamp(2.5rem, 8vh, 4rem);
  }
  .community-chapter h3 { font-size: clamp(2rem, 4.4vw, 2.6rem); }
  .community-movement { padding-bottom: clamp(4rem, 14vh, 6rem); }
  .community-film-stage { margin-block: clamp(2rem, 6vh, 3.5rem); }
  .community-movement__copy--close p:last-child { font-size: clamp(1.5rem, 4.2vw, 2rem); }
  .community-standard__thought,
  .community-standard__statement { font-size: clamp(1.45rem, 3.6vw, 1.95rem); }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .community-arrival__opening {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .community-film-stage { margin-block: clamp(2rem, 5vh, 3.5rem); }
  .community-film-stage .media-frame { transform: none; }

  .community-chapter { min-height: auto; }

  .community-arrival__hero { min-height: auto; padding-bottom: clamp(3rem, 8vh, 5rem); }
  .community-arrival__continuation { gap: clamp(1.3rem, 3vh, 2rem); }
}



.house-nav {
  transition:
    background .52s ease,
    border-color .52s ease,
    box-shadow .52s ease,
    -webkit-backdrop-filter .52s ease,
    backdrop-filter .52s ease;
}
body[data-view="studio"]:not(.is-page-scrolled):not(.hall-open) .house-nav {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}



.house-services {
  margin-top: 1.55rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(21, 21, 21, .14);
}
.house-services__label {
  margin-bottom: .75rem;
  color: #857a6c;
  font-family: var(--ceremonial);
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.house-service {
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem .2rem;
  color: #1d1914;
  border-top: 1px solid rgba(21, 21, 21, .1);
  border-bottom: 1px solid rgba(21, 21, 21, .1);
  transition: background .35s ease, transform .42s var(--ease);
}
.house-service:hover,
.house-service:focus-visible,
.house-service[aria-current="page"] {
  background: linear-gradient(90deg, rgba(127, 96, 0, .06), transparent 78%);
}
.house-service:hover,
.house-service:focus-visible { transform: translateX(.3rem); }
.house-service__mark {
  color: #7f6000;
  font-family: var(--ceremonial);
  font-size: .72rem;
  letter-spacing: .08em;
}
.house-service__copy { display: grid; gap: .2rem; }
.house-service__copy strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 400;
  text-transform: uppercase;
}
.house-service__copy small,
.house-service__state {
  color: #857a6c;
  font-family: var(--ceremonial);
  font-size: .5rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.house-service__state { color: #7f6000; }

.location-trail__segment {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: rgba(255, 255, 255, .7);
}
.location-trail__segment a,
.location-trail__segment span[aria-current="page"] { white-space: nowrap; }
.location-trail__segment [aria-current="page"] { color: rgba(255, 255, 255, .76); }

.studio,
.studio-commission,
.studio-request,
.request-thanks { background: #050617; }

@keyframes studio-ambient-drift {
  0% { transform: translate3d(-8vw, 0, 0); opacity: .18; }
  50% { transform: translate3d(7vw, 0, 0); opacity: .34; }
  100% { transform: translate3d(-6vw, 0, 0); opacity: .2; }
}

.studio-opening {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .62fr);
  gap: clamp(4.5rem, 10vw, 11rem);
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 40%, rgba(69, 74, 121, .17), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(154, 144, 128, .055), transparent 28%),
    linear-gradient(145deg, #050617, #080a20 58%, #03040d);
}
.studio-opening::before {
  content: "";
  position: absolute;
  left: 10vw;
  right: 10vw;
  top: 28vh;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 238, .13) 24%, rgba(247, 244, 238, .04) 58%, transparent);
  animation: studio-ambient-drift 16s ease-in-out infinite;
}
.studio-opening__architecture {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  perspective: 1100px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
  transform: translate3d(var(--depth-x, 0), calc(var(--depth-y, 0) + var(--spatial-retreat, 0px)), 0);
  opacity: var(--spatial-fade, 1);
  transition: transform .18s linear, opacity .14s linear;
}
.studio-plane {
  --plane-tilt-x: 0deg;
  --plane-tilt-y: 0deg;
  --plane-shift-x: 0px;
  --plane-shift-y: 0px;
  --plane-exit-x: 0px;
  --plane-scroll-y: 0px;
  --plane-lift: 0px;
  --plane-base-z: 0px;
  --plane-rotate: 0deg;
  --plane-skew: 0deg;
  position: absolute;
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(247, 244, 238, .19);
  background:
    linear-gradient(145deg, rgba(247, 244, 238, .06), rgba(69, 74, 121, .046) 48%, rgba(2, 3, 12, .24)),
    rgba(9, 11, 31, .82);
  box-shadow:
    0 3.4rem 7.2rem rgba(0, 0, 0, .40),
    0 .9rem 1.8rem rgba(0, 0, 0, .22),
    inset 0 0 4.6rem rgba(0, 0, 0, .17);
  backface-visibility: hidden;
  will-change: transform, box-shadow, filter;
  transform:
    translate3d(
      calc(var(--plane-shift-x) + var(--plane-exit-x)),
      calc(var(--plane-shift-y) + var(--plane-scroll-y)),
      calc(var(--plane-base-z) + var(--plane-lift))
    )
    rotateX(var(--plane-tilt-x))
    rotateY(var(--plane-tilt-y))
    rotateZ(var(--plane-rotate))
    skewY(var(--plane-skew));
  transition:
    transform .16s linear,
    box-shadow .42s var(--ease),
    border-color .42s var(--ease),
    filter .34s ease;
}
.studio-plane--left {
  --plane-base-z: -74px;
  --plane-rotate: 8deg;
  --plane-skew: -4deg;
  width: min(44vw, 40rem);
  height: 70vh;
  left: -14vw;
  bottom: -11vh;
}
.studio-plane--right {
  --plane-base-z: 88px;
  --plane-rotate: -8deg;
  --plane-skew: 3deg;
  width: min(37vw, 33rem);
  height: 60vh;
  right: -8vw;
  top: 9vh;
}
.studio-plane.is-near {
  --plane-lift: 25px;
  filter: brightness(1.075);
  border-color: rgba(247, 244, 238, .34);
  box-shadow:
    0 4.4rem 9rem rgba(0, 0, 0, .50),
    0 1.2rem 2.2rem rgba(0, 0, 0, .24),
    0 0 3.4rem rgba(69, 74, 121, .07),
    inset 0 0 3.2rem rgba(247, 244, 238, .02);
}
.studio-opening__copy {
  position: relative;
  z-index: 2;
  max-width: 56rem;
  padding-left: clamp(1.2rem, 3vw, 2.4rem);
}
.studio-opening h1,
.studio-commission-opening h1,
.request-opening h1,
.request-thanks h1 {
  margin-top: 1.4rem;
  color: var(--ecru);
  font-family: var(--ceremonial);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: .92;
}
.studio-opening h1 { font-size: clamp(3.1rem, 6.6vw, 6.3rem); }
.studio-opening__statement {
  width: min(30rem, 100%);
  margin-top: 1.65rem;
  color: rgba(247, 244, 238, .72);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}
.studio-opening .text-action { margin-top: 3.2rem; font-family: var(--ceremonial); }
.studio-register {
  position: relative;
  z-index: 2;
  align-self: end;
  transform: translateX(clamp(-5rem, -4.8vw, -2.2rem));
  border-top: 1px solid rgba(247, 244, 238, .17);
}
.studio-register__label {
  margin: 1.1rem 0 .75rem;
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.studio-register dl > div {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: .86rem 0;
  border-top: 1px solid rgba(247, 244, 238, .085);
}
.studio-register dl > div:last-child { border-bottom: 1px solid rgba(247, 244, 238, .085); }
.studio-register dt {
  color: rgba(247, 244, 238, .38);
  font-family: var(--ceremonial);
  font-size: .5rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.studio-register dd {
  color: rgba(247, 244, 238, .85);
  font-family: "EB Garamond", Garamond, Georgia, serif;
  font-size: 1.05rem;
}

.studio-index {
  display: grid;
  grid-template-columns: minmax(16rem, .72fr) minmax(26rem, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .012), transparent 24%, transparent 76%, rgba(255, 255, 255, .012)),
    #050617;
}
.studio-index__heading { position: sticky; top: calc(var(--header-h) + 3rem); align-self: start; }
.studio-index__heading h2,
.studio-principle h2,
.studio-proofline h2,
.studio-packages__header h2,
.studio-refinements h2,
.studio-bespoke h2,
.studio-process h2 {
  margin-top: 1.3rem;
  color: var(--ecru);
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1;
}
.studio-index__heading h2 { max-width: 11ch; font-size: clamp(2.8rem, 5vw, 5rem); }
.studio-index__heading > p:last-child { max-width: 31rem; margin-top: 1.8rem; color: rgba(247, 244, 238, .64); }
.studio-departments { border-top: 1px solid rgba(247, 244, 238, .13); }
.studio-department > a,
.studio-department > div {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: start;
  min-height: 12rem;
  padding: clamp(2rem, 4.5vh, 3.4rem) .35rem;
  border-bottom: 1px solid rgba(247, 244, 238, .11);
}
.studio-department--open > a { transition: padding .45s var(--ease), background .4s ease; }
.studio-department--open > a:hover,
.studio-department--open > a:focus-visible {
  padding-left: 1rem;
  background: linear-gradient(90deg, rgba(127, 96, 0, .08), transparent 78%);
}
.studio-department__num {
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .63rem;
  letter-spacing: .12em;
}
.studio-department__body { display: grid; }
.studio-department__body small {
  color: rgba(247, 244, 238, .38);
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.studio-department__body strong {
  margin-top: .4rem;
  color: var(--ecru);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}
.studio-department__body p { max-width: 34rem; margin-top: 1rem; color: rgba(247, 244, 238, .6); }
.studio-department__state {
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .53rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.studio-department--reserved { opacity: .42; }

.studio-principle,
.studio-proofline,
.studio-bespoke,
.studio-process {
  position: relative;
  padding: clamp(8rem, 18vh, 14rem) var(--pad);
}
.studio-principle {
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(69, 74, 121, .13), transparent 32%),
    #04050f;
}
.studio-principle h2 { font-size: clamp(2.15rem, 4.2vw, 4.4rem); font-style: italic; line-height: 1.12; }
.studio-principle > p:last-child { max-width: 41rem; margin: 2.25rem auto 0; color: rgba(247, 244, 238, .62); font-size: clamp(1.02rem, 1.28vw, 1.16rem); line-height: 1.78; }

.studio-return {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem var(--pad) 3rem;
  border-top: 0;
  background: #04050f;
  color: rgba(247, 244, 238, .66);
  font-family: var(--ceremonial);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.studio-return a,
.studio-return button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1.65;
  text-transform: inherit;
  cursor: pointer;
  transition: color .3s ease, transform .35s var(--ease);
}
.studio-return button {
  padding: .55rem 0;
  word-spacing: .24em;
}
.studio-return a:hover,
.studio-return button:hover { transform: translateY(-1px); }
.studio-return a:hover,
.studio-return button:hover { color: var(--stone); }


.studio-commission-opening {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 46% at 50% 32%, rgba(154, 144, 128, .08), transparent 62%),
    radial-gradient(circle at 72% 72%, rgba(69, 74, 121, .13), transparent 26%),
    #050617;
}
.studio-commission-opening::before {
  content: "";
  position: absolute;
  left: 12vw;
  right: 12vw;
  top: 31vh;
  height: 1px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(247, 244, 238, .13) 28%, rgba(247, 244, 238, .04) 60%, transparent);
  animation: studio-ambient-drift 18s ease-in-out infinite;
}
.studio-commission-opening__field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  perspective: 1150px;
  perspective-origin: 50% 46%;
  transform-style: preserve-3d;
  opacity: var(--spatial-fade, 1);
  transform: translateY(var(--spatial-retreat, 0px));
  transition: opacity .14s linear, transform .14s linear;
}
.commission-plane {
  --plane-tilt-x: 0deg;
  --plane-tilt-y: 0deg;
  --plane-shift-x: 0px;
  --plane-shift-y: 0px;
  --plane-exit-x: 0px;
  --plane-scroll-y: 0px;
  --plane-lift: 0px;
  --plane-base-z: 0px;
  --plane-rotate: 0deg;
  --plane-skew: 0deg;
  position: absolute;
  border: 1px solid rgba(247, 244, 238, .19);
  background:
    linear-gradient(145deg, rgba(247, 244, 238, .058), rgba(69, 74, 121, .044) 52%, rgba(2, 3, 12, .23)),
    rgba(9, 11, 31, .83);
  box-shadow:
    0 3.5rem 7.4rem rgba(0, 0, 0, .42),
    0 .95rem 1.9rem rgba(0, 0, 0, .22),
    inset 0 0 4.7rem rgba(0, 0, 0, .16);
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform, box-shadow, filter;
  transform:
    translate3d(
      calc(var(--plane-shift-x) + var(--plane-exit-x)),
      calc(var(--plane-shift-y) + var(--plane-scroll-y)),
      calc(var(--plane-base-z) + var(--plane-lift))
    )
    rotateX(var(--plane-tilt-x))
    rotateY(var(--plane-tilt-y))
    rotateZ(var(--plane-rotate))
    skewY(var(--plane-skew));
  transition:
    transform .16s linear,
    box-shadow .42s var(--ease),
    border-color .42s var(--ease),
    filter .34s ease;
}
.commission-plane--left {
  --plane-base-z: -70px;
  --plane-rotate: 10deg;
  --plane-skew: -3deg;
  width: min(38vw, 35rem);
  height: 62vh;
  left: -15vw;
  top: 17vh;
}
.commission-plane--right {
  --plane-base-z: 76px;
  --plane-rotate: -9deg;
  --plane-skew: 3deg;
  width: min(31vw, 29rem);
  height: 54vh;
  right: -10vw;
  bottom: 5vh;
}
.commission-plane.is-near {
  --plane-lift: 24px;
  filter: brightness(1.07);
  border-color: rgba(247, 244, 238, .34);
  box-shadow:
    0 4.5rem 9.2rem rgba(0, 0, 0, .52),
    0 1.2rem 2.2rem rgba(0, 0, 0, .24),
    0 0 3.3rem rgba(69, 74, 121, .07),
    inset 0 0 3.2rem rgba(247, 244, 238, .02);
}
.studio-commission-opening__copy { position: relative; z-index: 2; max-width: 56rem; padding-inline: var(--pad); }
.studio-commission-opening h1 { font-size: clamp(2.65rem, 5.8vw, 5.4rem); letter-spacing: .05em; }
.studio-commission-opening__copy > p:nth-of-type(2) {
  max-width: 30rem;
  margin: 1.4rem auto 0;
  color: rgba(247, 244, 238, .64);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.55;
}
.studio-commission-opening__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  align-items: center;
  margin-top: 2.4rem;
}
.studio-primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  padding: 1rem 2.4rem;
  color: #07081a;
  background: var(--ecru);
  border: 1px solid var(--ecru);
  font-family: var(--ceremonial);
  font-size: .59rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  transition: color .4s ease, background .4s ease, transform .42s var(--ease), border-color .4s ease;
}
.studio-primary-action:hover,
.studio-primary-action:focus-visible {
  color: var(--ecru);
  background: transparent;
  border-color: rgba(247, 244, 238, .42);
  transform: translateY(-2px);
}
.studio-availability {
  margin-top: 2.3rem !important;
  color: rgba(154, 144, 128, .72) !important;
  font-family: var(--ceremonial) !important;
  font-size: .48rem !important;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.studio-proofline {
  min-height: 112vh;
  display: grid;
  place-items: center;
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  background:
    radial-gradient(circle at 50% 44%, rgba(69, 74, 121, .11), transparent 32%),
    #050617;
}
.studio-proofline__card {
  width: min(calc(56rem + var(--proof-card-stretch, 0) * 38vw), calc(100vw - 2 * var(--pad)));
  padding: clamp(4rem, 8vw, 6.2rem) clamp(1.6rem, 6vw, 5.5rem);
  text-align: center;
  color: #171723;
  background:
    radial-gradient(circle at 50% 0, rgba(154, 144, 128, .12), transparent 34%),
    var(--ecru);
  box-shadow:
    0 3rem 8rem rgba(0, 0, 0, .42),
    inset 0 0 0 1px rgba(154, 144, 128, .055);
}
.studio-proofline .eyebrow {
  color: #7f766b;
}
.studio-proofline__quote {
  display: grid;
  justify-items: center;
  margin-top: clamp(2.1rem, 4vw, 3.2rem);
}
.studio-proofline__mark {
  color: rgba(127, 118, 107, .6);
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: .65;
}
.studio-proofline__mark--close { margin-top: 1.05rem; }
.studio-proofline h2 {
  display: block;
  max-width: 24ch;
  margin-top: 1.35rem;
  color: #171723;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.14;
}
.studio-proofline h2 span { display: inline; }
.studio-proofline h2 em {
  color: #9a8b76;
  font-style: italic;
  font-weight: 300;
}
.studio-proofline__signature {
  display: grid;
  grid-template-columns: minmax(3rem, 7rem) auto minmax(3rem, 7rem);
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.35rem;
}
.studio-proofline__signature span {
  height: 1px;
  background: rgba(127, 118, 107, .34);
}
.studio-proofline__signature strong {
  color: rgba(127, 118, 107, .82);
  font-family: var(--ceremonial);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .24em;
}
.studio-proofline__caption {
  max-width: 38rem;
  margin: 1.65rem auto 0;
  color: rgba(23, 23, 35, .53);
  font-family: var(--ceremonial);
  font-size: clamp(.54rem, .8vw, .65rem);
  letter-spacing: .15em;
  line-height: 1.9;
  text-transform: uppercase;
}
.studio-proofline .text-action {
  margin-top: 2.8rem;
  border-color: rgba(23, 23, 35, .3);
  color: #171723;
}
.studio-proofline [data-proof-reveal] {
  opacity: var(--proof-opacity, .16);
  transform: translateY(var(--proof-offset, 1.15rem));
  transition: opacity .14s linear, transform .14s linear;
}

.studio-packages {
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  background: #050617;
}
.studio-packages__header { max-width: 57rem; margin-bottom: clamp(4rem, 9vh, 7rem); }
.studio-packages__header h2 { font-size: clamp(3rem, 6vw, 5.6rem); }
.studio-packages__header > p:last-child { max-width: 42rem; margin-top: 1.8rem; color: rgba(247, 244, 238, .6); }
.studio-package-list { border-top: 1px solid rgba(247, 244, 238, .13); }
.studio-package {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) clamp(.4rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(247, 244, 238, .12);
  transition: background .5s ease, padding .5s var(--ease);
}
.studio-package:hover { background: linear-gradient(90deg, rgba(127, 96, 0, .07), transparent 76%); padding-inline: clamp(1rem, 3vw, 3rem); }
.studio-package__heading {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}
.studio-package__index { color: var(--stone); font-family: var(--ceremonial); font-size: .62rem; letter-spacing: .14em; }
.studio-package h3 { color: var(--ecru); font-family: var(--serif); font-size: clamp(2rem, 4.2vw, 4rem); font-weight: 300; line-height: 1; }
.studio-package__heading div > p { margin-top: .6rem; color: rgba(247, 244, 238, .5); font-family: var(--serif); font-size: 1.1rem; font-style: italic; }
.studio-package__price { color: var(--ecru); font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; white-space: nowrap; }
.studio-package__price span { display: block; color: rgba(247, 244, 238, .42); font-family: var(--ceremonial); font-size: .45rem; letter-spacing: .16em; text-align: right; text-transform: uppercase; }
.studio-package__hook { max-width: 42rem; margin: 2.8rem 0 0 6rem; color: rgba(247, 244, 238, .78); font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-style: italic; }
.studio-package ul { display: grid; gap: .85rem; max-width: 48rem; margin: 2.2rem 0 0 6rem; list-style: none; color: rgba(247, 244, 238, .6); }
.studio-package li { position: relative; padding-left: 1.3rem; }
.studio-package li::before { content: ""; position: absolute; left: 0; top: .72em; width: .27rem; height: .27rem; border: 1px solid rgba(154, 144, 128, .55); transform: rotate(45deg); }
.studio-package > a { display: inline-flex; gap: .8rem; margin: 2.8rem 0 0 6rem; padding-bottom: .4rem; border-bottom: 1px solid rgba(247, 244, 238, .3); font-family: var(--ceremonial); font-size: .58rem; letter-spacing: .16em; text-transform: uppercase; transition: color .3s ease, gap .4s var(--ease); }
.studio-package > a:hover { color: var(--stone); gap: 1.2rem; }
.studio-package__flag { position: absolute; top: 2rem; right: 1rem; padding: .55rem .8rem; border: 1px solid rgba(154, 144, 128, .3); color: var(--stone); font-family: var(--ceremonial); font-size: .46rem; letter-spacing: .16em; text-transform: uppercase; }

.studio-refinements {
  display: grid;
  grid-template-columns: minmax(16rem, .7fr) minmax(24rem, 1.3fr);
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  background:
    radial-gradient(circle at 22% 24%, rgba(69, 74, 121, .12), transparent 28%),
    #04050f;
}
.studio-refinements h2 { max-width: 9ch; font-size: clamp(2.8rem, 5vw, 5rem); }
.studio-refinements dl { border-top: 1px solid rgba(247, 244, 238, .13); }
.studio-refinements dl > div { display: flex; justify-content: space-between; gap: 2rem; padding: 1.6rem .25rem; border-bottom: 1px solid rgba(247, 244, 238, .1); }
.studio-refinements dt { color: rgba(247, 244, 238, .7); }
.studio-refinements dd { color: var(--stone); font-family: var(--serif); font-size: 1.25rem; white-space: nowrap; }

.studio-bespoke { text-align: center; background: #050617; }
.studio-bespoke h2 { max-width: 18ch; margin-inline: auto; font-size: clamp(3rem, 6vw, 5.8rem); }
.studio-bespoke > p:not(.eyebrow) { max-width: 47rem; margin: 2rem auto 0; color: rgba(247, 244, 238, .6); }
.studio-bespoke__lasting-note { color: rgba(247, 244, 238, .82) !important; font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); font-style: italic; }
.studio-bespoke .studio-primary-action { margin-top: 3rem; }

.studio-process {
  display: grid;
  grid-template-columns: minmax(17rem, .72fr) minmax(25rem, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--ecru);
  color: #171723;
}
.studio-process header { position: sticky; top: calc(var(--header-h) + 3rem); align-self: start; }
.studio-process .eyebrow { color: #7f766b; }
.studio-process h2 { color: #171723; font-size: clamp(3rem, 6vw, 5.4rem); }
.studio-process header > p:last-child { max-width: 34rem; margin-top: 1.8rem; color: rgba(23, 23, 35, .65); }
.studio-process ol { list-style: none; border-top: 1px solid rgba(23, 23, 35, .14); }
.studio-process li { display: grid; grid-template-columns: 3rem 1fr; gap: 1.7rem; padding: 2.4rem .2rem; border-bottom: 1px solid rgba(23, 23, 35, .12); }
.studio-process li > span { color: #7f766b; font-family: var(--ceremonial); font-size: .6rem; }
.studio-process h3 { color: #171723; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.studio-process li p { margin-top: .7rem; color: rgba(23, 23, 35, .62); }
.studio-process .studio-primary-action { grid-column: 2; justify-self: start; color: var(--ecru); background: #171723; border-color: #171723; }
.studio-process .studio-primary-action:hover { color: #171723; background: transparent; }


.request-opening {
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 7rem) var(--pad) clamp(4rem, 9vh, 7rem);
  background:
    radial-gradient(circle at 75% 44%, rgba(69, 74, 121, .14), transparent 27%),
    #050617;
}
.request-opening h1 { max-width: 11ch; font-size: clamp(3.5rem, 8.5vw, 8rem); }
.request-opening > p:last-child { max-width: 39rem; margin-top: 1.8rem; color: rgba(247, 244, 238, .62); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); }
.request-layout {
  display: grid;
  grid-template-columns: minmax(16rem, .58fr) minmax(0, 1.42fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(5rem, 11vh, 8rem) var(--pad) clamp(7rem, 15vh, 12rem);
  background: #04050f;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}
.request-progress { position: sticky; top: calc(var(--header-h) + 3rem); }
.request-progress > p {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(247, 244, 238, .13);
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.request-progress ol { list-style: none; }
.request-progress li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(247, 244, 238, .08);
  color: rgba(247, 244, 238, .34);
  transition: color .3s ease, padding .35s var(--ease);
}
.request-progress li span { font-family: var(--ceremonial); font-size: .54rem; letter-spacing: .12em; }
.request-progress li strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }
.request-progress li[aria-current="step"] { padding-left: .7rem; color: var(--ecru); }
.request-progress li[aria-current="step"] span { color: var(--stone); }
.request-progress li.is-complete { color: rgba(247, 244, 238, .62); }
.request-estimate { margin-top: 2rem; padding: 1.5rem; border: 1px solid rgba(247, 244, 238, .1); background: rgba(247, 244, 238, .025); }
.request-estimate span,
.request-estimate small { display: block; color: rgba(247, 244, 238, .44); font-family: var(--ceremonial); font-size: .48rem; letter-spacing: .14em; text-transform: uppercase; }
.request-estimate strong { display: block; margin: .6rem 0; color: var(--ecru); font-family: var(--serif); font-size: 2.2rem; font-weight: 300; }
.request-estimate small { line-height: 1.7; text-transform: none; letter-spacing: .08em; }

.request-form {
  min-width: 0;
  padding: clamp(2rem, 5vw, 5rem);
  color: #171723;
  background:
    radial-gradient(circle at 75% 0, rgba(154, 144, 128, .12), transparent 30%),
    var(--ecru);
  box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, .35);
}
.request-honeypot { position: absolute !important; left: -9999px !important; }
.request-step { border: 0; min-width: 0; }
.request-step[hidden] { display: none; }
.request-step > legend {
  width: 100%;
  color: #171723;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1;
  outline: none;
}
.request-step > legend span { display: block; margin-bottom: 1rem; color: #7f766b; font-family: var(--ceremonial); font-size: .58rem; letter-spacing: .16em; }
.request-step__intro { max-width: 38rem; margin: 1.6rem 0 3rem; color: rgba(23, 23, 35, .62); }
.form-grid { display: grid; gap: 1.5rem; }
.form-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.request-form label > span:first-child,
.choice-group > legend {
  display: block;
  margin-bottom: .65rem;
  color: rgba(23, 23, 35, .64);
  font-family: var(--ceremonial);
  font-size: .51rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form input[type="date"],
.request-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 23, 35, .22);
  border-radius: 0;
  padding: .9rem 0;
  color: #171723;
  background: transparent;
  font: 400 1rem/1.5 var(--sans);
  outline: none;
  transition: border-color .3s ease, background .3s ease;
}
.request-form textarea { resize: vertical; min-height: 7rem; }
.request-form input:focus,
.request-form textarea:focus { border-color: #7f6000; background: rgba(154, 144, 128, .035); }
.request-form input::placeholder,
.request-form textarea::placeholder { color: rgba(23, 23, 35, .34); }
.choice-group { margin-top: 3rem; border: 0; }
.choice-grid { display: grid; gap: 1rem; }
.choice-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.choice-grid--packages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-card { position: relative; cursor: pointer; }
.choice-card > input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card > span {
  display: flex;
  flex-direction: column;
  min-height: 7.2rem;
  padding: 1.35rem;
  border: 1px solid rgba(23, 23, 35, .14);
  background: rgba(255, 255, 255, .18);
  transition: border-color .3s ease, background .3s ease, transform .38s var(--ease), box-shadow .38s ease;
}
.choice-card:hover > span { border-color: rgba(127, 96, 0, .38); transform: translateY(-2px); }
.choice-card > input:focus-visible + span { outline: 2px solid #171723; outline-offset: 3px; }
.choice-card > input:checked + span { border-color: #7f6000; background: rgba(127, 96, 0, .075); box-shadow: inset 0 0 0 1px rgba(127, 96, 0, .14); }
.choice-card strong { color: #171723; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.choice-card small { margin-top: .3rem; color: rgba(23, 23, 35, .48); }
.choice-card--package > span { min-height: 14.5rem; }
.choice-card--package small { margin: 0 0 1.3rem; color: #7f766b; font-family: var(--ceremonial); font-size: .48rem; letter-spacing: .14em; text-transform: uppercase; }
.choice-card--package strong { font-size: 1.65rem; line-height: 1.05; }
.choice-card--package em { margin-top: .65rem; color: #7f6000; font-family: var(--serif); font-size: 1.2rem; font-style: normal; }
.choice-card--package p { margin-top: 1rem; color: rgba(23, 23, 35, .58); font-size: .9rem; }
.choice-card--signature > span { background: rgba(23, 23, 35, .035); }
.refinement-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2rem; border-top: 1px solid rgba(23, 23, 35, .14); }
.refinement-options label { display: grid; grid-template-columns: 1.1rem 1fr; gap: 1rem; align-items: start; padding: 1.35rem .2rem; border-bottom: 1px solid rgba(23, 23, 35, .11); cursor: pointer; }
.refinement-options input { margin-top: .25rem; accent-color: #7f6000; }
.refinement-options span { margin: 0 !important; }
.refinement-options strong { display: block; color: #171723; font-weight: 400; }
.refinement-options small { display: block; margin-top: .35rem; color: #7f766b; font-family: var(--serif); font-size: 1rem; }
.form-wide { display: block; margin-top: 2.5rem; }
.consent { display: grid; grid-template-columns: 1.1rem 1fr; gap: 1rem; margin-top: 2.4rem; align-items: start; color: rgba(23, 23, 35, .65); font-size: .9rem; cursor: pointer; }
.consent input { margin-top: .25rem; accent-color: #7f6000; }
.consent span { margin: 0 !important; font-family: var(--sans) !important; font-size: .9rem !important; letter-spacing: 0 !important; line-height: 1.6; text-transform: none !important; }
.request-review dl { border-top: 1px solid rgba(23, 23, 35, .14); }
.request-review dl > div { display: grid; grid-template-columns: minmax(10rem, .4fr) minmax(0, .6fr); gap: 2rem; padding: 1.1rem 0; border-bottom: 1px solid rgba(23, 23, 35, .1); }
.request-review dt { color: rgba(23, 23, 35, .48); font-family: var(--ceremonial); font-size: .5rem; letter-spacing: .14em; text-transform: uppercase; }
.request-review dd { color: #171723; overflow-wrap: anywhere; }
.request-notice { margin-top: 2rem; padding: 1.4rem; border-left: 2px solid #7f6000; background: rgba(127, 96, 0, .06); color: rgba(23, 23, 35, .66); }
.request-notice p + p { margin-top: .5rem; }
.request-errors { margin-top: 1.5rem; padding: .8rem 1rem; border: 1px solid rgba(125, 33, 33, .22); color: #742b2b; background: rgba(125, 33, 33, .05); }
.request-errors[hidden] { display: none; }
.request-controls { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(23, 23, 35, .14); }
.request-controls button {
  min-height: 3.4rem;
  padding: .85rem 1.8rem;
  border: 1px solid #171723;
  background: transparent;
  color: #171723;
  font-family: var(--ceremonial);
  font-size: .55rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease, background .3s ease, opacity .3s ease;
}
.request-controls button:hover { color: var(--ecru); background: #171723; }
.request-controls button[hidden] { display: none; }
.request-controls button:disabled { opacity: .5; cursor: wait; }
.request-next,
.request-submit { margin-left: auto; color: var(--ecru) !important; background: #171723 !important; }
.request-next:hover,
.request-submit:hover { color: #171723 !important; background: transparent !important; }
.studio-return--request p { text-transform: lowercase; letter-spacing: .1em; }


.request-thanks {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--header-h) + 5rem) var(--pad) 6rem;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(69, 74, 121, .18), transparent 32%),
    #04050f;
}
.request-thanks__architecture { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.request-thanks__architecture span { position: absolute; width: 42vw; height: 42vw; border: 1px solid rgba(247, 244, 238, .06); transform: rotate(45deg); }
.request-thanks__architecture span:first-child { left: -24vw; top: 16vh; }
.request-thanks__architecture span:last-child { right: -22vw; bottom: -12vh; }
.request-thanks__content { max-width: 64rem; }
.request-thanks h1 { margin-inline: auto; max-width: 13ch; font-size: clamp(3.2rem, 8vw, 7.5rem); }
.request-thanks__content > p:not(.eyebrow) { max-width: 43rem; margin: 2rem auto 0; color: rgba(247, 244, 238, .66); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.65rem); }
.request-thanks__note { color: var(--stone) !important; font-family: var(--ceremonial) !important; font-size: .55rem !important; letter-spacing: .14em; text-transform: uppercase; }
.request-thanks__actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2rem; margin-top: 3.2rem; }


html[data-passage-out="hall-to-studio"] .hall__card { transition: opacity .42s ease, transform .42s var(--ease); }
html[data-passage-out="hall-to-studio"].is-passing-out .hall.is-open .hall__card { opacity: 0; transform: scale(.97) translateY(-.5rem); }
html[data-passage-in="hall-to-studio"] .view { opacity: 0; }
html[data-passage-in="hall-to-studio"].is-arriving .view { transition: opacity .85s var(--entrance-ease); opacity: 1; }

@media (max-width: 1000px) {
  .studio-opening,
  .studio-index,
  .studio-refinements,
  .studio-process,
  .request-layout { grid-template-columns: 1fr; }
  .studio-register { width: min(36rem, 100%); transform: none; }
  .studio-index__heading,
  .studio-process header,
  .request-progress { position: static; }
  .studio-process .studio-primary-action { grid-column: 1; }
  .request-progress ol { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .request-progress li { grid-template-columns: 1fr; gap: .35rem; }
  .request-progress li strong { font-size: .9rem; }
  .request-estimate { max-width: 24rem; }
}

@media (max-width: 720px) {
  .house-service { grid-template-columns: 1.8rem minmax(0, 1fr); }
  .house-service__state { display: none; }
  .location-trail__segment:nth-of-type(n+3) { display: none; }
  .studio-opening { min-height: auto; padding-top: calc(var(--header-h) + 8rem); padding-bottom: 5rem; }
  .studio-opening h1 { font-size: clamp(3.05rem, 14vw, 4.8rem); }
  .studio-opening__copy { padding-left: 0; }
  .studio-plane.is-near,
  .commission-plane.is-near { --plane-lift: 18px; }
  .studio-plane--left { width: 70vw; height: 52vh; left: -40vw; bottom: -8vh; }
  .studio-plane--right { width: 58vw; height: 43vh; right: -31vw; top: 15vh; }
  .commission-plane--left { width: 68vw; height: 52vh; left: -39vw; top: 18vh; }
  .commission-plane--right { width: 58vw; height: 44vh; right: -33vw; bottom: 8vh; }
  .studio-register { margin-top: 4rem; }
  .studio-index,
  .studio-refinements,
  .studio-process { padding-block: 6rem; }
  .studio-department > a,
  .studio-department > div { grid-template-columns: 2.2rem minmax(0, 1fr); min-height: 11rem; }
  .studio-department__state { grid-column: 2; }
  .studio-commission-opening { min-height: 100svh; padding-inline: var(--pad); }
  .studio-commission-opening__actions { flex-direction: column; }
  .studio-proofline { min-height: auto; padding-block: 6rem; }
  .studio-proofline__card { padding-block: 4.5rem; }
  .studio-proofline h2 { font-size: clamp(1.8rem, 7vw, 2.7rem); }
  .studio-package__heading { grid-template-columns: 2.1rem minmax(0, 1fr); }
  .studio-package__price { grid-column: 2; margin-top: 1rem; }
  .studio-package__price span { text-align: left; }
  .studio-package__hook,
  .studio-package ul,
  .studio-package > a { margin-left: 3.6rem; }
  .studio-package__flag { position: static; display: inline-block; margin-bottom: 1.5rem; }
  .studio-refinements dl > div { align-items: start; }
  .request-opening { min-height: 56vh; padding-top: calc(var(--header-h) + 8rem); }
  .request-progress ol { grid-template-columns: 1fr; }
  .request-progress li { display: none; }
  .request-progress li[aria-current="step"] { display: grid; grid-template-columns: 2.2rem 1fr; }
  .request-form { padding: 2.2rem 1.35rem; }
  .form-grid--two,
  .choice-grid--compact,
  .choice-grid--packages,
  .refinement-options { grid-template-columns: 1fr; }
  .choice-card--package > span { min-height: auto; }
  .request-review dl > div { grid-template-columns: 1fr; gap: .4rem; }
  .request-controls { flex-wrap: wrap; }
  .request-next,
  .request-submit { margin-left: 0; }
  .studio-return { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .studio-opening__architecture,
  .studio-commission-opening__field,
  .studio-plane,
  .commission-plane,
  .studio-proofline [data-proof-reveal],
  .studio-department--open > a,
  .studio-package,
  .choice-card > span,
  .studio-primary-action { transition: none; }
}



@media (max-width: 820px) {
  .studio-opening {
    gap: 2.6rem;
  }
  .studio-opening::before,
  .studio-commission-opening::before {
    left: 8vw;
    right: 8vw;
  }
  .studio-register { transform: none; }
  .studio-principle h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .studio-commission-opening h1 { font-size: clamp(2.1rem, 9vw, 3.4rem); }
  .studio-proofline__card { width: min(calc(100vw - 2 * var(--pad)), calc(48rem + var(--proof-card-stretch, 0) * 22vw)); }
  .studio-proofline h2 { max-width: 17ch; font-size: clamp(1.7rem, 7vw, 2.6rem); }
}



.hall--drawer .hall__scrim {
  background: rgba(2, 3, 12, .52);
  -webkit-backdrop-filter: blur(10px) saturate(.82);
  backdrop-filter: blur(10px) saturate(.82);
}
.hall--drawer .hall__card {
  top: var(--header-h);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  padding: clamp(2.5rem, 5vw, 5rem) max(var(--pad), calc((100vw - 92rem) / 2 + var(--pad)));
  border: 0;
  border-top: 1px solid rgba(154, 144, 128, .22);
  border-bottom: 1px solid rgba(154, 144, 128, .22);
  border-radius: 0;
  background:
    radial-gradient(70% 100% at 12% 0%, rgba(154, 144, 128, .095), transparent 60%),
    rgba(247, 244, 238, .985);
  box-shadow: 0 2.6rem 7rem rgba(0, 0, 0, .38);
  transform: translateY(-1.5rem);
  transform-origin: top center;
  overflow: auto;
}
.hall--drawer.is-open .hall__card { transform: translateY(0); }
.nav-drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: end;
  padding-bottom: clamp(1.8rem, 4vh, 3rem);
  border-bottom: 1px solid rgba(21, 21, 21, .12);
}
.nav-drawer__kicker,
.nav-drawer__you-are,
.nav-drawer__section > h3 {
  color: #746d63;
  font-family: var(--ceremonial);
  font-size: .55rem;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.nav-drawer__header h2 {
  margin-top: .75rem;
  color: #171717;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
}
.nav-drawer__header > p {
  color: #746d63;
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-drawer__grid {
  display: grid;
  grid-template-columns: minmax(12rem, .75fr) minmax(15rem, 1fr) minmax(18rem, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-top: clamp(2rem, 5vh, 3.7rem);
}
.nav-drawer__section ul { margin-top: 1.35rem; list-style: none; }
.nav-drawer__section li + li { margin-top: .82rem; }
.nav-drawer__section a,
.nav-drawer__section li > span {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: baseline;
  min-height: 1.65rem;
  color: #191919;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.42rem);
  line-height: 1.15;
}
.nav-drawer__section a { transition: color .28s ease, transform .35s var(--ease); }
.nav-drawer__section a span[aria-hidden="true"] {
  color: #8c8275;
  font-family: var(--sans);
  font-size: .68rem;
  opacity: 0;
  transform: translateX(-.25rem);
  transition: opacity .28s ease, transform .35s var(--ease);
}
.nav-drawer__section a:hover,
.nav-drawer__section a:focus-visible { color: #786b58; transform: translateX(.22rem); }
.nav-drawer__section a:hover span[aria-hidden="true"],
.nav-drawer__section a:focus-visible span[aria-hidden="true"] { opacity: 1; transform: none; }
.nav-drawer__section a[aria-current="page"] { color: #786b58; }
.nav-drawer__section .is-reserved { color: rgba(25, 25, 25, .38); }
.nav-drawer__section .is-reserved small {
  margin-left: auto;
  color: rgba(25,25,25,.34);
  font-family: var(--ceremonial);
  font-size: .42rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-drawer__section--current {
  padding-left: clamp(1.8rem, 3vw, 3rem);
  border-left: 1px solid rgba(21, 21, 21, .12);
}
.nav-drawer__section--current h3 {
  margin-top: .65rem;
  color: #171717;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.5rem);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}




.request-form label > span:first-child small {
  margin-left: .42rem;
  color: rgba(23, 23, 35, .42);
  font: inherit;
  letter-spacing: .08em;
}

.request-other-format[hidden] { display: none; }

.request-form [aria-invalid="true"] {
  border-color: rgba(116, 43, 43, .72);
  box-shadow: 0 0 0 2px rgba(116, 43, 43, .08);
}


.nav-drawer__section a,
.world--open > a,
.house-service,
.studio-department--open > a,
.studio-package > a,
.text-action,
.house-action a {
  min-height: 44px;
}

@media (max-width: 720px) {
  .request-opening h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: .98;
  }

  .request-controls button,
  .studio-primary-action,
  .hall-trigger {
    min-height: 52px;
  }

  .request-form input,
  .request-form textarea,
  .request-form select {
    font-size: 16px;
  }
}



.house-nav__right {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 1.8vw, 1.5rem);
}
.house-nav__right .house-action { grid-row: auto; }

.commission-bag { position: relative; }
.commission-bag[hidden] { display: none; }
.commission-bag__trigger {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(247, 244, 238, .82);
  cursor: pointer;
  transition: color .3s ease, transform .35s var(--ease);
}
.commission-bag__trigger:hover,
.commission-bag__trigger:focus-visible {
  color: var(--ecru);
  background: transparent;
  transform: translateY(-1px);
}
.commission-bag__trigger svg {
  width: 1.18rem;
  height: 1.18rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.commission-bag__count {
  position: absolute;
  right: .16rem;
  top: .12rem;
  min-width: .82rem;
  height: .82rem;
  padding-inline: .18rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 6, 23, .68);
  border-radius: 999px;
  color: #050617;
  background: var(--ecru);
  box-shadow: 0 .15rem .5rem rgba(0, 0, 0, .3);
  font-family: var(--ceremonial);
  font-size: .43rem;
  line-height: 1;
}
.commission-bag__panel {
  position: absolute;
  right: 0;
  top: calc(100% + .75rem);
  width: min(22rem, calc(100vw - 2 * var(--pad)));
  padding: 1.45rem;
  color: #171723;
  background: var(--ecru);
  border: 1px solid rgba(23, 23, 35, .1);
  box-shadow: 0 2.2rem 5.4rem rgba(0, 0, 0, .38);
}
.commission-bag__panel[hidden] { display: none; }
.commission-bag__panel > p {
  color: #7f766b;
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.commission-bag__panel > strong,
.commission-bag__panel > span { display: block; }
.commission-bag__panel > strong {
  margin-top: .75rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.05;
}
.commission-bag__panel > span {
  margin-top: .35rem;
  color: rgba(23, 23, 35, .56);
  font-family: var(--serif);
  font-size: 1rem;
}
.commission-bag__view,
.commission-bag__continue {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
  padding: .95rem 1rem;
  color: var(--ecru);
  background: #171723;
  font-family: var(--ceremonial);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.commission-bag__remove {
  width: 100%;
  margin-top: .55rem;
  padding: .7rem;
  border: 0;
  background: transparent;
  color: rgba(23, 23, 35, .54);
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.commission-bag__remove:hover,
.commission-bag__remove:focus-visible { color: #171723; }

.commission-bag-page {
  min-height: 100vh;
  padding: calc(var(--header-h) + clamp(5rem, 10vh, 8rem)) var(--pad) clamp(7rem, 15vh, 12rem);
  color: #171723;
  background:
    radial-gradient(circle at 75% 0, rgba(154, 144, 128, .1), transparent 32%),
    var(--ecru);
}
.commission-bag-page__header {
  width: min(52rem, 100%);
  margin-bottom: clamp(3rem, 7vh, 5rem);
}
.commission-bag-page__header .eyebrow { color: #7f766b; }
.commission-bag-page__header h1 {
  margin-top: 1.25rem;
  color: #171723;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: .98;
}
.commission-bag-page__header > p:last-child {
  width: min(38rem, 100%);
  margin-top: 1.5rem;
  color: rgba(23, 23, 35, .62);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}
.commission-bag-page__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  width: min(76rem, 100%);
  padding: clamp(2.2rem, 5vw, 4.2rem) 0;
  border-top: 1px solid rgba(23, 23, 35, .16);
  border-bottom: 1px solid rgba(23, 23, 35, .14);
}
.commission-bag-page__item[hidden],
.commission-bag-page__empty[hidden] { display: none; }
.commission-bag-page__item-label {
  color: #7f766b;
  font-family: var(--ceremonial);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.commission-bag-page__item h2 {
  margin-top: .8rem;
  color: #171723;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
}
.commission-bag-page__description {
  width: min(42rem, 100%);
  margin-top: 1rem;
  color: rgba(23, 23, 35, .6);
  line-height: 1.7;
}
.commission-bag-page__price {
  min-width: 9rem;
  text-align: right;
}
.commission-bag-page__price span,
.commission-bag-page__price strong { display: block; }
.commission-bag-page__price span {
  color: #7f766b;
  font-family: var(--ceremonial);
  font-size: .54rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.commission-bag-page__price strong {
  margin-top: .55rem;
  color: #171723;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}
.commission-bag-page__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  align-items: center;
  margin-top: .5rem;
}
.commission-bag-page__remove {
  min-height: 3.4rem;
  padding: .9rem 1.1rem;
  border: 0;
  background: transparent;
  color: rgba(23, 23, 35, .58);
  font-family: var(--ceremonial);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.commission-bag-page__remove:hover,
.commission-bag-page__remove:focus-visible { color: #171723; }
.commission-bag-page__empty {
  width: min(46rem, 100%);
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid rgba(23, 23, 35, .16);
}
.commission-bag-page__empty h2 {
  color: #171723;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
}
.commission-bag-page__empty p {
  margin-top: 1rem;
  color: rgba(23, 23, 35, .6);
  line-height: 1.7;
}
.commission-bag-page__empty .studio-primary-action { margin-top: 2rem; }
@media (max-width: 720px) {
  .commission-bag-page__item { grid-template-columns: 1fr; }
  .commission-bag-page__price { text-align: left; }
  .commission-bag-page__actions { grid-column: 1; align-items: stretch; flex-direction: column; }
  .commission-bag-page__actions .studio-primary-action,
  .commission-bag-page__remove { width: 100%; justify-content: center; }
}


.studio-opening__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
  margin-top: 2.8rem;
}
.studio-opening__actions .studio-primary-action,
.studio-opening__actions .text-action { margin-top: 0; }
.studio-opening__actions .text-action { padding-bottom: .18rem; }


.request-progress li { padding: 0; }
.request-progress li > button {
  width: 100%;
  min-height: 3.65rem;
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}
.request-progress li > button:not(:disabled) { cursor: pointer; }
.request-progress li > button:not(:disabled):hover,
.request-progress li > button:not(:disabled):focus-visible {
  color: var(--ecru);
  padding-left: .5rem;
}
.request-progress li > button:disabled { cursor: default; }
.request-progress li[aria-current="step"] > button { padding-left: .7rem; }
.request-progress li.is-preselected > button::after {
  content: "Selected";
  grid-column: 2;
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .45rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.deliverables-opening {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 7rem) var(--pad) clamp(5rem, 11vh, 8rem);
  background:
    radial-gradient(circle at 73% 38%, rgba(69, 74, 121, .15), transparent 29%),
    #050617;
}
.deliverables-opening h1 {
  max-width: 12ch;
  margin-top: 1.35rem;
  color: var(--ecru);
  font-family: var(--ceremonial);
  font-size: clamp(3.3rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: .035em;
  line-height: .94;
}
.deliverables-opening > p:not(.eyebrow) {
  max-width: 42rem;
  margin-top: 1.8rem;
  color: rgba(247, 244, 238, .62);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}
.deliverables-opening .text-action { margin-top: 2.6rem; align-self: flex-start; }
.deliverables-list { background: #04050f; }
.deliverable {
  display: grid;
  grid-template-columns: minmax(17rem, .65fr) minmax(26rem, 1.35fr);
  gap: clamp(4rem, 8vw, 9rem);
  padding: clamp(7rem, 15vh, 12rem) var(--pad);
  border-top: 1px solid rgba(247, 244, 238, .08);
}
.deliverable__header h2 {
  max-width: 12ch;
  margin-top: 1.2rem;
  color: var(--ecru);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1;
}
.deliverable__header > p:last-child {
  max-width: 32rem;
  margin-top: 1.5rem;
  color: rgba(247, 244, 238, .58);
  line-height: 1.7;
}
.deliverable__media {
  position: relative;
  min-height: 32rem;
  display: grid;
  gap: .75rem;
  padding: 1rem;
  border: 1px solid rgba(247, 244, 238, .12);
  background: linear-gradient(145deg, rgba(247, 244, 238, .03), rgba(69, 74, 121, .035)), #08091c;
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, .28);
}
.deliverable__media span {
  display: block;
  border: 1px solid rgba(247, 244, 238, .08);
  background: rgba(247, 244, 238, .012);
}
.deliverable__media p {
  position: absolute;
  left: 50%;
  bottom: 1.7rem;
  transform: translateX(-50%);
  width: 90%;
  color: rgba(247, 244, 238, .36);
  font-family: var(--ceremonial);
  font-size: .52rem;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}
.deliverable__media--clips { grid-template-columns: repeat(6, 1fr); }
.deliverable__media--clips span { min-height: 24rem; }
.deliverable__media--sequence { grid-template-columns: repeat(3, 1fr); }
.deliverable__media--sequence span { min-height: 27rem; }
.deliverable__media--film { grid-template-columns: 1fr; }
.deliverable__media--film span { min-height: 30rem; }
.deliverable__facts {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(247, 244, 238, .12);
}
.deliverable__facts > div { padding: 1.6rem 1rem; border-bottom: 1px solid rgba(247, 244, 238, .1); }
.deliverable__facts > div + div { border-left: 1px solid rgba(247, 244, 238, .08); }
.deliverable__facts dt {
  color: var(--stone);
  font-family: var(--ceremonial);
  font-size: .5rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.deliverable__facts dd { margin-top: .65rem; color: rgba(247, 244, 238, .7); font-family: var(--serif); font-size: 1.15rem; }
.deliverable > .text-action { grid-column: 2; justify-self: start; }

@media (max-width: 820px) {
  .house-nav__right { gap: .55rem; }
  .commission-bag__trigger { width: 2.4rem; height: 2.4rem; }
  .house-action { max-width: 7rem; font-size: .52rem; }
  .studio-opening__actions { align-items: flex-start; flex-direction: column; }
  .request-progress ol {
    display: grid;
    grid-template-columns: repeat(5, minmax(4.3rem, 1fr));
    overflow-x: auto;
    scrollbar-width: none;
  }
  .request-progress ol::-webkit-scrollbar { display: none; }
  .request-progress li,
  .request-progress li[aria-current="step"] { display: block; }
  .request-progress li > button,
  .request-progress li[aria-current="step"] > button {
    min-height: 4.4rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    padding: .8rem .55rem;
  }
  .request-progress li strong { font-size: .86rem; }
  .request-progress li.is-preselected > button::after { display: none; }
  .deliverable { grid-template-columns: 1fr; gap: 3rem; }
  .deliverable__media,
  .deliverable__facts,
  .deliverable > .text-action { grid-column: 1; }
  .deliverable__media { min-height: 25rem; }
  .deliverable__media--clips { grid-template-columns: repeat(3, 1fr); }
  .deliverable__media--clips span { min-height: 10rem; }
  .deliverable__media--sequence span { min-height: 20rem; }
  .deliverable__facts { grid-template-columns: 1fr; }
  .deliverable__facts > div + div { border-left: 0; }
}

@media (max-width: 520px) {
  .house-action { display: none; }
  .commission-bag__panel { position: fixed; right: var(--pad); top: calc(var(--header-h) - .2rem); }
  .deliverables-opening h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
}



.nav-drawer__current-hub > span {
  display: grid !important;
  justify-content: start !important;
  gap: .28rem !important;
  padding: .35rem 0 .55rem;
  color: #746d63 !important;
}
.nav-drawer__current-hub small {
  color: rgba(25, 25, 25, .42);
  font-family: var(--ceremonial);
  font-size: .46rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav-drawer__current-hub strong {
  color: #746d63;
  font-family: var(--ceremonial);
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.studio-package > a {
  position: relative;
  align-items: center;
  min-height: 44px;
  padding: .62rem 0 .58rem;
  border-bottom: 0;
}
.studio-package > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .42rem;
  height: 1px;
  background: rgba(247, 244, 238, .3);
  transform-origin: left center;
  transition: background .3s ease, transform .4s var(--ease);
}
.studio-package > a:hover::after,
.studio-package > a:focus-visible::after {
  background: rgba(154, 144, 128, .68);
  transform: scaleX(.94);
}

.studio-guide-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  min-height: 3.45rem;
  margin-top: 2.15rem;
  padding: .95rem 1.55rem;
  border: 1px solid rgba(247, 244, 238, .28);
  color: rgba(247, 244, 238, .9);
  background: rgba(247, 244, 238, .025);
  font-family: var(--ceremonial);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .4s var(--ease);
}
.studio-guide-action:hover,
.studio-guide-action:focus-visible {
  color: #050617;
  background: var(--ecru);
  border-color: var(--ecru);
  transform: translateY(-2px);
}
.studio-guide-action span { transition: transform .4s var(--ease); }
.studio-guide-action:hover span,
.studio-guide-action:focus-visible span { transform: translateX(.22rem); }

@media (max-width: 720px) {
  .studio-guide-action { width: 100%; }
}


:root {
  --vii-type-arrival: clamp(3.35rem, 6.25vw, 5.95rem);
  --vii-type-room: clamp(2.75rem, 4.85vw, 4.95rem);
  --vii-type-long-room: clamp(2.45rem, 4.15vw, 4.35rem);
  --vii-type-task: clamp(2.35rem, 3.85vw, 4.05rem);
  --vii-type-section: clamp(2rem, 3.35vw, 3.45rem);
  --vii-type-subsection: clamp(1.55rem, 2.45vw, 2.45rem);
  --vii-type-lead: clamp(1.02rem, 1.28vw, 1.24rem);
  --vii-type-body: clamp(.97rem, 1vw, 1.06rem);
  --vii-title-gap: clamp(1rem, 1.45vw, 1.3rem);
  --vii-copy-gap: clamp(1.25rem, 1.8vw, 1.65rem);
  --vii-action-gap: clamp(2.25rem, 3.4vw, 2.9rem);


  --type-display-hero: clamp(2.45rem, 4.35vw, 4.45rem);
  --type-display-section: clamp(1.9rem, 3vw, 3.1rem);
  --type-display-chapter: clamp(2.05rem, 3.55vw, 3.45rem);
  --type-narrative-lead: clamp(1.15rem, 1.72vw, 1.55rem);
  --type-body-large: clamp(1.02rem, 1.22vw, 1.17rem);
}


.eyebrow,
.community-arrival__label,
.studio-register__label,
.room-ledger__label,
.request-progress > p,
.commission-bag-page__item-label {
  font-size: clamp(.52rem, .54vw, .59rem);
  line-height: 1.45;
  letter-spacing: .18em;
}


.threshold h1 {
  margin-top: var(--vii-title-gap);
  font-size: var(--vii-type-arrival);
  line-height: .93;
}
.studio-opening h1,
.sports-opening h1 {
  margin-top: var(--vii-title-gap);
  font-size: var(--vii-type-room);
  line-height: .96;
  font-weight: 430;
}
.studio-commission-opening h1,
.room__header h1 {
  margin-top: var(--vii-title-gap);
  font-size: var(--vii-type-long-room);
  line-height: .98;
  font-weight: 430;
}
.request-opening h1,
.request-thanks h1,
.deliverables-opening h1,
.commission-bag-page__header h1 {
  margin-top: var(--vii-title-gap);
  font-size: var(--vii-type-task);
  line-height: 1;
}


.threshold__intro,
.studio-opening__statement,
.studio-commission-opening__copy > p:nth-of-type(2),
.sports-opening__statement,
.room__lede,
.request-opening > p:last-child,
.request-thanks__content > p,
.deliverables-opening > p:not(.eyebrow),
.commission-bag-page__header > p:last-child {
  margin-top: var(--vii-copy-gap);
  font-size: var(--vii-type-lead);
  line-height: 1.58;
}


.studio-opening__actions,
.studio-commission-opening__actions,
.sports-opening .text-action,
.room__header .text-action,
.deliverables-opening .text-action,
.request-thanks__actions,
.studio-bespoke .studio-primary-action {
  margin-top: var(--vii-action-gap);
}


.chapter h2,
.studio-index__heading h2,
.studio-packages__header h2,
.studio-refinements h2,
.studio-bespoke h2,
.studio-process h2,
.deliverable__header h2,
.commission-approach__heading h2,
.proof__copy h2,
.commission-path h2,
.community-memory > h2 {
  font-size: var(--vii-type-section);
  line-height: 1.04;
}
.studio-principle h2,
.studio-proofline h2 {
  font-size: clamp(1.85rem, 2.85vw, 3rem);
  line-height: 1.13;
}
.studio-package h3,
.studio-process h3,
.commission-sequence h3,
.community-chapter h3 {
  font-size: var(--vii-type-subsection);
  line-height: 1.08;
}


.studio-index__heading > p:last-child,
.studio-principle > p:last-child,
.studio-packages__header > p:last-child,
.studio-bespoke > p:not(.eyebrow),
.studio-process header > p:last-child,
.deliverable__header > p:last-child,
.chapter__body > p,
.commission-approach__heading > p:last-child,
.proof__copy > p:last-child,
.commission-path > p:last-of-type,
.studio-package li,
.studio-process li p,
.deliverable__facts dd {
  font-size: var(--vii-type-body);
  line-height: 1.66;
}


.studio-package__price {
  font-size: clamp(1.8rem, 2.85vw, 2.85rem);
}
.studio-package__hook {
  font-size: clamp(1.18rem, 1.62vw, 1.48rem);
  line-height: 1.42;
}


.request-opening {
  min-height: 54vh;
  padding-top: calc(var(--header-h) + clamp(5rem, 8vh, 6.5rem));
  padding-bottom: clamp(3.5rem, 7vh, 5.25rem);
}
.deliverables-opening {
  min-height: 68vh;
  padding-top: calc(var(--header-h) + clamp(5rem, 8vh, 6.5rem));
  padding-bottom: clamp(4rem, 8vh, 6rem);
}
.commission-bag-page__header {
  width: min(48rem, 100%);
}


.studio-opening__statement,
.studio-commission-opening__copy > p:nth-of-type(2),
.sports-opening__statement,
.room__lede,
.request-opening > p:last-child,
.deliverables-opening > p:not(.eyebrow),
.commission-bag-page__header > p:last-child {
  max-width: 36rem;
}

@media (max-width: 720px) {
  :root {
    --vii-type-arrival: clamp(3rem, 14vw, 4.15rem);
    --vii-type-room: clamp(2.7rem, 12vw, 3.65rem);
    --vii-type-long-room: clamp(2.35rem, 10.5vw, 3.2rem);
    --vii-type-task: clamp(2.25rem, 9.5vw, 3rem);
    --vii-type-section: clamp(1.95rem, 8.5vw, 2.8rem);
    --vii-type-subsection: clamp(1.55rem, 6.8vw, 2.15rem);
    --vii-type-lead: clamp(1rem, 4.3vw, 1.15rem);
  }

  .request-opening,
  .deliverables-opening {
    min-height: auto;
    padding-top: calc(var(--header-h) + 4.5rem);
    padding-bottom: 3.75rem;
  }

  .studio-opening h1,
  .studio-commission-opening h1,
  .sports-opening h1,
  .room__header h1,
  .request-opening h1,
  .request-thanks h1,
  .deliverables-opening h1,
  .commission-bag-page__header h1 {
    max-width: 12ch;
  }
}



.request-opening h1 {
  width: min(100%, 16ch);
  max-width: 16ch;
  overflow-wrap: normal;
  word-break: normal;
}
@media (max-width: 720px) {
  .request-opening h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.1rem, 8.7vw, 2.75rem);
  }
}



@media (max-width: 820px) {
  :root {
    --pad: clamp(1.1rem, 4.6vw, 1.4rem);
    --nav-main-h: 4.35rem;
    --nav-context-h: 1.8rem;
    --house-editorial-axis: 1.1rem;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + .75rem);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    min-width: 320px;
    overflow-x: clip;
    -webkit-tap-highlight-color: transparent;
  }

  a, button, input, select, textarea, label {
    touch-action: manipulation;
  }


  .passage,
  .house-nav,
  .hall {
    width: 100dvw;
    max-width: 100dvw;
  }

  .house-nav {
    width: 100dvw;
    max-width: 100dvw;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    padding-inline:
      calc(1rem + var(--safe-l))
      calc(1rem + var(--safe-r));
  }

  .hall-trigger,
  .house-seal,
  .commission-bag__trigger,
  .house-action a {
    min-width: 44px;
    min-height: 44px;
  }

  .hall-trigger {
    margin-left: -.35rem;
    gap: .42rem;
  }

  .hall-trigger__mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .hall-trigger__label {
    display: inline-block;
    font-size: .5rem;
    letter-spacing: .17em;
  }

  .house-seal {
    display: grid;
    place-items: center;
    padding-left: 0;
  }

  .house-seal__logo {
    width: 2.05rem;
  }

  .house-nav__right {
    min-width: 0;
    max-width: 100%;
    gap: .25rem;
  }

  .house-action {
    min-width: 0;
  }

  .commission-bag__trigger {
    width: 2.75rem;
    height: 2.75rem;
  }

  .commission-bag__count {
    right: .06rem;
    top: .08rem;
  }

  .location-trail {
    width: auto;
    max-width: 100%;
    justify-self: stretch;
    padding-inline:
      calc(1rem + var(--safe-l))
      calc(1rem + var(--safe-r));
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .location-trail::-webkit-scrollbar { display: none; }


  .hall--drawer .hall__card {
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100svh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    padding:
      1.45rem
      calc(var(--pad) + var(--safe-r))
      calc(2rem + var(--safe-b))
      calc(var(--pad) + var(--safe-l));
    border-radius: 0;
    transform: translateY(-.6rem);
    overscroll-behavior: contain;
  }

  .hall--drawer.is-open .hall__card { transform: none; }

  .nav-drawer__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: end;
    padding-bottom: 1.25rem;
  }

  .nav-drawer__header h2 {
    max-width: 11ch;
    font-size: clamp(1.9rem, 8.4vw, 2.45rem);
  }

  .nav-drawer__header > p {
    max-width: 8.5rem;
    text-align: right;
    line-height: 1.55;
  }

  .nav-drawer__grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding-top: 1.25rem;
  }

  .nav-drawer__section {
    min-width: 0;
  }

  .nav-drawer__section ul { margin-top: .65rem; }
  .nav-drawer__section li + li { margin-top: .15rem; }

  .nav-drawer__section a,
  .nav-drawer__section li > span {
    min-height: 48px;
    align-items: center;
    font-size: clamp(1.08rem, 5vw, 1.3rem);
  }

  .nav-drawer__section--current {
    padding: 1.25rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(21, 21, 21, .12);
  }

  .nav-drawer__section--current h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }


  .threshold {
    min-height: 100svh;
  }

  body[data-view="threshold"] .threshold__content {
    width: 100%;
    max-width: 23rem;
    padding-inline: var(--pad);
    transform: translateY(1rem);
  }

  .threshold h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .threshold__intro {
    width: min(21rem, 100%);
    font-size: .95rem;
    line-height: 1.62;
  }

  .threshold .text-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    margin-top: 3.4rem;
  }


  .studio-opening {
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding-top: calc(var(--header-h) + 3.6rem);
    padding-bottom: 4.25rem;
  }

  .studio-opening__copy {
    width: 100%;
  }

  .studio-opening h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 12.5vw, 3.45rem);
  }

  .studio-opening__statement {
    width: min(21rem, 100%);
    font-size: 1rem;
    line-height: 1.58;
  }

  .studio-opening__actions {
    width: 100%;
    gap: 1rem;
  }

  .studio-opening__actions .studio-primary-action {
    width: min(100%, 22rem);
  }

  .studio-opening__actions .text-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }

  .studio-register {
    width: 100%;
    margin-top: clamp(4rem, 10vh, 5.5rem);
    transform: none;
  }

  .studio-opening--anchored .studio-plane {
    will-change: auto;
  }

  .studio-opening--anchored .studio-plane--left,
  .studio-opening--anchored .studio-plane--right {
    width: 46vw;
    opacity: .58;
  }

  .studio-index,
  .studio-principle,
  .studio-packages,
  .studio-refinements,
  .studio-bespoke,
  .studio-process {
    padding-inline: var(--pad);
  }

  .studio-department--open > a,
  .studio-package > a,
  .studio-guide-action {
    min-height: 48px;
  }


  .studio-commission-opening {
    min-height: 100svh;
    padding-inline: var(--pad);
  }

  .studio-commission-opening__copy {
    width: 100%;
    max-width: 24rem;
  }

  .studio-commission-opening h1 {
    max-width: 9ch;
    font-size: clamp(2.35rem, 10.6vw, 3rem);
    line-height: 1.02;
  }

  .studio-commission-opening__copy > p:nth-of-type(2) {
    width: min(21rem, 100%);
    font-size: 1rem;
  }

  .studio-commission-opening__actions {
    width: 100%;
    flex-direction: column;
    gap: .8rem;
  }

  .studio-commission-opening__actions .studio-primary-action,
  .studio-commission-opening__actions .text-action {
    width: min(100%, 22rem);
    min-height: 50px;
  }

  .studio-commission-opening__actions .text-action {
    justify-content: center;
  }

  .studio-commission-opening__field {
    overflow: hidden;
    clip-path: inset(0);
    contain: layout paint;
  }

  .commission-plane {
    will-change: auto;
  }

  .commission-plane--left,
  .commission-plane--right {
    --plane-base-z: 0px;
    --plane-rotate: 0deg;
    --plane-skew: 0deg;
    opacity: .42;
  }

  .commission-plane--left {
    width: 46%;
    height: 54%;
    left: 0;
    top: 20%;
  }

  .commission-plane--right {
    width: 43%;
    height: 48%;
    right: 0;
    bottom: 10%;
  }

  .studio-proofline {
    min-height: auto;
    padding: 5.5rem var(--pad);
  }

  .studio-proofline__card {
    width: 100% !important;
    padding: 3.4rem 1.35rem;
  }

  .studio-proofline h2 {
    max-width: 18ch;
    font-size: clamp(1.75rem, 8vw, 2.35rem);
  }

  .studio-packages__header,
  .studio-refinements,
  .studio-bespoke,
  .studio-process {
    padding-block: clamp(4.75rem, 12vh, 6.5rem);
  }

  .studio-package {
    padding-block: 3.75rem;
  }

  .studio-package > a,
  .studio-guide-action,
  .studio-bespoke .studio-primary-action,
  .studio-process .studio-primary-action {
    width: 100%;
    justify-content: center;
  }


  .deliverables-opening {
    min-height: auto;
    padding-top: calc(var(--header-h) + 4.4rem);
    padding-bottom: 3.75rem;
  }

  .deliverables-opening h1 {
    font-size: clamp(2.45rem, 11vw, 3.1rem);
  }

  .deliverable {
    gap: 2.5rem;
    padding-block: 5.5rem;
  }

  .deliverable__media {
    min-height: 20rem;
  }

  .deliverable__media--clips span { min-height: 8rem; }
  .deliverable__media--sequence span { min-height: 17rem; }
  .deliverable__media--film span { min-height: 20rem; }

  .deliverable > .text-action {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }


  .commission-bag__panel {
    position: fixed;
    top: calc(var(--header-h) + .5rem);
    right: var(--pad);
    left: var(--pad);
    width: auto;
    max-height: calc(100svh - var(--header-h) - 1.5rem);
    overflow-y: auto;
  }

  .commission-bag-page {
    min-height: 100svh;
    padding:
      calc(var(--header-h) + 3.5rem)
      var(--pad)
      calc(5rem + var(--safe-b));
  }

  .commission-bag-page__header h1 {
    font-size: clamp(2.35rem, 10.5vw, 3rem);
  }

  .commission-bag-page__item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .commission-bag-page__price {
    text-align: left;
  }

  .commission-bag-page__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .commission-bag-page__actions .studio-primary-action,
  .commission-bag-page__remove {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  body[data-view="studio-bag"] .house-action {
    display: block;
    max-width: 6.2rem;
    font-size: .45rem;
    line-height: 1.35;
  }


  .request-opening {
    min-height: auto;
    padding:
      calc(var(--header-h) + 3.35rem)
      var(--pad)
      2.75rem;
  }

  .request-opening h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 10.5vw, 2.9rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .request-opening > p:last-child {
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .request-layout {
    gap: 1.25rem;
    padding:
      1.25rem
      var(--pad)
      calc(5.5rem + var(--safe-b));
  }

  .request-progress {
    position: relative;
    top: auto;
    width: 100%;
    padding-bottom: .75rem;
  }

  .request-progress > p {
    padding-bottom: .75rem;
  }

  .request-progress li > button,
  .request-progress li[aria-current="step"] > button {
    min-height: 44px;
  }

  .request-progress ol::after {
    margin-top: .55rem;
  }

  .request-estimate {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .25rem 1rem;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
  }

  .request-estimate span { grid-column: 1; }
  .request-estimate strong {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin: 0;
    font-size: clamp(1.35rem, 6vw, 1.8rem);
    text-align: right;
  }
  .request-estimate small {
    grid-column: 1;
    line-height: 1.45;
  }

  .request-form {
    padding: 1.25rem;
  }

  .request-step legend {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .request-step__intro {
    font-size: 1rem;
    line-height: 1.55;
  }

  .form-grid,
  .form-grid--two,
  .choice-grid--packages {
    grid-template-columns: 1fr;
  }

  .choice-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card {
    min-height: 72px;
  }

  .request-controls {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
    gap: .7rem;
    margin: 2.5rem 0 0;
    padding: 1.25rem 0 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .request-controls button {
    width: 100%;
    min-height: 52px;
    padding-inline: .75rem;
  }


  .request-thanks {
    min-height: 100svh;
    padding:
      calc(var(--header-h) + 3.5rem)
      var(--pad)
      calc(4rem + var(--safe-b));
  }

  .request-thanks h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.9rem);
  }

  .request-thanks__actions {
    width: 100%;
    flex-direction: column;
  }

  .request-thanks__actions .studio-primary-action,
  .request-thanks__actions .text-action {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }


  .sports-opening,
  .room__header {
    min-height: 100svh;
    padding-inline: var(--pad);
  }

  .sports-opening h1,
  .room__header h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 11.5vw, 3.25rem);
  }

  .sports-opening__statement,
  .room__lede {
    max-width: 21rem;
    font-size: 1rem;
    line-height: 1.58;
  }

  .chapter-ledger a,
  .chapter-ledger button {
    min-height: 48px !important;
    padding-block: .7rem !important;
    box-sizing: border-box;
  }

  .sports-opening .text-action,
  .room__header .text-action,
  .studio-return a,
  .studio-return button {
    min-height: 48px;
  }

  .sports-opening .text-action,
  .room__header .text-action {
    display: inline-flex;
    align-items: center;
  }

  .chapter {
    padding-inline: var(--pad);
  }


  .community-arrival__hero,
  .community-arrival__continuation,
  .community-section,
  .community-chapter,
  .community-memory {
    padding-inline: var(--pad);
  }

  .community-arrival__opening {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .community-arrival__continuation {
    gap: clamp(2.5rem, 8vh, 4rem);
  }

  .community-chapter h3,
  .community-memory > h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

}


@media (max-width: 820px) and (hover: none),
       (max-width: 820px) and (pointer: coarse) {
  .studio-plane,
  .commission-plane,
  .studio-package,
  .chapter-ledger a {
    will-change: auto;
  }

  .studio-plane.is-near,
  .commission-plane.is-near {
    --plane-lift: 0px;
    filter: none;
  }

  .studio-primary-action:hover,
  .text-action:hover,
  .studio-guide-action:hover,
  .studio-package > a:hover,
  .commission-bag__trigger:hover {
    transform: none;
  }
}

@media (max-width: 380px) {
  :root { --pad: 1.05rem; }
  .house-nav { padding-inline: calc(.8rem + var(--safe-l)) calc(.8rem + var(--safe-r)); }
  .hall-trigger__label { display: none; }
  .house-action { max-width: 5.5rem; font-size: .43rem; }
  .studio-opening h1,
  .sports-opening h1,
  .room__header h1 { font-size: 2.55rem; }
  .choice-grid--compact { grid-template-columns: 1fr; }
}



@media (max-width: 820px) {
  :root {
    --pad: clamp(1.25rem, 5.6vw, 1.65rem);
    --mobile-room-gap: clamp(5rem, 14vw, 7.25rem);
    --mobile-copy: min(22rem, 100%);
  }

  html, body { width: 100%; max-width: 100%; }
  body { overflow-x: hidden; }
  main, .view, .scene, section, header, article, nav, aside, div { min-width: 0; }
  img, svg, video, canvas { max-width: 100%; }

  .house-nav {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(180deg, rgba(6,7,26,.94), rgba(6,7,26,.72));
    border-bottom-color: rgba(247,244,238,.045);
    -webkit-backdrop-filter: blur(18px) saturate(105%);
    backdrop-filter: blur(18px) saturate(105%);
  }
  body[data-view="threshold"]:not(.hall-open) .house-nav {
    background: linear-gradient(180deg, rgba(6,7,26,.72), transparent);
    border-bottom-color: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .location-trail {
    min-height: var(--nav-context-h);
    padding-bottom: .35rem;
  }


  .hall .hall__card,
  .hall--drawer .hall__card {
    top: var(--header-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100svh - var(--header-h)) !important;
    max-height: none !important;
    margin: 0 !important;
    padding: clamp(2rem, 7vw, 2.75rem) var(--pad) calc(3rem + var(--safe-b)) !important;
    border-radius: 0 !important;
    clip-path: none !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    transform: translateY(-1rem) !important;
  }
  .hall.is-open .hall__card,
  .hall--drawer.is-open .hall__card { transform: none !important; }
  .hall__heading { padding-bottom: 2rem; }
  .hall__heading h2 { max-width: 13ch; font-size: clamp(1.7rem, 8vw, 2.25rem); line-height: 1.08; }
  .hall__instruction { max-width: 24rem; }
  .world-list { margin-top: .75rem; }
  .world { min-height: 5.25rem; padding-block: 1.35rem; }
  .world__name { font-size: clamp(1.18rem, 5.8vw, 1.45rem); }
  .house-services { margin-top: 2.25rem; padding-top: 1.75rem; }
  .house-service { min-height: 5.6rem; }
  .hall__position { margin-top: 2.5rem; padding-bottom: .5rem; }
  .nav-drawer__header { display: block; }
  .nav-drawer__header > p { max-width: 21rem; margin-top: 1rem; text-align: left; }
  .nav-drawer__grid { gap: 2.25rem; }
  .nav-drawer__section--current { padding-top: 2rem; }


  .threshold {
    min-height: 100svh !important;
    height: auto !important;
    overflow: hidden;
  }
  body[data-view="threshold"] .threshold__content {
    min-height: 100svh;
    width: min(100%, 24rem);
    max-width: 24rem;
    margin-inline: auto;
    padding: calc(var(--header-h) + 4rem) var(--pad) calc(5.5rem + var(--safe-b));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: none !important;
  }
  .threshold h1 { font-size: clamp(3.15rem, 15vw, 4.15rem); line-height: .92; }
  .threshold .ceremonial { margin-top: 1.35rem; }
  .threshold__intro { max-width: 20rem; margin-top: 1.1rem; font-size: 1rem; line-height: 1.62; }
  .threshold .text-action { margin-top: 3.8rem; }
  .location-mark { left: var(--pad); right: auto; bottom: calc(1.2rem + var(--safe-b)); }
  .threshold__architecture { inset: 0; overflow: hidden; transform: none !important; }
  .threshold__architecture .plane { transition: none !important; }
  .threshold__architecture .plane--one {
    width: 42vw; height: 54svh; left: -22vw; top: 20svh;
    transform: rotate(-7deg) !important;
  }
  .threshold__architecture .plane--two {
    width: 39vw; height: 48svh; right: -20vw; top: 7svh;
    transform: rotate(6deg) !important;
  }
  .threshold__architecture .plane--three {
    width: 34vw; height: 29svh; right: 4vw; left: auto; top: auto; bottom: -17svh;
    transform: rotate(-11deg) !important;
  }
  .threshold__passage { transform: none !important; }


  .studio-opening {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    padding: 0 var(--pad) !important;
    overflow: hidden;
  }
  .studio-opening__architecture {
    inset: 0 0 auto !important;
    width: 100%; height: 100svh;
    overflow: hidden;
  }
  .studio-opening--anchored .studio-plane--left,
  .studio-opening--anchored .studio-plane--right {
    width: 28vw !important;
    height: 100% !important;
    opacity: .5 !important;
  }
  .studio-opening__copy {
    min-height: 100svh;
    width: 100%;
    padding: calc(var(--header-h) + 3.25rem) 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .studio-opening h1 { max-width: 9ch; font-size: clamp(2.8rem, 13vw, 3.55rem); }
  .studio-opening__statement { max-width: 21rem; }
  .studio-opening__actions { width: 100%; margin-top: 2.75rem; }
  .studio-opening__actions .studio-primary-action { width: 100%; max-width: 22rem; }
  .studio-register {
    width: 100%;
    margin: 0 !important;
    padding: 4.5rem 0 calc(5.5rem + var(--safe-b));
    border-top: 1px solid rgba(247,244,238,.16);
    transform: none !important;
  }
  .studio-register dl > div { grid-template-columns: minmax(5.5rem, .7fr) 1.3fr; gap: 1rem; }
  .studio-register dd { font-size: clamp(1rem, 5vw, 1.2rem); }


  .studio-commission-opening {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    width: 100%;
    padding: 0 var(--pad) !important;
    overflow: hidden !important;
  }
  .studio-commission-opening__field {
    inset: 0 0 auto !important;
    width: 100% !important;
    height: 100svh !important;
    overflow: hidden !important;
    clip-path: inset(0) !important;
  }
  .studio-commission-opening__copy {
    min-height: 100svh;
    max-width: 23rem;
    padding: calc(var(--header-h) + 3.2rem) 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .studio-commission-opening h1 { max-width: 8.5ch; font-size: clamp(2.45rem, 11.5vw, 3.1rem); }
  .studio-commission-opening__copy > p:nth-of-type(2) { max-width: 20rem; }
  .studio-commission-opening__actions { width: 100%; max-width: 22rem; margin-top: 2.75rem; }
  .commission-plane--left { width: 30vw !important; height: 48svh !important; left: -14vw !important; top: 22svh !important; }
  .commission-plane--right { width: 32vw !important; height: 44svh !important; right: -15vw !important; bottom: 8svh !important; }
  .studio-proofline { min-height: auto !important; padding: var(--mobile-room-gap) var(--pad) !important; }
  .studio-proofline__card { width: 100% !important; padding: 3.25rem 1.4rem !important; transform: none !important; }
  .studio-package { padding-block: 4.5rem !important; }


  .commission-bag-page {
    min-height: 100svh;
    padding: calc(var(--header-h) + 4.25rem) var(--pad) calc(5.5rem + var(--safe-b)) !important;
  }
  .commission-bag-page__header { max-width: 22rem; }
  .commission-bag-page__item { margin-top: 3.5rem; padding-top: 3.25rem; }
  .commission-bag-page__empty { padding-top: 3.25rem; }
  .commission-bag-page__actions { margin-top: 1.25rem; }


  .request-opening {
    min-height: 72svh !important;
    padding: calc(var(--header-h) + 4.25rem) var(--pad) 4.5rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .request-opening h1 { max-width: 10ch !important; font-size: clamp(2.35rem, 10.8vw, 3rem) !important; }
  .request-layout {
    display: block !important;
    padding: 0 var(--pad) calc(5.5rem + var(--safe-b)) !important;
  }
  .request-progress {
    position: relative !important;
    top: auto !important;
    width: 100%;
    padding: 3.5rem 0 3.75rem !important;
    border-top: 1px solid rgba(247,244,238,.12);
  }
  .request-progress ol {
    display: grid !important;
    grid-template-columns: 1fr !important;
    overflow: visible !important;
    margin-top: .5rem;
  }
  .request-progress ol::after { display: none !important; content: none !important; }
  .request-progress li,
  .request-progress li[aria-current="step"] {
    display: block !important;
    width: 100%;
  }
  .request-progress li > button,
  .request-progress li[aria-current="step"] > button {
    width: 100%;
    min-height: 4.3rem !important;
    display: grid !important;
    grid-template-columns: 2.35rem minmax(0, 1fr) !important;
    gap: 1rem !important;
    justify-content: initial !important;
    text-align: left;
    padding: 1rem 0 !important;
  }
  .request-progress li strong {
    display: block !important;
    white-space: nowrap;
    font-size: 1.08rem !important;
    line-height: 1.1;
  }
  .request-progress li span { font-size: .57rem !important; }
  .request-estimate {
    display: block !important;
    margin-top: 2rem !important;
    padding: 1.35rem !important;
  }
  .request-estimate strong { margin: .55rem 0 !important; text-align: left !important; }
  .request-form {
    margin-top: 0;
    padding: 2rem 1.25rem 1.5rem !important;
  }
  .request-step legend { font-size: clamp(2rem, 9.5vw, 2.7rem); }
  .choice-grid--compact { grid-template-columns: 1fr !important; }
  .choice-card { min-height: 5.25rem; padding: 1.1rem; }
  .request-controls { grid-template-columns: 1fr !important; }


  .sports-world { height: auto !important; }
  .sports-world .sports-opening {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    padding: 0 var(--pad) !important;
    overflow: hidden;
  }
  .world-stage { position: absolute !important; inset: 0 !important; height: 100svh !important; opacity: .32; }
  .sports-opening__copy {
    min-height: 100svh;
    max-width: 23rem;
    padding: calc(var(--header-h) + 3.5rem) 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 1 !important;
    transform: none !important;
  }
  .sports-opening h1 { max-width: 10ch; font-size: clamp(2.75rem, 12.5vw, 3.45rem); }
  .sports-opening__statement { max-width: 21rem; }
  .sports-opening .text-action { margin-top: 2.8rem; }
  .sports-world .chapter-index {
    position: relative !important;
    width: 100% !important;
    max-width: none !important;
    padding: 4rem 0 5rem !important;
    border-top: 1px solid rgba(247,244,238,.13);
    opacity: 1 !important;
    transform: none !important;
  }
  .chapter-ledger ol { display: block !important; }
  .chapter-ledger__item,
  .chapter-ledger__item--open { opacity: 1 !important; transform: none !important; }
  .chapter-ledger a { min-height: 4.6rem !important; padding-block: 1rem !important; }
  .corridor::before { display: none !important; }
  .chapter { height: auto !important; min-height: auto !important; }
  .chapter__stage {
    position: relative !important;
    inset: auto !important;
    min-height: auto !important;
    display: block !important;
    padding: var(--mobile-room-gap) var(--pad) !important;
    opacity: 1 !important;
  }
  .chapter__body,
  .chapter__plate { transform: none !important; }
  .chapter__landmark { position: static !important; width: auto !important; margin-bottom: 1rem; text-align: left !important; }
  .chapter__body { max-width: 25rem; }
  .chapter__plate { position: relative !important; width: 100% !important; min-height: 15rem; margin-top: 3rem; }


  .room__header {
    display: block !important;
    min-height: auto !important;
    height: auto !important;
    padding: 0 var(--pad) !important;
  }
  .room__opening-copy {
    min-height: 100svh;
    max-width: 23rem;
    padding: calc(var(--header-h) + 3.5rem) 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .room__header h1 { max-width: 10ch; font-size: clamp(2.7rem, 12vw, 3.4rem); }
  .room-ledger {
    width: 100%;
    margin: 0 !important;
    padding: 4.25rem 0 calc(5rem + var(--safe-b));
    border-top: 1px solid rgba(247,244,238,.14);
  }
  .room-ledger dl > div { grid-template-columns: 5rem minmax(0, 1fr); gap: 1rem; }
  .commission-approach,
  .proof,
  .commission-path { padding-inline: var(--pad) !important; padding-block: var(--mobile-room-gap) !important; }
  .commission-sequence { grid-template-columns: 1fr !important; gap: 0 !important; }
  .commission-sequence li { padding-block: 2rem; }


  body[data-view="community"] [data-reveal],
  .community-arrival__opening {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
  .community-arrival { min-height: auto !important; }
  .community-arrival__hero {
    min-height: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 3rem !important;
    padding: calc(var(--header-h) + 4rem) var(--pad) 5rem !important;
  }
  .community-arrival__identity {
    min-height: 50svh;
    max-width: 23rem !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .community-arrival__lead { margin-top: 2.5rem; }
  .community-arrival__opening { font-size: clamp(1.85rem, 8.8vw, 2.45rem) !important; line-height: 1.08; }
  .community-arrival__film {
    width: 100% !important;
    min-height: 25rem !important;
    height: 58svh !important;
    margin: 0 !important;
  }
  .community-arrival__continuation {
    gap: 3.25rem !important;
    padding: var(--mobile-room-gap) var(--pad) !important;
  }
  .community-arrival__continuation p { max-width: 23rem; }
  .community-standard,
  .community-movement,
  .community-chapters,
  .community-memory {
    min-height: auto !important;
    padding: var(--mobile-room-gap) var(--pad) !important;
  }
  .community-standard__frame,
  .community-film-stage { margin-block: 3.5rem !important; }
  .community-movement__copy { max-width: 23rem; }
  .community-chapters { display: block !important; }
  .community-chapter { min-height: auto !important; padding: 3.75rem 0 !important; }
  .community-memory { padding-bottom: calc(6rem + var(--safe-b)) !important; }


  .studio-primary-action,
  .text-action,
  .studio-guide-action,
  .chapter__door { max-width: 100%; }
  input, select, textarea { font-size: 16px !important; }
  :focus-visible { outline-offset: 4px; }
}

@media (max-width: 380px) {
  .threshold h1 { font-size: 3rem; }
  .studio-opening h1,
  .sports-opening h1,
  .room__header h1 { font-size: 2.65rem; }
  .studio-commission-opening h1 { font-size: 2.35rem; }
  .request-opening h1 { font-size: 2.25rem !important; }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .threshold__content,
  .studio-opening__copy,
  .studio-commission-opening__copy,
  .sports-opening__copy,
  .room__opening-copy {
    min-height: auto !important;
    padding-top: calc(var(--header-h) + 2rem) !important;
    padding-bottom: 2.5rem !important;
  }
  .threshold h1,
  .studio-opening h1,
  .sports-opening h1,
  .room__header h1 { font-size: clamp(2.25rem, 7vw, 3rem) !important; }
}


@media (max-width: 820px) {
  .hall .hall__card,
  .hall--drawer .hall__card {
    color: #171723 !important;
    background: var(--ecru) !important;
    opacity: 1 !important;
  }
  .hall__scrim {
    background: rgba(3,4,14,.84) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }
  .commission-plane--right { right: 0 !important; }
}


@media (max-width: 820px) {
  .house-nav { overflow-x: clip !important; }
  .location-trail {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    contain: inline-size;
  }
  .hall {
    transition: opacity .28s ease, visibility .28s ease !important;
  }
  .hall .hall__card,
  .hall--drawer .hall__card {
    transition: transform .28s ease, opacity .28s ease !important;
  }
}


@media (max-width: 820px) {
  .house-nav {
    width: 100dvw !important;
    max-width: 100dvw !important;
  }
}


@media (max-width: 820px) {
  .studio-package > a {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}



@media (max-width: 820px) {
  :root {
    --pad: clamp(1.2rem, 5vw, 1.48rem);
    --mobile-room-gap: clamp(3.85rem, 10.5vw, 5.15rem);
    --mobile-copy: min(22rem, 100%);
    --mobile-ease: cubic-bezier(.22, 1, .36, 1);
  }


  .hall {
    transition: opacity .58s var(--mobile-ease), visibility .58s var(--mobile-ease) !important;
  }
  .hall__scrim {
    background: rgba(2, 3, 12, .72) !important;
    -webkit-backdrop-filter: blur(7px) saturate(.9) !important;
    backdrop-filter: blur(7px) saturate(.9) !important;
  }
  .hall .hall__card,
  .hall--drawer .hall__card {
    top: calc(var(--header-h) + .7rem) !important;
    left: max(var(--pad), var(--safe-l)) !important;
    right: max(var(--pad), var(--safe-r)) !important;
    bottom: calc(.85rem + var(--safe-b)) !important;
    width: auto !important;
    height: auto !important;
    max-height: calc(100svh - var(--header-h) - 1.55rem - var(--safe-b)) !important;
    margin: 0 !important;
    padding: clamp(1.85rem, 6vw, 2.45rem) clamp(1.35rem, 5vw, 1.8rem) calc(2.35rem + var(--safe-b)) !important;
    border: 1px solid rgba(154, 144, 128, .24) !important;
    border-radius: 1.15rem !important;
    color: #171723 !important;
    background:
      radial-gradient(88% 72% at 9% 0%, rgba(154, 144, 128, .12), transparent 58%),
      linear-gradient(138deg, rgba(255,255,255,.9), rgba(247,244,238,.99) 48%, rgba(232,226,215,.97)) !important;
    box-shadow: 0 2rem 6rem rgba(0,0,0,.46), inset 0 1px rgba(255,255,255,.72) !important;
    clip-path: inset(0 92% 92% 0 round 1.15rem) !important;
    transform-origin: top left !important;
    transform: scale(.955) translate3d(-7px, -7px, 0) !important;
    opacity: 0 !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transition:
      clip-path .76s var(--mobile-ease),
      transform .76s var(--mobile-ease),
      opacity .42s ease !important;
  }
  .hall.is-open .hall__card,
  .hall--drawer.is-open .hall__card {
    clip-path: inset(0 0 0 0 round 1.15rem) !important;
    transform: scale(1) translate3d(0,0,0) !important;
    opacity: 1 !important;
  }
  .hall__heading { padding-bottom: 1.55rem !important; }
  .hall__heading h2 { font-size: clamp(1.55rem, 7.1vw, 2rem) !important; }
  .hall__instruction { margin-top: .85rem !important; font-size: .94rem !important; line-height: 1.52 !important; }
  .world-list { margin-top: .45rem !important; }
  .world { min-height: 4.55rem !important; padding-block: 1.05rem !important; }
  .world__name { font-size: clamp(1.08rem, 5.1vw, 1.3rem) !important; }
  .house-services { margin-top: 1.65rem !important; padding-top: 1.4rem !important; }
  .house-service { min-height: 4.9rem !important; }
  .nav-drawer__grid { gap: 1.65rem !important; }
  .nav-drawer__section--current { padding-top: 1.45rem !important; }
  .hall__position { margin-top: 1.8rem !important; }


  body[data-view="threshold"] .threshold__content {
    transition: transform .95s var(--mobile-ease) .08s, opacity .8s ease .08s !important;
  }
  .threshold__architecture .plane {
    transition: transform 1.08s var(--mobile-ease), border-color .35s ease, box-shadow .35s ease !important;
  }
  body.is-entering-house[data-view="threshold"] .threshold__architecture,
  body.house-entered[data-view="threshold"] .threshold__architecture {
    transform: scale(1.045) !important;
    transition: transform 1.08s var(--mobile-ease) !important;
  }
  body.is-entering-house[data-view="threshold"] .threshold__content,
  body.house-entered[data-view="threshold"] .threshold__content {
    transform: translateY(1.35rem) scale(.965) !important;
    opacity: .2 !important;
  }
  body.is-entering-house[data-view="threshold"] .plane--one,
  body.house-entered[data-view="threshold"] .plane--one {
    transform: translate3d(-30vw, 5svh, -35px) rotateY(18deg) rotateZ(-10deg) !important;
  }
  body.is-entering-house[data-view="threshold"] .plane--two,
  body.house-entered[data-view="threshold"] .plane--two {
    transform: translate3d(29vw, -7svh, -80px) rotateY(-20deg) rotateZ(9deg) !important;
  }
  body.is-entering-house[data-view="threshold"] .plane--three,
  body.house-entered[data-view="threshold"] .plane--three {
    transform: translate3d(20vw, 16svh, 55px) rotateZ(-15deg) scale(.94) !important;
  }


  .sports-world .sports-opening {
    padding-inline: var(--pad) !important;
  }
  .sports-opening__copy {
    min-height: 68svh !important;
    max-width: 22rem !important;
    padding: calc(var(--header-h) + 3.3rem) 0 2.15rem !important;
    justify-content: flex-start !important;
  }
  .sports-opening h1 {
    max-width: none !important;
    margin-top: .8rem !important;
    white-space: nowrap;
    font-size: clamp(2.7rem, 12.3vw, 3.35rem) !important;
    font-weight: 400 !important;
    letter-spacing: -.015em;
  }
  .sports-opening__statement {
    margin-top: 1.35rem !important;
    max-width: 21rem !important;
    font-size: .98rem !important;
    line-height: 1.58 !important;
  }
  .sports-opening .text-action { margin-top: 2rem !important; }
  .sports-world .chapter-index {
    padding: 2.9rem 0 3.75rem !important;
  }
  .chapter-index__label { margin-bottom: .75rem !important; }
  .chapter-ledger a { min-height: 4.2rem !important; padding-block: .85rem !important; }


  .corridor {
    position: relative !important;
    background:
      linear-gradient(90deg, rgba(255,255,255,.015), transparent 18%, transparent 82%, rgba(255,255,255,.012)),
      linear-gradient(
        180deg,
        #040512 0%, #0a0d25 10%, #050611 20%, #0d112c 30%, #060816 40%,
        #111631 50%, #060816 60%, #0f1430 70%, #07091b 80%, #090c22 90%, #020306 100%
      ) !important;
  }
  .corridor::before {
    display: block !important;
    left: calc(var(--pad) + .65rem) !important;
    opacity: .5;
  }
  .chapter {
    height: 172svh !important;
    min-height: 0 !important;
    padding: 0 !important;
    scroll-margin-top: var(--header-h);
  }
  .chapter__stage {
    position: sticky !important;
    top: var(--header-h) !important;
    inset-inline: auto !important;
    height: calc(100svh - var(--header-h)) !important;
    min-height: 0 !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0 !important;
    padding: clamp(3.5rem, 8svh, 4.8rem) var(--pad) clamp(3rem, 7svh, 4.2rem) calc(var(--pad) + 1.75rem) !important;
    overflow: hidden !important;
    opacity: var(--reveal-curve) !important;
  }
  .chapter__stage::before {
    display: block !important;
    background:
      radial-gradient(circle at 72% 45%, rgba(69,74,121,.18), transparent 35%),
      linear-gradient(180deg, transparent, rgba(247,244,238,.018), transparent) !important;
    opacity: calc(.15 + var(--reveal-curve) * .85) !important;
  }
  .chapter__landmark {
    position: absolute !important;
    top: clamp(2rem, 5svh, 3rem) !important;
    left: var(--pad) !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    font-size: .65rem !important;
  }
  .chapter__body {
    width: 100%;
    max-width: 21.5rem !important;
    transform: translateY(calc(var(--chapter-motion) * 1.55rem)) scale(calc(1 - var(--chapter-enter) * .045 - var(--chapter-exit) * .035)) !important;
  }
  .chapter__register { gap: .55rem 1rem !important; font-size: .5rem !important; }
  .chapter h2 {
    margin-top: 1rem !important;
    font-size: clamp(2.45rem, 11vw, 3.15rem) !important;
    line-height: .98 !important;
  }
  .chapter__body > p {
    margin-top: 1.25rem !important;
    max-width: 20rem !important;
    font-size: .95rem !important;
    line-height: 1.58 !important;
  }
  .chapter__door,
  .chapter__closed { margin-top: 1.75rem !important; }
  .chapter__plate {
    position: relative !important;
    width: 100% !important;
    min-height: 11.75rem !important;
    max-height: 14rem !important;
    aspect-ratio: 16 / 9 !important;
    margin-top: 2rem !important;
    padding: 1.2rem !important;
    transform: translateY(calc(var(--chapter-motion) * .7rem)) !important;
  }
  .world-return { padding: 4.5rem var(--pad) calc(5rem + var(--safe-b)) !important; }


  .community-arrival__hero {
    gap: 2.1rem !important;
    padding: calc(var(--header-h) + 2.45rem) var(--pad) 3.25rem !important;
  }
  .community-arrival__identity {
    min-height: 28svh !important;
    justify-content: center !important;
  }
  .community-arrival__lead { margin-top: 1.65rem !important; }
  .community-arrival__opening {
    font-size: clamp(1.72rem, 8vw, 2.18rem) !important;
    line-height: 1.08 !important;
  }
  .community-arrival__film {
    min-height: 21rem !important;
    height: 52svh !important;
  }
  .community-arrival__continuation {
    gap: 2.15rem !important;
    padding: 4rem var(--pad) !important;
  }
  .community-standard,
  .community-movement,
  .community-chapters,
  .community-memory {
    padding: var(--mobile-room-gap) var(--pad) !important;
  }
  .community-standard__frame,
  .community-film-stage { margin-block: 2.5rem !important; }
  .community-chapter { padding: 2.85rem 0 !important; }
  .community-memory { padding-bottom: calc(5rem + var(--safe-b)) !important; }


  .studio-opening {
    padding-inline: var(--pad) !important;
  }
  .studio-opening__architecture {
    height: 84svh !important;
    overflow: hidden !important;
  }
  .studio-opening--anchored .studio-plane--left,
  .studio-opening--anchored .studio-plane--right {
    width: 31vw !important;
    height: 100% !important;
    opacity: .76 !important;
    filter: contrast(1.08) brightness(1.06);
  }
  .studio-opening__copy {
    min-height: 84svh !important;
    padding: calc(var(--header-h) + 3.5rem) 0 3.25rem !important;
    justify-content: flex-start !important;
  }
  .studio-opening h1 {
    max-width: none !important;
    margin-top: .85rem !important;
    white-space: nowrap;
    font-size: clamp(2.75rem, 12.5vw, 3.4rem) !important;
  }
  .studio-opening__statement {
    margin-top: 1.35rem !important;
    max-width: 20rem !important;
    font-size: .98rem !important;
    line-height: 1.58 !important;
  }
  .studio-opening__actions { margin-top: 2.15rem !important; }
  .studio-register {
    padding: 3.65rem 0 calc(4.65rem + var(--safe-b)) !important;
  }


  .studio-commission-opening__copy {
    min-height: 84svh !important;
    padding: calc(var(--header-h) + 3.45rem) 0 3.2rem !important;
  }
  .studio-commission-opening h1 {
    margin-top: .85rem !important;
    font-size: clamp(2.25rem, 10.6vw, 2.9rem) !important;
  }
  .studio-commission-opening__copy > p:nth-of-type(2) {
    margin-top: 1.35rem !important;
    font-size: .98rem !important;
    line-height: 1.58 !important;
  }
  .studio-commission-opening__actions { margin-top: 2.15rem !important; }
  .commission-plane--left {
    width: 28vw !important;
    height: 44svh !important;
    left: -10vw !important;
    top: 23svh !important;
    opacity: .72 !important;
  }
  .commission-plane--right {
    width: 27vw !important;
    height: 40svh !important;
    right: -8vw !important;
    bottom: 11svh !important;
    opacity: .66 !important;
  }
  .studio-proofline {
    min-height: 132svh !important;
    padding: 4.75rem var(--pad) !important;
    display: grid !important;
    place-items: center !important;
  }
  .studio-proofline__card {
    width: min(calc(74vw + var(--proof-card-stretch, 0) * 20vw), calc(100vw - 2 * var(--pad))) !important;
    padding: 3.15rem 1.25rem !important;
    transform: scaleX(calc(.94 + var(--proof-card-stretch, 0) * .06)) !important;
    transform-origin: center center;
    transition: box-shadow .2s linear;
  }
  .studio-proofline h2 { font-size: clamp(1.62rem, 7.4vw, 2.15rem) !important; }
  .studio-packages__header,
  .studio-refinements,
  .studio-bespoke,
  .studio-process { padding-block: var(--mobile-room-gap) !important; }
  .studio-package { padding-block: 3.55rem !important; }


  .room__opening-copy {
    min-height: 84svh !important;
    padding: calc(var(--header-h) + 3.5rem) 0 3.25rem !important;
  }
  .room-ledger { padding: 3.65rem 0 calc(4.5rem + var(--safe-b)) !important; }
  .request-opening { min-height: 64svh !important; }
  .request-progress { padding-block: 2.9rem 3.15rem !important; }
  .commission-bag-page__item { margin-top: 2.75rem !important; padding-top: 2.65rem !important; }
}

@media (max-width: 380px) {
  .sports-opening h1,
  .studio-opening h1 { font-size: 2.62rem !important; }
  .hall .hall__card,
  .hall--drawer .hall__card {
    left: 1rem !important;
    right: 1rem !important;
  }
}

@media (max-width: 820px) and (prefers-reduced-motion: reduce) {
  .hall .hall__card,
  .hall--drawer .hall__card {
    clip-path: none !important;
    transform: none !important;
    transition: opacity .2s ease !important;
  }
  .chapter { height: auto !important; }
  .chapter__stage {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    opacity: 1 !important;
  }
}



@media (max-width: 820px) {
  :root {
    --pad: clamp(1.08rem, 4.9vw, 1.38rem);
    --mobile-room-gap: clamp(4.15rem, 11vw, 5.25rem);
    --mobile-panel: #f7f4ee;
    --mobile-ease: cubic-bezier(.22, 1, .36, 1);
  }

  html {
    scroll-padding-top: calc(var(--header-h) + 1rem);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    overflow-x: clip;
    overscroll-behavior-x: none;
  }
  main, .view, section, header, footer, article, aside, nav { min-width: 0; }


  .house-nav {
    min-height: var(--header-h);
    padding-inline: max(1rem, var(--safe-l)) max(1rem, var(--safe-r));
  }
  .hall-trigger,
  .house-seal,
  .commission-bag__trigger,
  .house-action a,
  .house-action button {
    min-width: 44px;
    min-height: 44px;
  }
  .hall-trigger { gap: .5rem; }
  .hall-trigger__label { font-size: .46rem; letter-spacing: .16em; }
  .house-seal__logo { width: 1.55rem; }
  .location-trail {
    padding-inline: max(1rem, var(--safe-l)) max(1rem, var(--safe-r));
    overflow: hidden;
  }


  .hall .hall__card,
  .hall--drawer .hall__card {
    top: calc(var(--header-h) + .55rem) !important;
    left: max(.9rem, var(--safe-l)) !important;
    right: max(.9rem, var(--safe-r)) !important;
    bottom: calc(.75rem + var(--safe-b)) !important;
    max-height: calc(100svh - var(--header-h) - 1.3rem - var(--safe-b)) !important;
    padding: clamp(1.6rem, 5.7vw, 2.1rem) clamp(1.15rem, 4.8vw, 1.55rem) calc(2rem + var(--safe-b)) !important;
    border: 1px solid rgba(23, 23, 35, .12) !important;
    border-radius: .22rem !important;
    clip-path: inset(0 94% 94% 0 round .22rem) !important;
    box-shadow: 0 2.25rem 5.5rem rgba(0,0,0,.42), inset 0 1px rgba(255,255,255,.72) !important;
  }
  .hall.is-open .hall__card,
  .hall--drawer.is-open .hall__card {
    clip-path: inset(0 round .22rem) !important;
  }
  .hall__heading { padding-bottom: 1.35rem !important; }
  .hall__heading h2,
  .nav-drawer__header h2 {
    max-width: 14ch;
    font-size: clamp(1.5rem, 7vw, 1.92rem) !important;
    line-height: 1.04;
  }
  .hall__instruction,
  .nav-drawer__header > p { font-size: .91rem !important; line-height: 1.55 !important; }
  .world { min-height: 4.35rem !important; padding-block: .92rem !important; }
  .world__name { font-size: clamp(1.06rem, 5vw, 1.26rem) !important; }
  .world a,
  .house-service,
  .nav-drawer__section a,
  .nav-drawer__section button { min-height: 46px; }
  .house-services { margin-top: 1.4rem !important; padding-top: 1.25rem !important; }
  .house-service { min-height: 4.65rem !important; }
  .nav-drawer__grid { gap: 1.45rem !important; }
  .nav-drawer__section--current { padding-top: 1.25rem !important; }


  body[data-view="threshold"] .threshold__content {
    width: min(100%, 22.5rem);
    padding-inline: var(--pad);
  }
  .threshold h1 {
    font-size: clamp(3.05rem, 14.6vw, 4rem) !important;
    letter-spacing: -.035em;
  }
  .threshold__intro {
    width: min(19.5rem, 100%);
    font-size: .96rem;
    line-height: 1.62;
  }
  .threshold .text-action {
    min-height: 46px;
    margin-top: 3.25rem !important;
  }
  body.is-threshold-returning .house-nav,
  body.is-threshold-returning .hall { transition: none !important; }


  .studio-opening__architecture { height: 82svh !important; }
  .studio-opening__copy {
    min-height: 82svh !important;
    padding: calc(var(--header-h) + 3.25rem) 0 3rem !important;
  }
  .studio-opening--anchored .studio-plane--left,
  .studio-opening--anchored .studio-plane--right {
    width: 28vw !important;
    height: 100% !important;
    opacity: .78 !important;
    filter: none !important;
  }
  .studio-opening--anchored .studio-plane--left {
    clip-path: polygon(0 0, 100% 50%, 0 100%) !important;
    background:
      linear-gradient(135deg, rgba(18,24,82,.31), rgba(8,11,40,.22) 34%, rgba(3,5,20,.99) 78%),
      linear-gradient(180deg, rgba(7,10,36,.99), rgba(2,4,17,1)) !important;
    box-shadow: inset -1rem 0 2.8rem rgba(247,244,238,.038), 1rem 0 3rem rgba(0,0,0,.22) !important;
  }
  .studio-opening--anchored .studio-plane--right {
    clip-path: polygon(100% 0, 0 50%, 100% 100%) !important;
    background:
      linear-gradient(225deg, rgba(18,24,82,.31), rgba(8,11,40,.22) 34%, rgba(3,5,20,.99) 78%),
      linear-gradient(180deg, rgba(7,10,36,.99), rgba(2,4,17,1)) !important;
    box-shadow: inset 1rem 0 2.8rem rgba(247,244,238,.038), -1rem 0 3rem rgba(0,0,0,.22) !important;
  }
  .studio-opening h1 {
    font-size: clamp(2.68rem, 12.1vw, 3.25rem) !important;
    letter-spacing: -.018em;
  }
  .studio-opening__statement { max-width: 20.5rem !important; }
  .studio-opening__actions { gap: .65rem !important; }
  .studio-opening__actions .studio-primary-action { min-height: 50px; }
  .studio-register {
    padding: 3.35rem 0 calc(4.25rem + var(--safe-b)) !important;
  }
  .studio-register dl > div {
    grid-template-columns: minmax(5.7rem, .75fr) 1.25fr !important;
    padding-block: .9rem;
  }
  .studio-index,
  .studio-principle,
  .studio-packages,
  .studio-refinements,
  .studio-bespoke,
  .studio-process { padding-block: var(--mobile-room-gap) !important; }


  .studio-return,
  .world-return {
    width: 100% !important;
    min-height: 4.75rem !important;
    margin: 0 !important;
    padding: 1rem var(--pad) calc(1rem + var(--safe-b)) !important;
    border: 0 !important;
    box-shadow: none !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: .75rem !important;
    background:
      radial-gradient(ellipse 28rem 12rem at 12% 100%, rgba(154,144,128,.05), transparent 72%),
      linear-gradient(180deg, rgba(15,17,34,.94), rgba(4,5,15,.985)),
      #04050f !important;
  }
  .studio-return a,
  .studio-return button,
  .world-return p,
  .world-return .text-action {
    min-height: 44px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    font-family: var(--ceremonial) !important;
    font-size: .5rem !important;
    line-height: 1.45 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
  }
  .studio-return a,
  .world-return .text-action { justify-content: flex-end; text-align: right; }
  .studio-return button,
  .world-return p { justify-content: flex-start; text-align: left; }


  .house-ledger {
    padding: 2.25rem var(--pad) calc(1.15rem + var(--safe-b)) !important;
    border-top: 0 !important;
  }
  .house-ledger__panel {
    width: 100% !important;
    padding: 1.55rem 1.15rem 1.25rem !important;
    border-radius: .12rem;
    box-shadow: 0 1.8rem 4.2rem rgba(0,0,0,.24) !important;
  }
  .house-ledger__heading {
    gap: .48rem !important;
    padding-bottom: 1.25rem !important;
  }
  .house-ledger__heading p:first-child { font-size: .45rem !important; }
  .house-ledger__heading h2 {
    font-size: clamp(1.48rem, 7.2vw, 1.78rem) !important;
    line-height: 1.02 !important;
  }
  .house-ledger__heading > p:last-child {
    max-width: 21rem;
    font-size: .86rem !important;
    line-height: 1.5 !important;
  }
  .house-ledger__grid {
    gap: 1.35rem !important;
    padding-block: 1.55rem !important;
  }
  .house-ledger__group + .house-ledger__group {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(23,23,35,.1);
  }
  .house-ledger__group h3 { margin-bottom: .7rem !important; }
  .house-ledger__links { gap: .18rem !important; }
  .house-ledger__links a,
  .house-ledger__links button {
    min-height: 42px;
    display: flex;
    align-items: center;
  }
  .house-ledger__pending { min-height: 34px; align-items: center; }
  .house-ledger__socials { gap: .5rem !important; }
  .house-ledger__social {
    min-height: 52px;
    padding-block: .35rem .75rem !important;
  }
  .house-ledger__base {
    gap: .65rem !important;
    padding-top: 1.2rem !important;
  }
  .house-ledger__seal img { width: 2.45rem !important; }
  .house-ledger__legal-line {
    max-width: 17rem;
    font-size: .74rem !important;
    line-height: 1.4;
  }


  .sports-opening__copy {
    min-height: 70svh !important;
    padding-top: calc(var(--header-h) + 3.05rem) !important;
  }
  .sports-opening h1 { font-size: clamp(2.62rem, 11.8vw, 3.2rem) !important; }
  .sports-world .chapter-index { padding: 2.45rem 0 3.1rem !important; }
  .chapter { height: 156svh !important; }
  .chapter__stage {
    padding-top: clamp(3.2rem, 7svh, 4.25rem) !important;
    padding-bottom: clamp(2.75rem, 6svh, 3.75rem) !important;
  }
  .chapter h2 { font-size: clamp(2.25rem, 10.3vw, 2.9rem) !important; }
  .chapter__body > p { font-size: .98rem !important; line-height: 1.62 !important; }
  .chapter__plate { min-height: 11.4rem !important; margin-top: 1.65rem !important; }


  .community-arrival__hero {
    gap: 1.8rem !important;
    padding-top: calc(var(--header-h) + 2.25rem) !important;
  }
  .community-arrival__film { height: 48svh !important; min-height: 19.5rem !important; }
  .community-arrival__continuation { gap: 1.85rem !important; padding-block: 3.7rem !important; }
  .community-arrival__continuation p,
  .community-standard p,
  .community-movement p,
  .community-chapter p,
  .community-memory p {
    font-size: .98rem !important;
    line-height: 1.64 !important;
  }
  .community-standard,
  .community-movement,
  .community-chapters,
  .community-memory { padding-block: var(--mobile-room-gap) !important; }
  .community-chapter { padding-block: 2.55rem !important; }


  .studio-commission-opening__copy { min-height: 82svh !important; }
  .studio-commission-opening h1 { font-size: clamp(2.2rem, 10.2vw, 2.75rem) !important; }
  .studio-commission-opening__actions .studio-primary-action,
  .studio-commission-opening__actions .text-action,
  .studio-guide-action { min-height: 50px; }
  .studio-proofline { min-height: 112svh !important; }
  .studio-proofline__card {
    width: min(calc(78vw + var(--proof-card-stretch, 0) * 16vw), calc(100vw - 2 * var(--pad))) !important;
    padding: 2.75rem 1.15rem !important;
  }
  .studio-package { padding-block: 3.15rem !important; }
  .deliverable__facts > div { min-width: 0; }


  .request-opening { min-height: 60svh !important; }
  .request-layout { padding-inline: var(--pad) !important; }
  .request-progress { padding-block: 2.55rem 2.8rem !important; }
  .request-form {
    width: 100%;
    padding: 1.65rem 1.05rem 1.25rem !important;
  }
  .request-controls button,
  .request-submit,
  .request-next,
  .request-back { min-height: 50px; }
  .choice-card { border-radius: 0 !important; }
  .commission-bag-page {
    padding-top: calc(var(--header-h) + 3.5rem) !important;
  }
  .commission-bag-page__item { margin-top: 2.35rem !important; padding-top: 2.35rem !important; }


  .room__opening-copy { min-height: 82svh !important; }
  .room__header h1 { font-size: clamp(2.55rem, 11.5vw, 3.15rem) !important; }
  .room-ledger { padding: 3.25rem 0 calc(4.1rem + var(--safe-b)) !important; }
  .commission-approach,
  .proof,
  .commission-path { padding-block: var(--mobile-room-gap) !important; }


  a, button, input, select, textarea { -webkit-tap-highlight-color: transparent; }
  input, select, textarea { max-width: 100%; }
  :focus-visible { outline-offset: 3px; }
}

@media (max-width: 380px) {
  .studio-return,
  .world-return {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .studio-return a,
  .studio-return button,
  .world-return p,
  .world-return .text-action {
    justify-content: flex-start !important;
    text-align: left !important;
  }
  .house-ledger__panel { padding-inline: 1rem !important; }
}

@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .studio-opening__copy,
  .studio-commission-opening__copy,
  .sports-opening__copy,
  .room__opening-copy { min-height: auto !important; }
  .studio-opening__architecture,
  .studio-commission-opening__field,
  .world-stage { height: 100% !important; }
}




.house-ledger__group > h3,
.house-ledger__group > h3:focus,
.house-ledger__group > h3:focus-visible,
.house-ledger__group > h3:active,
.house-ledger__group > h3:target {
  display: block !important;
  width: auto !important;
  max-width: max-content !important;
  margin: 0 0 1.05rem !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  color: #776d5f !important;
  font-family: var(--ceremonial) !important;
  font-size: .5rem !important;
  font-weight: 500 !important;
  letter-spacing: .18em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  pointer-events: none !important;
  user-select: none !important;
}
.house-ledger__group > h3::before,
.house-ledger__group > h3::after {
  content: none !important;
  display: none !important;
}
.house-ledger__group,
.house-ledger__group:focus,
.house-ledger__group:focus-visible,
.house-ledger__group:target {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
@media (max-width: 720px) {
  .house-ledger__group > h3 { margin-bottom: .7rem !important; }
}
.house-services { border-top: 0 !important; }

.threshold .text-action { padding-bottom: .18rem !important; }

.nav-drawer__section ul { margin-top: .95rem !important; list-style: none; }
.nav-drawer__section li { margin: 0 !important; }
.nav-drawer__section li + li { margin-top: .38rem !important; }
.nav-drawer__section a,
.nav-drawer__section li > span {
  align-items: start !important;
  min-height: 0 !important;
  padding: .08rem 0 !important;
}
.nav-drawer__section .is-reserved {
  display: grid !important;
  grid-template-columns: minmax(0,1fr) auto !important;
  column-gap: 1rem !important;
}
.nav-drawer__section .is-reserved small { margin-left: 0 !important; }
.nav-drawer__current-hub > span {
  gap: .16rem !important;
  padding: .12rem 0 .28rem !important;
}
.nav-drawer__current-hub small,
.nav-drawer__current-hub strong { line-height: 1.1 !important; }
.nav-drawer__section--current ul { margin-top: .78rem !important; }
:root {
  --rp-touch: 44px;
  --rp-copy: rgba(247,244,238,.72);
  --rp-muted: rgba(247,244,238,.50);
  --rp-rule: rgba(247,244,238,.11);
}

@media (pointer: coarse) {
  :where(a,button,.choice-card) { touch-action: manipulation; }
  :where(
    .hall-trigger,.house-seal,.house-action a,.commission-bag__trigger,
    .location-trail a,.location-trail button,.text-action,.studio-primary-action,
    .studio-guide-action,.chapter__door,.studio-package > a,.studio-return a,
    .studio-return button,.room-return a,.room-return button,.world-return a,
    .world-return button,.house-ledger__links a,.house-ledger__links button,
    .nav-drawer__section a,.request-controls button,.choice-card
  ) { min-height: var(--rp-touch); }
}

@media (max-width: 1180px) {
  html { scroll-padding-top: calc(var(--header-h) + 1rem); }
  body { overflow-wrap: break-word; }
  p { text-wrap: pretty; }
  h1,h2,h3 { text-wrap: balance; }

  .house-nav {
    padding-inline: clamp(1.35rem,5vw,4rem) !important;
  }
  .location-trail {
    left: clamp(1.35rem,5vw,4rem) !important;
    right: clamp(1.35rem,5vw,4rem) !important;
  }
  .hall--drawer .hall__card {
    padding-inline: clamp(1.5rem,5vw,4rem) !important;
  }

  .house-ledger__panel {
    padding-inline: clamp(1.5rem,5vw,4rem) !important;
  }
  .house-ledger__grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 2.5rem clamp(2.5rem,6vw,5rem) !important;
  }
  .house-ledger__group:nth-child(n+3) {
    padding-top: 2rem;
    border-top: 1px solid rgba(23,23,35,.1);
  }

  .studio-opening h1,
  .sports-opening h1,
  .room__header h1,
  .studio-commission-opening h1,
  .deliverables-opening h1,
  .request-opening h1,
  .request-thanks h1,
  .commission-bag-page h1 {
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .studio-opening__statement,
  .sports-opening__statement,
  .room__lede,
  .studio-commission-opening__copy > p:not(.eyebrow):not(.studio-availability),
  .deliverables-opening > p,
  .request-opening > p:last-child,
  .request-thanks__note {
    font-family: var(--serif) !important;
    color: var(--rp-copy) !important;
  }

  .nav-drawer__grid {
    grid-template-columns: repeat(2,minmax(0,1fr)) !important;
    gap: 2.75rem clamp(3rem,7vw,5.5rem) !important;
  }
  .nav-drawer__section--current {
    grid-column: 1 / -1;
    padding: 2.25rem 0 0 !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(21,21,21,.12);
  }
  .nav-drawer__section--current ul {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: .4rem 3rem;
  }


  .threshold__content {
    width: min(100%,42rem) !important;
  }
  .threshold h1 { font-size: clamp(4.5rem,9vw,7rem) !important; }
  .threshold__intro { max-width: 32rem !important; }


  .sports-opening {
    min-height: 100svh !important;
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .sports-opening__copy {
    max-width: 40rem !important;
  }
  .sports-opening h1 {
    font-size: clamp(3.8rem,7.4vw,5.8rem) !important;
    line-height: .94 !important;
  }
  .sports-opening__statement {
    max-width: 34rem !important;
    font-size: clamp(1.08rem,2.1vw,1.28rem) !important;
    line-height: 1.58 !important;
  }
  .chapter-index {
    width: min(39%,25rem) !important;
    right: clamp(2rem,5vw,4.5rem) !important;
  }
  .chapter-index ol { width: 100%; }
  .chapter-ledger__item a { min-height: 3.8rem !important; }
  .chapter__stage {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .chapter__body { max-width: 37rem !important; }
  .chapter__body h2 { font-size: clamp(3rem,6vw,5rem) !important; }
  .chapter__body > p {
    max-width: 34rem !important;
    font-family: var(--serif) !important;
    font-size: clamp(1.08rem,2vw,1.25rem) !important;
    line-height: 1.55 !important;
  }


  .studio-opening {
    min-height: 100svh !important;
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .studio-opening__copy { max-width: 43rem !important; }
  .studio-opening h1 {
    max-width: none !important;
    white-space: nowrap;
    font-size: clamp(4rem,7.4vw,5.8rem) !important;
  }
  .studio-opening__statement {
    max-width: 31ch !important;
    font-size: clamp(1.08rem,2vw,1.25rem) !important;
    line-height: 1.55 !important;
  }
  .studio-index,
  .studio-principle,
  .studio-return {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .studio-index {
    column-gap: clamp(3rem,6vw,6rem) !important;
  }
  .studio-index__heading h2#studioIndexTitle {
    font-size: clamp(4rem,7vw,5.5rem) !important;
  }
  .studio-index__heading > p:last-child {
    font-size: clamp(1.05rem,1.8vw,1.18rem) !important;
    line-height: 1.58 !important;
  }
  .studio-department--open > a,
  .studio-department--reserved > div {
    min-width: 0;
  }


  .community-arrival,
  .community-standard,
  .community-movement,
  .community-chapters,
  .community-memory,
  .community-ending {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .community-arrival__hero {
    min-height: 100svh !important;
  }
  .community-arrival__identity {
    max-width: 32rem !important;
  }
  .community-arrival__opening {
    font-size: clamp(2.4rem,5.4vw,4.25rem) !important;
    line-height: .98 !important;
  }
  .community-arrival__film {
    min-height: 30rem !important;
  }
  .community-standard > p,
  .community-movement__copy,
  .community-chapter__body,
  .community-chapter > p,
  .memory--text p {
    font-size: clamp(1.15rem,2.2vw,1.38rem) !important;
    line-height: 1.62 !important;
  }


  .studio-commission-opening,
  .studio-proofline,
  .studio-packages,
  .studio-refinements,
  .studio-bespoke,
  .studio-process,
  .studio-return {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .studio-commission-opening h1 {
    font-size: clamp(3.7rem,7.2vw,5.7rem) !important;
  }
  .studio-packages__header h2 {
    font-size: clamp(3.25rem,6vw,5rem) !important;
  }
  .studio-package__heading {
    grid-template-columns: 2.7rem minmax(0,1fr) minmax(7rem,auto) !important;
  }
  .studio-package__hook,
  .studio-package ul { max-width: 46rem !important; }
  .studio-refinements,
  .studio-process {
    gap: clamp(3rem,6vw,5rem) !important;
  }


  .deliverables-opening,
  .deliverable,
  .commission-approach,
  .proof,
  .commission-path,
  .room__header,
  .room-return {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .deliverable,
  .commission-approach,
  .proof {
    gap: clamp(3rem,6vw,5rem) !important;
  }
  .room__header h1,
  .deliverables-opening h1 {
    font-size: clamp(3.4rem,7vw,5.5rem) !important;
  }


  .request-opening,
  .request-layout,
  .studio-return--request {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .request-opening h1 {
    font-size: clamp(3.35rem,6.8vw,5rem) !important;
  }
  .request-layout {
    grid-template-columns: minmax(14rem,.58fr) minmax(0,1.42fr) !important;
    gap: clamp(2.5rem,5vw,5rem) !important;
  }
  .request-form { min-width: 0; }
  .request-progress { min-width: 0; }
  .request-progress li strong { white-space: normal !important; }
  .choice-card { min-width: 0; }


  .request-thanks__content {
    width: min(100%,48rem) !important;
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
  .commission-bag-page {
    padding-inline: clamp(2rem,6vw,5rem) !important;
  }
}


@media (min-width: 721px) and (max-width: 960px) {
  .sports-opening {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    gap: 4rem !important;
    padding-bottom: clamp(4rem,8vh,6rem) !important;
  }
  .sports-opening__copy { position: static !important; }
  .chapter-index {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
  }
  .chapter-index ol {
    display: grid !important;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 0 2.5rem;
  }

  .studio-index {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .studio-index__heading,
  .studio-register--inline,
  .studio-departments {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .studio-index__heading { max-width: 38rem !important; }
  .studio-register--inline { margin-top: 4rem !important; }
  .studio-departments {
    margin-top: 4.5rem !important;
    grid-template-columns: 1fr !important;
  }
  .studio-department { min-height: 0 !important; }
  .studio-department > a,
  .studio-department > div {
    min-height: 11rem !important;
    grid-template-columns: 3rem minmax(0,1fr) auto !important;
  }

  .community-arrival__hero,
  .community-chapter,
  .community-memory .memory-grid,
  .commission-approach,
  .proof,
  .studio-refinements,
  .deliverable {
    grid-template-columns: 1fr !important;
  }
  .community-arrival__film,
  .deliverable__media { min-height: 32rem !important; }

  .studio-packages__header,
  .studio-bespoke,
  .studio-process header,
  .commission-path,
  .house-ledger__heading {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .studio-packages__header > *,
  .studio-bespoke > *,
  .studio-process header > *,
  .commission-path > *,
  .house-ledger__heading > * {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .request-layout {
    grid-template-columns: 1fr !important;
  }
  .request-progress {
    position: static !important;
    max-width: 36rem;
  }
}


@media (max-width: 720px) {
  :root {
    --header-h: 4.85rem;
    --rp-x: clamp(1.15rem,5.2vw,1.55rem);
  }
  html { scroll-padding-top: calc(var(--header-h) + 1rem); }
  body { line-height: 1.6; }

  .house-nav {
    padding-inline: calc(var(--rp-x) + var(--safe-l)) calc(var(--rp-x) + var(--safe-r)) !important;
  }
  .hall-trigger__mark {
    width: 2.65rem !important;
    height: 2.65rem !important;
  }
  .house-action {
    max-width: 7.2rem;
    font-size: .48rem !important;
    line-height: 1.35 !important;
    letter-spacing: .14em !important;
  }
  .house-action a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
  }
  .location-trail {
    left: var(--rp-x) !important;
    right: var(--rp-x) !important;
    gap: .42rem !important;
    font-size: .44rem !important;
    letter-spacing: .1em !important;
  }
  .location-trail__segment:last-child {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
  }
  .location-trail__segment:last-child > :last-child {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hall .hall__card,
  .hall--drawer .hall__card {
    left: .8rem !important;
    right: .8rem !important;
    padding-inline: 1.35rem !important;
  }
  .nav-drawer__header { display: block !important; }
  .nav-drawer__header > p {
    margin-top: 1rem !important;
    text-align: left !important;
  }
  .nav-drawer__grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .nav-drawer__section--current {
    grid-column: 1;
    padding-top: 1.6rem !important;
  }
  .nav-drawer__section--current ul { grid-template-columns: 1fr !important; }
  .nav-drawer__section a,
  .nav-drawer__section li > span {
    font-family: var(--serif) !important;
    font-size: clamp(1.08rem,5vw,1.25rem) !important;
    line-height: 1.2 !important;
  }

  .threshold {
    padding-inline: var(--rp-x) !important;
  }
  .threshold__content {
    width: 100% !important;
    max-width: 22rem !important;
  }
  .threshold h1 { font-size: clamp(3.25rem,16vw,4.4rem) !important; }
  .threshold__intro {
    max-width: 20rem !important;
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }

  .sports-opening,
  .studio-opening,
  .studio-commission-opening,
  .deliverables-opening,
  .request-opening,
  .room__header,
  .community-arrival,
  .community-standard,
  .community-movement,
  .community-chapters,
  .community-memory,
  .community-ending,
  .studio-index,
  .studio-principle,
  .studio-proofline,
  .studio-packages,
  .studio-refinements,
  .studio-bespoke,
  .studio-process,
  .deliverable,
  .commission-approach,
  .proof,
  .commission-path,
  .request-layout,
  .studio-return,
  .room-return,
  .world-return,
  .commission-bag-page {
    padding-left: var(--rp-x) !important;
    padding-right: var(--rp-x) !important;
  }

  .sports-opening {
    min-height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    gap: 3.5rem !important;
    padding-bottom: clamp(3rem,7vh,4.5rem) !important;
  }
  .sports-opening__copy { position: static !important; }
  .sports-opening h1 {
    font-size: clamp(2.75rem,12.5vw,3.75rem) !important;
  }
  .sports-opening__statement {
    max-width: 29ch !important;
    font-size: 1rem !important;
    line-height: 1.58 !important;
  }
  .chapter-index {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    transform: none !important;
  }
  .chapter-ledger__item a { min-height: 3.5rem !important; }
  .chapter__stage {
    min-height: 100svh !important;
    padding-top: 6.5rem !important;
    padding-bottom: 5rem !important;
  }
  .chapter__landmark { opacity: .055 !important; }
  .chapter__body h2 {
    font-size: clamp(2.55rem,12vw,3.6rem) !important;
  }
  .chapter__body > p {
    max-width: 29ch !important;
    font-size: 1.03rem !important;
    line-height: 1.58 !important;
  }
  .chapter__plate { opacity: .72; }

  .studio-opening {
    min-height: 100svh !important;
    justify-content: center !important;
  }
  .studio-opening__copy { max-width: 100% !important; }
  .studio-opening h1 {
    white-space: nowrap;
    font-size: clamp(2.65rem,12.7vw,3.7rem) !important;
  }
  .studio-opening__statement {
    max-width: 28ch !important;
    font-size: 1rem !important;
  }
  .studio-opening__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
  }
  .studio-primary-action { width: 100%; justify-content: center; }

  .studio-index { display: block !important; }
  .studio-index__heading { max-width: 21rem !important; }
  .studio-index__heading h2#studioIndexTitle {
    max-width: 9.6ch !important;
    font-size: clamp(3rem,14.4vw,4rem) !important;
    line-height: 1.02 !important;
  }
  .studio-index__heading > p:last-child {
    max-width: 30ch !important;
    margin-top: 1.45rem !important;
    color: var(--rp-copy) !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }
  .studio-register--inline {
    width: 100% !important;
    margin-top: 3.4rem !important;
  }
  .studio-departments {
    width: 100% !important;
    margin-top: 3.8rem !important;
    grid-template-columns: 1fr !important;
  }
  .studio-department--open,
  .studio-department--reserved { grid-column: 1 !important; }
  .studio-department > a,
  .studio-department > div {
    grid-template-columns: 2.15rem minmax(0,1fr) !important;
    grid-template-rows: auto auto !important;
    gap: .8rem 1rem !important;
    min-height: 0 !important;
    padding: 2.35rem 0 !important;
  }
  .studio-department__body { min-width: 0; }
  .studio-department__body strong {
    font-size: clamp(1.85rem,9vw,2.35rem) !important;
    line-height: 1.02 !important;
  }
  .studio-department__body p {
    max-width: 29ch !important;
    color: rgba(247,244,238,.61) !important;
    font-size: .97rem !important;
    line-height: 1.58 !important;
  }
  .studio-department__state {
    grid-column: 2 !important;
    justify-self: start !important;
    margin-top: .25rem;
  }
  .studio-department--reserved { opacity: .5; }

  .community-arrival__hero {
    min-height: 100svh !important;
    grid-template-columns: 1fr !important;
    align-content: end !important;
    gap: 3rem !important;
    padding-bottom: 4rem !important;
  }
  .community-arrival__identity { max-width: 21rem !important; }
  .community-arrival__opening {
    font-size: clamp(2.2rem,10vw,3rem) !important;
    line-height: 1.02 !important;
  }
  .community-arrival__film {
    width: 100% !important;
    min-height: 24rem !important;
    aspect-ratio: 4 / 5 !important;
  }
  .community-arrival__continuation,
  .community-standard,
  .community-movement__copy,
  .community-chapter__body,
  .community-chapter > p,
  .memory--text p {
    max-width: 30ch !important;
    font-size: 1.12rem !important;
    line-height: 1.65 !important;
  }
  .community-chapter,
  .memory-grid { grid-template-columns: 1fr !important; }
  .community-chapter__frame,
  .community-film-stage,
  .community-standard__frame { min-height: 25rem !important; }

  .studio-commission-opening {
    min-height: 100svh !important;
    display: flex !important;
    align-items: center !important;
  }
  .studio-commission-opening__copy { max-width: 22rem !important; }
  .studio-commission-opening h1 {
    max-width: 8ch !important;
    font-size: clamp(3rem,14vw,4rem) !important;
    line-height: .98 !important;
  }
  .studio-commission-opening__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .studio-proofline__card { padding-inline: 0 !important; }
  .studio-proofline h2 {
    font-size: clamp(2.3rem,10vw,3.2rem) !important;
  }
  .studio-packages__header {
    grid-template-columns: 1fr !important;
  }
  .studio-packages__header h2 {
    max-width: 12ch !important;
    font-size: clamp(2.65rem,12vw,3.65rem) !important;
  }
  .studio-packages__header > p:last-of-type {
    max-width: 30ch !important;
    margin-top: 1.35rem !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }
  .studio-package { padding-block: 4.5rem !important; }
  .studio-package__heading {
    grid-template-columns: 2.15rem minmax(0,1fr) !important;
    gap: 1rem !important;
  }
  .studio-package__price {
    grid-column: 2 !important;
    justify-self: start !important;
    margin-top: 1.1rem;
    text-align: left !important;
  }
  .studio-package__hook,
  .studio-package ul {
    max-width: 30ch !important;
  }
  .studio-package ul { columns: 1 !important; }
  .studio-refinements,
  .studio-process,
  .studio-bespoke {
    grid-template-columns: 1fr !important;
  }
  .studio-refinements h2,
  .studio-process h2,
  .studio-bespoke h2 {
    font-size: clamp(2.65rem,12vw,3.6rem) !important;
  }
  .studio-refinements dl { margin-top: 2.75rem !important; }
  .studio-refinements dl > div {
    grid-template-columns: minmax(0,1fr) auto !important;
    gap: 1rem !important;
  }

  .deliverables-opening h1,
  .room__header h1,
  .request-opening h1 {
    max-width: 9ch !important;
    font-size: clamp(2.75rem,12.5vw,3.75rem) !important;
    line-height: .98 !important;
  }
  .deliverable,
  .commission-approach,
  .proof,
  .commission-path {
    grid-template-columns: 1fr !important;
  }
  .deliverable__media { min-height: 22rem !important; }
  .room-register { width: 100% !important; }

  .request-layout { grid-template-columns: 1fr !important; }
  .request-progress {
    position: static !important;
    max-width: 100% !important;
    margin-bottom: 3rem !important;
  }
  .request-progress li > button,
  .request-progress li[aria-current="step"] > button {
    min-height: 4rem !important;
  }
  .request-form { padding: clamp(1.35rem,5vw,2rem) !important; }
  .form-grid--two { grid-template-columns: 1fr !important; }
  .choice-grid,
  .choice-grid--compact,
  .choice-grid--packages { grid-template-columns: 1fr !important; }
  .choice-card { padding: 1.1rem !important; }
  .request-controls {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .65rem !important;
  }
  .request-controls button { width: 100%; }
  .request-submit { justify-self: stretch !important; }

  .request-thanks__content {
    width: 100% !important;
    max-width: 23rem !important;
    padding-inline: var(--rp-x) !important;
  }
  .request-thanks h1 {
    font-size: clamp(3rem,14vw,4rem) !important;
  }
  .request-thanks__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .commission-bag-page__header,
  .commission-bag-page__item,
  .commission-bag-page__empty {
    max-width: 31rem !important;
  }
  .commission-bag-page__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .7rem !important;
  }

  .house-ledger__panel { padding-inline: var(--rp-x) !important; }
  .house-ledger__heading,
  .house-ledger__grid { grid-template-columns: 1fr !important; }
  .house-ledger__grid { gap: 2rem !important; }
  .house-ledger__group:nth-child(n+2) {
    padding-top: 2rem;
    border-top: 1px solid rgba(23,23,35,.1);
  }
  .house-ledger__base {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
    text-align: left !important;
  }
}


@media (max-width: 960px) and (orientation: landscape) and (max-height: 600px) {
  .threshold__content,
  .studio-opening__copy,
  .studio-commission-opening__copy,
  .sports-opening__copy,
  .room__opening-copy {
    min-height: auto !important;
    padding-top: calc(var(--header-h) + 1.5rem) !important;
    padding-bottom: 2.25rem !important;
  }
  .sports-opening,
  .studio-opening,
  .studio-commission-opening,
  .room__header,
  .community-arrival__hero {
    min-height: max(36rem,100svh) !important;
  }
  .hall .hall__card,
  .hall--drawer .hall__card {
    top: calc(var(--header-h) + .25rem) !important;
    bottom: .4rem !important;
    max-height: calc(100dvh - var(--header-h) - .65rem) !important;
  }
}

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


@media (max-width: 1180px) {

  .hall .hall__card,
  .hall--drawer .hall__card {
    background: #f7f4ee !important;
    background-image: none !important;
    opacity: 1 !important;
  }


  .sports-world .chapter-index {
    opacity: 1 !important;
    transform: none !important;
  }
  .chapter-ledger__item,
  .chapter-ledger__item--open {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (min-width: 721px) and (max-width: 1180px) {
  .sports-world .chapter-index {
    width: 100% !important;
    max-width: none !important;
    margin-bottom: clamp(3rem,6vh,5rem) !important;
  }
}

@media (max-width: 720px) {

  .hall:not(.hall--drawer) .hall__card {
    left: .65rem !important;
    right: .65rem !important;
    top: calc(var(--header-h) + .25rem) !important;
    bottom: calc(.65rem + var(--safe-b)) !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    padding: 1.35rem 1.25rem 1.6rem !important;
    clip-path: none !important;
    transform-origin: center !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }
  .hall:not(.hall--drawer) .hall__heading h2 {
    max-width: 9ch !important;
    font-size: clamp(2rem,10vw,2.75rem) !important;
    line-height: .96 !important;
  }
  .hall:not(.hall--drawer) .hall__instruction {
    max-width: 25ch !important;
    font-size: .68rem !important;
    line-height: 1.55 !important;
  }
  .hall:not(.hall--drawer) .world-list { margin-top: 1.6rem !important; }
  .hall:not(.hall--drawer) .world {
    min-height: 0 !important;
    padding-block: .75rem !important;
  }
  .hall:not(.hall--drawer) .house-services {
    margin-top: 1.35rem !important;
    padding-top: 1.15rem !important;
  }
  .hall:not(.hall--drawer) .house-service {
    padding-block: .85rem !important;
  }


  .studio-opening__actions .text-action,
  .studio-commission-opening__actions .text-action,
  .sports-opening .text-action,
  .room__header .text-action,
  .deliverables-opening .text-action,
  .community-ending .text-action {
    width: max-content !important;
    max-width: 100% !important;
    justify-self: start !important;
    align-self: start !important;
  }


  .sports-world .sports-opening {
    padding-inline: var(--rp-x) !important;
  }
  .sports-world .chapter-index {
    left: auto !important;
    right: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: .4rem !important;
    padding-right: .25rem !important;
  }
  .chapter-index__label { padding-left: .05rem !important; }
  .chapter-index a {
    grid-template-columns: 2rem minmax(0,1fr) auto !important;
    gap: .8rem !important;
    padding-left: .05rem !important;
    padding-right: .05rem !important;
  }
  .chapter-index a[aria-current="true"] strong,
  .chapter-index a:hover strong { transform: none !important; }
}
@media (max-width: 720px) {

  .hall-trigger[aria-expanded="true"] .hall-trigger__mark {
    display: grid !important;
    place-items: center !important;
  }
  .hall-trigger[aria-expanded="true"] .hall-trigger__mark span {
    left: 50% !important;
    top: 50% !important;
    margin-left: 0 !important;
    transform-origin: 50% 50% !important;
  }
  .hall-trigger[aria-expanded="true"] .hall-trigger__mark span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }
  .hall-trigger[aria-expanded="true"] .hall-trigger__mark span:nth-child(2) {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scaleX(.2) !important;
  }
  .hall-trigger[aria-expanded="true"] .hall-trigger__mark span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
  }


  .hall:not(.hall--drawer) .hall__card {
    border-radius: 1.35rem !important;
    overflow: hidden auto !important;
  }
  .hall:not(.hall--drawer) .hall__heading h2 {
    max-width: none !important;
    width: 100% !important;
    font-size: clamp(1.28rem, 5.45vw, 1.62rem) !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
  .hall:not(.hall--drawer) .hall__title-link {
    display: inline-block !important;
    white-space: nowrap !important;
  }
  .hall:not(.hall--drawer) .hall__instruction {
    max-width: none !important;
    width: 100% !important;
    font-size: clamp(.48rem, 2.35vw, .58rem) !important;
    letter-spacing: .115em !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }


  .house-ledger,
  .house-ledger__panel {
    border-radius: 1.35rem !important;
    overflow: hidden !important;
  }


  .studio-opening {
    min-height: 88svh !important;
    padding-bottom: clamp(2rem, 8vw, 3rem) !important;
  }
  .studio-opening__actions {
    margin-top: clamp(1.55rem, 7vw, 2.15rem) !important;
  }
  .studio-opening--anchored .studio-plane--right {
    display: none !important;
  }
  .studio-opening--anchored .studio-plane--left {
    display: block !important;
    left: auto !important;
    right: -32vw !important;
    top: 0 !important;
    bottom: 0 !important;
    width: 82vw !important;
    height: 100% !important;
    opacity: .46 !important;
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
  }
  .studio-index {
    padding-top: clamp(2.4rem, 10vw, 3.45rem) !important;
  }


  .sports-world .chapter-index {
    padding-left: .85rem !important;
    padding-right: .6rem !important;
  }
  .chapter-index a {
    grid-template-columns: 2.15rem minmax(0,1fr) auto !important;
    gap: 1.18rem !important;
    padding-left: .45rem !important;
    padding-right: .5rem !important;
  }
  .chapter-index small {
    margin-left: .55rem !important;
    justify-self: end !important;
  }
}

@media (max-width: 380px) {
  .hall:not(.hall--drawer) .hall__heading h2 {
    font-size: clamp(1.14rem, 5.25vw, 1.38rem) !important;
  }
  .hall:not(.hall--drawer) .hall__instruction {
    font-size: .46rem !important;
    letter-spacing: .09em !important;
  }
  .chapter-index a {
    grid-template-columns: 2rem minmax(0,1fr) auto !important;
    gap: .95rem !important;
  }
}
@media (max-width: 720px) {
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__card {
    top: calc(var(--header-h) + 1.05rem + var(--safe-t)) !important;
    padding-top: 2.75rem !important;
    border-radius: 1.55rem !important;
    clip-path: inset(0 100% 100% 0 round 1.55rem) !important;
  }
  body[data-view="threshold"] .hall:not(.hall--drawer).is-open .hall__card {
    clip-path: inset(0 0 0 0 round 1.55rem) !important;
  }
  body[data-view="threshold"] .hall__heading {
    padding-top: .55rem !important;
    padding-bottom: .82rem !important;
    border-bottom: 0 !important;
  }
  body[data-view="threshold"] .hall__meta {
    display: flex !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    margin-bottom: .92rem !important;
  }
  body[data-view="threshold"] .hall__heading h2 {
    margin-top: 0 !important;
    max-width: none !important;
    white-space: nowrap !important;
    font-size: clamp(1.06rem, 4.55vw, 1.34rem) !important;
    letter-spacing: .145em !important;
    line-height: 1 !important;
  }
  body[data-view="threshold"] .hall__instruction {
    margin-top: .92rem !important;
    margin-bottom: .22rem !important;
    max-width: none !important;
    white-space: nowrap !important;
    font-size: clamp(.48rem, 2.25vw, .56rem) !important;
    letter-spacing: .1em !important;
    line-height: 1.2 !important;
  }
  body[data-view="threshold"] .world-list {
    margin-top: .62rem !important;
  }
  body[data-view="threshold"] .world:first-child {
    border-top-color: rgba(21,21,21,.14) !important;
  }
}
@media (max-width: 380px) {
  body[data-view="threshold"] .hall__heading h2 { font-size: 1.02rem !important; letter-spacing: .12em !important; }
  body[data-view="threshold"] .hall__instruction { font-size: .435rem !important; letter-spacing: .075em !important; }
}
@media (max-width: 720px) {
  .house-ledger,
  .house-ledger__panel,
  .hall:not(.hall--drawer) .hall__card {
    border-radius: 1.55rem !important;
  }
}
@media (max-width: 720px) {

  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__card {
    left: 1.05rem !important;
    right: 1.05rem !important;
    top: calc(var(--header-h) + 1.12rem + var(--safe-t)) !important;
    bottom: calc(.92rem + var(--safe-b)) !important;
    padding-inline: 1.28rem !important;
    padding-top: 3.05rem !important;
    border-radius: 1.58rem !important;
  }
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__instruction {
    margin-top: 1.42rem !important;
    margin-bottom: .68rem !important;
  }


  .hall--drawer .hall__card {
    left: 1.05rem !important;
    right: 1.05rem !important;
    top: calc(var(--header-h) + .92rem + var(--safe-t)) !important;
    bottom: calc(.92rem + var(--safe-b)) !important;
    padding: 2rem 1.28rem 1.5rem !important;
    border-radius: 1.58rem !important;
  }
  .hall--drawer .nav-drawer__header h2 {
    max-width: none !important;
    white-space: nowrap !important;
    font-size: clamp(1.28rem, 5.35vw, 1.62rem) !important;
    line-height: 1 !important;
    letter-spacing: .01em !important;
  }
  .hall--drawer .nav-drawer__header > p {
    margin-top: .72rem !important;
    font-size: .48rem !important;
    letter-spacing: .13em !important;
    line-height: 1.25 !important;
  }
  .hall--drawer .nav-drawer__grid {
    padding-top: 1.55rem !important;
    gap: 1.65rem !important;
  }


  body[data-view="studio"] .studio-opening {
    min-height: 91svh !important;
  }
  body[data-view="studio"] .studio-opening__copy {
    padding-top: calc(var(--header-h) + 2.2rem) !important;
  }
  body[data-view="studio"] .studio-opening__actions {
    margin-top: clamp(1.7rem, 7.4vw, 2.28rem) !important;
  }


  .world-return,
  .studio-return,
  .room-return {
    min-height: 5.15rem !important;
    padding-top: 1.65rem !important;
    padding-bottom: 1.25rem !important;
    display: grid !important;
    place-items: center !important;
    text-align: center !important;
  }
  .world-return p,
  .studio-return p,
  .room-return p {
    display: none !important;
  }
  .world-return .text-action,
  .studio-return .text-action,
  .room-return .text-action {
    justify-content: center !important;
    margin-inline: auto !important;
    padding-bottom: .12rem !important;
  }


  .house-ledger {
    padding-top: 3.85rem !important;
    padding-bottom: calc(1.25rem + var(--safe-b)) !important;
    border-radius: 1.58rem !important;
  }
  .house-ledger__panel {
    padding: 2.55rem 1.28rem 1.38rem !important;
    border-radius: 1.58rem !important;
  }
  .house-ledger__heading {
    display: grid !important;
    justify-items: center !important;
    text-align: center !important;
    gap: .68rem !important;
    padding-bottom: 1.42rem !important;
  }
  .house-ledger__heading p:first-child { justify-self: center !important; }
  .house-ledger__heading h2 {
    max-width: 16rem !important;
    font-size: clamp(1.12rem, 5.25vw, 1.34rem) !important;
    line-height: 1.06 !important;
    text-align: center !important;
  }
  .house-ledger__heading > p:last-child {
    justify-self: center !important;
    max-width: 18.2rem !important;
    text-align: center !important;
    font-size: .82rem !important;
    line-height: 1.52 !important;
  }
  .house-ledger__grid {
    display: block !important;
    padding-block: .35rem 1rem !important;
    border-top: 1px solid rgba(23,23,35,.13) !important;
  }
  .house-ledger__group {
    padding: 0 !important;
    border-top: 0 !important;
    border-bottom: 1px solid rgba(23,23,35,.13) !important;
  }
  .house-ledger__group + .house-ledger__group {
    padding-top: 0 !important;
    border-top: 0 !important;
  }
  .house-ledger__toggle {
    width: 100% !important;
    min-height: 3.72rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem !important;
    padding: 1.08rem 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #171723 !important;
    font-family: var(--serif) !important;
    font-size: clamp(1.13rem, 5.65vw, 1.34rem) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-transform: none !important;
  }
  .house-ledger__toggle span:first-child { display: inline-block !important; }
  .house-ledger__toggle span[aria-hidden="true"] {
    color: #776d5f !important;
    font-family: var(--serif) !important;
    font-size: 1.48rem !important;
    line-height: 1 !important;
    transform: rotate(0deg) !important;
    transition: transform .34s var(--ease) !important;
  }
  .house-ledger__group.is-ledger-open .house-ledger__toggle span[aria-hidden="true"] {
    transform: rotate(90deg) !important;
  }
  .house-ledger__drawer {
    display: grid !important;
    grid-template-rows: 0fr !important;
    opacity: 0 !important;
    transition: grid-template-rows .42s var(--ease), opacity .28s ease !important;
  }
  .house-ledger__drawer > div { min-height: 0 !important; overflow: hidden !important; }
  .house-ledger__group.is-ledger-open .house-ledger__drawer {
    grid-template-rows: 1fr !important;
    opacity: 1 !important;
  }
  .house-ledger__drawer-inner { padding: .15rem 0 1.2rem !important; }
  .house-ledger__links,
  .house-ledger__socials { gap: .68rem !important; }
  .house-ledger__links a,
  .house-ledger__links button,
  .house-ledger__links .house-ledger__pending {
    width: 100% !important;
    min-height: 2.22rem !important;
    padding-block: .2rem !important;
    font-size: 1rem !important;
  }
  .house-ledger__network { margin: .1rem 0 .72rem !important; }
}
@media (max-width: 380px) {
  .hall--drawer .nav-drawer__header h2 { font-size: 1.18rem !important; }
  .hall--drawer .nav-drawer__header > p { font-size: .44rem !important; }
}
@media (max-width: 720px) {
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__card {
    left: 1.16rem !important;
    right: 1.16rem !important;
    padding-inline: 1.36rem !important;
    padding-top: 3.16rem !important;
  }
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__instruction {
    margin-top: 1.84rem !important;
    margin-bottom: .18rem !important;
  }
  body[data-view="threshold"] .hall:not(.hall--drawer) .world-list {
    margin-top: 0 !important;
  }
}
@media (max-width: 380px) {
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__instruction {
    font-size: .44rem !important;
  }
}
@media (max-width: 720px) {
  .hall--drawer .nav-drawer__current-hub strong {
    display: block !important;
    font-family: var(--serif) !important;
    font-size: clamp(1.28rem, 6vw, 1.62rem) !important;
    font-weight: 400 !important;
    letter-spacing: -.01em !important;
    line-height: 1.05 !important;
    color: #171723 !important;
    text-transform: none !important;
  }
  .hall--drawer .nav-drawer__current-hub > span { padding: .18rem 0 .42rem !important; }
  .hall--drawer .nav-drawer__grid { gap: 2.32rem !important; padding-top: 1.28rem !important; }
  .hall--drawer .nav-drawer__section h3 { margin-bottom: .94rem !important; }
  .hall--drawer .nav-drawer__section + .nav-drawer__section { margin-top: .24rem !important; }
}
@media (max-width: 720px) {
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__heading h2,
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__title-link {
    transform: translateY(.42rem) !important;
  }
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__instruction {
    margin-top: 1.46rem !important;
  }
}
@media (min-width: 721px) and (max-width: 1180px) {
  :root { --pad: clamp(2rem, 4.6vw, 3.75rem); }


  .hall--drawer .hall__card {
    left: clamp(2rem, 5vw, 4rem) !important;
    right: clamp(2rem, 5vw, 4rem) !important;
    top: calc(var(--header-h) + clamp(1.1rem, 2.8vh, 2rem) + var(--safe-t)) !important;
    bottom: calc(clamp(1rem, 2.5vh, 1.8rem) + var(--safe-b)) !important;
    padding: clamp(2.5rem, 5vh, 4rem) clamp(2rem, 4.5vw, 3.8rem) clamp(2.2rem, 4.5vh, 3.4rem) !important;
  }
  .hall--drawer .nav-drawer__current-hub small { display: none !important; }
  .hall--drawer .nav-drawer__current-hub strong {
    display: block !important;
    font-family: var(--serif) !important;
    font-size: clamp(1.2rem, 2.35vw, 1.55rem) !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
    letter-spacing: -.01em !important;
    color: #a89b83 !important;
    text-transform: none !important;
  }
  .hall--drawer .nav-drawer__current-hub > span { padding: 0 0 .45rem !important; }
  .hall--drawer .nav-drawer__grid { gap: clamp(2.1rem, 4.2vh, 3.1rem) !important; padding-top: clamp(1.15rem, 2.6vh, 1.7rem) !important; }
  .hall--drawer .nav-drawer__section h3 { margin-bottom: 1.02rem !important; }
  .hall--drawer .nav-drawer__section + .nav-drawer__section { margin-top: .24rem !important; }


  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__heading h2,
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__title-link {
    transform: translateY(.42rem) !important;
  }
  body[data-view="threshold"] .hall:not(.hall--drawer) .hall__instruction { margin-top: 1.46rem !important; }
  body[data-view="threshold"] .hall:not(.hall--drawer) .world-list { margin-top: 0 !important; }


  body[data-view="sports"] .sports-opening__copy {
    min-height: 74svh !important;
    padding-top: calc(var(--header-h) + clamp(6.5rem, 11vh, 9rem)) !important;
    padding-bottom: clamp(1.4rem, 4vh, 2.2rem) !important;
    justify-content: flex-start !important;
  }
  body[data-view="sports"] .sports-opening .text-action { margin-top: 1.55rem !important; }
  body[data-view="sports"] .sports-world .chapter-index {
    margin-top: 0 !important;
    padding-top: clamp(1.2rem, 3vh, 2rem) !important;
    padding-bottom: clamp(3rem, 6vh, 4.4rem) !important;
  }
  body[data-view="sports"] .corridor { --rail-line: .45rem !important; --rail-num-gap: .55rem !important; }
  body[data-view="sports"] .corridor::before { left: calc(var(--pad) + var(--rail-line)) !important; display: block !important; }
  body[data-view="sports"] .chapter__stage {
    padding-left: calc(var(--pad) + var(--rail-line) + 3.75rem) !important;
    padding-right: var(--pad) !important;
    padding-top: clamp(6.5rem, 10vh, 8.5rem) !important;
  }
  body[data-view="sports"] .chapter__body,
  body[data-view="sports"] .chapter__plate { margin-left: .75rem !important; }
  body[data-view="sports"] .chapter__register,
  body[data-view="sports"] .chapter__body h2,
  body[data-view="sports"] .chapter__body > p,
  body[data-view="sports"] .chapter__door,
  body[data-view="sports"] .chapter__closed { margin-left: .08rem !important; }
  body[data-view="sports"] .chapter__plate { width: calc(100% - .75rem) !important; }


  body[data-view="studio"] .studio-opening {
    min-height: 100svh !important;
    padding-top: calc(var(--header-h) + clamp(6.2rem, 11vh, 8.2rem)) !important;
  }
  body[data-view="studio"] .studio-opening__copy {
    transform: translateY(clamp(1.4rem, 4.2vh, 3rem)) !important;
  }
  body[data-view="studio"] .studio-index { padding-top: clamp(5.8rem, 10vh, 8rem) !important; }


  body[data-view="studio-commission"] .studio-commission-opening__copy {
    min-height: 88svh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: calc(var(--header-h) + 2rem) !important;
  }
  body[data-view="studio-commission"] .studio-commission-opening__actions {
    justify-content: center !important;
    width: 100% !important;
    margin-top: 2rem !important;
  }
  body[data-view="studio-commission"] .studio-commission-opening__actions .text-action {
    margin-inline: auto !important;
    text-align: center !important;
  }
  body[data-view="studio-commission"] .commission-plane--left {
    transform: translate3d(-8%, 8%, 0) rotate(-8deg) skewX(-6deg) !important;
  }
  body[data-view="studio-commission"] .commission-plane--right {
    transform: translate3d(10%, -4%, 0) rotate(7deg) skewX(5deg) !important;
  }
  body[data-view="studio-commission"] .studio-proofline__card { padding-inline: clamp(2rem, 6vw, 5rem) !important; }
  body[data-view="studio-commission"] .studio-proofline h2 {
    max-width: 19ch !important;
    margin-inline: auto !important;
    text-align: center !important;
    font-size: clamp(2.15rem, 5.4vw, 4.3rem) !important;
    line-height: .98 !important;
  }
  body[data-view="studio-commission"] .studio-proofline h2 em,
  body[data-view="studio-commission"] .studio-proofline h2 .proof-gold,
  body[data-view="studio-commission"] .studio-proofline .proof-gold {
    color: #d9d0be !important;
    font-style: normal !important;
  }
  body[data-view="studio-commission"] .studio-proofline__caption {
    max-width: 28rem !important;
    margin-inline: auto !important;
    text-align: center !important;
  }
  body[data-view="studio-commission"] .studio-proofline .text-action::after { bottom: -.18rem !important; }


  body[data-view="studio-request"] #requestTitle { max-width: 13ch !important; }
  body[data-view="studio-request"] .choice-group > legend { white-space: nowrap !important; }
}

@media (max-width: 1180px) {

  body[data-view="community"] .sc-section {
    min-height: auto !important;
    padding: calc(var(--header-h, 88px) + clamp(3.5rem, 7vh, 6rem)) var(--pad) clamp(5rem, 9vh, 7rem) !important;
  }
  body[data-view="community"] .sc-hero {
    min-height: 100svh !important;
    grid-template-columns: 1fr !important;
    align-content: center !important;
    gap: clamp(2.4rem, 5vh, 4.5rem) !important;
    padding-top: calc(var(--header-h, 88px) + clamp(3.5rem, 7vh, 5.8rem)) !important;
  }
  body[data-view="community"] .sc-title {
    max-width: 12.4ch !important;
    font-size: clamp(4.3rem, 10vw, 7rem) !important;
  }
  body[data-view="community"] .sc-hero__visual {
    min-height: clamp(18rem, 34vh, 26rem) !important;
    width: 100% !important;
    align-items: stretch !important;
  }
  body[data-view="community"] .sc-media--arrival {
    width: min(100%, 58rem) !important;
    min-height: clamp(16rem, 32vh, 25rem) !important;
    margin-left: auto !important;
  }
  body[data-view="community"] .sc-vertical-label { right: .75rem !important; }
  body[data-view="community"] .sc-standard,
  body[data-view="community"] .sc-together,
  body[data-view="community"] .sc-channel,
  body[data-view="community"] .sc-gatherings,
  body[data-view="community"] .sc-memory { display: block !important; }
  body[data-view="community"] .sc-heading {
    max-width: 15ch !important;
    font-size: clamp(3.05rem, 8.4vw, 5.6rem) !important;
  }
  body[data-view="community"] .sc-standard__intro,
  body[data-view="community"] .sc-editorial-block,
  body[data-view="community"] .sc-section-head,
  body[data-view="community"] .sc-memory__copy { max-width: 52rem !important; }
  body[data-view="community"] .sc-rule-grid {
    margin-top: clamp(2.8rem, 6vh, 4.5rem) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  body[data-view="community"] .sc-stack {
    margin-top: clamp(2.6rem, 6vh, 4.5rem) !important;
    display: grid !important;
    gap: 1rem !important;
  }
  body[data-view="community"] .sc-channel__panel {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: clamp(2.4rem, 5vh, 4rem) !important;
    padding: clamp(2rem, 5vw, 4rem) !important;
  }
  body[data-view="community"] .sc-channel__copy { max-width: 42rem !important; }
  body[data-view="community"] .sc-media--channel {
    min-height: clamp(17rem, 34vh, 25rem) !important;
    width: min(100%, 52rem) !important;
    margin-left: auto !important;
  }
  body[data-view="community"] .sc-card-row {
    margin-top: clamp(2.5rem, 6vh, 4.5rem) !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  body[data-view="community"] .sc-memory__frames {
    margin-top: clamp(2.5rem, 6vh, 4.5rem) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: clamp(1rem, 3vw, 2rem) !important;
  }
  body[data-view="community"] .sc-ending { min-height: 88svh !important; display: flex !important; align-items: center !important; justify-content: center !important; }
}

@media (max-width: 720px) {
  :root { --pad: 1.35rem; }


  .hall--drawer .nav-drawer__current-hub small { display: none !important; }
  .hall--drawer .nav-drawer__current-hub strong {
    font-family: var(--serif) !important;
    font-size: clamp(1.05rem, 4.35vw, 1.24rem) !important;
    color: #a89b83 !important;
    text-transform: none !important;
  }


  body[data-view="community"] .sc-section {
    padding: calc(var(--header-h, 80px) + 2.6rem) var(--pad) 4.8rem !important;
  }
  body[data-view="community"] .sc-hero {
    min-height: 100svh !important;
    padding-top: calc(var(--header-h, 80px) + 3.1rem) !important;
    gap: 2.2rem !important;
  }
  body[data-view="community"] .sc-kicker,
  body[data-view="community"] .sc-subkicker { font-size: .58rem !important; letter-spacing: .18em !important; }
  body[data-view="community"] .sc-title {
    margin-top: 2.5rem !important;
    max-width: 10.8ch !important;
    font-size: clamp(3.15rem, 15vw, 4.85rem) !important;
    line-height: .9 !important;
  }
  body[data-view="community"] .sc-lede { font-size: clamp(1.22rem, 6vw, 1.55rem) !important; }
  body[data-view="community"] .sc-body {
    max-width: 22rem !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }
  body[data-view="community"] .sc-actions { gap: 1.15rem !important; flex-direction: column !important; align-items: flex-start !important; }
  body[data-view="community"] .sc-actions--center { align-items: center !important; }
  body[data-view="community"] .sc-hero__visual { min-height: 34vh !important; }
  body[data-view="community"] .sc-media--arrival { min-height: 34vh !important; width: 100% !important; }
  body[data-view="community"] .sc-vertical-label { display: none !important; }
  body[data-view="community"] .sc-heading {
    max-width: 12.5ch !important;
    font-size: clamp(2.45rem, 12vw, 3.75rem) !important;
    line-height: .96 !important;
  }
  body[data-view="community"] .sc-rule-grid,
  body[data-view="community"] .sc-card-row,
  body[data-view="community"] .sc-memory__frames {
    grid-template-columns: 1fr !important;
  }
  body[data-view="community"] .sc-rule,
  body[data-view="community"] .sc-line-card,
  body[data-view="community"] .sc-chapter-card {
    padding: 1.45rem !important;
  }
  body[data-view="community"] .sc-channel__panel {
    padding: 1.25rem !important;
    border-left: 1px solid var(--sc-line) !important;
    border-right: 1px solid var(--sc-line) !important;
  }
  body[data-view="community"] .sc-media--channel,
  body[data-view="community"] .sc-media--photo,
  body[data-view="community"] .sc-media--film {
    min-height: 15rem !important;
    width: 100% !important;
  }
  body[data-view="community"] .sc-ending__inner { max-width: 22rem !important; }
}
@media (min-width: 821px) {
  .house-ledger__group > h3,
  .house-ledger__toggle {
    all: unset !important;
    display: block !important;
    width: max-content !important;
    max-width: 100% !important;
    margin: 0 0 1.05rem !important;
    padding: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    color: #776d5f !important;
    font-family: var(--ceremonial) !important;
    font-size: .5rem !important;
    font-weight: 500 !important;
    letter-spacing: .18em !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    cursor: default !important;
    pointer-events: none !important;
    user-select: none !important;
  }
  .house-ledger__toggle span:first-child { display: inline !important; }
  .house-ledger__toggle span[aria-hidden="true"] { display: none !important; }
  .house-ledger__toggle::before,
  .house-ledger__toggle::after,
  .house-ledger__group > h3::before,
  .house-ledger__group > h3::after {
    content: none !important;
    display: none !important;
  }
  .house-ledger__drawer {
    display: block !important;
    grid-template-rows: none !important;
    opacity: 1 !important;
    transition: none !important;
  }
  .house-ledger__drawer > div,
  .house-ledger__drawer-inner {
    min-height: 0 !important;
    overflow: visible !important;
    padding: 0 !important;
  }
  .house-ledger__group,
  .house-ledger__group:focus,
  .house-ledger__group:focus-visible,
  .house-ledger__group:target {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}
@media (max-width: 820px) {
  .house-ledger__toggle,
  .house-ledger__toggle:focus,
  .house-ledger__toggle:focus-visible,
  .house-ledger__toggle:active {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }
}
body[data-view="threshold"] .threshold__content {
  animation-duration: 11s !important;
}


.hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] a,
.hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub > span,
.hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub strong {
  font-family: var(--serif) !important;
  font-size: clamp(.9rem, 1.08vw, 1.04rem) !important;
  font-weight: 400 !important;
  letter-spacing: .018em !important;
  line-height: 1.22 !important;
  text-transform: none !important;
}
.hall--drawer .nav-drawer__current-hub small {
  display: none !important;
}
.hall--drawer .nav-drawer__current-hub > span {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: baseline !important;
  gap: 0 !important;
  min-height: 1.65rem !important;
  padding: .08rem 0 !important;
  color: #786b58 !important;
}
.hall--drawer .nav-drawer__current-hub strong {
  display: block !important;
  color: inherit !important;
}
@media (max-width: 820px) {
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] a,
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub > span,
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub strong {
    font-size: clamp(.78rem, 3vw, .94rem) !important;
    letter-spacing: .015em !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  body[data-view="threshold"] .threshold__content {
    animation: none !important;
  }
}
.hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > a,
.hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > .is-reserved {
  font-family: var(--serif) !important;
  font-size: clamp(.9rem, 1.08vw, 1.04rem) !important;
  font-weight: 400 !important;
  letter-spacing: .018em !important;
  line-height: 1.22 !important;
  text-transform: none !important;
}
@media (max-width: 820px) {
  .hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > a,
  .hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > .is-reserved {
    font-size: clamp(.78rem, 3vw, .94rem) !important;
    letter-spacing: .015em !important;
  }
}
.hall--drawer .nav-drawer__section--current > h3 {
  font-family: var(--ceremonial) !important;
  font-size: clamp(.76rem, .9vw, .9rem) !important;
  font-weight: 500 !important;
  letter-spacing: .085em !important;
  line-height: 1.24 !important;
  text-transform: uppercase !important;
}
.hall--drawer .nav-drawer__section--current > ul > li > a,
.hall--drawer .nav-drawer__section--current > ul > li > span {
  font-family: var(--serif) !important;
  font-size: clamp(.9rem, 1.08vw, 1.04rem) !important;
  font-weight: 400 !important;
  letter-spacing: .018em !important;
  line-height: 1.22 !important;
  text-transform: none !important;
}
@media (max-width: 820px) {
  .hall--drawer .nav-drawer__section--current > h3 {
    font-size: clamp(.68rem, 2.55vw, .82rem) !important;
    letter-spacing: .075em !important;
  }
  .hall--drawer .nav-drawer__section--current > ul > li > a,
  .hall--drawer .nav-drawer__section--current > ul > li > span {
    font-size: clamp(.78rem, 3vw, .94rem) !important;
    letter-spacing: .015em !important;
  }
}
.house-ledger__social {
  position: relative !important;
  border-bottom-color: transparent !important;
  transition:
    color .28s ease,
    transform .38s var(--ease),
    background-color .28s ease !important;
}
.house-ledger__social::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(120, 107, 88, .82), rgba(120, 107, 88, .2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .42s var(--ease);
  pointer-events: none;
}
.house-ledger__social strong,
.house-ledger__social small {
  transition: color .28s ease, transform .38s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .house-ledger__social:hover,
  .house-ledger__social:focus-visible {
    transform: translateX(.18rem);
    background: linear-gradient(90deg, rgba(127, 96, 0, .045), transparent 84%);
  }
  .house-ledger__social:hover::after,
  .house-ledger__social:focus-visible::after {
    transform: scaleX(1);
  }
  .house-ledger__social:hover strong,
  .house-ledger__social:focus-visible strong {
    color: #786b58;
  }
  .house-ledger__social:hover small,
  .house-ledger__social:focus-visible small {
    color: rgba(23, 23, 35, .68);
  }
}
@media (hover: none) {
  .house-ledger__social::after {
    transform: scaleX(1);
    opacity: .32;
  }
}


.hall--drawer .nav-drawer__section a span[aria-hidden="true"] {
  display: none !important;
}
.hall:not(.hall--drawer) .world--open a {
  padding-right: 0 !important;
}
.hall:not(.hall--drawer) .world--open a::after {
  content: none !important;
  display: none !important;
}


.hall--drawer .nav-drawer__header h2 {
  font-family: "Cinzel", var(--ceremonial), serif !important;
  font-weight: 400 !important;
  letter-spacing: .12em !important;
  line-height: 1.12 !important;
  text-transform: uppercase !important;
}
.hall--drawer .nav-drawer__header h2 {
  font-family: "Cinzel", var(--ceremonial), serif !important;
  font-size: clamp(.96rem, 1.18vw, 1.08rem) !important;
  font-weight: 400 !important;
  letter-spacing: .135em !important;
  line-height: 1.22 !important;
  text-transform: uppercase !important;
  max-width: none !important;
  white-space: nowrap !important;
  margin-top: .58rem !important;
}


@media (min-width: 721px) and (max-width: 1180px) {
  .hall--drawer .nav-drawer__header h2 {
    font-size: clamp(.86rem, 1.55vw, .98rem) !important;
    letter-spacing: .13em !important;
  }
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] a,
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub > span,
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub strong,
  .hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > a,
  .hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > .is-reserved,
  .hall--drawer .nav-drawer__section--current > ul > li > a,
  .hall--drawer .nav-drawer__section--current > ul > li > span {
    font-size: clamp(.84rem, 1.62vw, .96rem) !important;
    line-height: 1.24 !important;
  }
  .hall--drawer .nav-drawer__section--current > h3 {
    font-size: clamp(.68rem, 1.2vw, .78rem) !important;
    letter-spacing: .08em !important;
  }
  .house-ledger__heading h2 {
    font-size: clamp(.86rem, 1.35vw, 1rem) !important;
    letter-spacing: .145em !important;
  }
  body[data-view="community"] { --sc-label-to-heading: 1.9rem; }
  body[data-view="community"] .sc-ending .sc-action {
    font-size: .63rem !important;
    letter-spacing: .15em !important;
  }
}


@media (max-width: 720px) {
  .hall--drawer .nav-drawer__header h2 {
    font-size: clamp(.7rem, 3.05vw, .82rem) !important;
    letter-spacing: .115em !important;
    line-height: 1.2 !important;
  }
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] a,
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub > span,
  .hall--drawer .nav-drawer__section[aria-labelledby="navHouseTitle"] .nav-drawer__current-hub strong,
  .hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > a,
  .hall--drawer .nav-drawer__section[aria-labelledby="navRoomsTitle"] > ul > li > .is-reserved,
  .hall--drawer .nav-drawer__section--current > ul > li > a,
  .hall--drawer .nav-drawer__section--current > ul > li > span {
    font-size: clamp(.77rem, 3vw, .9rem) !important;
    line-height: 1.25 !important;
  }
  .hall--drawer .nav-drawer__section--current > h3 {
    font-size: clamp(.64rem, 2.45vw, .74rem) !important;
    letter-spacing: .075em !important;
  }
  .house-ledger__heading h2 {
    font-size: .8rem !important;
    letter-spacing: .135em !important;
  }
  .house-ledger__social {
    min-height: 2.75rem !important;
  }
  body[data-view="community"] { --sc-label-to-heading: 1.7rem; }
}

@media (max-width: 380px) {
  .hall--drawer .nav-drawer__header h2 {
    font-size: .66rem !important;
    letter-spacing: .1em !important;
  }
}
@media (max-width: 720px) {
  body[data-view="threshold"] .threshold .text-action {
    width: max-content !important;
    padding-bottom: .08rem !important;
    min-height: 0 !important;
    line-height: 1.35 !important;
    gap: 0 !important;
  }
  body[data-view="threshold"] .threshold .text-action > span[aria-hidden="true"] {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .house-ledger__grid > .house-ledger__group:last-child {
    border-bottom: 1px solid rgba(23, 23, 35, .13) !important;
  }
  .house-ledger__base {
    display: grid !important;
    border-top: 0 !important;
    padding-top: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .house-ledger__seal {
    display: block !important;
    grid-column: 1 !important;
    justify-self: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .house-ledger__seal img {
    display: block !important;
    width: 2.45rem !important;
    height: auto !important;
    filter: invert(1) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
@media (min-width: 821px) {

  .text-action,
  .studio-opening__actions .text-action,
  .studio-commission-opening__actions .text-action,
  .studio-proofline .text-action,
  .deliverable > .text-action,
  .community-ending .text-action,
  .sc-action,
  .room__header .text-action,
  .world-return .text-action,
  .studio-return .text-action,
  .room-return .text-action {
    width: max-content !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding-bottom: .22rem !important;
    min-height: 0 !important;
  }
  .text-action::after,
  .studio-opening__actions .text-action::after,
  .studio-commission-opening__actions .text-action::after,
  .studio-proofline .text-action::after,
  .deliverable > .text-action::after,
  .community-ending .text-action::after,
  .sc-action::after,
  .room__header .text-action::after,
  .world-return .text-action::after,
  .studio-return .text-action::after,
  .room-return .text-action::after {
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    bottom: 0 !important;
  }
  .text-action > span[aria-hidden="true"],
  .studio-opening__actions .text-action > span[aria-hidden="true"],
  .studio-commission-opening__actions .text-action > span[aria-hidden="true"],
  .studio-proofline .text-action > span[aria-hidden="true"],
  .deliverable > .text-action > span[aria-hidden="true"],
  .community-ending .text-action > span[aria-hidden="true"],
  .sc-action > span[aria-hidden="true"] { display:none !important; }


  .commission-card a[data-select-commission],
  .studio-commission-list a[data-select-commission],
  .deliverable > a[data-select-commission] {
    width: max-content !important;
    padding-bottom: .22rem !important;
    border-bottom: 1px solid currentColor !important;
    text-decoration: none !important;
  }


  .studio-footer button[data-open-hall],
  .studio-return button[data-open-hall],
  .room-return button[data-open-hall] {
    width: max-content !important;
    padding-bottom: .22rem !important;
    border-bottom: 1px solid currentColor !important;
  }
}
@media (min-width: 721px) and (max-width: 1180px) {

  .text-action,
  body[data-view="community"] .sc-action,
  body[data-view="room"] .room__header .text-action,
  body[data-view="room"] .room-return a,
  body[data-view="room"] .room-return button {
    width: max-content !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding-bottom: .08rem !important;
    line-height: 1.35 !important;
  }

  .text-action::after,
  body[data-view="community"] .sc-action::after,
  body[data-view="room"] .room__header .text-action::after {
    left: 0 !important;
    right: auto !important;
    width: 100% !important;
    bottom: 0 !important;
  }


  .text-action > span[aria-hidden="true"],
  body[data-view="community"] .sc-action > span[aria-hidden="true"],
  body[data-view="studio-commission"] .studio-package > a[data-select-commission] > span[aria-hidden="true"] {
    display: none !important;
  }


  body[data-view="sports"] .sports-opening .text-action > span[aria-hidden="true"] {
    display: inline !important;
  }


  body[data-view="threshold"] .threshold .text-action,
  body[data-view="studio"] .studio-opening__actions .text-action,
  body[data-view="community"] .sc-hero .sc-action,
  body[data-view="community"] .sc-channel__actions .sc-action,
  body[data-view="community"] .sc-ending .sc-action,
  body[data-view="studio-commission"] .studio-commission-opening__actions .text-action,
  body[data-view="studio-commission"] .studio-proofline .text-action {
    padding-bottom: .08rem !important;
  }


  body[data-view="sports"] .world-return {
    display: grid !important;
    grid-template-columns: 1fr !important;
    place-items: center !important;
    text-align: center !important;
  }
  body[data-view="sports"] .world-return .text-action {
    margin-inline: auto !important;
    justify-content: center !important;
    text-align: center !important;
    padding-bottom: .08rem !important;
  }


  body[data-view="room"] .room__header .text-action {
    padding-bottom: .04rem !important;
    border-bottom: 1px solid currentColor !important;
  }
  body[data-view="room"] .room__header .text-action::after,
  body[data-view="room"] .room-return a::after,
  body[data-view="room"] .room-return button::after {
    display: none !important;
    content: none !important;
  }
  body[data-view="room"] .room-return a,
  body[data-view="room"] .room-return button {
    padding-bottom: .22rem !important;
    border: 0 !important;
    border-bottom: 1px solid currentColor !important;
    line-height: 1.15 !important;
  }


  body[data-view="studio-commission"] .studio-package > a[data-select-commission],
  body[data-view="studio-bag"] .deliverable > a[data-select-commission] {
    position: relative !important;
    width: max-content !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 0 0 .24rem !important;
    gap: 0 !important;
    line-height: 1.35 !important;
    text-decoration: none !important;
  }
  body[data-view="studio-commission"] .studio-package > a[data-select-commission]::after,
  body[data-view="studio-bag"] .deliverable > a[data-select-commission]::after {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    bottom: 0 !important;
  }


  body[data-view="studio-request"] .request-actions .request-next,
  body[data-view="studio-request"] .request-actions .request-back,
  body[data-view="studio-request"] .request-actions .request-submit {
    width: max-content !important;
    max-width: 100% !important;
    min-height: 0 !important;
    padding: 0 0 .24rem !important;
    border: 0 !important;
    border-bottom: 1px solid currentColor !important;
    background: transparent !important;
    line-height: 1.15 !important;
  }


  .house-ledger__base {
    display: grid !important;
    border-top: 0 !important;
    padding-top: 1rem !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .house-ledger__seal {
    display: block !important;
    grid-column: 1 / -1 !important;
    justify-self: center !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .house-ledger__seal img {
    display: block !important;
    width: 2.45rem !important;
    height: auto !important;
    filter: invert(1) !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}


@media (min-width: 721px) and (max-width: 820px) {
  .house-ledger__grid > .house-ledger__group:last-child {
    border-bottom: 1px solid rgba(23, 23, 35, .13) !important;
  }
}
:where(
  .text-action,
  .studio-primary-action,
  .chapter__door,
  .room-return a,
  .room-return button,
  .world-return a,
  .world-return button,
  .studio-return a,
  .studio-return button,
  .request-progress button,
  .request-controls button,
  .commission-bag__view,
  .commission-bag__continue,
  .studio-guide-action
) {
  font-family: "Cinzel", var(--ceremonial), "Times New Roman", serif !important;
}


:where(
  .text-action,
  .studio-primary-action,
  .chapter__door,
  .room-return a,
  .room-return button,
  .world-return a,
  .world-return button,
  .studio-return a,
  .studio-return button,
  .request-progress button,
  .request-controls button,
  #centralHall a[href]
) {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

#centralHall a.is-route-pressed {
  opacity: .62 !important;
  transform: translateX(.14rem) !important;
  transition-duration: .08s !important;
}


@media (max-width: 1180px) {
  :where(
    .commission-films__intro,
    .commission-film-grid,
    .commission-film-card,
    .commission-film-card__frame,
    .commission-receive,
    .commission-deliverables-inline,
    .studio-package,
    .studio-process,
    .studio-bespoke,
    .studio-department,
    .sc-section,
    .sc-channel__panel,
    .chapter__stage
  ) {
    min-width: 0;
    max-width: 100%;
  }

  :where(
    .text-action,
    .studio-primary-action,
    .chapter__door,
    .room-return a,
    .room-return button,
    .world-return a,
    .world-return button,
    .studio-return a,
    .studio-return button
  ) {
    max-width: 100%;
  }


  html[data-passage-in="hall-to-sports"].is-arriving .view,
  html[data-passage-in="hall-to-community"].is-arriving .view,
  html[data-passage-in="hall-to-studio"].is-arriving .view {
    transition-duration: .28s !important;
  }
}

@media (max-width: 640px) {
  :where(
    .text-action,
    .studio-primary-action,
    .chapter__door,
    .room-return a,
    .room-return button,
    .world-return a,
    .world-return button,
    .studio-return a,
    .studio-return button
  ) {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}
@media (max-width: 720px) {


  body:not([data-view="threshold"]) .location-trail {
    left: calc(var(--vii-mobile-editorial-x) + var(--safe-l)) !important;
    right: calc(var(--vii-mobile-editorial-x) + var(--safe-r)) !important;
    padding-inline: 0 !important;
  }


  body[data-view="sports"] .sports-opening,
  body[data-view="community"] .community-arrival,
  body[data-view="community"] .community-standard,
  body[data-view="community"] .community-movement,
  body[data-view="community"] .community-chapters,
  body[data-view="community"] .community-memory,
  body[data-view="community"] .community-ending,
  body[data-view="studio"] .studio-opening,
  body[data-view="studio"] .studio-index,
  body[data-view="studio"] .studio-register,
  body[data-view="studio"] .studio-principle,
  body[data-view="studio"] .studio-proofline,
  body[data-view="studio"] .studio-packages,
  body[data-view="studio"] .studio-refinements,
  body[data-view="studio"] .studio-bespoke,
  body[data-view="studio"] .studio-process,
  body[data-view="studio-commission"] .studio-commission-opening,
  body[data-view="studio-commission"] .commission-films,
  body[data-view="studio-commission"] .studio-packages,
  body[data-view="studio-commission"] .commission-receive,
  body[data-view="studio-commission"] .studio-refinements,
  body[data-view="studio-commission"] .studio-bespoke,
  body[data-view="studio-commission"] .studio-process,
  body[data-view="studio-commission"] .studio-proofline,
  body[data-view="studio-request"] .request-opening,
  body[data-view="studio-request"] .request-layout,
  body[data-view="studio-request"] .studio-return,
  body[data-view="studio-bag"] .commission-bag-page,
  body[data-view="studio-thanks"] .request-thanks__content {
    padding-left: calc(var(--vii-mobile-editorial-x) + var(--safe-l)) !important;
    padding-right: calc(var(--vii-mobile-editorial-x) + var(--safe-r)) !important;
  }


  body[data-view="sports"] .sports-world .chapter-index {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }


  body:not([data-view="threshold"]) .world-return,
  body[data-view="studio"] .studio-return,
  body[data-view="studio-commission"] .studio-return {
    padding-left: calc(var(--vii-mobile-editorial-x) + var(--safe-l)) !important;
    padding-right: calc(var(--vii-mobile-editorial-x) + var(--safe-r)) !important;
  }
}
@media (max-width: 720px) {


  .hall-trigger__label {
    display: none !important;
  }


  body:not([data-view="threshold"]) .location-trail {
    left: calc(var(--vii-mobile-editorial-x) + var(--safe-l)) !important;
    right: calc(var(--vii-mobile-editorial-x) + var(--safe-r)) !important;
    width: auto !important;
    padding-inline: 0 !important;
  }


  body[data-view="community"] .sc-section {
    padding-left: calc(var(--vii-mobile-editorial-x) + var(--safe-l)) !important;
    padding-right: calc(var(--vii-mobile-editorial-x) + var(--safe-r)) !important;
  }


  body[data-view="community"] .sc-channel__panel {
    width: 100% !important;
  }


  body[data-view="sports"] .house-action {
    display: block !important;
    max-width: none !important;
    justify-self: end !important;
  }
  body[data-view="sports"] .house-action a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    white-space: nowrap !important;
    font-family: var(--ceremonial) !important;
    font-size: 0 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    color: rgba(247,244,238,.76) !important;
    text-decoration: none !important;
  }
  body[data-view="sports"] .house-action a::after {
    content: "RACE FILMS";
    font-family: var(--ceremonial) !important;
    font-size: .48rem !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: .145em !important;
    text-transform: uppercase !important;
  }
}
@media (max-width: 720px) {
  :root { --vii-mobile-editorial-x: clamp(1.75rem, 7.6vw, 2.05rem); }


  body:not([data-view="threshold"]) .location-trail {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    justify-self: stretch !important;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    padding-left: calc(var(--vii-mobile-editorial-x) + var(--safe-l)) !important;
    padding-right: calc(var(--vii-mobile-editorial-x) + var(--safe-r)) !important;
  }


  body[data-view="community"] .sc-rule-grid,
  body[data-view="community"] .sc-card-row {
    gap: .82rem !important;
    border: 0 !important;
    background: transparent !important;
  }

  body[data-view="community"] .sc-stack {
    gap: .82rem !important;
  }

  body[data-view="community"] .sc-rule,
  body[data-view="community"] .sc-line-card,
  body[data-view="community"] .sc-chapter-card {
    position: relative !important;
    isolation: isolate !important;
    border: 1px solid rgba(247,244,238,.105) !important;
    background:
      linear-gradient(148deg, rgba(16,19,48,.92) 0%, rgba(8,10,29,.88) 54%, rgba(5,6,20,.96) 100%) !important;
    box-shadow:
      0 1.15rem 2.7rem rgba(0,0,0,.30),
      0 .24rem .7rem rgba(0,0,0,.24),
      inset 0 1px 0 rgba(255,255,255,.045),
      inset 0 -1px 0 rgba(0,0,0,.34) !important;
  }

  body[data-view="community"] .sc-rule::after,
  body[data-view="community"] .sc-line-card::after,
  body[data-view="community"] .sc-chapter-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(115deg, rgba(247,244,238,.035), transparent 28%, transparent 72%, rgba(154,144,128,.025));
  }


  body[data-view="community"] .sc-media {
    border-color: rgba(247,244,238,.13) !important;
    box-shadow:
      0 1.45rem 3.2rem rgba(0,0,0,.34),
      0 .35rem .85rem rgba(0,0,0,.26),
      inset 0 1px 0 rgba(255,255,255,.055) !important;
  }

  body[data-view="community"] .sc-channel__panel {
    border-color: rgba(247,244,238,.11) !important;
    background: linear-gradient(150deg, rgba(10,12,34,.70), rgba(6,7,22,.58)) !important;
    box-shadow: 0 1.15rem 2.9rem rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.035) !important;
  }


  body[data-view="community"] .sc-archive-frame {
    border-color: rgba(247,244,238,.14) !important;
    box-shadow:
      0 1.55rem 3.4rem rgba(0,0,0,.38),
      0 .3rem .8rem rgba(0,0,0,.28),
      inset 0 1px 0 rgba(255,255,255,.05) !important;
  }
  body[data-view="community"] .sc-archive-frames__shadow {
    opacity: .72 !important;
    filter: blur(24px) !important;
  }
}
@media (max-width: 720px) {

  body:not([data-view="studio-commission"]) :where(
    .text-action,
    .sc-action,
    .chapter__door,
    .world-return a,
    .world-return button,
    .studio-return a,
    .studio-return button,
    .room-return a,
    .room-return button
  ) {
    padding-bottom: .08rem !important;
    line-height: 1.35 !important;
  }
  body:not([data-view="studio-commission"]) :where(
    .text-action,
    .sc-action,
    .chapter__door,
    .world-return a,
    .world-return button,
    .studio-return a,
    .studio-return button,
    .room-return a,
    .room-return button
  )::after {
    bottom: 0 !important;
  }
}
@media (max-width: 1180px) {
  html {
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip !important;
    overscroll-behavior-x: none;
  }
  body > main,
  main, .view, .scene, section, article, header, footer, nav, aside {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }
  img, picture, video, canvas, svg { max-width: 100%; }
  .house-nav {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .location-trail { max-width: 100% !important; box-sizing: border-box !important; }
}

@media (max-width: 720px) {
  :root {
    --vii-phone-x: clamp(1.05rem, 4.8vw, 1.35rem);
    --pad: var(--vii-phone-x);
  }
  html { scroll-padding-top: calc(var(--header-h) + .85rem); }
  body { min-width: 280px; }


  .house-nav {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    padding-left: calc(var(--vii-phone-x) + var(--safe-l)) !important;
    padding-right: calc(var(--vii-phone-x) + var(--safe-r)) !important;
  }


  .hall .hall__card,
  .hall--drawer .hall__card {
    max-width: calc(100% - 1.3rem - var(--safe-l) - var(--safe-r)) !important;
    max-height: calc(100svh - var(--header-h) - 1rem - var(--safe-b)) !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }


  .hall:not(.hall--drawer) .hall__heading h2 {
    max-width: 100% !important;
    font-size: clamp(1.08rem, 5.15vw, 1.58rem) !important;
    white-space: nowrap !important;
  }
  .hall:not(.hall--drawer) .hall__instruction {
    max-width: 100% !important;
    font-size: clamp(.43rem, 2.12vw, .56rem) !important;
    letter-spacing: clamp(.075em, .25vw, .11em) !important;
    white-space: nowrap !important;
  }

  .location-trail {
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .location-trail__segment { min-width: 0 !important; }


  :where(.text-action,.studio-primary-action,.chapter__door,.world-return a,.world-return button,
         .studio-return a,.studio-return button,.room-return a,.room-return button) {
    max-width: 100% !important;
  }
}

@media (max-width: 340px) {
  :root { --vii-phone-x: 1rem; }
  .house-action { max-width: 6.4rem !important; }
  .hall:not(.hall--drawer) .hall__heading h2 { font-size: 1.02rem !important; }
  .hall:not(.hall--drawer) .hall__instruction { font-size: .41rem !important; }
}
@media (max-width: 1180px) {
  body {
    overflow-x: hidden !important;
    overflow-x: clip !important;
  }
}

@media (max-width: 720px) {

  body { min-width: 0 !important; }


  body:not([data-view="threshold"]) .location-trail {
    height: var(--nav-context-h) !important;
    padding-bottom: 0 !important;
    align-items: center !important;
  }
  body:not([data-view="threshold"]) .location-trail > button,
  body:not([data-view="threshold"]) .location-trail a {
    min-height: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    overflow: visible !important;
    touch-action: manipulation;
  }


  :where(.text-action, .chapter__door, .studio-primary-action,
         .world-return a, .world-return button,
         .studio-return a, .studio-return button,
         .room-return a, .room-return button) {
    position: relative !important;
    touch-action: manipulation;
  }
  :where(.text-action, .chapter__door, .studio-primary-action,
         .world-return a, .world-return button,
         .studio-return a, .studio-return button,
         .room-return a, .room-return button)::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -.72rem;
    bottom: -.72rem;
  }
}


@media (max-width: 360px) {
  body[data-view="studio-request"] .location-trail__segment:nth-of-type(2),
  body[data-view="studio-bag"] .location-trail__segment:nth-of-type(2),
  body[data-view="studio-thanks"] .location-trail__segment:nth-of-type(2) {
    display: none !important;
  }
}
@media (min-width: 721px) and (max-width: 1180px) {
  body:not([data-view="threshold"]) .location-trail > button,
  body:not([data-view="threshold"]) .location-trail a {
    display: inline-flex !important;
    align-items: center !important;
  }
  body:not([data-view="threshold"]) .location-trail__segment {
    align-items: center !important;
  }
}
@media (pointer: coarse) and (max-width: 1180px) {
  .house-action a,
  .house-ledger__seal,
  body[data-view="studio-commission"] .studio-package > a[data-select-commission] {
    position: relative !important;
  }
  .house-action a::before {
    content: "";
    position: absolute;
    left: -4px; right: -4px; top: -8px; bottom: -8px;
  }
  .house-ledger__seal::before {
    content: "";
    position: absolute;
    left: -2px; right: -2px; top: -2px; bottom: -2px;
  }
  body[data-view="studio-commission"] .studio-package > a[data-select-commission]::before {
    content: "";
    position: absolute;
    left: 0; right: 0; top: -7px; bottom: -7px;
  }
}
@media (pointer: coarse) and (min-width: 721px) and (max-width: 1180px) {
  .studio-primary-action,
  .world-return .text-action {
    position: relative !important;
  }
  .studio-primary-action::before,
  .world-return .text-action::before {
    content: "";
    position: absolute;
    left: -3px; right: -3px; top: -7px; bottom: -7px;
  }
}
@media (min-width: 721px) and (max-width: 1180px) {
  .hall--drawer .hall__card {
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box !important;
  }
}
@media (min-width: 0px) {
  .hall--drawer .nav-drawer__section a {
    min-height: 32px !important;
    align-items: center !important;
  }
  .hall__title-link {
    min-height: 32px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto !important; }
  html body[data-view] *:not(#vii-rm-specificity),
  html body[data-view] *:not(#vii-rm-specificity)::before,
  html body[data-view] *:not(#vii-rm-specificity)::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    transition-delay: 0s !important;
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
  }
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}

/* Carry the approved phone Threshold split choreography onto larger iPad/tablet widths. */
@media (min-width: 821px) and (max-width: 1180px) and (prefers-reduced-motion: no-preference) {
  body[data-view="threshold"] .threshold__content {
    transition: transform .95s cubic-bezier(.22, 1, .36, 1) .08s, opacity .8s ease .08s !important;
  }

  body[data-view="threshold"] .threshold__architecture .plane {
    transition: transform 1.08s cubic-bezier(.22, 1, .36, 1), border-color .35s ease, box-shadow .35s ease !important;
  }

  body.is-entering-house[data-view="threshold"] .threshold__architecture,
  body.house-entered[data-view="threshold"] .threshold__architecture {
    transform: scale(1.045) !important;
    transition: transform 1.08s cubic-bezier(.22, 1, .36, 1) !important;
  }

  body.is-entering-house[data-view="threshold"] .threshold__content,
  body.house-entered[data-view="threshold"] .threshold__content {
    transform: translateY(1.35rem) scale(.965) !important;
    opacity: .2 !important;
  }

  body.is-entering-house[data-view="threshold"] .plane--one,
  body.house-entered[data-view="threshold"] .plane--one {
    transform: translate3d(-30vw, 5svh, -35px) rotateY(18deg) rotateZ(-10deg) !important;
  }

  body.is-entering-house[data-view="threshold"] .plane--two,
  body.house-entered[data-view="threshold"] .plane--two {
    transform: translate3d(29vw, -7svh, -80px) rotateY(-20deg) rotateZ(9deg) !important;
  }

  body.is-entering-house[data-view="threshold"] .plane--three,
  body.house-entered[data-view="threshold"] .plane--three {
    transform: translate3d(20vw, 16svh, 55px) rotateZ(-15deg) scale(.94) !important;
  }
}
