:root {
  --purple: #4a2778;
  --purple-dark: #301553;
  --purple-soft: #f8f5ff;
  --ink: #111114;
  --muted: #5e5d67;
  --line: #e4ddec;
  --line-dark: rgba(74, 39, 120, .28);
  --white: #ffffff;
  --black: #111111;
  --display: "Playfair Display", Georgia, serif;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  --max: 1240px;
  --page-gutter: max(clamp(18px, 5vw, 72px), calc((100vw - var(--max)) / 2));
  --section-y: clamp(48px, 4.8vw, 72px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { background: var(--white); color: var(--ink); scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.app-shell { min-height: 100vh; overflow-x: hidden; background: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  padding: 8px var(--page-gutter);
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; width: 238px; height: 66px; }
.brand img { width: auto; height: 62px; max-width: none; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 24px; }
.site-nav a, .site-footer a {
  color: var(--ink);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}
.site-nav a { padding: 14px 0; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--purple); border-color: var(--purple); }
.site-nav a[href="./quote.html"] {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
}
.site-nav a[href="./quote.html"]:hover,
.site-nav a[href="./quote.html"][aria-current="page"] {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--purple);
  background: var(--purple);
  color: var(--white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  transition: background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.button:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-1px); }
.button--secondary { background: var(--white); color: var(--purple); }
.button--secondary:hover { color: var(--white); }
.button--light { border-color: var(--white); background: var(--white); color: var(--purple); }
.button--light:hover { border-color: var(--white); background: var(--purple-dark); color: var(--white); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 11px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--purple); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  text-transform: none;
  letter-spacing: 0;
}
h1 { max-width: 920px; font-size: clamp(42px, 5vw, 78px); }
h2 { max-width: 720px; font-size: clamp(26px, 2.8vw, 42px); }
h3 { margin-bottom: 8px; font-size: 18px; line-height: 1.18; }
p { color: var(--muted); font-weight: 300; line-height: 1.65; }
.section-kicker {
  margin-bottom: 12px;
  color: var(--purple);
  text-transform: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero-architectural {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  padding: clamp(42px, 6vw, 92px) var(--page-gutter);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero-architectural::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 46%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.2) 66%, rgba(0,0,0,.58) 100%);
}

.hero-architectural__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.02);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-architectural__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  max-width: 1040px;
  padding: 0;
}

.hero-architectural__copy h1 {
  margin-bottom: 22px;
  color: var(--white);
  max-width: 900px;
  font-size: clamp(52px, 6.2vw, 94px);
  line-height: .95;
  text-wrap: balance;
}

.hero-architectural__copy p {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.42;
}

.hero-architectural__image {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  width: min(38vw, 520px);
  min-width: 360px;
  margin-top: clamp(24px, 4vw, 60px);
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-architectural__image img {
  display: none;
}

.hero-stat {
  position: absolute;
  display: grid;
  gap: 3px;
  min-width: 176px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
}

.hero-stat span {
  color: var(--purple);
  text-transform: uppercase;
  font-size: 11px;
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-stat strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.hero-stat--price { right: 0; bottom: 0; }
.hero-stat--scope { right: 196px; bottom: 0; top: auto; }

@keyframes heroDrift {
  from { transform: scale(1.015) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(-1.4%, 0, 0); }
}

.hero-banner {
  position: relative;
  min-height: clamp(500px, 64vh, 660px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
}
.hero-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.48) 36%, rgba(0,0,0,.12) 68%, rgba(0,0,0,.04) 100%);
  content: "";
}
.hero-banner__content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(42px, 7vw, 92px) clamp(18px, 6vw, 82px);
  color: var(--white);
}
.hero-banner__content h1 { color: var(--white); text-wrap: balance; }
.hero-banner__content p:not(.section-kicker) { max-width: 610px; color: rgba(255,255,255,.86); font-size: clamp(18px, 1.5vw, 22px); }
.hero-banner__content .section-kicker { color: #ded2f4; }

.section, .community-intro, .feature-band, .reviews-section, .cta-strip, .page-head, .catalog-section, .feature-strip, .timeline-section, .quote-page, .about-hero, .community-band, .principle-section, .model-page > section, .model-showcase, .detail-feature, .process-ribbon, .page-hero, .split-feature, .editorial-section {
  padding: var(--section-y) var(--page-gutter);
}
.section, .community-intro, .reviews-section, .catalog-section, .feature-strip, .timeline-section, .about-hero, .community-band, .principle-section, .model-page > section, .model-showcase, .detail-feature, .process-ribbon, .page-hero, .split-feature, .editorial-section { border-bottom: 1px solid var(--line); }
.section-heading { max-width: var(--max); margin: 0 auto 30px; }
.section-heading--left { display: block; }
.section-heading p:not(.section-kicker) { max-width: 680px; font-size: 18px; }

.community-intro--editorial {
  min-height: 0;
  align-items: start;
  padding-top: clamp(38px, 4vw, 58px);
  padding-bottom: clamp(38px, 4vw, 58px);
}

.community-intro--editorial h2 {
  max-width: 680px;
  font-size: clamp(28px, 2.8vw, 42px);
}

.community-intro--editorial p:not(.section-kicker) {
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.55;
}

.community-intro--editorial > div:nth-child(2),
.model-showcase__actions {
  padding-top: 32px;
}

.model-showcase {
  overflow: hidden;
  background: var(--white);
}

.model-showcase__head {
  max-width: var(--max);
  margin: 0 auto clamp(24px, 3.2vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, .64fr) minmax(320px, .36fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.model-showcase__head h2 {
  margin-bottom: 0;
  max-width: 650px;
}

.model-showcase__actions {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.model-showcase__actions p {
  margin: 0;
  font-size: 17px;
}

.rail-controls {
  display: inline-flex;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.rail-controls button {
  width: 48px;
  height: 44px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--purple);
  font-size: 20px;
  line-height: 1;
  transition: background .22s var(--ease), color .22s var(--ease);
}

.rail-controls button:last-child { border-right: 0; }
.rail-controls button:hover { background: var(--purple); color: var(--white); }

.model-rail {
  max-width: none;
  width: calc(100% + var(--page-gutter));
  margin: 0 calc(var(--page-gutter) * -1) 0 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(360px, 37vw, 570px);
  grid-template-columns: none;
  gap: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 0 var(--page-gutter) 18px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--purple) transparent;
}

.model-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.model-card {
  display: grid;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.model-card--rail {
  scroll-snap-align: start;
  min-height: 100%;
}
.model-card--rail img {
  aspect-ratio: 1.45;
}
.model-card:hover {
  transform: translateY(-6px);
  border-color: var(--purple);
  box-shadow: 0 28px 80px rgba(17,17,20,.14);
}
.model-card.is-selected { border-color: var(--purple); }
.model-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--black);
}
.model-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .55s var(--ease);
}
.model-card:hover img { transform: scale(1.045); filter: saturate(1.05) contrast(1.02); }
.model-card__index {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.86);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
}
.model-card__body { display: grid; gap: 18px; padding: 22px; }
.model-card h3 { margin: 0 0 8px; font-family: var(--display); font-size: clamp(23px, 1.65vw, 29px); font-weight: 400; line-height: 1.02; letter-spacing: 0; text-transform: none; }
.model-card__price {
  color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.model-card__action {
  display: inline-flex;
  justify-self: start;
  color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 1px solid currentColor;
}
.spec-list { display: grid; margin: 0; padding: 0; list-style: none; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.spec-list strong { color: var(--ink); text-align: right; }

.community-intro {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .58fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--white);
}

.detail-feature {
  display: grid;
  grid-template-columns: minmax(320px, .54fr) minmax(0, .46fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  background: linear-gradient(180deg, var(--white), #fbfaff);
}

.assurance-section {
  padding: var(--section-y) var(--page-gutter);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.assurance-section__head {
  max-width: var(--max);
  margin: 0 auto clamp(26px, 3vw, 42px);
  display: block;
}

.assurance-section__head h2 {
  max-width: 580px;
  margin-bottom: 12px;
}

.assurance-section__head p:not(.section-kicker) {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
}

.assurance-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.assurance-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--white);
}

.assurance-grid img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.assurance-grid article > div {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 22px;
}

.assurance-grid span {
  color: var(--purple);
  text-transform: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.assurance-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.detail-feature__image img {
  width: 100%;
  aspect-ratio: 1.06;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 90px rgba(17,17,20,.1);
}

.detail-feature__content {
  max-width: 620px;
}

.detail-feature__content p:not(.section-kicker) {
  color: var(--ink);
  font-size: 20px;
}

.readiness-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
}

.readiness-grid article {
  display: grid;
  grid-template-columns: 46px minmax(130px, .34fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.readiness-grid span {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-dark);
  background: var(--purple-soft);
  color: transparent;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
}
.readiness-grid span::before,
.readiness-grid span::after {
  position: absolute;
  content: "";
}
.readiness-grid article:nth-child(1) span::before {
  width: 17px;
  height: 12px;
  border: 1px solid var(--purple);
}
.readiness-grid article:nth-child(1) span::after {
  width: 4px;
  height: 4px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--purple);
  border-radius: 50%;
}
.readiness-grid article:nth-child(2) span::before {
  width: 15px;
  height: 15px;
  border: 1px solid var(--purple);
  transform: rotate(45deg);
}
.readiness-grid article:nth-child(2) span::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
}
.readiness-grid article:nth-child(3) span::before {
  width: 14px;
  height: 18px;
  border: 1px solid var(--purple);
}
.readiness-grid article:nth-child(3) span::after {
  width: 8px;
  height: 1px;
  background: var(--purple);
  box-shadow: 0 4px 0 var(--purple), 0 8px 0 var(--purple);
}
.process-ribbon__steps span {
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.readiness-grid strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}
.readiness-grid p {
  margin: 0;
  font-size: 15px;
}

.process-ribbon {
  background: var(--white);
}

.process-ribbon__steps {
  max-width: var(--max);
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-dark);
}

.process-ribbon__steps li {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 235px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.process-ribbon__steps li:last-child { border-right: 0; }
.process-ribbon__steps strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}
.process-ribbon__steps p {
  margin: 0;
  font-size: 15px;
}
.community-intro > * {
  max-width: var(--max);
}
.community-intro p:not(.section-kicker) {
  max-width: 640px;
  font-size: clamp(18px, 1.4vw, 22px);
}
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  border-bottom: 2px solid var(--purple);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(320px, .44fr) minmax(0, .56fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
  background: var(--purple-soft);
}
.feature-band > div:first-child { max-width: 640px; }
.feature-band h2 { font-size: clamp(34px, 3.6vw, 52px); }
.feature-band > div:first-child p:not(.section-kicker) { max-width: 570px; font-size: 18px; }
.buyer-feature-panel {
  display: grid;
  grid-template-columns: minmax(260px, .58fr) minmax(260px, .42fr);
  gap: 16px;
  align-items: stretch;
}
.buyer-feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.buyer-question-list {
  display: grid;
  gap: 14px;
}
.buyer-question-list article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}
.buyer-question-list span {
  color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.buyer-question-list p { margin: 0; color: var(--ink); }
.feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-icon-grid article, .review-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.icon-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid var(--purple);
  background: var(--purple-soft);
  color: var(--purple);
  line-height: 1;
}
.icon-badge svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon-grid h3 {
  color: var(--purple);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}

.review-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-grid p { color: var(--ink); font-family: var(--display); font-size: clamp(18px, 1.35vw, 24px); font-weight: 400; letter-spacing: 0; line-height: 1.18; }
.review-grid span { color: var(--purple); text-transform: none; font-size: 12px; font-weight: 600; letter-spacing: 0; }

.cta-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1040px);
  gap: 24px;
  align-items: center;
  justify-content: start;
  align-content: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(74,39,120,.94) 0%, rgba(74,39,120,.88) 42%, rgba(74,39,120,.55) 72%, rgba(74,39,120,.3) 100%),
    url("./assets/generated-community-wide.png") center / cover;
  color: var(--white);
}
.cta-strip > div {
  max-width: 1040px;
}
.cta-strip .button {
  justify-self: start;
}
.cta-strip--premium {
  min-height: 340px;
  background:
    linear-gradient(90deg, rgba(48,21,83,.98) 0%, rgba(48,21,83,.88) 42%, rgba(48,21,83,.42) 100%),
    url("./assets/generated-community-wide.png") center / cover;
}
.cta-strip h2, .cta-strip p { color: var(--white); }
.cta-strip h2 {
  max-width: 720px;
  font-size: clamp(26px, 2.8vw, 42px);
  line-height: 1.08;
  white-space: normal;
}
.cta-strip .section-kicker { color: #d8c4ff; }

.page-head {
  max-width: none;
  min-height: 430px;
  display: grid;
  align-content: center;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.page-head__inner,
.page-head > :not(.page-head__inner) {
  width: min(var(--max), calc(100vw - (var(--page-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
}
.page-head > p:not(.section-kicker) { max-width: 760px; margin-left: auto; font-size: 20px; }
.page-head h1 { max-width: 900px; font-size: clamp(44px, 5vw, 76px); }
.page-head .section-kicker,
.page-head p:not(.section-kicker) {
  max-width: 760px;
}
.page-head--models h1,
.page-head--models p,
.page-head--models .section-kicker {
  margin-left: 0;
}
.page-head--with-image {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(360px, .55fr);
  gap: 46px;
  align-items: center;
}
.page-head--with-image > * { max-width: none; margin: 0; }
.page-head--with-image h1 { max-width: 680px; font-size: clamp(44px, 4.6vw, 66px); }
.page-head--with-image img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  box-shadow: 0 26px 76px rgba(17,17,20,.1);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(260px, .42fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  min-height: 560px;
  background: var(--white);
}
.about-hero > div { max-width: 900px; }
.about-hero p:not(.section-kicker) { max-width: 720px; font-size: clamp(18px, 1.6vw, 24px); }
.about-hero img {
  width: min(100%, 360px);
  justify-self: center;
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(17,17,20,.1);
}
.community-band {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, .58fr);
  gap: clamp(30px, 5vw, 76px);
  background: var(--purple-soft);
}

.page-hero {
  min-height: 300px;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: 18px;
  align-content: end;
  justify-content: start;
  background: var(--white);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
}

.page-hero > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 19px);
}

.page-hero--media {
  min-height: 520px;
  grid-template-columns: minmax(0, .58fr) minmax(380px, .58fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: center;
}

.page-hero--banner {
  position: relative;
  min-height: clamp(520px, 58vh, 700px);
  display: grid;
  align-content: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-hero--banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.46) 42%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.24) 60%, rgba(0,0,0,.58) 100%);
}

.page-hero__bg,
.model-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--about .page-hero__bg { object-position: 52% center; }
.page-hero--process .page-hero__bg { object-position: 48% center; }
.page-hero--models .page-hero__bg { object-position: 64% center; }

.page-hero--banner .page-hero__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.page-hero--banner h1 {
  color: var(--white);
  max-width: 760px;
  font-size: clamp(48px, 5.4vw, 86px);
  line-height: .98;
}

.page-hero--banner p:not(.section-kicker) {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.48;
}

.page-hero--banner .section-kicker {
  color: #e3d6ff;
}

.page-hero--media > div p:not(.section-kicker) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 19px);
}

.page-hero__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--black);
}

.page-hero__media img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.page-hero__media:hover img { transform: scale(1.035); }

.page-hero__media figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, .65fr) minmax(320px, .55fr);
  gap: clamp(30px, 5vw, 76px);
  background: var(--white);
}

.image-story {
  padding: var(--section-y) var(--page-gutter);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.image-story article {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.image-story img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.image-story article > div {
  padding: 20px;
}

.image-story span {
  display: block;
  margin-bottom: 8px;
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.image-story p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
}

.editorial-section {
  background: var(--white);
}
.community-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}
.community-copy p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}
.principle-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.principle-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.principle-grid strong {
  display: block;
  margin-bottom: 26px;
  color: var(--purple);
  font-family: var(--mono);
  font-size: 24px;
  line-height: 1;
}
.principle-grid h3 {
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
}

.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  font-size: 14px;
  font-weight: 300;
}
.quote-form select {
  appearance: none;
  padding-right: 44px;
  background:
    linear-gradient(45deg, transparent 50%, var(--purple) 50%) calc(100% - 23px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--purple) 50%, transparent 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
    var(--white);
}
.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #7b7983;
  font-weight: 300;
}

.feature-grid, .detail-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-overview {
  padding: var(--section-y) var(--page-gutter);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  background: var(--white);
}

.process-overview article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 0 0 24px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.process-overview article > img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.process-overview span {
  padding: 0 24px;
  color: var(--purple);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.process-overview h2 {
  padding: 0 24px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.process-overview p {
  padding: 0 24px;
  margin: 0;
  font-size: 15px;
}
.feature-grid--process {
  width: auto;
  max-width: none;
  padding: clamp(44px, 5vw, 72px) var(--page-gutter);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.feature-grid article, .detail-grid article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}
.feature-grid article > span { display: inline-block; margin-bottom: 22px; color: var(--purple); font-family: var(--display); font-size: 28px; line-height: 1; }
.feature-grid h2, .feature-grid h3, .detail-grid h3 { color: var(--purple); font-size: 14px; font-weight: 600; line-height: 1.12; letter-spacing: 0; }

.feature-strip--visual {
  background: var(--white);
}

.feature-strip__visual {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, .48fr) minmax(0, .72fr);
  gap: 18px;
  align-items: stretch;
}

.feature-strip__visual > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.feature-strip__visual .detail-grid {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  counter-reset: step;
}
.process-list li { min-height: 180px; padding: 20px; border: 1px solid var(--line); counter-increment: step; }
.process-list li::before { content: counter(step, decimal-leading-zero); display: block; margin-bottom: 24px; color: var(--purple); font-family: var(--display); font-size: 30px; }
.process-list strong { display: block; margin-bottom: 8px; font-size: 13px; }
.process-list span { color: var(--muted); font-size: 14px; line-height: 1.4; }

.quote-page {
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(320px, .42fr) minmax(0, .58fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  background: var(--white);
}

.quote-page--simple {
  align-items: center;
}
.quote-copy {
  max-width: 600px;
  margin-bottom: 28px;
}
.quote-page__intro h1 {
  max-width: 620px;
  font-size: clamp(44px, 4vw, 62px);
  line-height: .96;
}
.quote-proof {
  position: relative;
  max-width: 480px;
}
.quote-proof img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  box-shadow: 0 24px 70px rgba(17,17,20,.1);
}
.quote-proof__panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border-left: 5px solid var(--purple);
  box-shadow: 0 18px 45px rgba(17,17,20,.14);
}
.quote-proof__panel strong {
  color: var(--purple);
  text-transform: none;
  font-size: 12px;
}
.quote-proof__panel span {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.4;
}
.quote-checklist {
  max-width: 520px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.quote-checklist span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--purple-soft);
  color: var(--purple);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.quote-page__intro > img { width: 100%; aspect-ratio: 1.2; object-fit: cover; border: 1px solid var(--line); margin-top: 28px; }
.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-dark);
  background: var(--white);
  box-shadow: 0 22px 65px rgba(17,17,20,.08);
}
.quote-form label { display: grid; gap: 8px; color: var(--purple); text-transform: none; font-size: 13px; font-weight: 300; letter-spacing: 0; }
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(74, 39, 120, .18);
  border-color: var(--purple);
}
.quote-form textarea { min-height: 112px; padding-top: 12px; resize: vertical; }
.quote-form__details, .quote-form__button, .form-note { grid-column: 1 / -1; }
.quote-form__button { justify-self: start; }
.form-note { margin: 0; padding: 14px 16px; background: var(--purple-soft); color: var(--purple); font-weight: 600; }
.form-note.is-error { background: #fff1f1; color: #9f1d1d; }
.quote-form__trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.model-hero {
  display: grid;
  grid-template-columns: minmax(0, .58fr) minmax(460px, .72fr);
  gap: clamp(30px, 5vw, 64px);
  align-items: start;
  min-height: 0;
  background: var(--white);
}

.model-hero--banner {
  position: relative;
  min-height: clamp(560px, 66vh, 780px);
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-content: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.model-hero--banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 43%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.06) 0%, rgba(0,0,0,.22) 58%, rgba(0,0,0,.62) 100%);
}

.model-hero--banner > div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.model-hero--banner h1 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 82px);
  line-height: .98;
}

.model-hero--banner p:not(.section-kicker) {
  max-width: 660px;
  color: rgba(255,255,255,.88);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
}

.model-hero--banner .section-kicker {
  color: #e3d6ff;
}

.model-hero--banner > img.model-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  box-shadow: none;
  aspect-ratio: auto;
}
.model-hero > div { max-width: 620px; }
.model-hero h1 { font-size: clamp(34px, 3.4vw, 48px); }
.model-hero > img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border: 1px solid var(--line-dark);
  box-shadow: 0 26px 76px rgba(17,17,20,.1);
}
.gallery-section h2, .spec-section h2 { max-width: var(--max); margin-left: auto; margin-right: auto; }
.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.model-story {
  display: grid;
  grid-template-columns: minmax(340px, .58fr) minmax(0, .42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: var(--white);
}
.model-story > img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border: 1px solid var(--line);
}
.model-story > div {
  max-width: 560px;
}
.model-story p:not(.section-kicker) {
  color: var(--ink);
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
}
.model-use-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.model-use-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 13px;
  font-weight: 400;
}
.spec-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.spec-card { padding: 26px; border: 1px solid var(--line); }
.spec-card dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; }
.spec-card dl div {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--purple-soft);
}
.spec-card dt { color: var(--purple); text-transform: uppercase; font-size: 12px; font-weight: 600; }
.spec-card dd { margin: 0; color: var(--ink); font-family: var(--sans); font-size: 20px; font-weight: 400; line-height: 1.05; }
.spec-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  line-height: 1.35;
  list-style: none;
}
.spec-card li {
  position: relative;
  min-height: 74px;
  padding: 15px 14px 15px 44px;
  border: 1px solid var(--line);
  background: var(--white);
}
.spec-card li::before {
  position: absolute;
  left: 14px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid var(--purple);
  color: var(--purple);
  content: "✓";
  font-size: 12px;
  font-weight: 600;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(96px, .45fr) .85fr .85fr;
  gap: 36px;
  align-items: start;
  padding: 38px var(--page-gutter) 28px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-brand img { width: 73px; }
.footer-brand-block p { max-width: 360px; margin: 14px 0 0; font-size: 14px; }
.site-footer nav, .site-footer div { display: grid; gap: 10px; align-content: start; }
.site-footer strong { color: var(--purple); text-transform: uppercase; font-size: 12px; }
.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}
.legal-page h1 { font-size: clamp(48px, 6vw, 86px); }
.legal-page p { font-size: 18px; }
.legal-page a { color: var(--purple); font-weight: 600; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(17,17,20,.86);
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1120px, 94vw); max-height: 88vh; object-fit: contain; background: var(--white); }
.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  color: var(--white);
  font-size: 28px;
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-nav { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .site-header.is-open .site-nav {
    position: absolute;
    top: 100%;
    right: var(--page-gutter);
    left: var(--page-gutter);
    width: auto;
    display: grid;
    justify-content: stretch;
    justify-items: stretch;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-top: 0;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(17,17,20,.14);
  }
  .site-header.is-open .site-nav a {
    min-height: 50px;
    width: 100%;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-open .site-nav a[href="./quote.html"] {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
  .cta-strip h2 { white-space: normal; }
  .model-grid, .feature-grid, .detail-grid, .review-grid, .feature-icon-grid, .feature-grid--process, .assurance-grid, .process-overview, .image-story { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-architectural, .community-intro, .feature-band, .buyer-feature-panel, .page-head--with-image, .about-hero, .community-band, .quote-page, .model-hero, .cta-strip, .model-showcase__head, .detail-feature, .page-hero, .page-hero--media, .split-feature, .assurance-section__head, .feature-strip__visual, .model-story { grid-template-columns: 1fr; }
  .page-hero--media { min-height: 0; }
  .feature-strip__visual > img { min-height: 320px; }
  .hero-architectural { min-height: calc(100svh - 76px); }
  .hero-architectural__copy { max-width: 840px; padding-bottom: 8px; }
  .hero-architectural__image { min-height: 92px; }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-ribbon__steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-ribbon__steps li:nth-child(2) { border-right: 0; }
  .process-ribbon__steps li:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .site-header { min-height: 76px; padding: 8px 16px; }
  .brand { width: 172px; height: 58px; }
  .brand img { width: auto; height: 58px; }
  .site-header.is-open .site-nav { right: 12px; left: 12px; width: auto; }
  h1 { font-size: clamp(36px, 10.5vw, 54px); }
  h2 { font-size: clamp(28px, 8vw, 40px); }
  .page-hero {
    min-height: 230px;
    align-content: center;
  }
  .page-hero--banner {
    min-height: 520px;
    align-content: end;
  }
  .page-hero--banner h1 {
    font-size: clamp(40px, 11vw, 58px);
  }
  .page-hero--banner p:not(.section-kicker) {
    font-size: 17px;
  }
  .model-hero--banner {
    min-height: 560px;
    align-content: end;
  }
  .model-hero--banner h1 {
    font-size: clamp(40px, 11vw, 58px);
  }
  .page-hero--media {
    min-height: 0;
    align-content: start;
  }
  .hero-banner { min-height: 520px; }
  .hero-banner__content { width: calc(100% - 32px); margin: 0 16px 34px; }
  .hero-banner::after { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.78)); }
  .quote-page__intro h1 { font-size: clamp(36px, 10.5vw, 52px); }
  .hero-architectural {
    padding-top: 26px;
    background-size: 54px 54px;
    min-height: calc(100svh - 70px);
  }
  .hero-architectural__copy h1 {
    font-size: clamp(34px, 9.4vw, 42px);
    line-height: 1;
  }
  .hero-architectural__copy p {
    font-size: 18px;
    line-height: 1.42;
  }
  .hero-architectural__image { min-height: 92px; }
  .hero-architectural__image {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .hero-architectural__bg { object-position: 66% center; }
  .hero-stat {
    position: static;
    min-width: 0;
    width: 100%;
    padding: 13px 14px;
  }
  .hero-stat strong { font-size: 26px; }
  .hero-stat--price,
  .hero-stat--scope {
    inset: auto;
  }
  .model-showcase__actions { gap: 16px; }
  .model-rail {
    grid-auto-columns: minmax(282px, 84vw);
    width: calc(100% + 18px);
    padding-left: 18px;
    padding-right: 18px;
  }
  .readiness-grid article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .process-ribbon__steps {
    grid-template-columns: 1fr;
  }
  .process-ribbon__steps li {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .process-ribbon__steps li:last-child { border-bottom: 0; }
  .quote-form { padding: 18px; }
  .quote-checklist { grid-template-columns: 1fr; }
  .quote-proof__panel { position: static; border: 1px solid var(--line); border-left: 5px solid var(--purple); box-shadow: none; }
  .model-grid, .feature-grid, .feature-grid--process, .detail-grid, .review-grid, .feature-icon-grid, .process-list, .principle-grid, .quote-form, .spec-section, .spec-card dl, .spec-card ul, .site-footer, .gallery-grid, .assurance-grid, .process-overview, .image-story, .feature-strip__visual .detail-grid { grid-template-columns: 1fr; }
  .section, .community-intro, .feature-band, .reviews-section, .cta-strip, .page-head, .catalog-section, .feature-strip, .timeline-section, .quote-page, .about-hero, .community-band, .principle-section, .model-page > section, .model-showcase, .detail-feature, .process-ribbon, .page-hero, .split-feature, .editorial-section, .assurance-section, .process-overview, .image-story { padding-right: 18px; padding-left: 18px; }
  .model-story > img { aspect-ratio: 1.2; }
  .model-use-grid { grid-template-columns: 1fr; }
  .page-hero__media figcaption { position: static; }
  .feature-strip__visual > img { min-height: 0; }
  .quote-form__details, .quote-form__button, .form-note { grid-column: auto; }
  .gallery-grid img { min-height: 0; }
}

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