:root {
  --paper: #f3f1ea;
  --paper-soft: #e9e5db;
  --paper-pale: #f8f7f2;
  --ink: #1a1c18;
  --ink-soft: #282b25;
  --muted: #70736c;
  --line: rgba(26, 28, 24, 0.15);
  --blue: #4b9cf4;
  --blue-dark: #2675cc;
  --white: #fff;
  --max: 1720px;
  --pad: clamp(20px, 3.15vw, 58px);
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 28px 80px rgba(20, 23, 19, 0.12);
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Neue Haas Grotesk Text Pro", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

::selection {
  color: #fff;
  background: var(--blue-dark);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: #111;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 82px;
  padding: 13px var(--pad);
  transition:
    min-height 280ms var(--ease),
    background 280ms ease,
    box-shadow 280ms ease;
}

.site-header--solid,
.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(243, 241, 234, 0.9);
  box-shadow: 0 1px 0 rgba(26, 28, 24, 0.08);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header--dark:not(.is-scrolled) {
  color: #fff;
}

.site-header--dark:not(.is-scrolled) .brand small {
  color: rgba(255, 255, 255, 0.65);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  gap: 10px;
}

.brand span {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 5px 20px rgba(20, 23, 19, 0.04);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-nav a {
  padding: 8px 15px;
  border-radius: 999px;
  color: #373a34;
  font-size: 13px;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #111;
  background: rgba(26, 28, 24, 0.07);
  outline: none;
}

.header-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 220ms var(--ease),
    background 220ms ease,
    box-shadow 220ms ease;
}

.button > span {
  margin-left: 16px;
  transition: transform 220ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover > span {
  transform: translateX(4px);
}

.button:focus-visible,
.config-close:focus-visible,
.segmented-control button:focus-visible,
.config-progress button:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 3px;
}

.button--blue {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(75, 156, 244, 0.24);
}

.button--blue:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 32px rgba(38, 117, 204, 0.3);
}

.button--dark {
  color: #fff;
  background: var(--ink);
}

.button--dark:hover {
  background: #363a32;
}

.button--light {
  color: var(--ink);
  background: #fff;
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
}

.button--ghost:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: #fff;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-pad {
  max-width: var(--max);
  padding: clamp(100px, 12vw, 200px) var(--pad);
  margin: 0 auto;
}

.hero {
  max-width: var(--max);
  min-height: 100vh;
  padding: clamp(128px, 17vh, 218px) var(--pad) var(--pad);
  margin: 0 auto;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  grid-template-areas:
    "eyebrow intro"
    "title actions";
  align-items: end;
  gap: 16px clamp(44px, 8vw, 160px);
  margin-bottom: clamp(44px, 7vw, 96px);
}

.hero-copy .eyebrow {
  grid-area: eyebrow;
  align-self: start;
}

.hero h1 {
  grid-area: title;
  max-width: 790px;
  margin: 0;
  font-size: clamp(56px, 7.7vw, 132px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.91;
  text-wrap: balance;
}

.hero-intro {
  grid-area: intro;
  max-width: 610px;
  margin: 0;
  font-size: clamp(19px, 1.95vw, 33px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.09;
  text-wrap: pretty;
}

.hero-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-media {
  position: relative;
  min-height: min(73vh, 880px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d6d7d0;
}

.hero-media::after,
.final-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.3));
}

.hero-media img {
  width: 100%;
  height: calc(100% + 60px);
  min-height: min(79vh, 940px);
  object-fit: cover;
  object-position: center 54%;
  transform: translate3d(0, var(--parallax, 0), 0) scale(1.025);
  will-change: transform;
}

.hero-media figcaption,
.editorial-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.manifesto {
  padding-top: clamp(130px, 16vw, 260px);
  padding-bottom: clamp(130px, 16vw, 260px);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(280px, 0.75fr);
  gap: clamp(60px, 10vw, 180px);
  margin-top: 48px;
}

.display-copy {
  max-width: 1140px;
  margin: 0;
  font-size: clamp(46px, 6.35vw, 110px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.96;
  text-wrap: balance;
}

.body-copy {
  align-self: end;
  max-width: 470px;
}

.body-copy p {
  margin: 0 0 24px;
  font-size: clamp(17px, 1.35vw, 23px);
  letter-spacing: -0.02em;
  text-wrap: pretty;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: clamp(40px, 9vw, 150px);
  margin-bottom: clamp(46px, 7vw, 96px);
}

.section-heading h2,
.interior-title h2,
.pathway-card h2,
.how-hero-copy h2,
.junction-copy h2,
.technical-intro h2,
.planning-copy h2,
.site-review h2,
.origin h2,
.page-cta h2,
.final-cta h2 {
  max-width: 1020px;
  margin: 20px 0 0;
  font-size: clamp(44px, 5.5vw, 94px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.97;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 22px);
  text-wrap: pretty;
}

.rooms {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  overflow: hidden;
  color: #f6f4ed;
  background: #1a1c18;
}

.rooms .section-heading {
  max-width: var(--max);
  padding: 0 var(--pad);
  margin-right: auto;
  margin-left: auto;
}

.rooms .section-index,
.rooms .section-heading > p {
  color: #9ca097;
}

.room-rail {
  display: flex;
  gap: clamp(16px, 1.4vw, 26px);
  padding: 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))) 14px;
  overflow-x: auto;
  cursor: grab;
  scroll-padding-left: var(--pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.room-rail::-webkit-scrollbar {
  display: none;
}

.room-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.room-card {
  position: relative;
  flex: 0 0 clamp(320px, 31vw, 550px);
  min-height: clamp(520px, 64vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  background: #30342d;
  scroll-snap-align: start;
}

.room-card--wide {
  flex-basis: clamp(400px, 47vw, 840px);
}

.room-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.72));
}

.room-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 850ms var(--ease),
    filter 450ms ease;
}

.room-card--plan img {
  padding: clamp(10px, 1.4vw, 24px);
  background: #d4d2cb;
  object-fit: contain;
}

.room-card:hover img {
  transform: scale(1.022);
}

.room-card--plan:hover img {
  transform: scale(1.012);
}

.room-card--soon img {
  filter: saturate(0.35) contrast(0.9);
}

.room-card-copy {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 3px 12px;
  min-width: 0;
}

.room-card-copy > p {
  grid-row: 1 / 4;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.room-card-copy h3 {
  min-width: 0;
  margin: 0;
  font-size: clamp(27px, 2.25vw, 40px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
  overflow-wrap: break-word;
}

.room-card-copy > span {
  grid-column: 2 / -1;
  max-width: 390px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.room-card-copy em {
  align-self: center;
  grid-column: 3;
  grid-row: 1;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rail-hint {
  max-width: var(--max);
  padding: 12px var(--pad) 0;
  margin: 0 auto;
  color: #8d9189;
  font-size: 12px;
  text-align: right;
}

.rail-hint span {
  margin-left: 8px;
}

.studio-expressions {
  max-width: none;
  background: var(--paper-pale);
}

.studio-expressions .section-heading,
.studio-expression-grid {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.studio-expression-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 34px);
}

.studio-expression-card {
  min-width: 0;
}

.studio-expression-card figure {
  display: grid;
  aspect-ratio: 1165 / 912;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eceae3;
  place-items: center;
}

.studio-expression-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 700ms var(--ease);
}

.studio-expression-card:hover img {
  transform: scale(1.012);
}

.studio-expression-card > div {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 2px 12px;
  padding: 16px 2px 28px;
  border-bottom: 1px solid var(--line);
}

.studio-expression-card span {
  grid-row: 1 / 3;
  padding-top: 7px;
  color: var(--muted);
  font-size: 10px;
}

.studio-expression-card h3 {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 40px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.studio-expression-card p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.fire-ice-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(50px, 8vw, 140px);
  align-items: center;
  max-width: none;
  color: #f7f5ee;
  background: #1b1d19;
}

.fire-ice-feature-copy {
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}

.fire-ice-feature .section-index {
  color: #92978e;
}

.partner-mark {
  margin: 26px 0 0;
  font-size: clamp(18px, 1.5vw, 25px);
  letter-spacing: -0.035em;
}

.partner-mark span {
  padding: 0 6px;
  color: #a3a89e;
  font-weight: 300;
}

.fire-ice-feature h2 {
  margin: 14px 0 24px;
  font-size: clamp(58px, 7.4vw, 128px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.fire-ice-feature-copy > p:not(.section-index, .partner-mark) {
  max-width: 520px;
  color: #b5b9b0;
  font-size: clamp(17px, 1.25vw, 21px);
}

.fire-ice-facts {
  display: grid;
  gap: 0;
  margin: 40px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fire-ice-facts div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.fire-ice-facts dt,
.fire-ice-facts dd {
  margin: 0;
  font-size: 12px;
}

.fire-ice-facts dt {
  color: #83887f;
}

.fire-ice-feature-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius) 0 0 var(--radius);
}

.fire-ice-feature-media img {
  width: 100%;
  height: auto;
}

.configurator {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.5fr);
  gap: clamp(44px, 7vw, 120px);
  align-items: start;
}

.config-visual {
  position: sticky;
  top: 94px;
  aspect-ratio: 16 / 10.5;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d8d6cf;
}

.config-visual img,
.toggle-frame > img,
.config-image-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition:
    opacity 650ms var(--ease),
    transform 900ms var(--ease);
}

.config-visual img {
  padding: clamp(12px, 2vw, 34px);
  object-fit: contain;
  transform: scale(1.012);
}

.config-visual img.is-active,
.toggle-frame > img.is-active,
.config-image-stack img.is-active {
  z-index: 1;
  opacity: 1;
  transform: none;
}

.config-visual-label {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(248, 247, 242, 0.86);
  font-size: 11px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.config-panel {
  min-width: 0;
  padding-top: 8px;
}

.config-panel h2 {
  margin: 20px 0 22px;
  font-size: clamp(38px, 3.7vw, 68px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.99;
  text-wrap: balance;
}

.config-panel > p:not(.section-index) {
  max-width: 520px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 17px;
}

.choice-list {
  padding: 0;
  margin: 0 0 28px;
  border: 0;
}

.choice {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition:
    padding 260ms var(--ease),
    background 220ms ease;
}

.choice:last-child {
  border-bottom: 1px solid var(--line);
}

.choice:hover,
.choice.is-selected {
  padding-right: 12px;
  padding-left: 12px;
}

.choice input,
.model-option input,
.studio-model-card input,
.finish-card input,
.entry-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-number {
  color: var(--muted);
  font-size: 10px;
}

.choice b,
.choice small {
  display: block;
}

.choice b {
  margin-bottom: 4px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.choice small {
  color: var(--muted);
  font-size: 12px;
}

.choice i {
  font-style: normal;
  opacity: 0;
  transform: translate(-8px, 8px);
  transition:
    opacity 200ms ease,
    transform 240ms var(--ease);
}

.choice:hover i,
.choice.is-selected i {
  opacity: 1;
  transform: none;
}

.choice.is-selected {
  background: rgba(255, 255, 255, 0.62);
}

.toggle-story {
  max-width: none;
  background: var(--paper-soft);
}

.toggle-story .section-heading,
.toggle-frame {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.toggle-frame {
  position: relative;
  aspect-ratio: 16 / 9.15;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d1d1ca;
}

.toggle-frame > img {
  object-fit: contain;
  background: #d7d6cf;
}

.segmented-control {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 50%;
  display: flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(248, 247, 242, 0.9);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.segmented-control button {
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  white-space: nowrap;
}

.segmented-control button.is-active {
  color: var(--ink);
  background: #fff;
}

.interiors {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.62fr);
  grid-template-areas:
    "title secondary"
    "main secondary";
  gap: clamp(30px, 5vw, 78px);
  align-items: end;
}

.interior-title {
  grid-area: title;
}

.interior-main,
.interior-secondary {
  margin: 0;
}

.interior-main {
  grid-area: main;
}

.interior-secondary {
  grid-area: secondary;
}

.interior-main img,
.interior-secondary img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.interior-main img {
  aspect-ratio: 4 / 3;
}

.interior-secondary img {
  aspect-ratio: 4 / 5.35;
}

.interiors figcaption {
  padding-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.pathways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: none;
  background: var(--paper-soft);
}

.pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 690px;
  padding: clamp(30px, 4vw, 68px);
  overflow: hidden;
  border-radius: var(--radius);
}

.pathway-card--dark {
  color: #f5f3ec;
  background: #20231e;
}

.pathway-card--dark .section-index {
  color: #9b9f96;
}

.pathway-card > span,
.pathway-card > div > span {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 13px;
}

.pathway-card i {
  font-style: normal;
  transition: transform 250ms var(--ease);
}

.pathway-card:hover i {
  transform: translateX(5px);
}

.pathway-card--image {
  justify-content: flex-end;
  color: #fff;
  background: #465348;
}

.pathway-card--image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(12, 17, 13, 0.78));
}

.pathway-card--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.pathway-card--image:hover img {
  transform: scale(1.025);
}

.pathway-card--image > div {
  position: relative;
  z-index: 2;
}

.pathway-card--image .section-index {
  color: rgba(255, 255, 255, 0.66);
}

.final-cta {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
}

.final-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-copy {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: clamp(50px, 8vw, 116px);
  left: var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  color: #fff;
}

.final-cta-copy .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.final-cta h2 {
  max-width: 980px;
  margin-bottom: 42px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 40px;
  padding: 80px var(--pad) 34px;
  color: #f3f1e9;
  background: #171916;
}

.footer-brand {
  display: block;
  margin-bottom: 20px;
  font-size: clamp(46px, 6vw, 94px);
  letter-spacing: -0.065em;
}

.site-footer p,
.site-footer a {
  margin: 0 0 8px;
  color: #989d94;
  font-size: 13px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-legal {
  grid-column: 1 / -1;
  max-width: 760px;
  padding-top: 60px;
}

/* Interior pages */

.page-main {
  padding-top: 1px;
}

.page-intro {
  max-width: var(--max);
  padding: clamp(160px, 20vh, 245px) var(--pad) clamp(90px, 11vw, 170px);
  margin: 0 auto;
}

.page-intro h1 {
  max-width: 1320px;
  margin: 26px 0 44px;
  font-size: clamp(64px, 9.5vw, 164px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.91;
  text-wrap: balance;
}

.page-intro-copy {
  max-width: 760px;
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: clamp(20px, 2.15vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: pretty;
}

.page-intro--about {
  padding-bottom: clamp(60px, 7vw, 110px);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 86px);
  padding-top: 0;
}

.person {
  min-width: 0;
}

.person figure {
  aspect-ratio: 1.32;
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9d8d0;
}

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

.person-heading {
  padding: 24px 0 22px;
  border-top: 1px solid var(--ink);
}

.person-heading h2 {
  margin: 0 0 7px;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.person-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.person > p {
  max-width: 690px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.6;
}

.origin {
  border-top: 1px solid var(--line);
}

.origin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.55fr);
  gap: clamp(50px, 9vw, 150px);
  margin-top: 36px;
}

.origin h2 {
  margin-top: 0;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #f4f2eb;
  background: var(--ink);
}

.about-values article {
  min-height: 410px;
  padding: clamp(28px, 4vw, 68px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-values article:last-child {
  border-right: 0;
}

.about-values span {
  color: #979b92;
  font-size: 10px;
}

.about-values h3 {
  margin: 100px 0 18px;
  font-size: clamp(29px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.about-values p {
  max-width: 390px;
  margin: 0;
  color: #a9ada5;
  font-size: 16px;
}

.page-cta {
  padding: clamp(100px, 14vw, 220px) var(--pad);
  color: #f4f2eb;
  background: #394338;
}

.page-cta h2 {
  max-width: 1150px;
  margin-bottom: 50px;
}

.page-cta .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.how-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.52fr);
  gap: clamp(44px, 7vw, 115px);
  align-items: center;
  padding-top: 0;
}

.editorial-figure {
  position: relative;
  aspect-ratio: 16 / 10.5;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d5d3cb;
}

.editorial-figure img {
  width: 100%;
  height: 100%;
  padding: clamp(8px, 1.4vw, 22px);
  object-fit: contain;
}

.editorial-figure figcaption {
  color: var(--ink);
}

.how-hero-copy h2 {
  margin-top: 22px;
  font-size: clamp(40px, 4.8vw, 80px);
}

.how-hero-copy > p:last-child,
.junction-copy > p,
.technical-intro > p:last-child,
.planning-copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  text-wrap: pretty;
}

.delivery {
  max-width: none;
  background: var(--paper-soft);
}

.delivery .section-heading,
.delivery .process-list {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-list li {
  min-width: 0;
  min-height: 300px;
  padding: 20px;
  border-top: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.3);
}

.process-list span {
  color: var(--muted);
  font-size: 10px;
}

.process-list h3 {
  margin: 78px 0 12px;
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.technical-band {
  padding-bottom: clamp(90px, 10vw, 160px);
  color: #f5f3ec;
  background: #1b1d19;
}

.technical-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(290px, 0.62fr);
  grid-template-areas:
    "index copy"
    "title copy";
  gap: 24px clamp(50px, 8vw, 140px);
}

.technical-intro .section-index {
  grid-area: index;
  color: #9da098;
}

.technical-intro h2 {
  grid-area: title;
  max-width: 1040px;
}

.technical-intro > p:last-child {
  grid-area: copy;
  align-self: end;
  color: #aaaea5;
}

.technical-sheet {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 24, 0.1);
  border-radius: var(--radius);
  background: #eeece5;
}

.technical-sheet--wide {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin: 0 auto;
}

.technical-sheet img {
  width: 100%;
  height: auto;
}

.junctions {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
}

.junction-copy h2 {
  font-size: clamp(40px, 4.6vw, 76px);
}

.spec-list {
  margin: 44px 0 0;
}

.spec-list div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.spec-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  font-size: 13px;
}

.spec-list dt {
  color: var(--muted);
}

.planning-context {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: none;
  color: #f4f2eb;
  background: #242721;
}

.planning-copy {
  min-width: 0;
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}

.planning-copy .section-index {
  color: #9ca097;
}

.planning-copy h2 {
  max-width: 800px;
  font-size: clamp(42px, 4.8vw, 80px);
  overflow-wrap: normal;
}

.planning-copy > p {
  color: #aeb2a9;
}

.planning-copy .text-link {
  margin-top: 32px;
}

.planning-context-image {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.planning-context-image img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  object-position: center;
}

.site-review {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 10vw, 170px);
}

.site-review h2 {
  max-width: 760px;
  font-size: clamp(43px, 5vw, 84px);
}

.review-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.review-list li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 22px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
}

.review-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.review-list span {
  font-weight: 500;
}

.review-list p {
  margin: 0;
  color: var(--muted);
}

/* Dedicated configurator */

.configure-page {
  height: 100vh;
  overflow: hidden;
  background: #eeece5;
}

.config-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(243, 241, 234, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.config-progress {
  display: flex;
  align-items: center;
  gap: 9px;
}

.config-progress button {
  display: flex;
  gap: 7px;
  padding: 6px 0;
  border: 0;
  cursor: pointer;
  color: #999b95;
  background: transparent;
  font-size: 11px;
  text-transform: uppercase;
}

.config-progress button span {
  color: #b4b6b0;
}

.config-progress button.is-active,
.config-progress button.is-complete {
  color: var(--ink);
}

.config-progress button.is-complete span {
  color: var(--blue-dark);
}

.config-progress i {
  width: 34px;
  height: 1px;
  background: var(--line);
}

.config-close {
  display: grid;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.config-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(440px, 0.68fr);
  height: calc(100vh - 74px);
}

.config-stage {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  padding: 22px;
  background: #dddcd5;
}

.config-image-stack {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: #d3d2cb;
}

.config-image-stack img {
  padding: clamp(10px, 1.5vw, 26px);
  object-fit: contain;
}

.config-stage-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 2px 0;
}

.config-stage-caption p,
.config-stage-caption span {
  margin: 0;
  font-size: 12px;
}

.config-stage-caption span,
.config-stage-caption > p {
  color: var(--muted);
}

.image-note {
  position: absolute;
  top: 38px;
  left: 38px;
  z-index: 4;
  margin: 0;
  padding: 8px 11px;
  border-radius: 999px;
  color: #5f625c;
  background: rgba(248, 247, 242, 0.82);
  font-size: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.config-options-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  background: var(--paper-pale);
}

.config-page-step {
  width: 100%;
  max-width: 720px;
  padding: clamp(42px, 5vw, 76px) clamp(28px, 4.6vw, 72px) 50px;
  margin: 0 auto;
}

.config-page-step[hidden] {
  display: none;
}

.config-page-step h1 {
  margin: 18px 0 17px;
  font-size: clamp(42px, 4.2vw, 70px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.config-lead {
  max-width: 580px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 16px;
  text-wrap: pretty;
}

.model-options {
  display: grid;
  gap: 10px;
}

.model-option {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms var(--ease);
}

.model-option:hover {
  transform: translateY(-2px);
}

.model-option.is-selected,
.finish-card.is-selected,
.entry-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.model-option img {
  width: 128px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #d7d6cf;
  object-fit: contain;
}

.model-option b,
.model-option small,
.model-option em {
  display: block;
}

.model-option b {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.18;
}

.model-option small {
  color: var(--muted);
  font-size: 12px;
}

.model-option em {
  padding: 6px 8px;
  border-radius: 999px;
  color: #49714c;
  background: #e5efe2;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.coming-options {
  padding-top: 30px;
}

.studio-models {
  padding: 0;
  margin: 30px 0 0;
  border: 0;
}

.studio-models[hidden] {
  display: none;
}

.studio-models legend {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-model-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.studio-model-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 220ms var(--ease);
}

.studio-model-card:hover {
  transform: translateY(-2px);
}

.studio-model-card.is-selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.studio-model-card img {
  width: 100%;
  aspect-ratio: 1165 / 912;
  background: #e4e2dc;
  object-fit: contain;
}

.studio-model-card span {
  display: block;
  padding: 10px 11px 12px;
}

.studio-model-card b,
.studio-model-card small {
  display: block;
}

.studio-model-card b {
  font-size: 13px;
  font-weight: 500;
}

.studio-model-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

/* Fire + Ice product page */

.product-page {
  background: var(--paper-pale);
}

.product-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: #1a1c18;
}

.product-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(10, 13, 10, 0.1) 35%, rgba(10, 13, 10, 0.7));
}

.product-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-copy {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: clamp(42px, 7vw, 110px);
  left: var(--pad);
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin: 0 auto;
}

.product-hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.product-hero .partner-mark {
  margin-top: 20px;
}

.product-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(78px, 13vw, 230px);
  font-weight: 400;
  letter-spacing: -0.085em;
  line-height: 0.82;
}

.product-hero-copy > p:last-child {
  max-width: 530px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.6vw, 27px);
}

.product-intro {
  max-width: none;
}

.product-intro > .section-index,
.product-intro-grid,
.product-spec-strip {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.product-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(48px, 9vw, 160px);
  align-items: start;
  margin-top: 24px;
}

.product-spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(72px, 9vw, 130px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-spec-strip div {
  min-height: 140px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.product-spec-strip div:last-child {
  border-right: 0;
}

.product-spec-strip dt,
.product-spec-strip dd {
  margin: 0;
}

.product-spec-strip dt {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-spec-strip dd {
  margin-top: 40px;
  font-size: 15px;
}

.product-cutaway {
  max-width: none;
  background: var(--paper-soft);
}

.product-cutaway .section-heading,
.product-cutaway-image,
.product-callouts {
  max-width: calc(var(--max) - (var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.product-cutaway-image {
  display: grid;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f5f1e9;
  place-items: center;
}

.product-cutaway-image img {
  width: 100%;
  height: auto;
}

.product-callouts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin-top: 28px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.product-callouts li {
  min-height: 185px;
  padding: 17px 18px 24px;
  border-right: 1px solid var(--line);
}

.product-callouts li:last-child {
  border-right: 0;
}

.product-callouts span {
  color: var(--muted);
  font-size: 10px;
}

.product-callouts p,
.product-callouts b {
  display: block;
}

.product-callouts p {
  margin: 60px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-callouts b {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.product-materials {
  display: grid;
  grid-template-columns: minmax(320px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(54px, 8vw, 140px);
  align-items: center;
}

.product-materials-copy h2,
.product-partner h2 {
  margin: 22px 0 26px;
  font-size: clamp(45px, 5.3vw, 92px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.product-materials-copy > p:last-child,
.product-partner > div:last-child p {
  color: var(--muted);
  font-size: 17px;
}

.product-materials > img {
  width: 100%;
  border-radius: var(--radius);
}

.product-partner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.58fr);
  gap: clamp(54px, 10vw, 180px);
  max-width: none;
  background: #e2ded2;
}

.product-partner > div:first-child {
  padding-left: max(0px, calc((100vw - var(--max)) / 2));
}

.product-partner > div:last-child {
  align-self: end;
  max-width: 560px;
  padding-right: max(0px, calc((100vw - var(--max)) / 2));
}

.coming-options > p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-options > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.coming-options button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #979992;
  background: #eeede8;
  text-align: left;
}

.coming-options button span {
  font-size: 13px;
}

.coming-options button small {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.finish-grid,
.entry-grid {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.finish-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finish-card,
.entry-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
}

.material-swatch {
  display: block;
  aspect-ratio: 1.55;
  background-size: cover;
}

.material-swatch--natural {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 50%),
    repeating-linear-gradient(90deg, #bea27d 0 20px, #987d60 21px 23px);
}

.material-swatch--silvered {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 50%),
    repeating-linear-gradient(90deg, #a49e91 0 20px, #7f7a72 21px 23px);
}

.material-swatch--dark {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), transparent 50%),
    repeating-linear-gradient(90deg, #51493d 0 20px, #302e2a 21px 23px);
}

.finish-card > span,
.entry-card > span {
  display: block;
  padding: 14px;
}

.finish-card b,
.finish-card small,
.entry-card b,
.entry-card small {
  display: block;
}

.finish-card b,
.entry-card b {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
}

.finish-card small,
.entry-card small {
  color: var(--muted);
  font-size: 11px;
}

.config-detail {
  margin-top: 38px;
}

.config-detail > p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.config-detail dl {
  margin: 0;
}

.config-detail dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.config-detail dl div:last-child {
  border-bottom: 1px solid var(--line);
}

.config-detail dt,
.config-detail dd {
  margin: 0;
  font-size: 12px;
}

.config-detail dt {
  color: var(--muted);
}

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

.entry-card img {
  width: 100%;
  aspect-ratio: 1.45;
  background: #d6d5ce;
  object-fit: cover;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 17px;
  letter-spacing: normal;
  text-transform: none;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--blue-dark);
}

.configuration-summary {
  display: grid;
  gap: 4px;
  padding: 22px;
  margin-top: 30px;
  border-radius: 14px;
  background: #fff;
}

.configuration-summary > p,
.configuration-summary > span,
.configuration-summary > small {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.configuration-summary h2 {
  margin: 7px 0 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.configuration-summary > small {
  max-width: 560px;
  padding-top: 17px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  line-height: 1.55;
}

.share-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
}

.config-controls {
  position: sticky;
  z-index: 5;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(28px, 4.6vw, 72px);
  border-top: 1px solid var(--line);
  background: rgba(248, 247, 242, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.config-controls > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.config-controls p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 250;
  right: 24px;
  bottom: 24px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #fff;
  background: #171916;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 200ms ease,
    transform 260ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 820ms var(--ease),
    transform 820ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 100px var(--pad);
    border: 0;
    border-radius: 0;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition:
      opacity 280ms ease,
      transform 380ms var(--ease);
  }

  .site-nav a {
    padding: 4px 0;
    font-size: clamp(38px, 8vw, 72px);
    letter-spacing: -0.06em;
  }

  .site-nav a:hover {
    background: transparent;
  }

  .is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    cursor: pointer;
  }

  .menu-toggle i,
  .menu-toggle i::after {
    display: block;
    width: 20px;
    height: 1px;
    content: "";
    background: currentColor;
    transition: transform 240ms var(--ease);
  }

  .menu-toggle i::after {
    transform: translateY(6px);
  }

  .is-menu-open .menu-toggle i {
    transform: rotate(45deg) translateY(2px);
  }

  .is-menu-open .menu-toggle i::after {
    transform: rotate(-90deg);
  }

  .hero-copy,
  .manifesto-grid,
  .section-heading,
  .origin-grid,
  .technical-intro {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    grid-template-areas:
      "eyebrow"
      "title"
      "intro"
      "actions";
  }

  .hero-intro {
    max-width: 680px;
    margin-top: 18px;
  }

  .manifesto-grid {
    gap: 50px;
  }

  .fire-ice-feature,
  .product-intro-grid,
  .product-materials,
  .product-partner {
    grid-template-columns: 1fr;
  }

  .fire-ice-feature-copy,
  .product-partner > div:first-child,
  .product-partner > div:last-child {
    max-width: 760px;
    padding-right: 0;
    padding-left: 0;
  }

  .fire-ice-feature-media {
    border-radius: var(--radius);
  }

  .product-spec-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-spec-strip div:nth-child(2) {
    border-right: 0;
  }

  .product-spec-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .product-callouts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-callouts li:nth-child(3) {
    border-right: 0;
  }

  .product-callouts li:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .body-copy {
    justify-self: end;
  }

  .configurator,
  .how-hero,
  .junctions,
  .planning-context,
  .site-review {
    grid-template-columns: 1fr;
  }

  .config-visual {
    position: relative;
    top: auto;
    aspect-ratio: 16 / 10;
  }

  .config-panel {
    max-width: 720px;
  }

  .technical-intro {
    grid-template-areas:
      "index"
      "title"
      "copy";
  }

  .technical-intro > p:last-child {
    max-width: 720px;
  }

  .planning-copy {
    max-width: 980px;
    padding: 0;
  }

  .planning-context-image img {
    aspect-ratio: 16 / 9;
  }

  .site-review {
    gap: 54px;
  }

  .process-list--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .configure-page {
    height: auto;
    overflow: auto;
  }

  .config-shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .config-stage {
    position: sticky;
    z-index: 8;
    top: 74px;
    height: min(58vh, 680px);
    min-height: 430px;
  }

  .config-options-panel {
    overflow: visible;
  }
}

@media (max-width: 760px) {
  :root {
    --radius: 13px;
  }

  .site-header {
    min-height: 66px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(51px, 16vw, 80px);
    letter-spacing: -0.07em;
    overflow-wrap: normal;
  }

  .hero-intro {
    font-size: 20px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
  }

  .hero-media {
    min-height: 61vh;
  }

  .hero-media img {
    min-height: 67vh;
  }

  .hero-media figcaption {
    right: 14px;
    bottom: 12px;
    left: 14px;
  }

  .hero-media figcaption span:last-child,
  .editorial-figure figcaption span:last-child {
    display: none;
  }

  .section-pad {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 42px;
  }

  .display-copy,
  .section-heading h2,
  .interior-title h2,
  .pathway-card h2,
  .how-hero-copy h2,
  .junction-copy h2,
  .technical-intro h2,
  .planning-copy h2,
  .site-review h2,
  .origin h2,
  .page-cta h2,
  .final-cta h2 {
    max-width: 100%;
    font-size: clamp(40px, 12.5vw, 62px);
    letter-spacing: -0.06em;
    overflow-wrap: normal;
  }

  .body-copy {
    justify-self: auto;
  }

  .studio-expression-grid {
    grid-template-columns: 1fr;
  }

  .studio-expression-card > div {
    padding-bottom: 18px;
  }

  .fire-ice-feature {
    gap: 46px;
  }

  .fire-ice-feature h2 {
    font-size: clamp(66px, 22vw, 104px);
  }

  .fire-ice-feature-media {
    margin-right: calc(var(--pad) * -1);
    margin-left: calc(var(--pad) * -1);
    border-radius: 0;
  }

  .room-card,
  .room-card--wide {
    flex-basis: min(86vw, 430px);
    min-height: 560px;
  }

  .room-card-copy {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 25px minmax(0, 1fr);
  }

  .room-card-copy h3 {
    font-size: 30px;
  }

  .room-card-copy em {
    justify-self: start;
    grid-column: 2;
    grid-row: auto;
    margin-top: 8px;
  }

  .configurator {
    gap: 50px;
  }

  .config-visual {
    aspect-ratio: 4 / 3.45;
  }

  .config-visual img {
    padding: 8px;
  }

  .choice {
    grid-template-columns: 24px minmax(0, 1fr) auto;
  }

  .toggle-frame {
    aspect-ratio: 4 / 3.4;
  }

  .segmented-control {
    bottom: 12px;
  }

  .segmented-control button {
    padding: 10px 12px;
    font-size: 11px;
  }

  .interiors {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "main"
      "secondary";
  }

  .interior-main img,
  .interior-secondary img {
    aspect-ratio: auto;
    height: auto;
  }

  .interior-secondary {
    width: 82%;
    margin-left: auto;
  }

  .pathways,
  .people-grid,
  .about-values {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 540px;
  }

  .final-cta {
    min-height: 78vh;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 64px;
  }

  .footer-legal {
    padding-top: 28px;
  }

  .page-intro {
    padding-top: 132px;
    padding-bottom: 74px;
  }

  .page-intro h1 {
    margin-top: 20px;
    font-size: clamp(58px, 17vw, 88px);
    overflow-wrap: normal;
  }

  .page-intro-copy {
    margin-left: 0;
    font-size: 20px;
  }

  .people-grid {
    gap: 84px;
  }

  .person figure {
    aspect-ratio: 1;
  }

  .about-values article {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-values article:last-child {
    border-bottom: 0;
  }

  .about-values h3 {
    margin-top: 70px;
  }

  .editorial-figure {
    aspect-ratio: 4 / 3.2;
  }

  .process-list,
  .process-list--five {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 210px;
  }

  .process-list h3 {
    margin-top: 45px;
  }

  .technical-band {
    padding-bottom: 74px;
  }

  .technical-sheet,
  .technical-sheet--wide {
    border-radius: 8px;
    overflow-x: auto;
  }

  .technical-sheet img {
    width: 150%;
    max-width: none;
  }

  .spec-list div {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .planning-context {
    gap: 48px;
  }

  .planning-copy h2 {
    line-height: 1;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
  }

  .planning-context-image img {
    aspect-ratio: 4 / 3;
  }

  .review-list li {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
  }

  .config-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .config-progress {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    justify-content: space-around;
    gap: 0;
    padding: 8px 12px;
    border-top: 1px solid var(--line);
    background: rgba(248, 247, 242, 0.96);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .config-progress i {
    display: none;
  }

  .config-progress button {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    min-width: 64px;
    font-size: 9px;
  }

  .config-close {
    width: 38px;
    height: 38px;
  }

  .config-stage {
    top: 64px;
    height: 46vh;
    min-height: 320px;
    padding: 10px;
  }

  .config-image-stack {
    border-radius: 10px;
  }

  .config-image-stack img {
    padding: 4px;
  }

  .image-note {
    display: none;
  }

  .config-stage-caption {
    gap: 10px;
    padding: 9px 2px 0;
  }

  .config-stage-caption > p {
    text-align: right;
  }

  .config-page-step {
    padding: 58px 20px 42px;
  }

  .config-page-step h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .model-option {
    grid-template-columns: 98px minmax(0, 1fr);
    gap: 12px;
  }

  .model-option img {
    width: 98px;
  }

  .model-option em {
    justify-self: start;
    grid-column: 2;
    margin-top: 2px;
  }

  .studio-model-grid {
    grid-template-columns: 1fr;
  }

  .studio-model-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
  }

  .studio-model-card img {
    height: 100%;
    min-height: 94px;
  }

  .product-hero {
    min-height: 88svh;
  }

  .product-hero > img {
    object-position: 54% center;
  }

  .product-hero h1 {
    font-size: clamp(78px, 24vw, 122px);
  }

  .product-hero-copy > p:last-child {
    font-size: 18px;
  }

  .product-spec-strip {
    grid-template-columns: 1fr;
  }

  .product-spec-strip div,
  .product-spec-strip div:nth-child(2) {
    min-height: 108px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-spec-strip div:last-child {
    border-bottom: 0;
  }

  .product-spec-strip dd {
    margin-top: 18px;
  }

  .product-callouts {
    grid-template-columns: 1fr;
  }

  .product-callouts li,
  .product-callouts li:nth-child(3) {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-callouts p {
    margin: 0;
  }

  .is-menu-open .site-header--dark:not(.is-scrolled) {
    color: var(--ink);
  }

  .coming-options > div,
  .finish-grid,
  .entry-grid,
  .share-actions {
    grid-template-columns: 1fr;
  }

  .finish-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
  }

  .material-swatch {
    height: 100%;
    min-height: 92px;
    aspect-ratio: auto;
  }

  .config-controls {
    bottom: 55px;
    padding: 11px 20px;
  }

  .config-controls .button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 12px;
  }

  .config-controls p {
    display: none;
  }

  .toast {
    right: 14px;
    bottom: 70px;
    left: 14px;
    text-align: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
