:root {
  --navy: #102a34;
  --navy-2: #153642;
  --header-blue: #102a34;
  --ink: #121416;
  --muted: #6e7478;
  --line: #d9d5ca;
  --paper: #f8f7f3;
  --white: #fffdf8;
  --gold: #eacd75;
  --gold-2: #eacd75;
  --charcoal: #24272a;
  --font-sans: Inter, "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-serif: var(--font-sans);
  --max: 1440px;
  --pad: clamp(18px, 4vw, 64px);
  --section: clamp(72px, 12vw, 170px);
  --h1: clamp(46px, 5.4vw, 96px);
  --h2: clamp(34px, 3.8vw, 64px);
  --h3: clamp(20px, 1.55vw, 28px);
  --body: clamp(16px, 1vw, 18px);
  --feature-title: clamp(34px, 3.25vw, 58px);
  --feature-copy: clamp(16px, 1vw, 19px);
  --eyebrow-size: clamp(12px, .85vw, 15px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

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

button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-140%);
}

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

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

.site-header {
  position: sticky;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 116px;
  padding: 18px var(--pad);
  background: var(--header-blue);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(16, 42, 52, .96);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
}

.brand img { width: 260px; height: auto; }

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav a,
.nav-dropdown-toggle {
  position: relative;
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.78);
  font: inherit;
  cursor: pointer;
}

.site-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.is-current::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after { transform: scaleX(1); }

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.is-current,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--white);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 120;
  display: grid;
  min-width: 250px;
  padding: 24px 12px 12px;
  background: rgba(16, 42, 52, .98);
  border: 1px solid rgba(234, 205, 117, .28);
  box-shadow: 0 26px 60px rgba(0,0,0,.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 0);
  transition: opacity .22s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel a {
  padding: 13px 14px;
  color: rgba(255,255,255,.8);
  font-size: 16px;
  white-space: nowrap;
  margin-top: 0;
}

.nav-dropdown-panel a::after {
  bottom: 8px;
  left: 14px;
  right: 14px;
}

.nav-dropdown-panel a:hover,
.nav-dropdown-panel a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.site-nav a.nav-cta {
  min-width: 154px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #c59a50;
  color: var(--white) !important;
  padding: 14px 24px !important;
  text-align: center;
}

.site-nav a.nav-cta::after { display: none; }

.site-nav a.nav-cta:hover,
.site-nav a.nav-cta[aria-current="page"] {
  background: var(--gold-2);
  color: var(--navy) !important;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  color: currentColor;
  padding: 11px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 6px 0;
}

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.18) contrast(1.08);
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,24,38,.88), rgba(7,24,38,.32) 52%, rgba(7,24,38,.7)), linear-gradient(0deg, rgba(7,24,38,.95), rgba(7,24,38,0) 45%);
}

.home-video-hero {
  background: var(--white);
}

.home-video-hero .hero-media video {
  filter: none;
}

.home-video-hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 86px var(--pad) 56px;
}

.eyebrow {
  color: var(--gold-2);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, .page-title {
  max-width: 1080px;
  margin-bottom: 24px;
  font-size: var(--h1);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h2 {
  font-size: var(--h2);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  font-size: var(--h3);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 27px);
  overflow-wrap: anywhere;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}

.btn:hover { transform: translateY(-2px); background: var(--gold-2); }

.btn.secondary {
  background: transparent;
  color: inherit;
  border-color: rgba(255,255,255,.38);
}

.btn.dark { color: var(--white); background: var(--navy); border-color: var(--navy); }

.section {
  padding: clamp(64px, 8vw, 132px) var(--pad);
}

.section.dark {
  background: var(--navy);
  color: var(--white);
}

.section.white { background: var(--white); }

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(180px, .6fr) minmax(0, 1.4fr);
  gap: clamp(24px, 5vw, 90px);
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 86px);
}

.lede {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.25;
}

.dark .lede { color: rgba(255,255,255,.72); }

.home-projects-section h2 {
  max-width: 980px;
  font-size: var(--feature-title);
  line-height: 1.08;
  text-transform: none;
}

.home-projects-section .lede {
  max-width: 980px;
  margin-top: 18px;
  font-size: var(--feature-copy);
  line-height: 1.42;
}

.project-directory-section .section-head {
  align-items: center;
}

.project-directory-section .eyebrow,
.project-directory-section h2,
.project-directory-section .btn {
  text-transform: none;
}

.project-directory-section .eyebrow {
  letter-spacing: .08em;
}

.project-directory-section h2 {
  max-width: 860px;
  font-size: var(--h2);
  line-height: 1.08;
}

.project-directory-section .lede {
  max-width: 760px;
  font-size: var(--feature-copy);
  line-height: 1.42;
}

.project-directory-section .btn {
  font-size: 14px;
  letter-spacing: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.principle {
  background: var(--paper);
  padding: clamp(24px, 4vw, 54px);
  min-height: 260px;
}

.principle .number {
  display: block;
  color: var(--gold);
  margin-bottom: 70px;
  font-weight: 800;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 38px);
}

.project-card {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: transform .55s ease, opacity .55s ease;
}

.project-card:hover img { transform: scale(1.045); opacity: .62; }

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7,24,38,.92), rgba(7,24,38,.1) 58%);
}

.project-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(22px, 4vw, 52px);
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.stat {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat b {
  display: block;
  margin-top: 8px;
  font-size: clamp(20px, 3vw, 36px);
  line-height: 1;
}

.journal-list {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.18);
}

.journal-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr .7fr;
  gap: 28px;
  padding: 34px clamp(36px, 5vw, 72px);
  border-top: 1px solid rgba(255,255,255,.18);
}

.journal-item p { color: rgba(255,255,255,.7); margin-bottom: 0; }

.innovation-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 90px);
  align-items: center;
}

.image-frame {
  position: relative;
  min-height: 580px;
  background: var(--navy);
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: .88;
}

.caption {
  border-left: 2px solid var(--gold);
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
}

.process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 6vw, 100px);
}

.process-steps {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 30px;
  background: var(--white);
}

.process-step span {
  color: var(--gold);
  font-weight: 850;
}

.process-hero {
  min-height: auto;
  padding: clamp(58px, 7vh, 96px) var(--pad) clamp(34px, 4vw, 58px);
  background: var(--white);
  color: var(--ink);
  display: grid;
  gap: clamp(42px, 5vw, 76px);
  align-items: start;
}

.process-hero-inner {
  display: grid;
  grid-template-columns: minmax(180px, .45fr) minmax(0, 1.35fr) minmax(280px, .7fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
}

.process-hero-title {
  max-width: var(--max);
  text-align: center;
}

.process-hero-copy {
  max-width: var(--max);
}

.process-hero h1 {
  max-width: var(--max);
  margin: 0 auto;
  color: #333436;
  font-size: var(--h1);
  font-weight: 480;
  line-height: 1.12;
  text-transform: none;
}

.process-hero h2 {
  max-width: 900px;
  margin: 14px auto 0;
  color: #5f666a;
  font-size: clamp(18px, 1.55vw, 26px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: none;
}

.process-hero .hero-copy {
  color: #333436;
  font-size: clamp(22px, 2.1vw, 36px);
  line-height: 1.2;
}

.process-hero-copy p:not(.eyebrow) {
  max-width: 980px;
  color: #3d4549;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}

.process-hero-copy .eyebrow {
  margin-bottom: clamp(22px, 2.5vw, 34px);
}

.process-hero-copy p + p {
  margin-top: 16px;
}

.process-note {
  max-width: 520px;
  color: var(--muted);
}

.process-guide-section {
  padding-top: clamp(16px, 2.5vw, 42px);
}

.process-guide-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: start;
}

.process-guide-nav {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 14px;
  align-self: start;
}

.process-guide-nav-group {
  display: grid;
  gap: 7px;
}

.process-guide-nav strong {
  color: #6c6f70;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
}

.process-guide-nav a {
  color: #707476;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

.process-guide-nav a:hover {
  color: var(--navy);
}

.process-guide-cta {
  width: 100%;
  height: 22px;
  margin-top: 4px;
  background: var(--navy);
  color: transparent !important;
  overflow: hidden;
}

.process-guide-body {
  display: grid;
  gap: clamp(42px, 4.5vw, 68px);
}

.process-guide-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(260px, .48fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  min-height: 188px;
  padding: clamp(30px, 3.2vw, 48px);
  background: #d3e9e0;
  color: #073340;
}

.process-guide-band-design {
  margin-top: clamp(18px, 2vw, 34px);
  background: #f4e4c9;
}

.process-guide-band-build {
  margin-top: clamp(18px, 2vw, 34px);
  background: #5a43cb;
}

.process-guide-band-live {
  margin-top: clamp(18px, 2vw, 34px);
  background: #b8ddea;
}

.process-guide-band h2 {
  margin-bottom: 14px;
  color: #073340;
  font-size: clamp(28px, 2.1vw, 38px);
  font-weight: 650;
  line-height: 1.12;
  text-transform: none;
}

.process-guide-band p {
  max-width: 720px;
  margin: 0;
  color: #073340;
  font-size: clamp(14px, .95vw, 16px);
  font-weight: 600;
  line-height: 1.65;
}

.process-guide-band-build h2,
.process-guide-band-build h3,
.process-guide-band-build p,
.process-guide-band-build .process-guide-deliverable-icons span {
  color: #fff;
}

.process-guide-divider {
  width: 1px;
  height: 100%;
  min-height: 120px;
  background: #4aae8b;
}

.process-guide-band-design .process-guide-divider {
  background: #d6a83e;
}

.process-guide-band-build .process-guide-divider {
  background: rgba(255,255,255,.72);
}

.process-guide-band-live .process-guide-divider {
  background: #2b88a4;
}

.process-guide-deliverables {
  text-align: center;
}

.process-guide-deliverables h3 {
  margin-bottom: 24px;
  color: #073340;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 800;
  text-transform: none;
}

.process-guide-band-build .process-guide-deliverables h3 {
  color: #fff;
}

.process-guide-deliverable-icons {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.process-guide-deliverable-icons span {
  display: grid;
  justify-items: center;
  gap: 9px;
  color: #073340;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.process-guide-deliverable-icons i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #073340;
  color: #d3e9e0;
  font-size: 15px;
  font-style: normal;
  font-weight: 850;
}

.process-guide-band-build .process-guide-deliverable-icons i {
  background: #fff;
  color: #5a43cb;
}

.process-guide-callout {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: clamp(6px, 1.2vw, 18px);
  padding: clamp(22px, 2.2vw, 34px) clamp(24px, 4vw, 64px);
  background: #f1f1f1;
  color: #073340;
  text-align: center;
}

.process-guide-callout h2 {
  color: #073340;
  font-size: clamp(24px, 1.9vw, 34px);
  font-weight: 650;
  line-height: 1.2;
  text-transform: none;
}

.process-guide-callout p {
  max-width: 1220px;
  margin: 0;
  color: #073340;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.process-guide-callout + .process-guide-main {
  margin-top: clamp(-24px, -2vw, -14px);
}

.process-guide-main {
  display: grid;
  grid-template-columns: minmax(320px, .76fr) minmax(0, 1fr);
  gap: clamp(46px, 6vw, 92px);
  align-items: start;
}

.process-guide-image img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  display: block;
}

.process-guide-video-stack {
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.process-guide-video-stack video {
  width: 100%;
  aspect-ratio: 1 / .82;
  display: block;
  object-fit: cover;
  background: #0f1518;
  box-shadow: 0 10px 28px rgba(7, 20, 25, .12);
}

.process-guide-copy {
  display: grid;
  gap: 30px;
  color: #073340;
}

.process-guide-copy article {
  scroll-margin-top: 140px;
}

.process-guide-copy article + article {
  padding-top: 26px;
  border-top: 1px solid rgba(7, 51, 64, .16);
}

.process-guide-copy h3 {
  margin-bottom: 18px;
  color: #073340;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 650;
  line-height: 1.16;
  text-transform: none;
}

.process-guide-copy p {
  max-width: 820px;
  margin: 0;
  color: #073340;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.process-guide-copy ul {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0;
  padding-left: 18px;
  color: #073340;
}

.process-guide-copy ul ul {
  gap: 10px;
  margin-top: 12px;
}

.process-guide-copy li {
  padding-left: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
}

.process-guide-copy p + p {
  margin-top: 18px;
}

.process-guide-copy p + ul,
.process-guide-copy ul + p {
  margin-top: 18px;
}

.process-timeline {
  padding-top: clamp(30px, 4vw, 60px);
}

.timeline-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.timeline-node {
  min-height: 230px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 12px;
}

.timeline-node:first-child { border-left: 1px solid var(--line); }

.timeline-node span,
.contents-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.timeline-node strong {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 500;
}

.timeline-node em {
  color: var(--muted);
  font-style: normal;
}

.contents-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: start;
}

.contents-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.contents-list a {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 500;
}

.phase-section {
  padding: clamp(70px, 9vw, 150px) var(--pad);
  background: var(--white);
}

.phase-section.phase-alt {
  background: var(--paper);
}

.phase-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}

.phase-alt .phase-media {
  order: 2;
}

.phase-media {
  position: sticky;
  top: 128px;
  min-height: 520px;
  background: var(--navy);
  overflow: hidden;
}

.phase-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.phase-copy h2 {
  max-width: 900px;
  color: #333436;
  font-size: clamp(42px, 5.6vw, 104px);
  font-weight: 480;
  line-height: 1.05;
  text-transform: none;
}

.deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0;
}

.deliverables span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.phase-steps {
  display: grid;
  border-top: 1px solid var(--line);
}

.phase-steps article {
  display: grid;
  grid-template-columns: .6fr 1fr;
  gap: 26px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.phase-steps h3 {
  font-size: clamp(22px, 2vw, 34px);
  text-transform: none;
}

.phase-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  min-height: calc(100vh - 126px);
  padding: clamp(145px, 20vh, 220px) var(--pad) clamp(90px, 14vh, 160px);
  background: var(--white);
  color: var(--ink);
  display: grid;
  align-items: start;
}

.page-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.page-hero .eyebrow {
  display: none;
}

.page-hero .page-title {
  max-width: var(--max);
  margin: 0 auto;
  color: #333436;
  font-size: var(--h1);
  font-weight: 480;
  line-height: 1.18;
  text-transform: none;
}

.page-hero .hero-copy {
  max-width: 920px;
  margin: 18px auto 0;
  color: #5f666a;
  font-size: clamp(18px, 1.8vw, 30px);
  line-height: 1.35;
  text-align: center;
}

.page-hero.compact-hero {
  min-height: clamp(360px, 46vh, 520px);
  padding: clamp(70px, 9vh, 105px) var(--pad) clamp(40px, 6vh, 74px);
  align-items: center;
}

.page-hero.compact-hero .page-title {
  font-size: var(--h1);
  line-height: 1.12;
}

.page-hero.compact-hero .hero-copy {
  max-width: 860px;
  margin-top: 14px;
  font-size: clamp(18px, 1.55vw, 26px);
}

.page-hero.modular-homes-hero .page-title {
  display: block;
  max-width: 1120px;
  width: 100%;
  color: #070707;
  font-size: clamp(42px, 4.2vw, 70px);
  font-weight: 400;
  line-height: 1.12;
  text-align: center;
  text-transform: none;
}

.page-hero.modular-homes-hero .page-title span {
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: none;
}

.page-hero.modular-homes-hero .page-title strong {
  display: block;
  margin-top: .12em;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: none;
}

.page-hero.modular-homes-hero .hero-copy {
  display: none;
  margin-top: 0;
  color: #111;
  font-size: clamp(18px, 1.2vw, 24px);
  line-height: 1.4;
}

.page-hero.modular-homes-hero .hero-copy strong {
  font-weight: 600;
  color: #070707;
}

.page-hero.compact-hero.modular-homes-hero {
  min-height: auto;
  padding-top: clamp(74px, 9vh, 110px);
  padding-bottom: clamp(24px, 3.6vw, 42px);
}

.property-search-page {
  position: relative;
  min-height: calc(100vh - 126px);
  display: grid;
  place-items: center;
  padding: clamp(70px, 8vw, 120px) var(--pad);
  overflow: hidden;
  background: #ebe6dc;
}

.property-search-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-search-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(242, 238, 230, .22);
}

.property-search-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  min-height: clamp(340px, 34vw, 430px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(48px, 6vw, 96px);
  border-radius: clamp(26px, 3vw, 44px);
  background: rgba(250, 250, 248, .92);
  box-shadow: 0 28px 70px rgba(18, 24, 34, .14);
  text-align: center;
}

.property-search-panel h1 {
  max-width: none;
  margin: 0 0 clamp(28px, 4vw, 46px);
  color: #092146;
  font-size: clamp(46px, 5.2vw, 82px);
  font-weight: 850;
  line-height: 1;
  text-transform: none;
}

.property-search-form {
  width: min(100%, 900px);
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 88px;
  align-items: center;
  overflow: hidden;
  border: 1.5px solid rgba(9, 33, 70, .58);
  border-radius: 999px;
  background: #fff;
}

.property-search-form input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 clamp(24px, 2.2vw, 34px);
  color: #092146;
  font: 700 clamp(20px, 1.5vw, 28px) var(--font-sans);
  outline: none;
}

.property-search-form input::placeholder {
  color: rgba(55, 55, 55, .62);
  opacity: 1;
}

.property-search-form button {
  width: 88px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.property-search-form button span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 4px solid #0572c7;
  border-radius: 50%;
}

.property-search-form button span::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -8px;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: #0572c7;
  transform: rotate(45deg);
  transform-origin: center;
}

.property-communities-section {
  padding: clamp(34px, 4vw, 58px) var(--pad) clamp(72px, 8vw, 120px);
  background: #cfe8fb;
}

.property-communities-panel {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(42px, 5vw, 82px);
  border-radius: clamp(28px, 3vw, 48px);
  background: rgba(250, 252, 255, .96);
  box-shadow: 0 24px 70px rgba(8, 28, 58, .12);
  overflow: hidden;
}

.property-communities-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(28px, 4vw, 54px);
}

.property-communities-head p {
  margin-bottom: 14px;
  color: var(--gold-2);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: .08em;
  text-transform: none;
}

.property-communities-head h2 {
  margin-bottom: 10px;
  color: #092146;
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 1.08;
  text-transform: none;
}

.property-price-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 740px;
  color: #092146;
  font-size: var(--feature-copy);
  line-height: 1.4;
}

.property-price-note span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 2px solid #092146;
  border-radius: 50%;
}

.property-price-note span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid #092146;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.property-more-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 12px;
  background: #0876d7;
  color: #fff;
  font-size: 16px;
  font-weight: 850;
}

.property-community-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(390px, 1fr);
  gap: 28px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scroll-snap-type: x mandatory;
}

.property-community-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 28, 58, .14);
  scroll-snap-align: start;
}

.property-community-card img {
  display: block;
  width: 100%;
  height: clamp(340px, 23vw, 440px);
  object-fit: contain;
  background: #eef4f8;
}

.property-community-card-body {
  position: relative;
  padding: 24px 28px 30px;
}

.property-favorite {
  position: absolute;
  right: 22px;
  top: -54px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #092146;
  cursor: pointer;
  font-size: 31px;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(8, 28, 58, .16);
}

.property-community-card h3 {
  margin-bottom: 8px;
  color: #092146;
  font-size: 20px;
  line-height: 1.1;
  text-transform: none;
}

.property-community-card p {
  min-height: 24px;
  margin-bottom: 24px;
  color: rgba(9, 33, 70, .65);
  font-size: 14px;
  font-weight: 700;
}

.property-community-price {
  display: grid;
  justify-items: end;
  gap: 5px;
  min-height: 74px;
  color: #092146;
  text-align: right;
}

.property-community-price span,
.property-community-price small {
  color: rgba(9, 33, 70, .66);
  font-size: 13px;
  font-weight: 800;
}

.property-community-price strong {
  font-size: 28px;
  line-height: 1;
}

.property-mission-section {
  padding: clamp(72px, 8vw, 130px) var(--pad);
  background: #e8f4ff;
}

.property-mission-inner {
  width: min(100%, 1680px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.property-mission-copy p {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: .08em;
  text-transform: none;
}

.property-mission-copy h2 {
  max-width: 760px;
  color: #092146;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.08;
  text-transform: none;
}

.property-mission-image {
  position: relative;
  margin: 0;
  padding: 12px;
}

.property-mission-image span {
  position: absolute;
  inset: 0;
  border: 10px solid #c9583d;
  border-radius: 36px;
  transform: translate(-8px, -8px);
}

.property-mission-image::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 38%;
  height: 46%;
  border-right: 10px solid #c9583d;
  border-bottom: 10px solid #c9583d;
  border-radius: 0 0 36px 0;
}

.property-mission-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 28px;
}

.property-pillars-section {
  padding: clamp(66px, 7vw, 112px) var(--pad);
  background: #fff;
}

.property-pillars-inner {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.property-pillars-head {
  margin-bottom: 26px;
}

.property-pillars-head h2 {
  margin-bottom: 8px;
  color: #092146;
  font-size: clamp(34px, 3.8vw, 64px);
  line-height: 1.08;
  text-transform: none;
}

.property-pillars-head p {
  color: var(--gold-2);
  font-size: var(--eyebrow-size);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: .08em;
  text-transform: none;
}

.property-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.property-pillar-card {
  min-height: 170px;
  padding: 30px 32px;
  border-radius: 18px;
  background: #e8f4ff;
  color: #092146;
}

.property-pillar-card span {
  display: block;
  margin-bottom: 26px;
  color: #092146;
  font-size: 25px;
  line-height: 1;
}

.property-pillar-card h3 {
  margin-bottom: 12px;
  color: #092146;
  font-size: var(--h3);
  line-height: 1.1;
  text-transform: none;
}

.property-pillar-card p {
  margin-bottom: 0;
  color: #092146;
  font-size: var(--feature-copy);
  font-weight: 600;
  line-height: 1.4;
}

.modular-media-strip {
  min-height: calc(100vh + var(--horizontal-distance, 0px));
  padding: 0;
  background: var(--white);
  overflow: visible;
}

.modular-media-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px) 0;
}

.modular-media-track {
  width: max-content;
  display: flex;
  gap: clamp(12px, 1.6vw, 22px);
  padding: 0 var(--pad);
  will-change: transform;
}

.modular-media-card {
  flex: 0 0 min(58vw, 736px);
  margin: 0;
  aspect-ratio: 736 / 888;
  overflow: hidden;
  background: #ece9e2;
  border-radius: 18px;
}

.modular-media-card-video {
  flex-basis: min(58vw, 736px);
}

.modular-media-card img,
.modular-media-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.modular-one-roof {
  padding: clamp(56px, 7vw, 110px) var(--pad) clamp(64px, 8vw, 120px);
  background: var(--white);
  color: #111;
}

.modular-one-roof-inner {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(420px, 1fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
}

.modular-one-roof h2 {
  margin: 0;
  color: #202020;
  font-size: clamp(36px, 3.8vw, 58px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.modular-one-roof h2 span,
.modular-one-roof h2 strong {
  display: block;
}

.modular-one-roof h2 strong {
  margin-top: .14em;
  font-family: var(--font-sans);
  font-weight: 700;
  text-transform: none;
}

.modular-one-roof p {
  max-width: 760px;
  margin: 0;
  color: #070707;
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 400;
  line-height: 1.42;
}

.modular-role-section {
  height: 520vh;
  padding: 0 var(--pad);
  background: var(--white);
}

.modular-role-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  place-items: center;
}

.modular-role-card {
  width: min(100%, var(--max));
  height: min(78vh, 760px);
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #f7f7f7 0%, #fff 48%, #f2f2f2 100%);
}

.modular-role-line {
  display: grid;
  grid-template-columns: max-content minmax(420px, 1fr);
  column-gap: 16px;
  align-items: center;
  transform: translateY(24px);
}

.modular-role-fixed {
  position: relative;
  z-index: 2;
  color: #202020;
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.modular-role-list {
  position: relative;
  width: min(54vw, 720px);
  height: 82px;
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 1;
}

.modular-role-item {
  position: absolute;
  left: 0;
  top: 50%;
  color: rgba(30, 30, 30, .13);
  opacity: max(.08, calc(1 - (var(--role-distance, 0) * .3)));
  transform: translateY(calc(-50% + (var(--role-offset, 0) * 1.2em)));
  transition: color .22s ease, opacity .22s ease, transform .22s ease, font-weight .22s ease;
  white-space: nowrap;
}

.modular-role-item.is-active {
  color: #303030;
  opacity: 1;
  font-weight: 500;
}

.modular-role-item.is-final-role.is-active {
  color: #202020;
  font-family: var(--font-sans);
  font-size: clamp(34px, 3.4vw, 54px);
  font-weight: 800;
}

.modular-offsite-line {
  padding: clamp(54px, 7vw, 110px) var(--pad) clamp(58px, 7vw, 112px);
  background: var(--white);
  text-align: center;
}

.modular-offsite-line h2 {
  margin: 0 auto;
  max-width: 1100px;
  color: #070707;
  font-size: clamp(38px, 4.2vw, 70px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

.modular-offsite-line h2 span,
.modular-offsite-line h2 strong {
  display: block;
}

.modular-offsite-line h2 span {
  font-family: var(--font-sans);
  font-weight: 400;
  text-transform: none;
}

.modular-offsite-line h2 strong {
  margin-top: .16em;
  font-family: var(--font-sans);
  font-weight: 800;
  text-transform: none;
}

.modular-factory-cards {
  padding: 0 var(--pad) clamp(72px, 8vw, 128px);
  background: var(--white);
}

.modular-factory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.4vw, 22px);
  max-width: var(--max);
}

.modular-factory-card {
  position: relative;
  min-height: clamp(520px, 45vw, 680px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: clamp(34px, 4vw, 58px);
  background: #ededed;
  isolation: isolate;
}

.modular-factory-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .45s ease, opacity .45s ease;
}

.modular-factory-card.is-light img {
  object-fit: contain;
  padding: clamp(74px, 9vw, 140px);
  opacity: .82;
  filter: saturate(.72) brightness(1.1);
}

.modular-factory-card.is-photo img {
  filter: saturate(.92) brightness(.9);
}

.modular-factory-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity .4s ease, background .4s ease;
}

.modular-factory-card.is-light::after {
  background: linear-gradient(180deg, rgba(235, 235, 235, .4) 0%, rgba(212, 212, 212, .42) 100%);
}

.modular-factory-card.is-photo::after {
  background: linear-gradient(180deg, rgba(10, 18, 13, .02) 18%, rgba(3, 6, 4, .82) 100%);
}

.modular-factory-card.is-open img {
  transform: scale(1.04);
}

.modular-factory-card.is-open.is-light::after {
  background: rgba(35, 35, 35, .58);
}

.modular-factory-card.is-open.is-photo::after {
  background: rgba(0, 0, 0, .58);
}

.modular-factory-card-content {
  position: absolute;
  left: clamp(32px, 5vw, 90px);
  right: clamp(92px, 7vw, 126px);
  bottom: clamp(44px, 5vw, 82px);
  z-index: 2;
  color: #fff;
}

.modular-factory-card.is-light .modular-factory-card-content {
  color: #111;
}

.modular-factory-card.is-open .modular-factory-card-content {
  color: #fff;
}

.modular-factory-card-content h3 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(22px, 1.55vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.modular-factory-card-content p {
  max-height: 0;
  max-width: 610px;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: clamp(20px, 1.35vw, 25px);
  font-weight: 500;
  line-height: 1.25;
  opacity: 0;
  transition: max-height .45s ease, margin-top .45s ease, opacity .3s ease;
}

.modular-factory-card.is-open .modular-factory-card-content p {
  max-height: 360px;
  margin-top: clamp(24px, 3vw, 34px);
  opacity: 1;
}

.modular-factory-card-toggle {
  position: absolute;
  right: clamp(28px, 3vw, 52px);
  bottom: clamp(28px, 3vw, 52px);
  z-index: 3;
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #202020;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.modular-factory-card.is-open .modular-factory-card-toggle {
  background: #242424;
  color: #fff;
}

.modular-factory-card-toggle:hover {
  transform: scale(1.04);
}

.modular-factory-card-toggle span,
.modular-factory-card-toggle span::after {
  width: 18px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.modular-factory-card-toggle span::after {
  content: "";
  transform: rotate(90deg);
  transition: transform .25s ease;
}

.modular-factory-card.is-open .modular-factory-card-toggle span::after {
  transform: rotate(0deg);
}

.modular-experience-block {
  padding: clamp(52px, 7vw, 108px) var(--pad) clamp(76px, 8vw, 132px);
  background: var(--white);
}

.modular-experience-block h2 {
  margin: 0 auto clamp(34px, 4.5vw, 64px);
  max-width: 1120px;
  color: #070707;
  font-size: clamp(42px, 4.2vw, 70px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.modular-experience-block h2 span,
.modular-experience-block h2 strong {
  display: block;
  text-transform: none;
}

.modular-experience-block h2 span {
  font-family: var(--font-sans);
  font-weight: 400;
}

.modular-experience-block h2 strong {
  margin-top: .08em;
  font-family: var(--font-sans);
  font-weight: 800;
}

.modular-experience-video {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 40px);
  background: #0d2f38;
}

.modular-experience-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-hero.about-factory-hero {
  min-height: auto;
  padding-top: clamp(44px, 6vh, 76px);
  padding-bottom: 16px;
}

.page-hero.about-factory-hero .container {
  gap: 20px;
}

.page-hero.about-factory-hero .hero-copy {
  margin-top: 8px;
}

.about-factory-section {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(18px, 2.6vw, 36px);
}

.about-factory-section .split {
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
}

.about-factory-section .image-frame {
  order: 2;
  min-height: clamp(520px, 48vw, 760px);
}

.about-factory-section .image-frame img {
  object-position: center center;
}

.about-factory-copy {
  order: 1;
  max-width: 980px;
}

.about-factory-copy p:not(.eyebrow) {
  max-width: 920px;
  color: #3d4549;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}

.about-factory-copy p + p {
  margin-top: 16px;
}

.page-hero.team-page-hero {
  min-height: auto;
  padding-top: clamp(50px, 6vh, 82px);
  padding-bottom: clamp(24px, 3vw, 42px);
}

.team-page {
  padding-top: clamp(18px, 2.5vw, 36px);
}

.team-intro {
  max-width: var(--max);
}

.team-intro h2 {
  max-width: 820px;
  color: var(--navy);
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.team-intro p:not(.eyebrow) {
  max-width: 960px;
  color: #3d4549;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}

.team-intro p + p {
  margin-top: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 36px);
  margin-top: clamp(42px, 5vw, 76px);
}

.team-member img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}

.team-member {
  text-align: center;
}

.team-member h3 {
  margin: 18px 0 6px;
  color: var(--navy);
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 560;
  line-height: 1.2;
  letter-spacing: 0;
}

.team-member p {
  margin: 0;
  color: #5f666a;
  font-size: clamp(14px, .98vw, 17px);
  line-height: 1.35;
}

.process-doc-section {
  background: #f7f7f5;
  padding-top: clamp(24px, 3vw, 44px);
}

.process-doc-intro,
.process-doc-outro {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.process-doc-intro h2,
.process-doc-outro h2 {
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.process-doc-intro .lede {
  max-width: 980px;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.55;
}

.process-doc-outro .lede {
  max-width: 980px;
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.36;
}

.process-doc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  margin-top: clamp(28px, 3.4vw, 48px);
  align-items: start;
}

.process-doc-item {
  display: grid;
  gap: 14px;
  align-items: start;
}

.process-doc-item.is-alt {
  grid-template-columns: 1fr;
}

.process-doc-item.is-alt .process-doc-image {
  order: 0;
}

.process-doc-image {
  background: var(--white);
  overflow: hidden;
}

.process-doc-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.process-doc-copy h3 {
  color: var(--navy);
  font-size: clamp(19px, 1.3vw, 23px);
  font-weight: 540;
  line-height: 1.14;
  letter-spacing: 0;
  text-transform: none;
}

.process-doc-copy p:not(.eyebrow) {
  color: #1d3038;
  font-size: clamp(13px, .88vw, 15px);
  line-height: 1.48;
}

.process-doc-outro p:not(.eyebrow):not(.lede) {
  max-width: 980px;
  margin-top: clamp(28px, 3vw, 46px);
  color: #1d3038;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.58;
}

.process-doc-outro .lede {
  position: relative;
  top: clamp(-54px, -3.5vw, -34px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.process-schedule-link {
  margin-top: 12px;
}

.process-doc-outro { margin-top: clamp(112px, 11vw, 172px); }

.approach-page {
  padding-top: clamp(24px, 3vw, 44px);
}

.page-hero.approach-page-hero {
  min-height: auto;
  padding-top: clamp(56px, 7vh, 92px);
  padding-bottom: clamp(22px, 3vw, 42px);
}

.approach-copy {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.approach-copy h2 {
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.approach-copy p:not(.eyebrow) {
  max-width: 1060px;
  color: #3d4549;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.58;
  text-align: left;
}

.approach-copy p + p {
  margin-top: 16px;
}

.approach-image {
  margin-top: clamp(34px, 5vw, 72px);
}

.approach-image img {
  width: 100%;
  aspect-ratio: 3.5 / 1;
  object-fit: cover;
  object-position: center center;
}

.approach-future-copy {
  width: min(100%, var(--max));
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(42px, 5vw, 76px);
}

.approach-future-copy h2 {
  max-width: 980px;
  color: var(--navy);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.approach-future-copy p {
  max-width: 1060px;
  color: #3d4549;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.58;
  text-align: left;
}

.approach-future-copy h2 + p {
  margin-top: 16px;
}

.approach-future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  margin-top: clamp(30px, 4vw, 58px);
}

.approach-future-grid img {
  width: 100%;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
}

.approach-values {
  margin: clamp(42px, 5vw, 72px) calc(var(--pad) * -1) 0;
  padding: clamp(26px, 3vw, 42px) var(--pad) clamp(26px, 3vw, 44px);
  background: var(--navy);
  color: var(--white);
}

.approach-values-inner {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
}

.approach-values-head {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.35fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
}

.approach-values-head h2 {
  color: #c9934f;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.approach-values-head p,
.approach-values-list p {
  margin: 0;
  color: var(--white);
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 650;
  line-height: 1.28;
}

.approach-values-list {
  border-top: 1px solid rgba(255,255,255,.85);
}

.approach-values-list article {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(360px, 1.35fr);
  gap: clamp(30px, 5vw, 76px);
  padding: clamp(12px, 1.5vw, 20px) 0;
  border-bottom: 1px solid rgba(255,255,255,.85);
}

.approach-values-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: none;
}

.page-hero.story-page-hero {
  min-height: auto;
  padding-top: clamp(56px, 7vh, 92px);
  padding-bottom: clamp(22px, 3vw, 42px);
}

.story-page {
  padding-top: clamp(42px, 5vw, 78px);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: start;
}

.story-slider {
  position: relative;
  min-height: clamp(420px, 42vw, 640px);
}

.story-slider img {
  position: absolute;
  inset: 0;
  width: 88%;
  height: 88%;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(16, 42, 52, .14);
  opacity: 0;
  transform: translate(0, 0) scale(.98);
  animation: storySlide 20s infinite;
}

.story-slider img:nth-child(1) {
  animation-delay: 0s;
  z-index: 4;
}

.story-slider img:nth-child(2) {
  animation-delay: 5s;
  z-index: 3;
  transform: translate(28px, 24px) scale(.98);
}

.story-slider img:nth-child(3) {
  animation-delay: 10s;
  z-index: 2;
  transform: translate(56px, 48px) scale(.98);
}

.story-slider img:nth-child(4) {
  animation-delay: 15s;
  z-index: 1;
  transform: translate(84px, 72px) scale(.98);
}

@keyframes storySlide {
  0%, 18% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  25%, 100% {
    opacity: 0;
    transform: translate(20px, 16px) scale(.98);
  }
}

.story-copy h2 {
  color: var(--navy);
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.story-copy p:not(.eyebrow) {
  color: #3d4549;
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.58;
}

.story-copy p + p {
  margin-top: 16px;
}

.schedule-viewer-section {
  padding-top: clamp(36px, 5vw, 72px);
}

.schedule-viewer {
  display: grid;
  gap: 20px;
}

.schedule-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.schedule-frame {
  position: relative;
  display: grid;
  place-items: center;
  background: #f5f5f5;
  border: 1px solid var(--line);
  overflow: hidden;
}

.schedule-page {
  display: none;
  width: 100%;
  height: auto;
}

.schedule-page.is-active {
  display: block;
}

.schedule-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(16,42,52,.88);
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.schedule-prev {
  left: 18px;
}

.schedule-next {
  right: 18px;
}

.schedule-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.schedule-dots button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.schedule-dots button.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.page-hero.multiplex-hero {
  min-height: clamp(330px, 43vh, 470px);
  padding: clamp(52px, 7vh, 88px) var(--pad) clamp(30px, 5vh, 54px);
  align-items: center;
}

.page-hero.multiplex-hero .page-title {
  font-size: var(--h1);
  line-height: 1.08;
}

.page-hero.multiplex-hero .hero-copy {
  max-width: 980px;
  margin-top: 10px;
  font-size: clamp(18px, 1.55vw, 26px);
}

.project-list-section {
  padding-top: clamp(30px, 4vw, 58px);
}

.project-detail-hero {
  min-height: 78vh;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 84px);
  align-items: start;
}

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

.data-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.data-row span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery img:nth-child(even) { height: 360px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.multiplex-layout-lab {
  overflow: hidden;
  background: var(--white);
  padding-top: clamp(36px, 4vw, 58px);
  padding-bottom: clamp(42px, 5vw, 70px);
}

.layout-lab-inner {
  display: grid;
  grid-template-columns: .7fr 1.12fr;
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
}

.layout-lab-copy h2 {
  max-width: 680px;
  color: var(--navy);
  font-size: clamp(36px, 3.5vw, 62px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
}

.layout-lab-copy p:not(.eyebrow) {
  max-width: 540px;
  color: #536168;
  font-size: clamp(16px, 1.16vw, 20px);
  line-height: 1.46;
}

.layout-lab-stage {
  display: grid;
  place-items: center;
  min-height: 485px;
}

.site-optimization-demo {
  width: min(100%, 700px);
  padding: clamp(12px, 1.4vw, 18px);
  background: #f7f6f1;
  border: 1px solid rgba(16, 42, 52, .1);
  box-shadow: 0 24px 70px rgba(16, 42, 52, .1);
}

.optimization-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.optimization-tabs span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 52, .12);
  color: rgba(16, 42, 52, .56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  isolation: isolate;
}

.optimization-tabs span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--gold);
  transform: translateX(-105%);
}

.optimization-tabs span:nth-child(1)::before { animation: optimization-tab-1 10.5s linear infinite; }
.optimization-tabs span:nth-child(2)::before { animation: optimization-tab-2 10.5s linear infinite; }
.optimization-tabs span:nth-child(3)::before { animation: optimization-tab-3 10.5s linear infinite; }

.optimization-board {
  position: relative;
  height: min(39vw, 380px);
  min-height: 350px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(16, 42, 52, .12);
}

.optimization-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 42, 52, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 52, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  animation: layout-grid-pan 12s linear infinite;
}

.site-parcel {
  position: absolute;
  inset: 8% 10% 8% 10%;
  border: 2px solid rgba(16, 42, 52, .78);
  background: rgba(234, 205, 117, .1);
  clip-path: polygon(10% 0, 93% 4%, 86% 100%, 0 88%);
  animation: parcel-focus 10.5s ease-in-out infinite;
}

.site-setback {
  position: absolute;
  border: 1px dashed rgba(16, 42, 52, .42);
  clip-path: polygon(10% 0, 93% 4%, 86% 100%, 0 88%);
  opacity: .78;
}

.setback-a {
  inset: 14% 16% 15% 16%;
  animation: setback-a-shift 10.5s ease-in-out infinite;
}

.setback-b {
  inset: 21% 23% 22% 23%;
  border-color: rgba(234, 205, 117, .9);
  animation: setback-b-shift 10.5s ease-in-out infinite;
}

.building-mass,
.building-core,
.site-drive,
.site-walk,
.site-green,
.sun-path,
.optimization-note {
  position: absolute;
}

.building-mass {
  display: grid;
  align-items: end;
  padding: 10px;
  border: 2px solid rgba(16, 42, 52, .78);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(16, 42, 52, .08);
}

.building-mass b,
.building-core {
  color: var(--navy);
  font-size: clamp(14px, 1.1vw, 19px);
  font-weight: 850;
}

.mass-a {
  background: rgba(234, 205, 117, .36);
  animation: mass-a-optimize 10.5s ease-in-out infinite;
}

.mass-b {
  animation: mass-b-optimize 10.5s ease-in-out infinite;
}

.mass-c {
  animation: mass-c-optimize 10.5s ease-in-out infinite;
}

.building-core {
  display: grid;
  place-items: center;
  background: rgba(16, 42, 52, .94);
  color: var(--white);
  animation: core-optimize 10.5s ease-in-out infinite;
}

.site-drive {
  left: 76%;
  top: 14%;
  width: 9%;
  height: 72%;
  background: rgba(16, 42, 52, .1);
  border: 1px solid rgba(16, 42, 52, .22);
  animation: drive-optimize 10.5s ease-in-out infinite;
}

.site-walk {
  left: 24%;
  top: 49%;
  width: 50%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left center;
  animation: walk-optimize 10.5s ease-in-out infinite;
}

.site-green {
  background: rgba(68, 126, 91, .18);
  border: 1px solid rgba(68, 126, 91, .28);
}

.green-front {
  left: 15%;
  top: 73%;
  width: 52%;
  height: 13%;
  animation: green-front-optimize 10.5s ease-in-out infinite;
}

.green-court {
  left: 48%;
  top: 35%;
  width: 18%;
  height: 22%;
  animation: green-court-optimize 10.5s ease-in-out infinite;
}

.sun-path {
  right: 7%;
  top: 9%;
  width: 28%;
  height: 36%;
  border-top: 2px solid rgba(234, 205, 117, .8);
  border-radius: 50% 50% 0 0;
  transform-origin: bottom left;
  animation: sun-sweep 10.5s ease-in-out infinite;
}

.sun-path span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(234, 205, 117, .18);
}

.sun-path span:nth-child(1) { left: 4%; top: 88%; }
.sun-path span:nth-child(2) { left: 48%; top: -5%; }
.sun-path span:nth-child(3) { right: 3%; top: 88%; }

.optimization-note {
  right: 14px;
  bottom: 14px;
  width: min(245px, 42%);
  padding: 13px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(16, 42, 52, .22);
  opacity: 0;
  transform: translateY(18px);
}

.optimization-note strong,
.optimization-note span {
  display: block;
}

.optimization-note strong {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.optimization-note span {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.2;
}

.opt-note-1 { animation: opt-note-1 10.5s ease-in-out infinite; }
.opt-note-2 { animation: opt-note-2 10.5s ease-in-out infinite; }
.opt-note-3 { animation: opt-note-3 10.5s ease-in-out infinite; }

@keyframes optimization-tab-1 {
  0%, 30% { transform: translateX(0); }
  34%, 100% { transform: translateX(105%); }
}

@keyframes optimization-tab-2 {
  0%, 31% { transform: translateX(-105%); }
  37%, 63% { transform: translateX(0); }
  69%, 100% { transform: translateX(105%); }
}

@keyframes optimization-tab-3 {
  0%, 65% { transform: translateX(-105%); }
  71%, 100% { transform: translateX(0); }
}

@keyframes parcel-focus {
  0%, 30% {
    background: rgba(234, 205, 117, .08);
    transform: scale(.98);
  }
  37%, 63% {
    background: rgba(234, 205, 117, .14);
    transform: scale(1);
  }
  71%, 100% {
    background: rgba(234, 205, 117, .1);
    transform: scale(1.01);
  }
}

@keyframes setback-a-shift {
  0%, 30% { inset: 13% 15% 14% 15%; opacity: .55; }
  37%, 63% { inset: 15% 18% 15% 17%; opacity: .82; }
  71%, 100% { inset: 17% 20% 17% 19%; opacity: .7; }
}

@keyframes setback-b-shift {
  0%, 30% { inset: 23% 27% 23% 26%; opacity: .3; }
  37%, 63% { inset: 22% 24% 23% 23%; opacity: .72; }
  71%, 100% { inset: 21% 25% 22% 24%; opacity: .95; }
}

@keyframes mass-a-optimize {
  0%, 30% { left: 18%; top: 22%; width: 25%; height: 38%; }
  37%, 63% { left: 19%; top: 21%; width: 31%; height: 34%; }
  71%, 100% { left: 18%; top: 20%; width: 28%; height: 30%; }
}

@keyframes mass-b-optimize {
  0%, 30% { left: 47%; top: 22%; width: 24%; height: 38%; }
  37%, 63% { left: 53%; top: 21%; width: 22%; height: 34%; }
  71%, 100% { left: 49%; top: 20%; width: 25%; height: 30%; }
}

@keyframes mass-c-optimize {
  0%, 30% { left: 21%; top: 64%; width: 34%; height: 18%; opacity: .35; }
  37%, 63% { left: 20%; top: 61%; width: 42%; height: 20%; opacity: .72; }
  71%, 100% { left: 18%; top: 60%; width: 56%; height: 22%; opacity: 1; }
}

@keyframes core-optimize {
  0%, 30% { left: 73%; top: 22%; width: 10%; height: 60%; }
  37%, 63% { left: 77%; top: 34%; width: 8%; height: 47%; }
  71%, 100% { left: 76%; top: 50%; width: 9%; height: 32%; }
}

@keyframes drive-optimize {
  0%, 30% { left: 79%; top: 15%; width: 8%; height: 70%; opacity: .55; }
  37%, 63% { left: 83%; top: 20%; width: 7%; height: 65%; opacity: .75; }
  71%, 100% { left: 84%; top: 44%; width: 6%; height: 42%; opacity: .9; }
}

@keyframes walk-optimize {
  0%, 30% { transform: translateY(8px) scaleX(.55); opacity: .35; }
  37%, 63% { transform: translateY(-4px) scaleX(.78); opacity: .72; }
  71%, 100% { transform: translateY(12px) scaleX(1); opacity: .95; }
}

@keyframes green-front-optimize {
  0%, 30% { left: 16%; top: 76%; width: 45%; height: 9%; opacity: .34; }
  37%, 63% { left: 15%; top: 73%; width: 52%; height: 12%; opacity: .65; }
  71%, 100% { left: 15%; top: 72%; width: 62%; height: 13%; opacity: .9; }
}

@keyframes green-court-optimize {
  0%, 30% { left: 44%; top: 38%; width: 12%; height: 12%; opacity: .25; }
  37%, 63% { left: 47%; top: 36%; width: 16%; height: 18%; opacity: .62; }
  71%, 100% { left: 43%; top: 39%; width: 23%; height: 16%; opacity: .82; }
}

@keyframes sun-sweep {
  0%, 30% { opacity: .22; transform: rotate(-5deg) scale(.9); }
  37%, 63% { opacity: .6; transform: rotate(3deg) scale(1); }
  71%, 100% { opacity: .88; transform: rotate(8deg) scale(1.04); }
}

@keyframes opt-note-1 {
  0%, 30% { opacity: 1; transform: translateY(0); }
  36%, 100% { opacity: 0; transform: translateY(18px); }
}

@keyframes opt-note-2 {
  0%, 31% { opacity: 0; transform: translateY(18px); }
  38%, 63% { opacity: 1; transform: translateY(0); }
  69%, 100% { opacity: 0; transform: translateY(18px); }
}

@keyframes opt-note-3 {
  0%, 65% { opacity: 0; transform: translateY(18px); }
  72%, 100% { opacity: 1; transform: translateY(0); }
}

.layout-demo {
  width: min(100%, 650px);
  padding: clamp(12px, 1.35vw, 18px);
  background: #f7f6f1;
  border: 1px solid rgba(16, 42, 52, .1);
  box-shadow: 0 24px 70px rgba(16, 42, 52, .1);
}

.layout-toolbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.layout-toolbar span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 34px;
  color: rgba(16, 42, 52, .52);
  border: 1px solid rgba(16, 42, 52, .12);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  overflow: hidden;
}

.layout-toolbar span::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-105%);
  z-index: 0;
}

.layout-toolbar span:nth-child(1)::before { animation: layout-tab-1 9s linear infinite; }
.layout-toolbar span:nth-child(2)::before { animation: layout-tab-2 9s linear infinite; }
.layout-toolbar span:nth-child(3)::before { animation: layout-tab-3 9s linear infinite; }

.layout-toolbar span {
  isolation: isolate;
}

.layout-toolbar span::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  z-index: -1;
}

.layout-board {
  position: relative;
  height: min(38vw, 360px);
  min-height: 340px;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(16, 42, 52, .12);
}

.layout-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 42, 52, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 52, .055) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: layout-grid-pan 12s linear infinite;
}

.layout-room {
  position: absolute;
  display: grid;
  align-content: end;
  gap: 4px;
  padding: 12px;
  border: 2px solid rgba(16, 42, 52, .78);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 34px rgba(16, 42, 52, .08);
  transition: box-shadow .35s ease;
}

.layout-room b {
  color: var(--navy);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1;
}

.layout-room small {
  color: #687178;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.room-living {
  background: rgba(234, 205, 117, .34);
  animation: room-living-plan 9s ease-in-out infinite;
}

.room-kitchen {
  animation: room-kitchen-plan 9s ease-in-out infinite;
}

.room-bed-a {
  animation: room-bed-a-plan 9s ease-in-out infinite;
}

.room-bed-b {
  animation: room-bed-b-plan 9s ease-in-out infinite;
}

.room-service {
  background: rgba(16, 42, 52, .92);
  border-color: rgba(16, 42, 52, .92);
  animation: room-service-plan 9s ease-in-out infinite;
}

.room-service b,
.room-service small {
  color: var(--white);
}

.layout-path {
  position: absolute;
  left: 12%;
  top: 47%;
  width: 68%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .85;
  transform-origin: left center;
  animation: layout-path-shift 9s ease-in-out infinite;
}

.layout-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: min(210px, 38%);
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 20px 45px rgba(16, 42, 52, .2);
  opacity: 0;
  transform: translateY(18px);
}

.layout-note strong,
.layout-note span {
  display: block;
}

.layout-note strong {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.layout-note span {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.15;
}

.note-1 { animation: layout-note-1 9s ease-in-out infinite; }
.note-2 { animation: layout-note-2 9s ease-in-out infinite; }
.note-3 { animation: layout-note-3 9s ease-in-out infinite; }

@keyframes layout-grid-pan {
  from { background-position: 0 0, 0 0; }
  to { background-position: 72px 72px, 72px 72px; }
}

@keyframes room-living-plan {
  0%, 27% { left: 7%; top: 9%; width: 38%; height: 36%; }
  34%, 61% { left: 7%; top: 9%; width: 48%; height: 31%; }
  68%, 100% { left: 7%; top: 11%; width: 56%; height: 34%; }
}

@keyframes room-kitchen-plan {
  0%, 27% { left: 48%; top: 9%; width: 26%; height: 36%; }
  34%, 61% { left: 58%; top: 9%; width: 24%; height: 31%; }
  68%, 100% { left: 66%; top: 11%; width: 26%; height: 34%; }
}

@keyframes room-bed-a-plan {
  0%, 27% { left: 7%; top: 50%; width: 31%; height: 36%; }
  34%, 61% { left: 7%; top: 48%; width: 28%; height: 40%; }
  68%, 100% { left: 7%; top: 52%; width: 35%; height: 34%; }
}

@keyframes room-bed-b-plan {
  0%, 27% { left: 42%; top: 50%; width: 32%; height: 36%; }
  34%, 61% { left: 39%; top: 48%; width: 28%; height: 40%; }
  68%, 100% { left: 46%; top: 52%; width: 30%; height: 34%; }
}

@keyframes room-service-plan {
  0%, 27% { left: 78%; top: 9%; width: 15%; height: 77%; }
  34%, 61% { left: 72%; top: 44%; width: 20%; height: 44%; }
  68%, 100% { left: 80%; top: 52%; width: 12%; height: 34%; }
}

@keyframes layout-path-shift {
  0%, 27% { transform: translateY(0) scaleX(.7); }
  34%, 61% { transform: translateY(-18px) scaleX(.9); }
  68%, 100% { transform: translateY(8px) scaleX(1); }
}

@keyframes layout-note-1 {
  0%, 28% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(18px); }
}

@keyframes layout-note-2 {
  0%, 30% { opacity: 0; transform: translateY(18px); }
  36%, 62% { opacity: 1; transform: translateY(0); }
  68%, 100% { opacity: 0; transform: translateY(18px); }
}

@keyframes layout-note-3 {
  0%, 64% { opacity: 0; transform: translateY(18px); }
  70%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes layout-tab-1 {
  0%, 30% { transform: translateX(0); }
  34%, 100% { transform: translateX(105%); }
}

@keyframes layout-tab-2 {
  0%, 30% { transform: translateX(-105%); }
  36%, 63% { transform: translateX(0); }
  68%, 100% { transform: translateX(105%); }
}

@keyframes layout-tab-3 {
  0%, 64% { transform: translateX(-105%); }
  70%, 100% { transform: translateX(0); }
}

.multiplex-feature-lab {
  overflow: hidden;
  background: radial-gradient(circle at 70% 20%, rgba(234, 205, 117, .18), transparent 34%), var(--white);
}

.feature-lab-inner {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.feature-lab-copy h2 {
  max-width: 660px;
  color: var(--navy);
  font-size: clamp(38px, 4.2vw, 78px);
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
}

.feature-lab-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #56636a;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.42;
}

.feature-lab-stage {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.feature-blueprint {
  position: absolute;
  inset: 4% 0;
  border: 1px solid rgba(16, 42, 52, .12);
  background-image:
    linear-gradient(rgba(16, 42, 52, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 52, .06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .95;
  animation: blueprint-pan 12s linear infinite;
}

.feature-blueprint span {
  position: absolute;
  border: 1px solid rgba(234, 205, 117, .55);
  background: rgba(234, 205, 117, .08);
  animation: blueprint-pulse 3.6s ease-in-out infinite;
}

.feature-blueprint span:nth-child(1) { inset: 14% 58% 54% 10%; }
.feature-blueprint span:nth-child(2) { inset: 23% 17% 43% 56%; animation-delay: .6s; }
.feature-blueprint span:nth-child(3) { inset: 56% 52% 18% 20%; animation-delay: 1.2s; }
.feature-blueprint span:nth-child(4) { inset: 58% 14% 15% 60%; animation-delay: 1.8s; }

.feature-dashboard {
  position: relative;
  z-index: 2;
  width: min(76%, 620px);
  padding: clamp(18px, 2.2vw, 34px);
  background: rgba(16, 42, 52, .96);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(16, 42, 52, .28);
  transform: translateY(22px) scale(.96);
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.feature-dashboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0%, rgba(234, 205, 117, .18) 42%, rgba(255,255,255,.28) 50%, transparent 58%);
  transform: translateX(-130%);
  opacity: .65;
}

.feature-lab-stage.is-visible .feature-dashboard {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: dashboard-float 6s ease-in-out .7s infinite;
}

.feature-lab-stage.is-visible .feature-dashboard::after {
  animation: dashboard-sheen 4.8s ease-in-out 1s infinite;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.dashboard-top strong {
  font-size: clamp(18px, 1.4vw, 25px);
}

.dashboard-top em {
  color: var(--gold);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 18px 0;
  background: rgba(255,255,255,.14);
}

.dashboard-grid div {
  padding: 18px;
  background: rgba(255,255,255,.045);
}

.dashboard-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
}

.dashboard-grid b {
  color: var(--white);
  font-size: clamp(18px, 1.4vw, 24px);
}

.dashboard-photo {
  height: 190px;
  overflow: hidden;
}

.dashboard-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.feature-card-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.feature-float-card {
  position: absolute;
  width: min(280px, 38%);
  padding: 20px;
  background: var(--white);
  border: 1px solid rgba(16, 42, 52, .14);
  box-shadow: 0 22px 60px rgba(16, 42, 52, .16);
  opacity: 0;
  transform: translateY(24px) scale(.96);
}

.feature-float-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.feature-float-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.05;
  text-transform: none;
}

.feature-float-card p {
  margin-bottom: 0;
  color: #5f686d;
  font-size: 14px;
  line-height: 1.4;
}

.feature-float-card.card-1 { top: 3%; left: 4%; }
.feature-float-card.card-2 { top: 12%; right: 1%; }
.feature-float-card.card-3 { bottom: 8%; left: 0; }
.feature-float-card.card-4 { right: 5%; bottom: 0; }

.feature-lab-stage.is-visible .feature-float-card {
  animation: float-card-in .74s ease forwards, card-drift 5.6s ease-in-out infinite;
}

.feature-lab-stage.is-visible .card-1 { animation-delay: .16s, 1s; }
.feature-lab-stage.is-visible .card-2 { animation-delay: .32s, 1.45s; }
.feature-lab-stage.is-visible .card-3 { animation-delay: .48s, 1.9s; }
.feature-lab-stage.is-visible .card-4 { animation-delay: .64s, 2.35s; }

@keyframes float-card-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes card-drift {
  0%, 100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-12px) translateX(8px) scale(1.015);
  }
}

@keyframes dashboard-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.01);
  }
}

@keyframes dashboard-sheen {
  0%, 36% {
    transform: translateX(-130%);
  }
  70%, 100% {
    transform: translateX(130%);
  }
}

@keyframes blueprint-pan {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 84px 84px, 84px 84px;
  }
}

@keyframes blueprint-pulse {
  0%, 100% {
    opacity: .55;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

.multiplex-standard {
  padding-top: clamp(76px, 10vw, 150px);
  padding-bottom: 0;
}

.multiplex-standard .container {
  max-width: var(--max);
}

.multiplex-standard-intro {
  max-width: 920px;
  margin-bottom: clamp(46px, 6vw, 78px);
}

.multiplex-standard-intro h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(32px, 3.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.multiplex-standard-intro p:not(.eyebrow) {
  max-width: 1040px;
  color: #1c3037;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.5;
}

.multiplex-process-label {
  margin-bottom: 20px;
}

.multiplex-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.multiplex-process-card img {
  width: 100%;
  aspect-ratio: 1 / .72;
  object-fit: cover;
  margin-bottom: 16px;
}

.multiplex-process-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.multiplex-process-card p {
  margin-bottom: 0;
  color: #56636a;
  font-size: 15px;
  line-height: 1.48;
}

.multiplex-standard-note {
  max-width: 900px;
  margin: clamp(46px, 6vw, 72px) 0 clamp(70px, 8vw, 110px);
  color: var(--navy);
  font-size: clamp(16px, 1.25vw, 20px);
}

.card {
  border: 1px solid var(--line);
  padding: 30px;
  background: var(--white);
}

.card h3 { font-size: 24px; }

.custom-homes-hero {
  min-height: clamp(330px, 43vh, 470px);
  padding: clamp(52px, 7vh, 88px) var(--pad) clamp(30px, 5vh, 54px);
  align-items: center;
}

.custom-homes-copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.custom-homes-hero .eyebrow {
  display: none;
}

.custom-homes-hero .page-title {
  max-width: var(--max);
  color: #333436;
  font-size: var(--h1);
  line-height: 1.08;
}

.custom-homes-subtitle {
  max-width: 980px;
  margin: 12px auto 0;
  color: #333436;
  font-size: clamp(24px, 2.45vw, 42px);
  font-weight: 650;
  line-height: 1.18;
  text-align: center;
}

.custom-homes-hero .hero-copy {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(17px, 1.35vw, 23px);
}

.custom-home-features {
  padding-top: clamp(34px, 4vw, 68px);
}

.custom-home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 34px);
}

.custom-home-feature {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(18px, 2vw, 28px);
}

.custom-home-feature img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.custom-home-feature-copy {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.custom-home-feature h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(20px, 1.45vw, 27px);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: none;
}

.custom-home-feature p {
  margin: 0;
  color: #1c3037;
  font-size: clamp(15px, 1.02vw, 17px);
  line-height: 1.58;
}

.custom-feature-page {
  background: var(--white);
  color: #090909;
}

.custom-feature-section {
  padding: clamp(72px, 9vw, 140px) var(--pad);
}

.custom-feature-section .container {
  max-width: 1440px;
}

.custom-feature-material .container {
  max-width: 1440px;
}

.custom-feature-headline {
  margin: 0 auto clamp(58px, 8vw, 118px);
  max-width: 980px;
  color: #070707;
  font-size: var(--feature-title);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
}

.custom-feature-headline span,
.custom-feature-headline strong {
  display: block;
  text-transform: none;
}

.custom-feature-headline span {
  font-family: var(--font-sans);
  font-weight: 400;
}

.custom-feature-headline strong {
  margin-top: .08em;
  font-family: var(--font-sans);
  font-weight: 800;
}

.custom-feature-showcase {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe6e8;
}

.custom-feature-showcase img {
  display: block;
  width: 100%;
  height: clamp(560px, 38vw, 720px);
  object-fit: cover;
}

.material-tabs {
  position: absolute;
  top: 18px;
  left: 50%;
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(40, 43, 45, .72);
  color: #fff;
  transform: translateX(-50%);
}

.material-tabs button {
  padding: 8px 12px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.material-tabs button:hover,
.material-tabs button.is-active {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.sample-design-button {
  position: absolute;
  left: 50%;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  transform: translateX(-50%);
}

.custom-feature-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.custom-feature-image-grid article {
  display: grid;
  gap: 20px;
}

.custom-feature-image-grid p,
.custom-feature-lede,
.custom-feature-plan-grid > div > p,
.custom-plan-card p {
  margin: 0;
  color: #111;
  font-size: clamp(20px, 1.55vw, 28px);
  font-weight: 650;
  line-height: 1.14;
}

.custom-feature-image-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border-radius: 28px;
}

.custom-craft-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 26px);
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
}

.custom-craft-card {
  position: relative;
  min-height: clamp(560px, 43vw, 720px);
  overflow: hidden;
  border-radius: clamp(38px, 4vw, 58px);
  background: #e7e3dc;
  isolation: isolate;
}

.custom-craft-card img,
.custom-craft-card video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .45s ease;
}

.custom-craft-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 36%, rgba(0, 0, 0, .62) 100%);
  transition: background .35s ease;
}

.custom-craft-card.is-open img,
.custom-craft-card.is-open video {
  transform: scale(1.04);
  filter: blur(10px) brightness(.76);
}

.custom-craft-card.is-open::after {
  background: rgba(34, 34, 34, .62);
}

.custom-craft-card-copy {
  position: absolute;
  left: clamp(34px, 4.2vw, 74px);
  right: clamp(98px, 7vw, 130px);
  bottom: clamp(34px, 4vw, 58px);
  z-index: 2;
  color: #fff;
  transition: bottom .35s ease, transform .35s ease;
}

.custom-craft-card.is-open .custom-craft-card-copy {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
}

.custom-craft-card-copy h2 {
  max-width: 620px;
  margin: 0;
  color: inherit;
  font-size: clamp(24px, 1.65vw, 32px);
  font-weight: 850;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.custom-craft-card-copy p {
  max-height: 0;
  max-width: 650px;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: clamp(20px, 1.42vw, 27px);
  font-weight: 500;
  line-height: 1.27;
  opacity: 0;
  transition: max-height .42s ease, margin-top .42s ease, opacity .28s ease;
}

.custom-craft-card.is-open .custom-craft-card-copy p {
  max-height: 420px;
  margin-top: clamp(26px, 3vw, 36px);
  opacity: 1;
}

.custom-craft-card-toggle {
  position: absolute;
  right: clamp(28px, 3vw, 50px);
  bottom: clamp(28px, 3vw, 50px);
  z-index: 3;
  width: clamp(62px, 5vw, 76px);
  height: clamp(62px, 5vw, 76px);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #202020;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.custom-craft-card-toggle:hover {
  transform: scale(1.04);
}

.custom-craft-card.is-open .custom-craft-card-toggle {
  background: #202020;
  color: #fff;
}

.custom-craft-card-toggle span,
.custom-craft-card-toggle span::after {
  width: 18px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.custom-craft-card-toggle span::after {
  content: "";
  transform: rotate(90deg);
  transition: transform .25s ease;
}

.custom-craft-card.is-open .custom-craft-card-toggle span::after {
  transform: rotate(0deg);
}

.custom-feature-nature {
  padding-top: clamp(66px, 8vw, 124px);
}

.custom-feature-nature .container {
  max-width: 1440px;
}

.custom-nature-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
  align-items: stretch;
}

.custom-nature-card {
  position: relative;
  min-height: clamp(540px, 40vw, 660px);
  overflow: hidden;
  border-radius: clamp(42px, 4vw, 64px);
  background: #a8c6d8;
  isolation: isolate;
}

.custom-nature-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .45s ease, opacity .45s ease;
}

.custom-nature-card.is-blueprint img {
  object-fit: contain;
  padding: clamp(42px, 5vw, 82px);
  opacity: .88;
  mix-blend-mode: multiply;
}

.custom-nature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: background .35s ease, opacity .35s ease;
}

.custom-nature-card.is-blueprint::after {
  background: linear-gradient(180deg, rgba(168, 198, 216, .58) 0%, rgba(168, 198, 216, .72) 46%, rgba(58, 86, 101, .76) 100%);
}

.custom-nature-card.is-photo::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02) 18%, rgba(0, 0, 0, .72) 100%);
}

.custom-nature-card.is-open img {
  transform: scale(1.04);
  filter: blur(10px) brightness(.8);
}

.custom-nature-card.is-open.is-blueprint img {
  opacity: .12;
}

.custom-nature-card.is-open::after {
  background: rgba(44, 58, 66, .88);
}

.custom-nature-card-copy {
  position: absolute;
  left: clamp(32px, 3.8vw, 64px);
  right: clamp(96px, 7vw, 132px);
  bottom: clamp(34px, 4vw, 62px);
  z-index: 2;
  color: #fff;
  transition: transform .35s ease;
}

.custom-nature-card.is-open .custom-nature-card-copy {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}

.custom-nature-card-copy h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(22px, 1.75vw, 32px);
  font-weight: 850;
  line-height: 1.18;
  letter-spacing: 0;
  text-transform: none;
}

.custom-nature-card-copy p {
  max-height: 0;
  max-width: 560px;
  margin: 0;
  overflow: hidden;
  color: inherit;
  font-size: clamp(20px, 1.42vw, 27px);
  font-weight: 600;
  line-height: 1.28;
  opacity: 0;
  transition: max-height .42s ease, margin-top .42s ease, opacity .28s ease;
}

.custom-nature-card.is-open .custom-nature-card-copy p {
  max-height: 420px;
  margin-top: clamp(28px, 3.2vw, 42px);
  opacity: 1;
}

.custom-nature-card-toggle {
  position: absolute;
  right: clamp(28px, 3vw, 50px);
  bottom: clamp(28px, 3vw, 50px);
  z-index: 3;
  width: clamp(62px, 5vw, 78px);
  height: clamp(62px, 5vw, 78px);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #202020;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.custom-nature-card-toggle:hover {
  transform: scale(1.04);
}

.custom-nature-card.is-open .custom-nature-card-toggle {
  background: #202020;
  color: #fff;
}

.custom-nature-card-toggle span,
.custom-nature-card-toggle span::after {
  width: 18px;
  height: 3px;
  display: block;
  border-radius: 999px;
  background: currentColor;
}

.custom-nature-card-toggle span::after {
  content: "";
  transform: rotate(90deg);
  transition: transform .25s ease;
}

.custom-nature-card.is-open .custom-nature-card-toggle span::after {
  transform: rotate(0deg);
}

.custom-feature-details {
  padding-top: clamp(52px, 7vw, 100px);
}

.custom-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(340px, .78fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto clamp(46px, 5.6vw, 74px);
  padding-top: 20px;
  border-top: 1px solid #bbb8b1;
}

.custom-detail-intro h1 {
  margin: 0;
  color: #020202;
  font-size: clamp(30px, 2.6vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.custom-detail-intro h1 span,
.custom-detail-intro h1 strong {
  display: block;
}

.custom-detail-intro h1 span {
  font-family: var(--font-serif);
  font-weight: 400;
}

.custom-detail-intro h1 strong {
  font-family: var(--font-sans);
  font-weight: 850;
}

.custom-detail-intro p {
  max-width: 560px;
  margin: 0;
  color: #0b0b0b;
  font-size: var(--feature-copy);
  font-weight: 500;
  line-height: 1.24;
}

.custom-feature-lede {
  max-width: 760px;
  margin: calc(clamp(58px, 8vw, 118px) * -0.65) auto clamp(42px, 5vw, 72px);
  text-align: center;
}

.custom-room-showcase {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
  background: #e9e6df;
}

.custom-room-showcase > img {
  display: block;
  width: 100%;
  height: clamp(560px, 38vw, 720px);
  object-fit: cover;
}

.room-tabs {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: 3;
  display: flex;
  overflow: hidden;
  border-radius: 7px;
  background: rgba(50, 52, 50, .68);
  color: #fff;
  transform: translateX(-50%);
}

.room-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.room-tabs button:hover,
.room-tabs button.is-active {
  background: rgba(255, 255, 255, .18);
}

.room-hotspot {
  position: absolute;
  z-index: 3;
  display: none;
  place-items: center;
  width: clamp(54px, 5vw, 68px);
  height: clamp(54px, 5vw, 68px);
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.room-hotspot.is-active {
  display: grid;
}

.room-hotspot.is-expanded {
  background: #202020;
  color: #fff;
}

.room-hotspot:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 42px rgba(0, 0, 0, .2);
}

.hotspot-kitchen-left {
  left: 22%;
  top: 52%;
}

.hotspot-kitchen-center {
  left: 50%;
  top: 53%;
  transform: translateX(-50%);
}

.hotspot-kitchen-center:hover {
  transform: translateX(-50%) scale(1.06);
}

.hotspot-kitchen-right {
  right: 17%;
  top: 19%;
}

.hotspot-living-left {
  left: 30%;
  top: 45%;
}

.hotspot-living-right {
  right: 17%;
  top: 38%;
}

.hotspot-bathroom-shower {
  left: 58%;
  top: 22%;
}

.room-detail-popover {
  position: absolute;
  z-index: 4;
  top: 15%;
  right: 7%;
  display: none;
  width: min(320px, 28vw);
  padding: clamp(18px, 2vw, 28px);
  border-radius: 18px;
  background: rgba(88, 72, 48, .9);
  color: #fff;
  box-shadow: 0 22px 48px rgba(0, 0, 0, .24);
}

.room-detail-popover.is-open {
  display: block;
}

.room-detail-popover.is-left {
  left: 18%;
  right: auto;
  top: 23%;
}

.room-detail-copy h3 {
  margin-bottom: 6px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.08;
  text-transform: none;
}

.room-detail-copy p {
  margin-bottom: clamp(16px, 1.8vw, 26px);
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 700;
  line-height: 1.28;
  color: rgba(255, 255, 255, .82);
}

.room-detail-media img,
.room-detail-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / .95;
  object-fit: cover;
  border-radius: 6px;
  background: #f7f7f5;
}

.custom-detail-layout {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.custom-detail-main {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
}

.custom-detail-main img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.custom-detail-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-detail-cards article {
  min-height: 210px;
  padding: 24px;
  border-radius: 26px;
  background: #f1f1ef;
}

.custom-detail-cards span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #fff;
  font-size: 20px;
  font-weight: 600;
}

.custom-detail-cards h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(19px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: none;
}

.custom-detail-cards p {
  margin: 0;
  color: #303030;
  font-size: 15px;
  line-height: 1.35;
}

.custom-feature-plan-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}

.custom-feature-plan-grid .custom-feature-headline {
  margin-bottom: 24px;
  text-align: left;
}

.custom-plan-card {
  overflow: hidden;
  padding: clamp(18px, 2vw, 28px);
  border-radius: 34px;
  background: #f1f1ef;
}

.custom-plan-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

.custom-plan-card h2 {
  margin: 28px 0 12px;
  color: #111;
  font-size: clamp(30px, 2.8vw, 52px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: none;
}

.custom-plan-card p {
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.35;
}

.custom-plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.custom-feature-standards {
  padding-top: clamp(42px, 6vw, 88px);
  padding-bottom: clamp(78px, 8vw, 132px);
}

.custom-standards-layout {
  display: grid;
  grid-template-columns: minmax(320px, .86fr) minmax(520px, 1.14fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
}

.custom-standards-heading .custom-feature-headline {
  max-width: 520px;
  margin: 0;
  font-size: clamp(34px, 3.5vw, 58px);
  line-height: 1.08;
  text-align: left;
}

.custom-standards-list {
  width: 100%;
  max-width: 820px;
  margin: 0 0 0 auto;
  border-top: 1px solid #d9d9d5;
}

.custom-standard-item {
  border-bottom: 1px solid #d9d9d5;
}

.custom-standard-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.custom-standard-item button span {
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 750;
}

.custom-standard-item button b {
  font-size: 20px;
  font-weight: 500;
  transition: transform .25s ease;
}

.custom-standard-item.is-open button b {
  transform: rotate(45deg);
}

.custom-standard-item ul {
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  transition: max-height .35s ease, padding-bottom .35s ease;
}

.custom-standard-item.is-open ul {
  max-height: 520px;
  padding-bottom: 26px;
}

.custom-standard-item li {
  color: #333;
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.45;
}

.custom-standard-item li + li {
  margin-top: 7px;
}

.custom-feature-final {
  min-height: clamp(420px, 54vh, 680px);
  display: grid;
  place-items: center;
  padding: clamp(76px, 10vw, 150px) var(--pad);
  background: #f4f4f2;
  text-align: center;
}

.custom-feature-final h2 {
  margin: 0 auto 28px;
  color: #070707;
  font-size: clamp(42px, 5.2vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.custom-feature-final h2 span,
.custom-feature-final h2 strong {
  display: block;
}

.custom-feature-final h2 span {
  font-family: var(--font-sans);
  font-weight: 400;
}

.custom-feature-final h2 strong {
  font-family: var(--font-sans);
  font-weight: 800;
}

.contact-intro {
  padding: clamp(44px, 5vw, 72px) var(--pad) clamp(18px, 2.4vw, 34px);
}

.contact-intro-inner {
  max-width: 980px;
}

.contact-intro h1 {
  color: var(--navy);
  font-size: var(--h1);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.contact-message-inner h2 {
  color: var(--navy);
  font-size: var(--h2);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: none;
}

.contact-intro h1 {
  margin-bottom: 22px;
}

.contact-intro p {
  max-width: 880px;
  color: #0f2630;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.45;
}

.contact-message-section {
  padding: clamp(28px, 3.6vw, 48px) var(--pad) clamp(44px, 5vw, 72px);
  background: #f4f4f4;
}

.contact-message-inner {
  width: min(100%, 980px);
  margin-inline: auto;
}

.contact-message-inner h2 {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(28px, 5vw, 90px);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-line-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(42px, 6vw, 76px);
  row-gap: 26px;
  max-width: none;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-line-form .field label {
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 14px;
  border-radius: 0;
}

.field textarea { min-height: 150px; resize: vertical; }

.contact-line-form .field input,
.contact-line-form .field textarea {
  min-height: 40px;
  border: 0;
  border-bottom: 1px solid #102a34;
  background: transparent;
  padding: 4px 0 8px;
  font-size: 15px;
}

.contact-line-form .field textarea {
  min-height: 68px;
}

.contact-line-form .field input::placeholder,
.contact-line-form .field textarea::placeholder {
  color: rgba(15, 38, 48, .38);
}

.contact-line-form .message-field {
  align-self: end;
}

.contact-submit {
  display: flex;
  align-items: end;
  padding-bottom: 2px;
}

.contact-submit .btn {
  min-height: 42px;
  padding: 12px 28px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  letter-spacing: .14em;
}

.site-footer {
  padding: 0;
  background: var(--navy);
  color: var(--white);
}

.site-footer > * {
  width: 100%;
  max-width: none;
  margin: 0;
}

.footer-badges {
  background: #aaa8a2;
  color: var(--white);
  padding: clamp(18px, 2.2vw, 28px) var(--pad);
}

.footer-badges-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 70px);
  align-items: start;
}

.footer-badge {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-badge img {
  width: min(150px, 100%);
  height: 70px;
  object-fit: contain;
  opacity: .95;
}

.footer-badge p {
  max-width: 205px;
  color: rgba(255,255,255,.9);
  font-size: 10px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.45;
  text-transform: uppercase;
}

.footer-main {
  background: var(--navy);
  padding: clamp(46px, 5.6vw, 74px) var(--pad) 24px;
}

.footer-main-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(300px, 1fr);
  column-gap: clamp(64px, 11vw, 170px);
  row-gap: clamp(26px, 3.4vw, 46px);
  align-items: start;
}

.footer-brand-logo {
  width: min(360px, 100%);
  height: auto;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 20px 0 30px;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.58;
}

.footer-inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 38px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-service-links nav {
  display: grid;
  gap: 15px;
  font-size: 19px;
  line-height: 1.24;
}

.footer-social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.footer-social-links a {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: var(--white);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.footer-social-links a:hover {
  background: var(--gold-2);
  color: var(--navy);
  transform: translateY(-1px);
}

.footer-social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-service-links {
  justify-self: end;
  min-width: 340px;
  margin-top: 34px;
  transform: translateX(6ch);
}

.footer-contact {
  grid-column: 1 / -1;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  justify-items: center;
  gap: 4px;
  margin-top: 0;
  color: rgba(255,255,255,.76);
  font-size: 15px;
  font-style: normal;
  line-height: 1.5;
  text-align: center;
}

.footer-address-line,
.footer-connect-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.footer-address-line span:not(:last-child)::after,
.footer-connect-line span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: .9em;
  margin-left: 12px;
  vertical-align: -.1em;
  background: rgba(255,255,255,.24);
}

.footer-contact a,
.footer-service-links a,
.footer-inline-nav a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-service-links a:hover,
.footer-inline-nav a:hover {
  color: var(--gold-2);
}

.footer-grid p,
.footer-grid address {
  color: rgba(255,255,255,.72);
  font-style: normal;
}

.footer-grid img {
  width: 210px;
  height: auto;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.footer-bottom {
  display: flex;
  width: min(100%, 1280px);
  justify-content: center;
  gap: 24px;
  margin: clamp(24px, 3vw, 38px) auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: 12px;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1200px) {
  .home-video-hero {
    min-height: auto;
    display: block;
    background: var(--white);
  }
  .home-video-hero .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--white);
  }
  .home-video-hero .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .process-doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .home-video-hero {
    min-height: auto;
    display: block;
    background: var(--white);
  }
  .home-video-hero .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--white);
  }
  .home-video-hero .hero-media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .menu-toggle { display: block; }
  .site-nav {
    position: static;
    grid-column: 1 / -1;
    z-index: 120;
    display: none;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    width: auto;
    margin: 16px calc(var(--pad) * -1) -18px;
    padding: 10px var(--pad) 18px;
    background: rgba(16, 42, 52, .98);
    border-top: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 18px 34px rgba(0,0,0,.25);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  body.nav-open { overflow: auto; }
  .site-nav.is-open { display: grid; }
  .site-nav a {
    width: 100%;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    background: rgba(255,255,255,.035);
  }
  .nav-dropdown {
    width: 100%;
    position: static;
  }
  .nav-dropdown-toggle {
    width: 100%;
    padding: 15px 18px;
    border-bottom: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.1;
    text-align: left;
    background: rgba(255,255,255,.06);
    pointer-events: none;
    cursor: default;
  }
  .nav-dropdown-panel {
    position: static;
    display: grid;
    top: auto;
    left: auto;
    min-width: 0;
    justify-items: stretch;
    padding: 0 0 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown:focus-within .nav-dropdown-panel,
  .site-nav.is-open .nav-dropdown-panel,
  .nav-dropdown.is-open .nav-dropdown-panel {
    display: grid;
  }
  .nav-dropdown-panel a {
    display: block;
    padding: 12px 18px 12px 34px;
    color: rgba(255,255,255,.88);
    font-size: 16px;
    font-weight: 650;
    background: rgba(255,255,255,.02);
    transform: none !important;
  }
  .site-nav a.nav-cta {
    width: 100% !important;
    min-width: 154px;
    min-height: 58px;
    border: 0;
    margin-top: 22px;
    padding-inline: 24px !important;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: var(--gold-2);
  }
  .section-head,
  .page-hero .container,
  .innovation-panel,
  .process,
  .process-hero-inner,
  .process-guide-layout,
  .process-guide-band,
  .process-guide-main,
  .contents-layout,
  .phase-grid,
  .split,
  .contact-wrap,
  .contact-line-form { grid-template-columns: 1fr; }
  .process-hero {
    min-height: auto;
    padding-top: clamp(46px, 8vh, 72px);
    gap: clamp(30px, 7vw, 48px);
  }
  .process-hero h1 {
    font-size: var(--h1);
  }
  .process-guide-nav {
    position: static;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }
  .process-guide-cta {
    display: none;
  }
  .process-guide-divider {
    display: none;
  }
  .process-guide-deliverables {
    text-align: left;
  }
  .process-guide-deliverable-icons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .process-guide-image img {
    aspect-ratio: 1 / .86;
  }
  .timeline-rail {
    grid-template-columns: 1fr;
    border-left: 1px solid var(--line);
  }
  .timeline-node {
    min-height: auto;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .phase-alt .phase-media {
    order: 0;
  }
  .phase-media {
    position: relative;
    top: auto;
    min-height: 380px;
  }
  .phase-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .grid-3,
  .cards { grid-template-columns: 1fr; }
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .custom-home-feature-grid {
    grid-template-columns: 1fr;
  }
  .custom-home-feature {
    grid-template-columns: .9fr 1.1fr;
    grid-template-rows: auto;
    align-items: center;
  }
  .multiplex-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .layout-lab-inner {
    grid-template-columns: 1fr;
  }
  .layout-lab-stage {
    min-height: auto;
  }
  .site-optimization-demo {
    width: min(100%, 720px);
  }
  .optimization-board {
    height: 480px;
    min-height: 460px;
  }
  .layout-board {
    height: 520px;
    min-height: 500px;
  }
  .feature-lab-inner {
    grid-template-columns: 1fr;
  }
  .feature-lab-copy h2 {
    max-width: 760px;
  }
  .feature-lab-stage {
    min-height: 760px;
  }
  .feature-dashboard {
    width: min(82%, 620px);
  }
  .feature-float-card {
    width: min(300px, 46%);
  }
  .project-grid { grid-template-columns: 1fr; }
  .project-card,
  .project-card:nth-child(even) { min-height: 460px; }
  .process-doc-grid {
    gap: 28px;
  }
  .approach-future-grid {
    grid-template-columns: 1fr;
  }
  .approach-values-head,
  .approach-values-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .story-layout {
    grid-template-columns: 1fr;
  }
  .story-slider {
    height: clamp(280px, 72vw, 440px);
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
  }
  .story-slider img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: none;
  }
  .process-doc-item,
  .process-doc-item.is-alt {
    grid-template-columns: 1fr;
  }
  .process-doc-item.is-alt .process-doc-image {
    order: 0;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .journal-item { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .footer-badges-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-main-inner {
    grid-template-columns: 1fr;
  }
  .footer-service-links {
    justify-self: start;
    min-width: 0;
    margin-top: 0;
    transform: none;
  }
  .footer-service-links nav {
    font-size: 20px;
  }
  .footer-contact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 560px) {
  .brand img { width: 148px; }
  .site-header {
    min-height: 78px;
    padding-block: 13px;
  }
  .site-header.is-scrolled,
  .site-header.nav-active {
    min-height: 78px;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  .menu-toggle span:not(.sr-only) {
    width: 19px;
    margin: 4px auto;
  }
  .site-nav {
    margin: 13px calc(var(--pad) * -1) -13px;
    padding: 8px var(--pad) 16px;
  }
  .site-nav a,
  .nav-dropdown-toggle {
    padding: 14px 16px;
    font-size: 17px;
  }
  .nav-dropdown-panel {
    padding: 0 0 8px;
  }
  .nav-dropdown-panel a {
    padding: 11px 16px 11px 30px;
    font-size: 15px;
  }
  .site-nav a.nav-cta {
    min-height: 50px;
    margin-top: 18px;
    padding-inline: 18px !important;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: .07em;
    overflow-wrap: anywhere;
  }
  .process-doc-grid {
    grid-template-columns: 1fr;
  }
  h1, .page-title {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.08;
  }
  .page-hero {
    min-height: calc(100vh - 78px);
    padding-block: clamp(64px, 14vh, 110px);
  }
  .page-hero.compact-hero {
    min-height: auto;
    padding-top: clamp(46px, 8vh, 72px);
    padding-bottom: clamp(30px, 6vh, 52px);
  }
  .page-hero .page-title {
    max-width: 94vw;
    font-size: clamp(28px, 7.8vw, 38px);
    line-height: 1.12;
  }
  .page-hero.modular-homes-hero .page-title {
    display: block;
    font-size: clamp(28px, 8vw, 40px);
  }
  .page-hero.modular-homes-hero .page-title span {
    display: block;
    text-align: center;
  }
  .page-hero .hero-copy {
    max-width: 88vw;
    font-size: 14px;
  }
  .property-search-page {
    min-height: calc(100vh - 78px);
    padding: 48px 18px;
  }
  .property-search-panel {
    min-height: 320px;
    padding: 34px 20px;
    border-radius: 26px;
  }
  .property-search-panel h1 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.05;
  }
  .property-search-form {
    min-height: 62px;
    grid-template-columns: 1fr 64px;
  }
  .property-search-form input {
    padding-inline: 20px 8px;
    font-size: 16px;
  }
  .property-search-form button {
    width: 64px;
    height: 62px;
  }
  .property-search-form button span {
    width: 25px;
    height: 25px;
    border-width: 3px;
  }
  .property-search-form button span::after {
    right: -9px;
    bottom: -6px;
    width: 14px;
    height: 3px;
  }
  .property-communities-section {
    padding: 28px 18px 64px;
  }
  .property-communities-panel {
    padding: 26px 18px;
    border-radius: 26px;
  }
  .property-communities-head {
    display: grid;
    gap: 20px;
  }
  .property-more-button {
    width: 100%;
    min-height: 52px;
  }
  .property-community-row {
    grid-auto-columns: minmax(300px, 88vw);
    gap: 18px;
  }
  .property-community-card img {
    height: 300px;
  }
  .property-community-price {
    justify-items: start;
    text-align: left;
  }
  .property-mission-section,
  .property-pillars-section {
    padding: 54px 18px;
  }
  .property-mission-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .property-mission-copy h2 {
    font-size: clamp(24px, 7vw, 34px);
  }
  .property-mission-image {
    padding: 8px;
  }
  .property-mission-image span {
    border-width: 7px;
    border-radius: 24px;
    transform: translate(-5px, -5px);
  }
  .property-mission-image::after {
    border-right-width: 7px;
    border-bottom-width: 7px;
    border-radius: 0 0 24px 0;
  }
  .property-mission-image img {
    border-radius: 20px;
  }
  .property-pillars-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .property-pillar-card {
    min-height: 0;
    padding: 24px;
  }
  .modular-one-roof {
    padding-block: 44px 58px;
  }
  .modular-one-roof-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .modular-one-roof h2 {
    font-size: clamp(32px, 8.6vw, 40px);
  }
  .modular-one-roof p {
    font-size: 19px;
    line-height: 1.42;
  }
  .modular-role-section {
    height: 460vh;
    padding-inline: 12px;
  }
  .modular-role-card {
    min-height: 520px;
    height: 72vh;
    border-radius: 16px;
  }
  .modular-role-line {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    text-align: center;
    transform: none;
  }
  .modular-role-fixed {
    font-size: clamp(26px, 8vw, 38px);
    white-space: normal;
  }
  .modular-role-list {
    width: 100%;
    height: 70px;
    font-size: clamp(26px, 7.4vw, 36px);
  }
  .modular-role-item {
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, calc(-50% + (var(--role-offset, 0) * 1.18em)));
    white-space: normal;
  }
  .modular-role-item.is-final-role.is-active {
    font-size: clamp(26px, 8vw, 38px);
  }
  .modular-offsite-line {
    padding-block: 44px 58px;
  }
  .modular-offsite-line h2 {
    font-size: clamp(34px, 9vw, 46px);
  }
  .modular-factory-cards {
    padding: 0 12px 58px;
  }
  .modular-factory-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .modular-factory-card {
    min-height: 520px;
    border-radius: 24px;
  }
  .modular-factory-card.is-light img {
    padding: 54px 24px 150px;
  }
  .modular-factory-card-content {
    left: 24px;
    right: 70px;
    bottom: 32px;
  }
  .modular-factory-card-content h3 {
    font-size: 20px;
  }
  .modular-factory-card-content p {
    font-size: 16px;
    line-height: 1.28;
  }
  .modular-factory-card-toggle {
    right: 16px;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }
  .modular-experience-block {
    padding: 44px 12px 64px;
  }
  .modular-experience-block h2 {
    margin-bottom: 30px;
    font-size: clamp(34px, 9vw, 46px);
  }
  .modular-experience-video {
    border-radius: 22px;
  }
  .hero-inner > * {
    max-width: calc(100vw - 40px);
  }
  .hero-inner { padding-bottom: 38px; }
  .hero-copy {
    max-width: min(330px, calc(100vw - 40px));
    font-size: 17px;
  }
  .hero-actions,
  .button-row { gap: 10px; }
  .btn {
    min-height: 46px;
    padding: 12px 14px;
    font-size: 11px;
    letter-spacing: .12em;
  }
  .custom-home-feature {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .custom-home-feature img {
    aspect-ratio: 1 / .86;
  }
  .custom-feature-section {
    padding: 56px 12px;
  }
  .custom-feature-headline {
    margin-bottom: 34px;
    font-size: clamp(27px, 7.6vw, 38px);
  }
  .custom-feature-showcase img {
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .material-tabs {
    max-width: calc(100% - 28px);
    overflow-x: auto;
  }
  .material-tabs button {
    padding: 7px 9px;
  }
  .sample-design-button {
    width: max-content;
    max-width: calc(100% - 28px);
    text-align: center;
  }
  .custom-feature-image-grid,
  .custom-craft-card-grid,
  .custom-detail-layout,
  .custom-feature-plan-grid,
  .custom-detail-cards,
  .custom-nature-card-grid {
    grid-template-columns: 1fr;
  }
  .custom-feature-image-grid p,
  .custom-feature-lede,
  .custom-feature-plan-grid > div > p {
    font-size: 17px;
    line-height: 1.3;
  }
  .custom-feature-lede {
    margin-top: -16px;
  }
  .custom-craft-card {
    min-height: 520px;
    border-radius: 28px;
  }
  .custom-craft-card-copy {
    left: 26px;
    right: 72px;
    bottom: 28px;
  }
  .custom-craft-card-copy h2 {
    font-size: 20px;
  }
  .custom-craft-card-copy p {
    font-size: 16px;
  }
  .custom-craft-card-toggle {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
  .custom-craft-card-toggle span,
  .custom-craft-card-toggle span::after {
    width: 14px;
    height: 2px;
  }
  .custom-detail-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
    padding-top: 16px;
  }
  .custom-detail-intro h1 {
    font-size: clamp(28px, 8.2vw, 38px);
    line-height: 1.02;
  }
  .custom-detail-intro p {
    max-width: none;
    font-size: 15px;
    line-height: 1.32;
  }
  .custom-room-showcase {
    border-radius: 14px;
  }
  .custom-room-showcase > img {
    height: min(76vh, 520px);
    min-height: 560px;
  }
  .room-tabs {
    top: 14px;
    max-width: calc(100% - 28px);
    overflow-x: auto;
  }
  .room-tabs button {
    min-height: 36px;
    padding: 0 12px;
    font-size: 11px;
  }
  .room-hotspot {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .hotspot-kitchen-left {
    left: 16%;
    top: 55%;
  }
  .hotspot-kitchen-center {
    left: 50%;
    top: 56%;
  }
  .hotspot-kitchen-right {
    right: 12%;
    top: 20%;
  }
  .hotspot-living-left {
    left: 30%;
    top: 43%;
  }
  .hotspot-living-right {
    right: 18%;
    top: 36%;
  }
  .hotspot-bathroom-shower {
    left: 58%;
    top: 22%;
  }
  .room-detail-popover,
  .room-detail-popover.is-left,
  .room-detail-popover.is-right {
    left: 50%;
    right: auto;
    top: 14%;
    width: min(78vw, 360px);
    max-width: 360px;
    padding: 16px;
    border-radius: 16px;
    transform: translateX(-50%);
  }
  .room-detail-copy h3 {
    font-size: 16px;
  }
  .room-detail-copy p {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.25;
  }
  .room-detail-media img,
  .room-detail-media video {
    aspect-ratio: 1 / .78;
    object-fit: contain;
  }
  .custom-nature-card {
    min-height: 520px;
    border-radius: 28px;
  }
  .custom-nature-card.is-blueprint img {
    padding: 28px;
  }
  .custom-nature-card-copy {
    left: 26px;
    right: 72px;
    bottom: 28px;
  }
  .custom-nature-card-copy h2 {
    font-size: 20px;
  }
  .custom-nature-card-copy p {
    font-size: 16px;
  }
  .custom-nature-card-toggle {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
  .custom-nature-card-toggle span,
  .custom-nature-card-toggle span::after {
    width: 14px;
    height: 2px;
  }
  .custom-detail-main img {
    min-height: 360px;
  }
  .custom-detail-cards article {
    min-height: auto;
  }
  .custom-feature-plan-grid .custom-feature-headline {
    text-align: center;
  }
  .custom-plan-card {
    border-radius: 24px;
  }
  .custom-standard-item button {
    min-height: 66px;
  }
  .custom-standards-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .custom-standards-heading .custom-feature-headline {
    text-align: left;
  }
  .custom-standards-list {
    max-width: none;
  }
  .custom-standard-item button span {
    font-size: 18px;
  }
  .custom-feature-final {
    min-height: 380px;
  }
  .custom-feature-final h2 {
    font-size: clamp(30px, 9vw, 44px);
  }
  .multiplex-process-grid {
    grid-template-columns: 1fr;
  }
  .layout-lab-copy h2 {
    font-size: clamp(28px, 8.4vw, 40px);
    line-height: 1.12;
  }
  .site-optimization-demo {
    padding: 14px;
  }
  .optimization-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }
  .optimization-tabs span {
    min-height: 32px;
    padding: 0 4px;
    font-size: 8px;
    line-height: 1.1;
    text-align: center;
  }
  .optimization-board {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1.08;
  }
  .site-parcel {
    inset: 7% 8% 7% 8%;
  }
  .setback-a {
    inset: 13% 14% 14% 14%;
  }
  .setback-b {
    inset: 20% 22% 22% 22%;
  }
  .mass-a {
    left: 17%;
    top: 20%;
    width: 28%;
    height: 30%;
    animation: mobile-mass-a 10.5s ease-in-out infinite;
  }
  .mass-b {
    left: 50%;
    top: 20%;
    width: 25%;
    height: 30%;
    animation: mobile-mass-b 10.5s ease-in-out infinite;
  }
  .mass-c {
    left: 20%;
    top: 59%;
    width: 54%;
    height: 20%;
    opacity: 1;
    animation: mobile-mass-c 10.5s ease-in-out infinite;
  }
  .building-core {
    left: 77%;
    top: 24%;
    width: 9%;
    height: 55%;
    animation: mobile-core 10.5s ease-in-out infinite;
  }
  .site-drive {
    left: 86%;
    top: 18%;
    width: 5%;
    height: 65%;
    animation: none;
  }
  .green-front {
    left: 16%;
    top: 80%;
    width: 58%;
    height: 9%;
    animation: mobile-green 10.5s ease-in-out infinite;
  }
  .green-court {
    left: 47%;
    top: 38%;
    width: 16%;
    height: 14%;
    animation: mobile-green 10.5s ease-in-out infinite;
  }
  .site-walk {
    left: 22%;
    top: 53%;
    width: 54%;
    animation: walk-optimize 10.5s ease-in-out infinite;
  }
  .sun-path {
    right: 8%;
    top: 12%;
    width: 26%;
    height: 30%;
  }
  .optimization-note {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 10px;
  }
  .optimization-note strong {
    font-size: 9px;
  }
  .optimization-note span {
    font-size: 12px;
  }
  .building-mass {
    padding: 6px;
  }
  .building-mass b,
  .building-core {
    font-size: 10px;
  }
  .layout-demo {
    padding: 14px;
  }
  .layout-toolbar {
    grid-template-columns: 1fr;
  }
  .layout-toolbar span {
    min-height: 38px;
    font-size: 10px;
  }
  .layout-board {
    height: 500px;
    min-height: 500px;
  }
  .layout-room {
    padding: 12px;
  }
  .layout-room b {
    font-size: 17px;
  }
  .layout-room small {
    font-size: 10px;
  }
  .layout-note {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 14px;
  }
  .layout-note span {
    font-size: 17px;
  }
  .feature-lab-copy h2 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .feature-lab-stage {
    min-height: auto;
    display: grid;
    gap: 16px;
    place-items: stretch;
  }
  .feature-blueprint {
    display: none;
  }
  .feature-dashboard {
    width: 100%;
  }
  .dashboard-top,
  .dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
  }
  .dashboard-photo {
    height: 220px;
  }
  .feature-card-stack {
    position: relative;
    display: grid;
    gap: 14px;
    pointer-events: auto;
  }
  .feature-float-card {
    position: relative;
    inset: auto !important;
    width: 100%;
    opacity: 1;
    transform: none;
  }
  .feature-lab-stage.is-visible .feature-float-card {
    animation: none;
  }
  .stats { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 1fr; }
  .contents-list a {
    grid-template-columns: 54px 1fr;
    font-size: clamp(24px, 8vw, 36px);
  }
  .phase-media { min-height: 300px; }
  .phase-copy h2 {
    font-size: clamp(34px, 10vw, 52px);
  }
  .gallery img,
  .gallery img:nth-child(even) { height: 320px; }
  .footer-badges {
    padding: 16px 18px 18px;
  }
  .footer-badges-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }
  .footer-badge {
    gap: 5px;
  }
  .footer-badge:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: center;
    width: auto;
  }
  .footer-badge img {
    width: min(82px, 100%);
    height: 30px;
  }
  .footer-badge p {
    max-width: 210px;
    font-size: 7px;
    line-height: 1.22;
    letter-spacing: .04em;
  }
  .footer-main {
    padding: 34px 22px 18px;
  }
  .footer-main-inner {
    row-gap: 22px;
  }
  .footer-brand-logo {
    width: min(238px, 78vw);
  }
  .footer-brand-block p {
    max-width: 330px;
    margin: 16px 0 22px;
    font-size: 14px;
    line-height: 1.48;
  }
  .footer-inline-nav {
    gap: 12px 20px;
    font-size: 11px;
    letter-spacing: .035em;
  }
  .footer-service-links nav {
    gap: 12px;
    font-size: 16px;
    line-height: 1.22;
  }
  .footer-social-links {
    gap: 10px;
    margin-top: 4px;
  }
  .footer-social-links a {
    width: 34px;
    height: 34px;
  }
  .footer-social-links svg {
    width: 16px;
    height: 16px;
  }
  .footer-contact {
    gap: 8px;
    font-size: 12px;
    line-height: 1.38;
  }
  .footer-address-line,
  .footer-connect-line {
    gap: 5px 8px;
  }
  .footer-address-line span:not(:last-child)::after,
  .footer-connect-line span:not(:last-child)::after {
    margin-left: 8px;
  }
  .footer-bottom {
    gap: 8px;
    margin-top: 20px;
    padding-top: 14px;
    font-size: 10px;
  }
  .site-nav a,
  .nav-dropdown-toggle {
    font-weight: 600;
  }
  .nav-dropdown-panel a,
  .site-nav a.nav-cta {
    font-weight: 600;
  }
  .eyebrow,
  .footer-inline-nav,
  .footer-badge p,
  .footer-grid nav {
    font-weight: 600;
  }
  h1,
  .page-title,
  .property-search-panel h1,
  .custom-feature-headline,
  .custom-detail-intro h1,
  .custom-feature-final h2,
  .layout-lab-copy h2,
  .phase-copy h2 {
    font-weight: 700;
  }
  .page-hero .hero-copy,
  .footer-brand-block p,
  .footer-service-links nav,
  .footer-contact,
  .footer-bottom,
  .custom-feature-image-grid p,
  .custom-feature-lede,
  .custom-feature-plan-grid > div > p,
  .custom-craft-card-copy p,
  .custom-nature-card-copy p,
  .modular-factory-card-content p {
    font-weight: 400;
  }
}

@keyframes mobile-mass-a {
  0%, 30% { transform: translate(0, 0) scale(1); opacity: .72; }
  37%, 63% { transform: translate(4%, -3%) scale(1.04); opacity: .88; }
  71%, 100% { transform: translate(1%, 2%) scale(1.08); opacity: 1; }
}

@keyframes mobile-mass-b {
  0%, 30% { transform: translate(0, 0) scale(1); opacity: .72; }
  37%, 63% { transform: translate(-3%, -2%) scale(1.03); opacity: .88; }
  71%, 100% { transform: translate(-2%, 2%) scale(1.07); opacity: 1; }
}

@keyframes mobile-mass-c {
  0%, 30% { transform: translateY(0) scaleX(.82); opacity: .45; }
  37%, 63% { transform: translateY(-3%) scaleX(.94); opacity: .72; }
  71%, 100% { transform: translateY(0) scaleX(1); opacity: 1; }
}

@keyframes mobile-core {
  0%, 30% { transform: translateY(0); opacity: .72; }
  37%, 63% { transform: translateY(8%); opacity: .86; }
  71%, 100% { transform: translateY(14%); opacity: 1; }
}

@keyframes mobile-green {
  0%, 30% { opacity: .28; }
  37%, 63% { opacity: .45; }
  71%, 100% { opacity: .62; }
}

@media (max-width: 560px) {
  .story-page {
    padding-top: 26px;
  }
  .story-slider,
  .story-slider[data-reveal],
  .story-slider[data-reveal].is-visible {
    display: block !important;
    position: relative;
    height: clamp(260px, 76vw, 390px);
    min-height: 260px;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 8px;
    background: #eef1f0;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .story-slider img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: none;
    opacity: 0;
    transform: none !important;
    animation: mobileStoryFade 20s infinite !important;
  }
  .story-slider img:nth-child(1) { animation-delay: 0s !important; }
  .story-slider img:nth-child(2) { animation-delay: 5s !important; }
  .story-slider img:nth-child(3) { animation-delay: 10s !important; }
  .story-slider img:nth-child(4) { animation-delay: 15s !important; }
}

@keyframes mobileStoryFade {
  0%, 22% { opacity: 1; }
  27%, 100% { opacity: 0; }
}

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