/* Gemini Caravans — clean rebuild
   Brand: gold · black · white · red · baby blue */

@import url("https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600&display=swap");

:root {
  --bg: #f6f6f4;
  --bg-alt: #ffffff;
  --ink: #0a0a0a;
  --body: #3d3d3d;
  --muted: #6a6a6a;
  --gold: #c4a35a;
  --gold-deep: #9a7b32;
  --black: #0a0a0a;
  --blue-soft: rgba(142, 200, 230, 0.2);
  --line: rgba(10, 10, 10, 0.1);
  --shadow: 0 16px 40px rgba(10, 10, 10, 0.07);
  --radius: 0;
  --max: 1160px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-nav: "General Sans", "Figtree", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

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

[hidden] {
  display: none !important;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0;
}

p {
  margin: 0;
  color: var(--body);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  max-width: 100%;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.nav {
  height: 96px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand img {
  width: 88px;
  max-height: 72px;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.menu > a,
.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  max-width: fit-content;
  padding: 10px 12px;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  line-height: 1.4;
  height: 40px;
  box-sizing: border-box;
}

/* Gold underline: half-width at centre, expands to text width */
.menu > a::before,
.dropdown-trigger::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0.5);
  transform-origin: 50% 50%;
  opacity: 0;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease;
}

.dropdown-trigger::before {
  right: 24px;
}

.menu > a:hover,
.menu > a.active,
.menu > a[aria-current="page"],
.dropdown-trigger:hover,
.dropdown-trigger.active,
.nav-dropdown:focus-within .dropdown-trigger {
  background: transparent;
  color: #fff;
}

.menu > a:hover::before,
.menu > a.active::before,
.menu > a[aria-current="page"]::before,
.nav-dropdown:hover .dropdown-trigger::before,
.nav-dropdown:focus-within .dropdown-trigger::before,
.dropdown-trigger.active::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-trigger::after {
  content: "▾";
  font-size: 10px;
  margin-left: 5px;
  opacity: 0.75;
  line-height: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger::after,
.nav-dropdown:focus-within .dropdown-trigger::after {
  transform: rotate(180deg);
  opacity: 1;
}

.ranges-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  width: max-content;
  max-width: min(320px, calc(100vw - 24px));
  padding: 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--gold);
  border-radius: 0;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.28s;
  z-index: 40;
  box-sizing: border-box;
}

.nav-dropdown:hover .ranges-nav-panel,
.nav-dropdown:focus-within .ranges-nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ranges-nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  margin: 0;
  border-radius: 0;
  border-left: 2px solid transparent;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1.35;
  height: auto;
  min-height: 0;
  white-space: normal;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ranges-nav-name {
  display: block;
  width: 100%;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
  color: inherit;
}

.ranges-nav-detail {
  display: block;
  width: 100%;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.35;
}

.ranges-nav-item:hover,
.ranges-nav-item.is-current {
  background: rgba(255, 255, 255, 0.06);
  border-left-color: var(--gold);
  color: #fff;
}

.ranges-nav-item:hover .ranges-nav-name,
.ranges-nav-item.is-current .ranges-nav-name {
  color: var(--gold);
}

.ranges-nav-item:hover .ranges-nav-detail,
.ranges-nav-item.is-current .ranges-nav-detail {
  color: rgba(255, 255, 255, 0.55);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: auto;
  padding: 10px 2px 12px;
  border-radius: 0;
  border: 0;
  border-bottom: 0;
  background: transparent;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition:
    color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    letter-spacing 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0.48);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease;
}

.btn-gold {
  color: var(--ink);
}

.btn-gold:hover {
  color: var(--gold-deep);
  letter-spacing: 0.18em;
}

.btn-gold:hover::after {
  transform: scaleX(1);
  background: var(--gold-deep);
}

.btn-text {
  color: var(--muted);
}

.btn-text::after {
  background: rgba(10, 10, 10, 0.22);
  transform: scaleX(0.42);
}

.btn-text:hover {
  color: var(--gold-deep);
  letter-spacing: 0.16em;
}

.btn-text:hover::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* Dark heroes: black → gold underline CTAs stay readable */
.hero .btn-gold,
.finance-hero .btn-gold,
.section-lineup .btn-gold,
.factory-story .btn-gold,
.video-showcase .btn-gold {
  color: #fff;
}

.hero .btn-gold:hover,
.finance-hero .btn-gold:hover,
.section-lineup .btn-gold:hover,
.factory-story .btn-gold:hover,
.video-showcase .btn-gold:hover {
  color: var(--gold);
}

.hero .btn-gold::after,
.finance-hero .btn-gold::after,
.section-lineup .btn-gold::after,
.factory-story .btn-gold::after,
.video-showcase .btn-gold::after {
  background: var(--gold);
  transform: scaleX(0.48);
}

.hero .btn-gold:hover::after,
.finance-hero .btn-gold:hover::after,
.section-lineup .btn-gold:hover::after,
.factory-story .btn-gold:hover::after,
.video-showcase .btn-gold:hover::after {
  transform: scaleX(1);
  background: var(--gold);
}

/* Light-page gold CTAs: ink → gold underline, no boxes */
.cta-band .btn-gold,
.model-hero .btn-gold,
.range-copy .btn-gold,
.section-alt .btn-gold:not(.btn-text) {
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 10px 2px 12px;
  min-height: auto;
}

.cta-band .btn-gold:hover,
.model-hero .btn-gold:hover,
.range-copy .btn-gold:hover,
.section-alt .btn-gold:not(.btn-text):hover {
  color: var(--gold-deep);
  background: transparent;
}

.cta-band .btn-text {
  color: var(--muted);
}

.cta-band .btn-text:hover {
  color: var(--gold-deep);
}

.btn-ghost {
  color: var(--ink);
}

.btn-ghost:hover {
  color: var(--gold-deep);
  letter-spacing: 0.16em;
}

.btn-ghost-light {
  color: rgba(255, 255, 255, 0.92);
}

.btn-ghost-light::after {
  background: rgba(255, 255, 255, 0.45);
}

.btn-ghost-light:hover {
  color: #fff;
}

.btn-ghost-light:hover::after {
  background: #fff;
  transform: scaleX(1);
}

/* Header nav CTA only — nav typography + original left-grow underline */
.site-header .btn.btn-gold.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  position: relative;
  min-height: auto;
  height: 40px;
  box-sizing: border-box;
  padding: 10px 2px 12px;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-nav);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header .btn.btn-gold.nav-cta::before {
  display: none;
}

.site-header .btn.btn-gold.nav-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0.48);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.35s ease;
}

.site-header .btn.btn-gold.nav-cta:hover {
  color: var(--gold);
  background: transparent;
  letter-spacing: 0.04em;
}

.site-header .btn.btn-gold.nav-cta:hover::after {
  transform: scaleX(1);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: #fff;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  padding: 10px 2px;
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.menu-toggle:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: min(86vh, 860px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0a0a0a;
  color: #fff;
}

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

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
}

@media (max-width: 900px) {
  .hero-poster {
    object-fit: cover;
    object-position: 82% center;
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.hero-scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 1;
  transition: opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.hero.is-revealed .hero-scrim::after {
  opacity: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 88px;
  max-width: 780px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 8px 0 10px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 18ch;
  margin: 0 0 28px;
}

.hero h1 .hero-line {
  display: block;
}

.hero .eyebrow {
  color: var(--gold);
}

/* Premium hero entrance — motion-ok only; reduced-motion shows final state */
@media (prefers-reduced-motion: no-preference) {
  .hero-line {
    opacity: 0;
    transform: translateY(18px);
    will-change: transform, opacity;
  }

  .hero h1 .hero-line {
    display: block;
  }

  @keyframes heroRiseIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  @keyframes heroBrandIn {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  .hero.is-hero-1 .hero-line[data-hero-beat="1"] {
    animation: heroRiseIn 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero.is-hero-2 .hero-line[data-hero-beat="2"] {
    animation: heroBrandIn 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero.is-hero-3 .hero-line[data-hero-beat="3"],
  .hero.is-hero-4 .hero-line[data-hero-beat="4"] {
    animation: heroRiseIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero.is-hero-5 .hero-line[data-hero-beat="5"] {
    animation: heroRiseIn 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sections */
.section {
  padding: 88px 0;
}

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

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 16ch;
  margin-top: 8px;
}

.section-head p {
  max-width: 42ch;
}

.page-hero {
  padding: 72px 0 48px;
  background:
    radial-gradient(circle at 90% 10%, rgba(142, 200, 230, 0.18), transparent 36%),
    linear-gradient(180deg, #fff, var(--bg));
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  margin: 8px 0 16px;
}

.page-hero p {
  max-width: 46ch;
  margin-bottom: 24px;
}

.page-hero figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #eceff2;
  min-height: 320px;
}

.page-hero figure img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.media-note {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 8px;
  padding: 32px;
  background:
    radial-gradient(circle at 18% 14%, rgba(196, 163, 90, 0.2), transparent 46%),
    radial-gradient(circle at 85% 90%, rgba(142, 200, 230, 0.12), transparent 40%),
    linear-gradient(160deg, #161616, #0a0a0a);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
}

.media-note span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.media-note strong {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -0.05em;
  color: #fff;
}

.media-note em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0;
}

.card.feature-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.card p {
  line-height: 1.6;
}

.icon-chip {
  width: 52px;
  height: 52px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  border: 1px solid rgba(142, 200, 230, 0.45);
  color: var(--ink);
  margin-bottom: 16px;
}

.icon-chip svg {
  width: 26px;
  height: 26px;
}

.feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.feature-row .icon-chip {
  margin: 0;
}

/* Lineup — stacked full-size stage (active in front) */
.lineup {
  text-align: center;
}

.section-lineup {
  background:
    radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 42%),
    linear-gradient(180deg, #0f0f0f 0%, #161616 100%);
  color: #fff;
  padding: 56px 0 48px;
}

.section-lineup .eyebrow {
  color: var(--gold);
}

.section-lineup .section-head {
  display: block;
  text-align: center;
  margin-inline: auto;
}

.section-lineup .section-head h2 {
  margin-inline: auto;
}

.section-lineup h2,
.section-lineup .lineup-copy h3,
.section-lineup .lineup-specs strong,
.section-lineup .lineup-price strong {
  color: #fff;
}

.section-lineup .lineup-copy p,
.section-lineup .lineup-specs span,
.section-lineup .lineup-price span {
  color: rgba(255, 255, 255, 0.62);
}

.section-lineup .lineup-specs {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.section-lineup .btn-text {
  color: rgba(255, 255, 255, 0.88);
}

.section-lineup .btn-text::after {
  background: rgba(255, 255, 255, 0.35);
}

.section-lineup .lineup-arrow {
  background: transparent;
  border: 0;
  color: var(--gold);
}

.section-lineup .lineup-dots button {
  background: rgba(255, 255, 255, 0.22);
}

.section-lineup .lineup-dots button.is-active {
  background: var(--gold);
}

.lineup-price {
  margin: 22px auto 12px;
  text-align: center;
}

.lineup-price span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lineup-price strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 36px);
  letter-spacing: -0.03em;
}

.lineup-price em,
.lineup-price [data-lineup-weekly] {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.lineup-rail {
  position: relative;
  margin: 16px auto 4px;
  padding: 0 64px;
  max-width: 1100px;
}

.lineup-visual-stage {
  position: relative;
  width: 100%;
  height: clamp(170px, 22vw, 260px);
  margin: 0 auto;
  overflow: hidden;
  padding-inline: clamp(40px, 8vw, 88px);
  box-sizing: border-box;
}

.lineup-model {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48%;
  left: 26%;
  display: grid;
  place-items: center;
  transition:
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.86);
  filter: none;
  z-index: 1;
}

.lineup-model.is-active {
  left: 26%;
  width: 48%;
  opacity: 1;
  transform: scale(1);
  z-index: 3;
  pointer-events: auto;
}

.lineup-model.is-prev {
  left: -2%;
  width: 34%;
  opacity: 0.5;
  transform: scale(0.88);
  z-index: 1;
}

.lineup-model.is-next {
  left: 68%;
  width: 34%;
  opacity: 0.5;
  transform: scale(0.88);
  z-index: 1;
}

.lineup-model.is-hidden-left {
  left: -40%;
  width: 30%;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}

.lineup-model.is-hidden-right {
  left: 110%;
  width: 30%;
  opacity: 0;
  transform: scale(0.8);
  z-index: 0;
}

.lineup-image-wrap {
  width: 100%;
}

.lineup-image-wrap img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  transition: none;
}

.lineup-image-wrap--pending {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 12px;
  min-height: clamp(140px, 18vw, 230px);
  overflow: visible;
}

.lineup-image-wrap--pending .lineup-pending-logo {
  width: clamp(44px, 5.5vw, 56px);
  max-width: 56px;
  height: auto;
  opacity: 0.72;
  filter: none;
}

/* Shared 3D logo spin (used on build intro, carousels, model heroes, builder thumbs). */
@keyframes builderLogoShowcase {
  0%,
  16% {
    transform: perspective(900px) rotateY(0deg);
  }
  100% {
    transform: perspective(900px) rotateY(360deg);
  }
}

.gemini-logo-3d {
  display: block;
  transform-style: preserve-3d;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

@media (prefers-reduced-motion: no-preference) {
  .gemini-logo-3d,
  .lineup-image-wrap--pending .lineup-pending-logo,
  .xt-opener-media--pending .xt-opener-logo,
  .builder-carousel-visual--pending .gemini-logo-3d {
    animation: builderLogoShowcase 9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  }
}

.builder-option-thumb.is-logo-placeholder {
  background: #111;
  overflow: visible;
}

.builder-option-thumb.is-logo-placeholder .builder-thumb-logo {
  width: clamp(40px, 70%, 56px);
  height: auto;
  max-height: 70%;
  object-fit: contain;
  padding: 0;
  filter: none;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

.builder-option-visual:has(.builder-option-thumb.is-logo-placeholder) {
  overflow: visible;
}

.builder-option-visual .builder-option-thumb.is-logo-placeholder {
  background: #111;
  overflow: visible;
}

.builder-option-visual .builder-option-thumb.is-logo-placeholder .builder-thumb-logo {
  width: clamp(52px, 24%, 80px);
  max-height: none;
}

.gallery-pending-stage {
  display: grid;
  place-items: center;
  min-height: clamp(140px, 20vw, 200px);
  margin-bottom: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 163, 90, 0.14), transparent 42%),
    #0a0a0a;
  overflow: visible;
}

.gallery-pending-stage .gemini-logo-3d {
  width: clamp(56px, 8vw, 72px);
  height: auto;
  opacity: 0.75;
  filter: none;
}

.lineup-pending-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(10px, 1.05vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.lineup-pending-label strong {
  font-weight: 800;
}

.lineup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: auto;
  height: auto;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.95;
}

.lineup-arrow:hover {
  color: #dfc06e;
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
  background: transparent;
  border: 0;
}

.lineup-prev {
  left: 4px;
}

.lineup-next {
  right: 4px;
}

.lineup-copy {
  margin-top: 8px;
  margin-bottom: 6px;
}

.lineup-copy h3 {
  font-size: clamp(32px, 4.8vw, 52px);
  margin: 2px 0 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lineup-copy p {
  color: var(--muted);
  margin: 0 0 4px;
}

.lineup-specs {
  margin: 14px auto 0;
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 16px;
  padding: 6px 0 0;
  border-top: 1px solid var(--line);
}

.lineup-specs div {
  padding: 10px 4px;
}

.lineup-specs span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lineup-specs strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
  color: var(--ink);
}

.lineup-cta-row {
  margin-top: 24px;
  justify-content: center;
}

.lineup-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.lineup-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(10, 10, 10, 0.18);
  cursor: pointer;
  padding: 0;
}

.lineup-dots button.is-active {
  background: var(--gold);
  width: 28px;
  border-radius: 999px;
}

.lineup-data {
  display: none;
}

/* Split / factory */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.split figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 380px;
  position: relative;
}

.split figure img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.split figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-copy h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 8px 0 16px;
  max-width: 14ch;
}

.split-copy p {
  margin-bottom: 22px;
  max-width: 46ch;
}

/* Reviews */
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-size: 14px;
}

.google-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
}

.google-review {
  padding: 0 0 24px;
  border-bottom: 1px solid var(--line);
}

.google-review .review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.google-review img {
  width: 40px;
  height: 40px;
  border-radius: 0;
  object-fit: cover;
}

.google-review .review-meta {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.google-review .review-meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 2px;
}

.google-review p {
  font-size: 16px;
  line-height: 1.65;
  max-width: 52ch;
}

/* Model-page trust preview (reviews + mini FAQ) */
.model-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 5vw, 56px);
  align-items: start;
}

.model-trust-reviews {
  display: grid;
  gap: 20px;
}

.model-trust-reviews .google-review {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.model-trust-reviews .google-review p {
  font-size: 15px;
  margin: 0;
}

.model-trust-link {
  justify-self: start;
  margin-top: 4px;
}

.model-trust-faq .model-trust-link {
  margin-top: 16px;
}

.model-trust-faq .faq-item a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s ease;
}

.model-trust-faq .faq-item a:hover {
  color: var(--ink);
}

.model-trust-faq .faq-item {
  border: 1px solid var(--line);
  background: #fff;
}

.model-trust-faq .faq-item + .faq-item {
  margin-top: 10px;
}

.model-trust-faq .faq-item summary {
  padding: 16px 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.model-trust-faq .faq-item summary::-webkit-details-marker {
  display: none;
}

.model-trust-faq .faq-item p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .model-trust-grid {
    grid-template-columns: 1fr;
  }
}

.google-review .review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-actions {
  margin-top: 28px;
}

/* Gallery teaser / pages */
.gallery-teaser {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
}

.home-gallery {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-teaser .stack {
  display: grid;
  gap: 16px;
}

.gallery-teaser figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  background: #111;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.home-gallery figure {
  aspect-ratio: 5 / 4;
  min-height: 0;
}

.gallery-teaser .large {
  min-height: 100%;
  aspect-ratio: auto;
  height: 100%;
}

.gallery-teaser img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-teaser figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
}

.gallery-aside {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* CTA band — open, not boxed */
.cta-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 36px 0 8px;
}

.cta-band h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 8px 0 10px;
}

.cta-band p {
  max-width: 48ch;
}

.cta-band .actions {
  flex-shrink: 0;
}

/* Ranges — cinematic four-model showcase */
.ranges-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 9vw, 128px) 0 72px;
  background:
    radial-gradient(circle at 50% 22%, rgba(196, 163, 90, 0.13), transparent 30%),
    radial-gradient(circle at 8% 72%, rgba(142, 200, 230, 0.07), transparent 26%),
    linear-gradient(180deg, #070707 0%, #111 58%, #090909 100%);
}

.ranges-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 28%, #000 76%, transparent);
}

.ranges-intro {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.ranges-intro h1 {
  max-width: 900px;
  margin: 10px auto 22px;
  color: #fff;
  font-size: clamp(54px, 8.5vw, 112px);
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.ranges-intro p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(17px, 2vw, 21px);
}

.ranges-lineup {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  padding: 28px 0 0;
  outline: none;
}

.ranges-lineup:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
}

.ranges-model-index {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--font-display);
}

.ranges-model-index span {
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
}

.ranges-model-index em {
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.1em;
}

.range-studio-card {
  position: relative;
  display: grid;
  align-content: end;
  justify-items: start;
  width: 100%;
  height: 76%;
  min-height: 230px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(196, 163, 90, 0.32);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.22)),
    linear-gradient(0deg, #070707, transparent 70%),
    url("hero_dark_studio.webp") center / cover;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5);
  text-align: left;
}

.range-studio-card::before {
  content: "";
  position: absolute;
  width: 56%;
  height: 38%;
  top: 27%;
  right: 6%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 54% 18% 12% 10%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(196, 163, 90, 0.03));
  box-shadow:
    -34px 42px 0 -30px rgba(196, 163, 90, 0.55),
    70px 42px 0 -30px rgba(196, 163, 90, 0.55);
  transform: skewX(-5deg);
}

.range-studio-card > * {
  position: relative;
  z-index: 1;
}

.range-studio-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.range-studio-card strong {
  margin-top: 3px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.range-studio-card em {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.range-studio-odyssey {
  background-position: 70% center;
}

.ranges-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 56px;
  align-items: end;
  max-width: 1000px;
  margin: 18px auto 0;
  text-align: left;
}

.ranges-detail-main {
  max-width: 700px;
}

.ranges-detail .lineup-copy {
  margin: 4px 0 10px;
}

.ranges-detail .lineup-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.ranges-detail .lineup-copy p {
  margin-top: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
}

.ranges-description {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

.ranges-detail .lineup-price {
  min-width: 180px;
  margin: 0 0 4px;
  text-align: right;
}

.ranges-detail .lineup-price strong {
  font-size: clamp(34px, 4vw, 48px);
}

.ranges-lineup .lineup-specs {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  margin-top: 28px;
  padding: 14px 0;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ranges-lineup .lineup-specs div {
  padding: 14px 12px;
  min-width: 0;
  text-align: center;
}

.ranges-lineup .lineup-specs div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.ranges-lineup .lineup-specs span {
  line-height: 1.25;
  text-align: center;
}

.ranges-lineup .lineup-specs strong {
  font-size: clamp(14px, 1.85vw, 21px);
  line-height: 1.28;
  white-space: normal;
  overflow-wrap: anywhere;
  text-align: center;
  margin-top: 8px;
}

.ranges-lineup .lineup-cta-row {
  margin-top: 30px;
}

.ranges-lineup .lineup-dots {
  margin-top: 28px;
}

.ranges-lineup .lineup-dots button {
  width: 34px;
  height: 3px;
  border-radius: 0;
}

.ranges-lineup .lineup-dots button.is-active {
  width: 58px;
  border-radius: 0;
}

.ranges-overview {
  padding: clamp(72px, 9vw, 116px) 0;
  background: #f1efe9;
}

.ranges-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(10, 10, 10, 0.22);
}

.ranges-overview-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: center;
  min-height: 126px;
  padding: 24px 28px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.22);
  color: var(--ink);
  transition: color 0.28s ease, background-color 0.28s ease, padding-left 0.28s ease;
}

.ranges-overview-grid a:nth-child(odd) {
  border-right: 1px solid rgba(10, 10, 10, 0.22);
}

.ranges-overview-grid a:hover {
  padding-left: 36px;
  background: #111;
  color: #fff;
}

.ranges-overview-grid span {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
}

.ranges-overview-grid strong {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.6vw, 34px);
}

.ranges-overview-grid small {
  grid-column: 2 / -1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
}

.ranges-overview-grid a:hover small {
  color: rgba(255, 255, 255, 0.58);
}

.ranges-overview-grid em {
  grid-column: 3;
  grid-row: 1;
  color: var(--gold-deep);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.ranges-final-cta {
  padding: clamp(70px, 8vw, 104px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 12% 50%, rgba(196, 163, 90, 0.18), transparent 30%),
    #0c0c0c;
}

.ranges-final-cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 9vw, 110px);
  align-items: end;
}

.ranges-final-cta h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.ranges-final-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 18px;
}

.ranges-final-cta .btn-gold {
  color: #fff;
}

.ranges-final-cta .btn-text {
  color: rgba(255, 255, 255, 0.68);
}

.ranges-final-cta .btn-text::after {
  background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 900px) {
  .ranges-showcase {
    padding-top: 70px;
  }

  .ranges-lineup .lineup-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .ranges-lineup .lineup-specs div + div {
    border-left: 0;
  }

  .ranges-lineup .lineup-specs div:not(:nth-child(3n + 1)) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ranges-lineup .lineup-specs div:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ranges-lineup .lineup-specs div:nth-child(3n + 1):nth-child(n + 4) {
    border-left: 0;
  }

  .ranges-detail {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ranges-detail .lineup-price {
    text-align: left;
  }

  .ranges-overview-grid {
    grid-template-columns: 1fr;
  }

  .ranges-overview-grid a:nth-child(odd) {
    border-right: 0;
  }

  .ranges-final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .ranges-intro h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .ranges-lineup {
    margin-top: 28px;
  }

  .ranges-model-index {
    position: static;
    justify-content: flex-end;
    margin-bottom: 8px;
  }

  .range-studio-card {
    height: 82%;
    min-height: 170px;
    padding: 22px;
  }

  .range-studio-card::before {
    width: 54%;
    height: 32%;
    top: 27%;
  }

  .ranges-detail .lineup-copy h2 {
    font-size: 46px;
  }

  .ranges-lineup .lineup-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .ranges-lineup .lineup-specs div + div {
    border-left: 0;
  }

  .ranges-lineup .lineup-specs div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ranges-lineup .lineup-specs div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .ranges-lineup .lineup-specs div:nth-child(odd):nth-child(n + 3) {
    border-left: 0;
  }

  .ranges-lineup .lineup-specs div:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-left: 0;
    text-align: center;
  }

  .ranges-overview-grid a {
    grid-template-columns: 34px 1fr auto;
    gap: 10px 14px;
    padding: 20px 0;
  }

  .ranges-overview-grid a:hover {
    padding-left: 14px;
    padding-right: 14px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .ranges-overview-grid a {
    transition: none;
  }
}

/* Model page — stacked photo then light band */
.model-hero {
  display: grid;
  gap: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  overflow: visible;
  min-height: 0;
}

.model-hero-media {
  position: relative;
  width: 100%;
  min-height: min(44vh, 480px);
  max-height: 560px;
  background: #111;
  overflow: hidden;
}

.model-hero-media img {
  width: 100%;
  height: 100%;
  min-height: min(44vh, 480px);
  max-height: 560px;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}

.model-hero--stage .model-hero-media {
  background: #0a0a0a;
}

.model-hero--stage .model-hero-media img {
  object-fit: contain;
  object-position: center 58%;
  background: #0a0a0a;
}

.model-hero--pending .model-hero-media {
  min-height: min(36vh, 380px);
  max-height: 420px;
  background:
    radial-gradient(ellipse 70% 55% at 60% 60%, rgba(196, 163, 90, 0.14), transparent 58%),
    #0c0c0c;
}

.model-hero--pending .model-hero-media img {
  min-height: min(36vh, 380px);
  max-height: 420px;
  object-fit: cover;
  opacity: 0.9;
}

.model-hero-caption {
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-hero-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 36px 0 28px;
}

.model-hero-inner {
  max-width: 720px;
  padding: 0 0 28px;
}

.model-hero .eyebrow {
  color: var(--gold-deep);
}

.model-hero h1 {
  font-size: clamp(44px, 7vw, 80px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 8px 0 14px;
  color: var(--ink);
}

.model-hero-inner > p {
  max-width: 40ch;
  margin: 0 0 24px;
  color: var(--body);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
}

.model-hero-bar {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  background: transparent;
}

.model-hero-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 20px 48px;
}

.model-hero-price span,
.model-finance > span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.model-hero-price strong,
.model-finance strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.model-finance {
  display: grid;
  gap: 2px;
  text-decoration: none;
  color: inherit;
  padding-left: 28px;
  border-left: 1px solid var(--line);
  align-content: end;
}

.model-finance em {
  font-style: normal;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.model-finance:hover em {
  color: var(--ink);
}

.model-hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  max-width: 68ch;
}

.size-switch {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0 28px;
}

.size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.size-btn {
  position: relative;
  min-width: auto;
  min-height: auto;
  padding: 10px 4px 12px;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.size-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(10, 10, 10, 0.18);
  transform: scaleX(0.48);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}

.size-btn:hover {
  color: var(--gold-deep);
  letter-spacing: 0.14em;
}

.size-btn:hover::after {
  transform: scaleX(1);
  background: var(--gold);
}

.size-btn.is-active {
  background: transparent;
  color: var(--ink);
}

.size-btn.is-active::after {
  transform: scaleX(1);
  background: var(--gold);
}

.size-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.size-stats article {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
}

.size-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.size-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 14px;
}

th {
  color: var(--ink);
  background: #f1f1ef;
  font-weight: 800;
  width: 34%;
}

td {
  color: var(--body);
}

.size-table th[data-size-col]:not(.is-selected-size-col),
.size-table td[data-size-col]:not(.is-selected-size-col) {
  display: none;
}

/* Model pages: size spec table stays single-column until compare mode */
body.xt-page .xt-spec-block--size:not(.is-comparing) .size-table th[data-size-col]:not(.is-selected-size-col),
body.xt-page .xt-spec-block--size:not(.is-comparing) .size-table td[data-size-col]:not(.is-selected-size-col) {
  display: none;
}

body.xt-page .xt-spec-block--size.is-comparing .size-table th[data-size-col],
body.xt-page .xt-spec-block--size.is-comparing .size-table td[data-size-col] {
  display: table-cell;
}

/* Contact */
.detail-rail {
  display: grid;
  gap: 16px;
  margin: 22px 0 26px;
}

.detail-rail div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
}

.detail-rail span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.detail-rail a,
.detail-rail p {
  color: var(--ink);
  font-size: 17px;
}

.form-card {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  box-shadow: none;
  border-radius: 0;
  padding: 28px 0 0;
}

.form-confirmation {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-radius: 0;
  background: rgba(142, 200, 230, 0.2);
  border: 1px solid rgba(142, 200, 230, 0.45);
}

.form-confirmation strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 4px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

.field input,
.field textarea,
.field select {
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.field select {
  min-height: 50px;
}

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

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-pill {
  border: 0;
  border-bottom: 2px solid rgba(10, 10, 10, 0.16);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  padding: 8px 2px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.choice-pill:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-1px);
}

.choice-pill.active {
  background: transparent;
  color: var(--ink);
  border-bottom-color: var(--gold);
}

.factory-visit-section {
  scroll-margin-top: 90px;
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 163, 90, 0.14), transparent 36%),
    #101010;
  color: #fff;
}

.factory-visit-section .visit-calendar-card,
.factory-visit-section .visit-day,
.factory-visit-section .visit-slot,
.factory-visit-section .visit-details,
.factory-visit-section .visit-handoff-media,
.factory-visit-section .visit-step-label span,
.factory-visit-section .form-confirmation {
  border-radius: 0;
}

.factory-visit-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 8vw, 108px);
  align-items: start;
}

.factory-visit-copy {
  position: sticky;
  top: 120px;
}

.factory-visit-copy .eyebrow {
  color: var(--gold);
}

.factory-visit-copy h2 {
  max-width: 16ch;
  color: #fff;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 0.98;
}

.factory-visit-copy > p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.7);
}

.factory-visit-intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.visit-hours {
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.visit-hours span,
.visit-hours strong,
.visit-hours p {
  display: block;
}

.visit-hours span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.visit-hours strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 25px;
}

.visit-hours p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.factory-visit-copy .visit-confirmation-note {
  margin-top: 28px;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.5;
  max-width: 42ch;
}

.visit-booker {
  display: grid;
  gap: 30px;
}

.visit-step-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-step-label span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
}

.visit-day-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
  gap: 12px;
  align-items: stretch;
}

.visit-days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.visit-calendar-card {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.visit-calendar-card label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visit-calendar-card input[type="date"] {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #101010;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color-scheme: dark;
}

.visit-calendar-card input[type="date"].is-selected {
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.16);
}

.visit-calendar-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.4;
}

.visit-day {
  display: grid;
  gap: 2px;
  padding: 12px 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.visit-day em {
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.visit-day strong {
  font-family: var(--font-display);
  font-size: 17px;
}

.visit-day:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.visit-day.is-selected {
  border-color: var(--gold);
  background: rgba(196, 163, 90, 0.16);
}

.visit-day.is-selected em {
  color: var(--gold);
}

.visit-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
}

.visit-slots-hint {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
}

.visit-slot {
  padding: 11px 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.visit-slot:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.visit-slot.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: #101010;
}

.visit-details {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #f6f5f1;
}

.visit-details .visit-step-label {
  color: var(--ink);
}

.visit-summary {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(196, 163, 90, 0.12);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 19px;
}

.factory-visit-section .form-confirmation {
  color: var(--ink);
}

@media (max-width: 900px) {
  .factory-visit-layout {
    grid-template-columns: 1fr;
  }

  .factory-visit-copy {
    position: static;
  }

  .factory-visit-copy h2 {
    max-width: none;
  }

  .visit-day-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .visit-days {
    grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  }

  .visit-slots {
    grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  }

  .visit-details {
    padding: 24px 18px;
  }
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-card.is-sending {
  opacity: 0.75;
  pointer-events: none;
}

/* Gallery archive */
.model-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.model-tab {
  min-height: 48px;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
}

.model-tab.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.model-gallery-panel {
  display: none;
}

.model-gallery-panel.active {
  display: block;
}

.model-gallery-panel h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 18px;
}

.archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.archive-layout figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #111;
  position: relative;
}

.archive-hero {
  aspect-ratio: 21 / 9;
  min-height: 300px;
  max-height: 480px;
}

.archive-hero img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: 50% 68%;
  display: block;
}

.archive-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.archive-grid-dense {
  grid-template-columns: repeat(4, 1fr);
}

.model-photo-grid {
  grid-template-columns: repeat(4, 1fr);
}

.archive-grid figure {
  aspect-ratio: 4 / 3;
  min-height: 0;
}

.archive-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.archive-layout figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  padding: 8px 12px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 800;
}

.archive-status {
  background: linear-gradient(160deg, #f0f6fa, #e5eef4);
  border: 1px dashed rgba(142, 200, 230, 0.55);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 8px;
}

.archive-status.full {
  min-height: 280px;
}

.archive-status span {
  color: var(--gold-deep);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.video-showcase {
  background:
    radial-gradient(circle at 12% 0%, rgba(196, 163, 90, 0.16), transparent 40%),
    linear-gradient(180deg, #101010, #050505);
  color: #fff;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.video-showcase-copy h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  margin: 0 0 20px;
  line-height: 1.02;
}

.video-showcase-copy p {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
  max-width: 46ch;
  line-height: 1.65;
  font-size: clamp(16px, 1.8vw, 18px);
}

.video-showcase .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}

.video-showcase .btn-text {
  color: rgba(255, 255, 255, 0.88);
}

.video-showcase .btn-text::after {
  background: rgba(255, 255, 255, 0.35);
  transform: scaleX(0.42);
}

.video-showcase .btn-text:hover {
  color: var(--gold);
}

.video-showcase .btn-text:hover::after {
  transform: scaleX(1);
  background: var(--gold);
}

.feature-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #080808;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.feature-video video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
}

.feature-video figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: grid;
  gap: 3px;
  max-width: calc(100% - 32px);
  padding: 10px 12px;
  background: rgba(10, 10, 10, 0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

/* Scroll-driven factory story */
.factory-story {
  padding: clamp(72px, 9vw, 120px) 0;
  background: #101010;
  color: #fff;
}

.factory-story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 28px 60px;
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.factory-story-intro .eyebrow {
  grid-column: 1 / -1;
  color: var(--gold);
}

.factory-story-intro h1,
.factory-story-intro h2 {
  max-width: 11ch;
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 0.98;
}

.factory-story-intro p {
  max-width: 38ch;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 2vw, 21px);
}

.factory-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}

.factory-story-visual {
  position: sticky;
  top: 112px;
  height: min(68vh, 660px);
  min-height: 480px;
  overflow: hidden;
  background: #050505;
}

.factory-story-visual figure {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s ease;
  overflow: hidden;
}

.factory-story-visual figure.is-active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
  transition: opacity 0.45s ease, visibility 0s linear 0s;
}

.factory-story-visual figure:not(.is-active) {
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}

.factory-story-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.1);
}

.factory-story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.factory-story-meter {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 31px;
  left: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.factory-story-meter span {
  display: block;
  width: 25%;
  height: 100%;
  background: var(--gold);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.factory-story-visual > p {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 39px;
  margin: 0;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.factory-story-steps article {
  display: flex;
  min-height: min(72vh, 680px);
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.35;
  transition: opacity 0.45s ease;
}

.factory-story-steps article:last-child {
  min-height: min(66vh, 620px);
}

.factory-story-steps article.is-active {
  opacity: 1;
}

.factory-story-steps article > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.factory-story-steps h3 {
  max-width: 12ch;
  margin: 18px 0;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1;
}

.factory-story-steps p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.factory-story-steps .actions {
  margin-top: 24px;
}

.factory-story-steps .btn-gold {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .factory-story-visual figure,
  .factory-story-meter span,
  .factory-story-steps article {
    transition: none;
  }

  .factory-story-visual img {
    transform: none;
  }
}

@media (max-width: 900px) {
  /* Mobile factory story — sticky image, normal scrolling copy */
  .factory-story {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .factory-story-intro {
    margin-bottom: 28px;
  }

  .factory-story-intro,
  .factory-story-grid {
    grid-template-columns: 1fr;
  }

  .about-page .factory-story-intro {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .about-page .factory-story-intro .eyebrow {
    margin-bottom: 4px;
  }

  .about-page .factory-story-intro h1 {
    max-width: 13ch;
    font-size: clamp(34px, 9vw, 44px);
    line-height: 1.02;
  }

  .about-page .factory-story-intro p,
  .about-page .factory-story-intro-actions {
    grid-column: 1;
  }

  .factory-story-visual {
    position: sticky;
    top: 76px;
    z-index: 2;
    height: clamp(200px, 36vh, 300px);
    min-height: 0;
    margin: 0 0 20px;
    background: #101010;
    box-shadow: none;
    contain: none;
  }

  .factory-story-visual::after {
    background: linear-gradient(180deg, transparent 65%, rgba(16, 16, 16, 0.55));
  }

  .factory-story-visual figure,
  .factory-story-visual figure.is-active,
  .factory-story-visual figure:not(.is-active) {
    transition: none;
  }

  .factory-story-visual figure:not(.is-active) {
    opacity: 0;
    visibility: hidden;
  }

  .factory-story-visual.is-hidden {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .factory-story-scroll-end {
    display: none;
  }

  .factory-story-steps {
    position: relative;
    z-index: 1;
  }

  .factory-story-steps article,
  .factory-story-steps article:last-child {
    min-height: auto;
    padding: 28px 0 56px;
    justify-content: flex-start;
    opacity: 1;
    transition: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .factory-story-steps article > * {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .about-page .factory-story-steps article,
  .about-page .factory-story-steps article:last-child {
    min-height: auto;
    margin-left: 0;
    padding: 28px 0 56px;
    opacity: 1;
    border-left: none;
    transition: none;
  }

  .about-page .factory-story-steps article.is-active {
    border-left: none;
  }

  .factory-story-steps h3 {
    font-size: clamp(28px, 8vw, 40px);
    margin: 12px 0 14px;
  }

  .factory-story-steps p {
    font-size: 15.5px;
  }

  .factory-story-meter {
    right: 18px;
    bottom: 16px;
    left: 18px;
  }

  .factory-story-visual > p {
    right: 18px;
    bottom: 24px;
  }
}

.about-pillars-section {
  scroll-margin-top: 88px;
}

/* Why Gemini page */
@media (min-width: 901px) {
  .about-page .factory-story-intro {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
  }

  .about-page .factory-story-intro-actions {
    grid-column: 2;
    align-self: end;
    justify-self: start;
    margin: 0;
    gap: 18px 24px;
  }

  .about-page .factory-story-steps article {
    opacity: 0.28;
    border-left: 3px solid transparent;
    padding-left: 22px;
    margin-left: -22px;
    transition: opacity 0.45s ease, border-color 0.45s ease;
  }

  .about-page .factory-story-steps article.is-active {
    opacity: 1;
    border-left-color: var(--gold);
  }

  .about-page .factory-story-steps article.is-active .factory-story-step-label {
    color: var(--gold);
  }

  .about-page .factory-story-steps article.is-active .about-story-points li {
    color: rgba(255, 255, 255, 0.72);
  }

  .about-page .factory-story-steps article.is-active .about-story-points li::before {
    background: var(--gold);
  }
}

.about-page .factory-story-intro-actions {
  margin: 0;
  gap: 18px 24px;
}

.about-page .factory-story-steps h3 {
  max-width: 14ch;
  line-height: 1.02;
}

.about-page .factory-story-step-label {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: var(--gold);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.about-page .factory-story-step-label:hover,
.about-page .factory-story-step-label:focus-visible {
  color: #fff;
  outline: none;
}

.about-page .about-story-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 46ch;
}

.about-page .about-story-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 1.55;
}

.about-page .about-story-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 162, 77, 0.55);
}

.about-page .about-pillars-section {
  background: #101010;
  color: #fff;
}

.about-page .about-pillars-head .eyebrow {
  color: var(--gold);
}

.about-page .about-pillars-head h2 {
  color: #fff;
}

.about-page .about-pillars-head p {
  color: rgba(255, 255, 255, 0.66);
}

.about-page .about-pillars .pillar {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: var(--gold);
}

.about-page .about-pillars .pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.about-page .about-pillars .pillar h3 {
  color: #fff;
}

.about-page .about-pillars .pillar-location {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 0.62em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page .about-pillars .pillar p {
  color: rgba(255, 255, 255, 0.62);
}

.about-page .about-pillars .pillar-num {
  color: rgba(255, 255, 255, 0.12);
}

.about-page .about-pillars .icon-chip {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
}

.about-page .about-pillars.pillar-grid {
  margin-bottom: 0;
}

.about-page .about-details-section {
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.about-page .about-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
  margin-bottom: 36px;
}

.about-page .about-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-page .about-detail-num {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.about-page .about-detail h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.about-page .about-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.about-page .about-details-actions {
  margin-top: 8px;
}

.about-page .about-closer-section {
  background: #0a0a0a;
}

.about-page .about-closer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  padding: clamp(36px, 5vw, 56px);
}

.about-page .about-closer p {
  color: rgba(255, 255, 255, 0.66);
  max-width: 52ch;
  margin: 0;
}

.about-page .about-closer .actions {
  flex-shrink: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.about-page .about-closer .actions .btn {
  width: auto;
  max-width: 100%;
  justify-content: flex-start;
  text-align: left;
  align-self: flex-start;
  padding-left: 0;
  padding-right: 0;
}

.about-page .about-closer .actions .btn::after {
  left: 0;
  right: 0;
  transform: scaleX(0.5);
  transform-origin: left center;
}

.about-page .about-closer .actions .btn:hover {
  letter-spacing: 0.14em;
}

.about-page .about-closer .actions .btn:hover::after {
  transform: scaleX(1);
}

.about-page .about-closer h2,
.about-page .about-closer .eyebrow {
  color: #fff;
}

.about-page .about-closer .eyebrow {
  color: var(--gold);
}

.about-page .about-closer .btn-text {
  color: rgba(255, 255, 255, 0.82);
}

.about-page .about-closer .btn-text::after {
  background: rgba(255, 255, 255, 0.28);
}

.about-page .about-closer .btn-text:hover {
  color: var(--gold);
}

.about-page .about-closer .btn-text:hover::after {
  background: var(--gold);
}

.about-page .about-closer .btn-gold {
  color: #fff;
}

.about-page .about-closer .btn-gold:hover {
  color: var(--gold);
}

.about-page .about-closer .btn-gold::after {
  background: var(--gold);
}

.about-page .about-closer .btn-gold:hover::after {
  background: var(--gold);
}

@media (max-width: 900px) {
  .about-page .about-closer {
    grid-template-columns: 1fr;
  }

  .about-page .about-closer .actions {
    max-width: 420px;
  }

  .about-page .factory-story-intro-actions {
    grid-column: 1;
    align-self: start;
    margin-top: 8px;
  }

  .about-page .about-details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .about-page .about-pillars-section {
    padding-top: 48px;
  }

  .about-page .about-story-points li {
    font-size: 14.5px;
  }

  .about-page .about-details-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

/* Finance */
.finance-hero {
  background: var(--black);
  color: #fff;
  padding: 72px 0;
}

.finance-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.finance-hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  margin: 8px 0 16px;
  max-width: 12ch;
}

.finance-hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 46ch;
}

.finance-hero .eyebrow {
  color: var(--gold);
}

.finance-logo {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 36px;
  display: grid;
  place-items: center;
}

.finance-logo img {
  max-width: 240px;
}

.finance-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 28px;
}

.finance-flow article {
  padding: 0;
  border: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.finance-flow article span {
  display: block;
  color: var(--gold-deep);
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.finance-calculator-section {
  padding: clamp(72px, 9vw, 110px) 0;
  background:
    radial-gradient(circle at 10% 6%, rgba(196, 163, 90, 0.16), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(142, 200, 230, 0.08), transparent 38%),
    #0d0d0d;
  color: #fff;
}

.finance-calculator-section .section-head h2 {
  color: #fff;
}

.finance-calculator-section .section-head p {
  color: rgba(255, 255, 255, 0.62);
}

.finance-calculator-section .eyebrow {
  color: var(--gold);
}

.finance-calculator-section .finance-note {
  color: rgba(255, 255, 255, 0.42);
}

.repayment-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.repayment-controls {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: clamp(28px, 5vw, 56px);
}

.repayment-control {
  display: grid;
  gap: 12px;
}

.repayment-control > span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline;
}

.repayment-control strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
}

.repayment-control output {
  color: var(--gold);
  font-weight: 800;
  white-space: nowrap;
}

.repayment-scale {
  display: flex;
  justify-content: space-between;
  margin-top: -6px;
}

.repayment-scale em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.repayment-control input[type="range"] {
  width: 100%;
  height: 8px;
  margin: 10px 0 6px;
  border: 0;
  border-radius: 999px;
  outline: none;
  background:
    linear-gradient(
      to right,
      var(--gold-deep) 0,
      var(--gold) var(--range-progress, 50%),
      rgba(255, 255, 255, 0.12) var(--range-progress, 50%),
      rgba(255, 255, 255, 0.12) 100%
    );
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  appearance: none;
  cursor: pointer;
}

.repayment-control input[type="range"]::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff, #e9e9e6 65%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.55), 0 0 0 5px rgba(196, 163, 90, 0.18);
  appearance: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.repayment-control input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #ffffff, #e9e9e6 65%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.55), 0 0 0 5px rgba(196, 163, 90, 0.18);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.repayment-control input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.55), 0 0 0 8px rgba(196, 163, 90, 0.26);
}

.repayment-control input[type="range"]:hover::-moz-range-thumb {
  transform: scale(1.08);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.55), 0 0 0 8px rgba(196, 163, 90, 0.26);
}

.repayment-control input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.16);
}

.repayment-control input[type="range"]:active::-moz-range-thumb {
  transform: scale(1.16);
}

.repayment-control input[type="range"]:focus-visible::-webkit-slider-thumb,
.repayment-control input[type="range"]:focus-visible::-moz-range-thumb {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.55), 0 0 0 3px #fff;
}

.repayment-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 52px);
  background:
    radial-gradient(circle at 80% 0%, rgba(196, 163, 90, 0.2), transparent 46%),
    linear-gradient(170deg, #171410, #0a0a0a);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.repayment-result .eyebrow {
  color: var(--gold);
}

.repayment-primary {
  display: grid;
  gap: 2px;
  margin: 16px 0 10px;
}

.repayment-primary strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.repayment-primary span,
.repayment-secondary span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.repayment-weekly {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.repayment-weekly strong {
  color: var(--gold);
  font-size: 18px;
}

.repayment-secondary {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.repayment-secondary div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.repayment-secondary strong {
  color: #fff;
  font-size: 17px;
}

.repayment-result .btn {
  align-self: flex-start;
  color: #fff;
}

.finance-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.finance-tool {
  border-top: 1px solid var(--line);
  padding: 22px 0 8px;
}

.finance-tool h3 {
  font-size: clamp(28px, 3.4vw, 36px);
  margin: 8px 0 12px;
}

.finance-tool p {
  max-width: 42ch;
  margin-bottom: 22px;
}

.finance-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
  margin: 10px 0 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.finance-points strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.finance-points p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.finance-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 70ch;
}

.finance-page .finance-hero .actions {
  margin-top: 28px;
}

.finance-page .section-alt .section-head {
  margin-bottom: 140px;
}

.finance-embed {
  margin-top: 48px;
  background: transparent;
  border: 0;
  padding: 0;
  overflow: visible;
  max-width: 100%;
  width: 100%;
}

#coau-embedded-finance-page {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  overflow: visible;
  background: transparent;
  padding: 0 0 48px;
}

#coau-embedded-finance-page iframe,
#coau-embedded-finance-page > * {
  max-width: 100% !important;
  box-sizing: border-box;
}

#coau-embedded-finance-page #credit-one-container {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 12px;
}

#coau-embedded-finance-page #credit-one-list::after {
  content: "";
  display: table;
  clear: both;
}

#coau-embedded-finance-page iframe {
  width: 100% !important;
  min-height: 0;
  border: 0;
  display: block;
}

/* Supplier partners marquee */
.partners-strip {
  background: #fff;
  border-block: 1px solid var(--line);
  padding: 60px 0;
  overflow: hidden;
}

.partners-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-track {
  display: flex;
  width: max-content;
  --marquee-distance: 50%;
  animation: partnersScroll var(--marquee-duration, 32s) linear infinite;
}

.partners-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 88px;
  padding-inline: 44px;
}

.partners-group img {
  height: 76px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes partnersScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-1 * var(--marquee-distance)), 0, 0); }
}

@keyframes menuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes menuItemIn {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .partners-track {
    animation: none;
  }
}

/* Footer */
.trust-row {
  background: #ececeb;
  border-block: 1px solid var(--line);
}

.trust-row .wrap {
  min-height: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.78);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(112px, 140px) repeat(4, minmax(0, 1fr)) minmax(0, 1.12fr);
  gap: 24px 28px;
}

@media (min-width: 1280px) {
  .footer-grid {
    gap: 24px 32px;
  }
}

.footer-logo {
  width: 108px;
  margin-bottom: 0;
}

.footer h4 {
  color: #fff;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.4;
}

.footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 32px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-sticky {
  display: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  place-items: center;
  padding: 24px;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(100%, 1100px);
  max-height: 78vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 24px;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox button {
  font-family: inherit;
  cursor: pointer;
}

.lightbox-caption {
  color: #fff;
  margin-top: 12px;
  text-align: center;
}

/* Fixed side rail */
.side-rail {
  position: fixed;
  top: 50%;
  left: 0;
  z-index: 45;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  width: 58px;
  background: rgba(14, 14, 14, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 0;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-rail:hover,
.side-rail:focus-within {
  width: 240px;
}

.side-rail a {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  min-height: 52px;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, color 0.25s ease;
}

.side-rail a:last-child {
  border-bottom: 0;
}

.side-rail a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.side-rail .rail-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 52px;
  color: var(--gold);
}

.side-rail .rail-icon svg {
  width: 22px;
  height: 22px;
}

.side-rail .rail-label {
  padding-right: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
}

.side-rail:hover .rail-label,
.side-rail:focus-within .rail-label {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .side-rail {
    display: none;
  }
}

/* Contact page */
.contact-page .page-hero.contact-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 12vw, 128px) 0 clamp(56px, 8vw, 80px);
  border-bottom: 0;
  background:
    linear-gradient(115deg, rgba(10, 10, 10, 0.94) 0%, rgba(10, 10, 10, 0.78) 48%, rgba(10, 10, 10, 0.55) 100%),
    url("../assets/escape-xt/factory_three_quarter.jpg") center / cover no-repeat;
  color: #fff;
}

.contact-page .page-hero.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 163, 90, 0.55), transparent);
}

.contact-page .page-hero.contact-hero .eyebrow {
  color: var(--gold);
}

.contact-page .page-hero.contact-hero h1 {
  color: #fff;
  font-size: clamp(44px, 7vw, 76px);
  max-width: 11ch;
  margin: 8px 0 18px;
}

.contact-page .page-hero.contact-hero p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 44ch;
  font-size: clamp(17px, 2.2vw, 20px);
  margin-bottom: 0;
}

.contact-enquiry-section {
  padding: clamp(48px, 7vw, 72px) 0 clamp(72px, 9vw, 96px);
  margin-top: -28px;
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3vw, 28px);
  align-items: start;
}

.contact-panel {
  position: sticky;
  top: 104px;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(10, 10, 10, 0.22);
  padding: clamp(28px, 4vw, 36px);
  color: #fff;
}

.contact-panel .eyebrow {
  color: var(--gold);
}

.contact-panel h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin: 8px 0 10px;
  color: #fff;
}

.contact-panel > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.5;
}

.contact-panel .detail-rail {
  margin: 26px 0 28px;
  gap: 0;
}

.contact-panel .detail-rail div {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 16px 0;
}

.contact-panel .detail-rail div:last-child {
  border-bottom: 0;
}

.contact-panel .detail-rail span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-bottom: 5px;
}

.contact-panel .detail-rail a,
.contact-panel .detail-rail p {
  color: #fff;
  font-size: 16px;
}

.contact-panel .detail-rail a:hover {
  color: var(--gold);
}

.contact-panel .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.contact-panel .btn-text {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel .btn-text::after {
  background: rgba(255, 255, 255, 0.28);
}

.contact-panel .btn-text:hover {
  color: #fff;
}

.contact-panel .btn-text:hover::after {
  background: var(--gold);
}

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

.contact-page .form-confirmation {
  margin-bottom: 0;
  padding: 18px 22px;
  border-radius: 0;
  background: rgba(142, 200, 230, 0.14);
  border: 1px solid rgba(142, 200, 230, 0.35);
  border-left: 3px solid #5ba8cc;
}

.contact-page .form-confirmation strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
}

.post-submit-panel > p {
  margin: 0 0 16px;
  color: var(--body);
  max-width: 52ch;
}

.post-submit-steps {
  margin: 0 0 20px;
  padding-left: 1.2rem;
  color: var(--body);
  max-width: 52ch;
}

.post-submit-steps li + li {
  margin-top: 8px;
}

.post-submit-steps li strong {
  font-weight: 800;
  color: var(--ink);
}

.post-submit-actions {
  flex-wrap: wrap;
  gap: 12px 18px;
}

.delivery-note {
  margin: 28px 0 24px;
  max-width: 58ch;
  color: var(--muted);
}

.builder-sent-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  max-width: 480px;
  margin: 0 0 24px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.builder-sent-summary > div {
  display: grid;
  gap: 4px;
}

.builder-sent-summary dt {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.builder-sent-summary dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.builder-sent-steps {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
}

.contact-page .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.08);
  border-radius: 0;
  padding: clamp(28px, 4vw, 40px);
}

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

.contact-page .field label {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-page .field input,
.contact-page .field textarea {
  border: 1px solid rgba(10, 10, 10, 0.14);
  background: #fafaf8;
  padding: 14px 16px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .field input:focus,
.contact-page .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.16);
}

.contact-page .field textarea {
  min-height: 132px;
}

.contact-page .field.full:has(.choice-group) {
  padding: 18px;
  background: #f3f2ee;
  border: 1px solid rgba(10, 10, 10, 0.06);
}

.contact-page .choice-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(108px, 1fr));
  gap: 8px;
}

.contact-page .choice-pill {
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 0;
  padding: 12px 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  transform: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-page .choice-pill:hover {
  border-color: var(--gold);
  transform: none;
}

.contact-page .choice-pill.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

.contact-page .form-submit-row {
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.contact-page .btn-gold[type="submit"],
.contact-page .form-submit-row .btn-gold {
  background: var(--black);
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 16px 28px;
  min-height: 52px;
  min-width: min(100%, 220px);
  letter-spacing: 0.14em;
}

.contact-page .btn-gold[type="submit"]::after,
.contact-page .form-submit-row .btn-gold::after {
  display: none;
}

.contact-page .btn-gold[type="submit"]:hover,
.contact-page .form-submit-row .btn-gold:hover {
  background: var(--gold);
  color: var(--black);
  letter-spacing: 0.16em;
}

.contact-page .form-note {
  max-width: 28ch;
  line-height: 1.45;
}

.contact-map {
  border-radius: 0;
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  background: #0a0a0a;
}

.contact-map .map-frame {
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.04);
}

.contact-map .map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 12px 14px 10px;
}

.contact-map .map-actions .btn-text {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.contact-map .map-actions .btn-text:hover {
  color: var(--gold);
}

.contact-page .map-loading {
  background: linear-gradient(160deg, #1a1a1a, #121212);
}

.contact-page .map-loading strong {
  color: #fff;
}

.contact-page .map-loading em {
  color: rgba(255, 255, 255, 0.55);
}

/* Factory visit — contact page polish */
.contact-page .factory-visit-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-page .visit-booker {
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border-radius: 0;
}

.contact-page .visit-details {
  border-color: rgba(10, 10, 10, 0.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .contact-enquiry-section {
    margin-top: 0;
  }

  .contact-page .choice-group {
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  }
}

@media (max-width: 640px) {
  .contact-page .form-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-page .form-submit-row .btn-gold {
    width: 100%;
  }
}

.contact-page .contact-faq {
  padding: clamp(56px, 7vw, 88px) 0 clamp(20px, 3vw, 32px);
}

.contact-page .contact-faq .section-head {
  margin-bottom: clamp(36px, 5vw, 52px);
  gap: 32px;
}

.contact-page .faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

.contact-page .faq-item {
  border-bottom: 1px solid var(--line);
}

.contact-page .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.5vw, 26px) 4px clamp(20px, 2.5vw, 26px) 0;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.contact-page .faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  transition: transform 0.25s ease;
}

.contact-page .faq-item[open] summary {
  padding-bottom: 14px;
}

.contact-page .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.contact-page .faq-item p {
  margin: 0 0 clamp(22px, 3vw, 28px);
  padding: 0 40px 4px 0;
  color: var(--body);
  max-width: 68ch;
  line-height: 1.65;
}

.contact-page .faq-item a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-page .faq-cta {
  margin-top: 20px;
  justify-content: flex-start;
}

.contact-page .contact-faq + .contact-enquiry-section {
  padding-top: clamp(40px, 5vw, 56px);
}

/* Legal / privacy */
.legal-page .legal-hero {
  padding-bottom: 48px;
}

.legal-page .legal-effective {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-page .legal-main {
  padding-top: 24px;
  padding-bottom: 64px;
}

.legal-page .legal-prose {
  max-width: 720px;
  color: var(--body);
}

.legal-page .legal-prose > p:first-child {
  font-size: 1.05rem;
  color: var(--ink);
}

.legal-page .legal-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.02em;
  margin: 40px 0 12px;
  color: var(--ink);
}

.legal-page .legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-page .legal-prose p,
.legal-page .legal-prose li {
  line-height: 1.65;
}

.legal-page .legal-prose ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.legal-page .legal-prose li + li {
  margin-top: 6px;
}

.legal-page .legal-prose a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-privacy-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.form-privacy-note a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.map-loading {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  text-align: center;
  background: linear-gradient(160deg, #f2f2f0, #e7e7e4);
  transition: opacity 0.45s ease;
}

.map-loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.map-loading-pin {
  color: var(--gold-deep);
  width: 30px;
  height: 30px;
  margin-bottom: 4px;
  animation: map-pin-bob 1.4s ease-in-out infinite;
}

.map-loading strong {
  font-size: 14px;
  color: var(--ink);
}

.map-loading em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

@keyframes map-pin-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .map-loading-pin {
    animation: none;
  }
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero.is-revealed .hero-poster {
    animation: heroDrift 22s ease-in-out infinite alternate;
  }

  @keyframes heroDrift {
    from {
      transform: scale(1.06) translate3d(0, 0, 0);
    }
    to {
      transform: scale(1.1) translate3d(-1.2%, -0.8%, 0);
    }
  }

  /* Hero copy entrance is handled by premium cascade beats */

  .lineup-copy,
  .lineup-specs,
  .lineup-cta-row,
  .lineup-price {
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .lineup.is-changing .lineup-copy,
  .lineup.is-changing .lineup-specs,
  .lineup.is-changing .lineup-cta-row,
  .lineup.is-changing .lineup-price {
    opacity: 0;
    transform: translateY(10px);
    transition-delay: 0s !important;
  }

  /* Copy cascades back in after a model change */
  .lineup-copy { transition-delay: 0.02s; }
  .lineup-price { transition-delay: 0.09s; }
  .lineup-specs { transition-delay: 0.16s; }
  .lineup-cta-row { transition-delay: 0.23s; }

  .page-hero figure img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  }

  .gallery-teaser figure:hover img,
  .archive-layout figure:hover img,
  .split figure:hover img,
  .page-hero figure:hover img {
    transform: scale(1.04);
  }

  .menu a,
  .dropdown-trigger,
  .footer a,
  .brand img {
    transition: color 0.25s ease, background 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .brand:hover img {
    transform: scale(1.03);
  }

  .icon-chip {
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .feature-row:hover .icon-chip {
    transform: translateY(-2px);
  }

  .size-stats article,
  [data-size-field] {
    transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  }
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  filter: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Once revealed, pillars hand transition control back to their hover lift */
.pillar.reveal-ready.is-visible {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reveal-delay-1 {
  transition-delay: 0.05s;
}
.reveal-delay-2 {
  transition-delay: 0.1s;
}
.reveal-delay-3 {
  transition-delay: 0.15s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .menu.open,
  .menu.open > *,
  .hero-inner > *,
  .hero-line,
  .hero-media img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Why Gemini pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.pillar {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: 26px 24px 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pillar .icon-chip {
  margin-bottom: 0;
}

.pillar-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: rgba(10, 10, 10, 0.12);
  letter-spacing: -0.02em;
}

.pillar h3 {
  font-size: 21px;
  margin-bottom: 10px;
}

.pillar p {
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1060px) {
  .site-header .nav {
    position: relative;
  }

  .page-hero-grid,
  .split,
  .gallery-teaser,
  .home-gallery,
  .video-showcase-grid,
  .finance-hero-grid {
    grid-template-columns: 1fr;
  }

  .model-finance {
    padding-left: 0;
    border-left: 0;
  }

  .home-gallery,
  .model-photo-grid,
  .archive-grid-dense {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .finance-flow,
  .finance-tools,
  .finance-points,
  .pillar-grid,
  .google-reviews {
    grid-template-columns: 1fr 1fr;
  }

  .menu {
    display: none;
    position: absolute;
    top: 96px;
    right: 20px;
    left: auto;
    z-index: 60;
    width: max-content;
    min-width: 200px;
    max-width: min(280px, calc(100vw - 40px));
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 8px 10px;
    box-shadow: var(--shadow);
  }

  .menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    animation: menuSlideDown 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .menu.open > a,
  .menu.open > .nav-dropdown {
    width: fit-content;
    max-width: 100%;
  }

  .menu.open .dropdown-trigger {
    width: fit-content;
    max-width: 100%;
  }

  .menu.open .ranges-nav-panel {
    width: max-content;
    min-width: 100%;
  }

  /* Links cascade in after the panel lands */
  .menu.open > * {
    animation: menuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .menu.open > *:nth-child(1) { animation-delay: 0.05s; }
  .menu.open > *:nth-child(2) { animation-delay: 0.1s; }
  .menu.open > *:nth-child(3) { animation-delay: 0.15s; }
  .menu.open > *:nth-child(4) { animation-delay: 0.2s; }
  .menu.open > *:nth-child(5) { animation-delay: 0.25s; }
  .menu.open > *:nth-child(6) { animation-delay: 0.3s; }
  .menu.open > *:nth-child(7) { animation-delay: 0.35s; }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
  }

  .ranges-nav-panel {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 10px 10px 14px;
    margin: 4px 0 4px 8px;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    gap: 6px;
  }

  .nav-dropdown.is-expanded .ranges-nav-panel {
    display: flex;
  }

  .ranges-nav-item {
    padding: 11px 14px;
  }

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

  .lineup-rail {
    padding: 0 40px;
  }

  .lineup-visual-stage {
    height: clamp(150px, 36vw, 220px);
    overflow: hidden;
  }

  .lineup-model.is-active {
    left: 18%;
    width: 64%;
  }

  .lineup-model.is-prev {
    left: -18%;
    width: 40%;
    opacity: 0.35;
  }

  .lineup-model.is-next {
    left: 78%;
    width: 40%;
    opacity: 0.35;
  }

  .lineup-prev {
    left: 0;
  }
  .lineup-next {
    right: 0;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .wrap {
    box-sizing: border-box;
    width: calc(100% - 28px);
    max-width: none;
    margin-inline: 14px;
  }

  .nav {
    height: 76px;
    gap: 16px;
    position: relative;
  }

  .brand img {
    width: 72px;
    max-height: 58px;
  }

  /* Sticky bar covers Build on small screens — keep Menu usable */
  .site-header .nav-cta {
    display: none !important;
  }

  .menu {
    top: 76px;
    right: 12px;
    left: auto;
    max-width: min(280px, calc(100vw - 24px));
  }

  .menu-toggle {
    display: inline-flex !important;
    margin-left: auto;
    min-width: 48px;
    justify-content: center;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-inner {
    padding: 56px 0 68px;
  }

  .hero-brand {
    font-size: clamp(42px, 12vw, 60px);
    letter-spacing: 0.02em;
  }

  .hero h1 {
    font-size: clamp(18px, 4.8vw, 26px);
    max-width: 16ch;
  }

  .hero .actions,
  .cta-band .actions,
  .model-hero .actions,
  .gallery-aside .actions,
  .reviews-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head,
  .cta-band,
  .gallery-aside {
    display: block;
  }

  .cta-band .actions,
  .gallery-aside .actions {
    margin-top: 18px;
  }

  .section-head h2,
  .cta-band h2 {
    max-width: none;
    font-size: clamp(28px, 8vw, 40px);
  }

  .home-gallery,
  .model-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .archive-grid-dense {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .card-grid.two,
  .finance-flow,
  .finance-tools,
  .finance-points,
  .pillar-grid,
  .model-tabs,
  .size-stats,
  .lineup-specs,
  .form-grid,
  .archive-grid,
  .google-reviews {
    grid-template-columns: 1fr;
  }

  .lineup-specs {
    grid-template-columns: 1fr 1fr;
  }

  .lineup-rail {
    padding: 0 28px;
  }

  .lineup-copy h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .lineup-visual-stage {
    height: clamp(140px, 40vw, 200px);
  }

  .lineup-model.is-active {
    left: 12%;
    width: 76%;
  }

  .lineup-model.is-prev,
  .lineup-model.is-next {
    opacity: 0;
    pointer-events: none;
  }

  .trust-row .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-block: 0;
    min-height: auto;
    font-size: 11px;
    letter-spacing: 0.05em;
  }

  .trust-badge {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(10, 10, 10, 0.14);
    gap: 6px;
    line-height: 1.35;
  }

  .trust-badge:nth-child(odd) {
    border-right: 1px solid rgba(10, 10, 10, 0.14);
  }

  .trust-badge:nth-child(n + 3) {
    border-bottom: 0;
  }

  .trust-badge svg {
    width: 15px;
    height: 15px;
  }

  .partners-strip {
    padding: 40px 0;
  }

  .partners-track {
    --marquee-duration: 24s;
  }

  .partners-group {
    gap: 56px;
    padding-inline: 28px;
  }

  .partners-group img {
    height: 56px;
    max-width: 180px;
  }

  .model-hero-media,
  .model-hero-media img {
    min-height: min(36vh, 340px);
    max-height: 380px;
  }

  .model-hero--pending .model-hero-media,
  .model-hero--pending .model-hero-media img {
    min-height: min(28vh, 280px);
    max-height: 300px;
  }

  .model-hero-band {
    padding: 28px 0 24px;
  }

  .model-hero-inner {
    padding-bottom: 22px;
  }

  .model-hero h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .model-hero-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .model-finance {
    padding-left: 0;
    border-left: 0;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .page-hero p {
    max-width: none;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 8px;
  }

  .footer-bottom span:last-child {
    margin-bottom: 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .mobile-sticky {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    width: auto;
    max-width: none;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(10, 10, 10, 0.14);
  }

  .mobile-sticky a {
    text-align: center;
    padding: 12px 4px;
    border-radius: 0;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 2px solid transparent;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-sticky a:nth-child(3) {
    background: transparent;
    color: var(--ink);
    border-bottom-color: var(--gold);
  }

  body {
    padding-bottom: 96px;
  }

  body.builder-page {
    padding-bottom: 0;
  }

  body.builder-page .mobile-sticky {
    display: none;
  }

  body.builder-page .builder-intro {
    padding-bottom: max(48px, env(safe-area-inset-bottom));
  }

  body.builder-page .quote-builder {
    padding-bottom: max(88px, calc(56px + env(safe-area-inset-bottom)));
  }

  body.builder-page .builder-navigation {
    bottom: max(10px, env(safe-area-inset-bottom));
  }

  .hero-media,
  .partners-strip,
  .lineup-visual-stage {
    overflow: hidden;
  }

  .builder-intro,
  .quote-builder,
  .builder-sent {
    overflow-x: clip;
  }

  .builder-intro {
    padding: 56px 0 72px;
  }

  .builder-intro h1,
  .builder-sent h1 {
    font-size: clamp(34px, 10vw, 48px);
    overflow-wrap: anywhere;
  }

  .builder-step > h2 {
    font-size: clamp(28px, 8.5vw, 40px);
    max-width: none;
    overflow-wrap: anywhere;
  }

  .builder-lead,
  .builder-step > p,
  .google-review p {
    overflow-wrap: anywhere;
  }

  .quote-builder {
    padding: 36px 0 80px;
  }
}

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

.builder-intro {
  padding: clamp(48px, 7vw, 88px) 0 clamp(72px, 9vw, 110px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 12%, rgba(196, 163, 90, 0.18), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(160deg, #070707 0%, #121212 48%, #0a0a0a 100%);
}

.builder-chooser {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
}

.builder-chooser-head {
  max-width: 42rem;
}

.builder-intro h1,
.builder-sent h1 {
  color: #fff;
  font-size: clamp(48px, 7vw, 82px);
  margin: 6px 0 18px;
}

.builder-intro .eyebrow,
.builder-sent .eyebrow {
  color: var(--gold);
}

.builder-lead {
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
  font-size: clamp(17px, 2vw, 20px);
  margin: 0;
}

.builder-chooser-note {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.builder-chooser-note strong {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.builder-intro-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 10px;
  margin: clamp(10px, 2vw, 18px) 0 0;
}

.builder-carousel-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: clamp(220px, 32vw, 360px);
  overflow: hidden;
  padding-inline: clamp(32px, 6vw, 72px);
  box-sizing: border-box;
}

.builder-carousel-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  padding: clamp(12px, 3vw, 28px) 0;
}

.builder-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.builder-carousel-visual {
  width: 100%;
  display: grid;
  place-items: center;
}

.builder-carousel-visual img {
  width: min(100%, 920px);
  max-height: clamp(180px, 28vw, 300px);
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.45));
}

.builder-carousel-visual--pending {
  display: grid;
  gap: 14px;
  place-items: center;
  text-align: center;
  padding: clamp(20px, 4vw, 32px);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  width: min(100%, 460px);
  overflow: visible;
}

.builder-carousel-visual--pending img {
  width: min(150px, 38vw);
  max-height: none;
  opacity: 0.62;
  filter: none;
}

.builder-carousel-visual--pending p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.builder-carousel-arrow {
  grid-row: 1;
  align-self: center;
  z-index: 2;
  width: auto;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--gold);
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  opacity: 0.9;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.builder-carousel-prev {
  grid-column: 1;
}

.builder-carousel-next {
  grid-column: 3;
}

.builder-carousel-arrow:hover,
.builder-carousel-arrow:focus-visible {
  color: #dfc06e;
  transform: scale(1.08);
  opacity: 1;
  outline: none;
}

.builder-carousel-dots {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.builder-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.builder-carousel-dots button.is-active {
  width: 28px;
  background: var(--gold);
}

.builder-intro-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.builder-intro-meta.is-ready {
  opacity: 1;
}

.builder-intro-meta div {
  display: grid;
  gap: 4px;
}

.builder-intro-meta dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.builder-intro-meta dd {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
}

.builder-range-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.builder-range-tile {
  display: grid;
  gap: 8px;
  align-content: start;
  margin: 0;
  padding: 18px 16px;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.builder-range-tile:hover,
.builder-range-tile:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 163, 90, 0.45);
  outline: none;
}

.builder-range-tile.is-selected {
  background: rgba(196, 163, 90, 0.1);
  border-color: rgba(196, 163, 90, 0.55);
  border-top-color: var(--gold);
}

.builder-range-tile strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
}

.builder-range-tile small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.35;
}

.builder-range-tile em {
  color: var(--gold);
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.builder-chooser-actions {
  margin: 4px 0 0;
  gap: 20px;
  align-items: center;
}

.builder-intro .form-note {
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.builder-sent .btn-gold {
  color: #fff;
}

/* Solid, unmissable primary CTA — the underline style disappears on this dark hero */
.builder-intro .btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  padding: 16px 36px;
  transition: background 0.3s ease, opacity 0.25s ease, box-shadow 0.3s ease;
}

.builder-intro .btn-gold::after {
  display: none;
}

.builder-intro .btn-gold:hover:not(:disabled) {
  background: #d8b76c;
  color: #0a0a0a;
  box-shadow: 0 14px 30px rgba(196, 163, 90, 0.3);
  letter-spacing: 0.14em;
}

.builder-intro .btn-gold:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
}

.builder-intro .btn-text {
  color: rgba(255, 255, 255, 0.85);
}

.builder-intro .btn-text::after {
  background: rgba(255, 255, 255, 0.35);
}

.builder-intro .btn-text:hover {
  color: #fff;
}

.quote-builder {
  padding: 56px 0 96px;
  background: var(--bg);
}

.builder-progress {
  margin-bottom: 42px;
}

.builder-progress-copy {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 12px;
}

.builder-progress-copy span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-progress-copy strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.builder-progress-track {
  height: 3px;
  background: rgba(10, 10, 10, 0.1);
  overflow: hidden;
}

.builder-progress-track span {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.builder-progress ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px 10px;
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.builder-step-block {
  margin-top: 28px;
  margin-bottom: 8px;
}

.builder-step-block:first-of-type {
  margin-top: 0;
}

.builder-solar-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.builder-solar-grid .builder-options {
  display: contents;
}

.builder-solar-grid .builder-step-note {
  grid-column: 1 / -1;
  margin: 0;
}

.builder-step-block[data-reveal-after].is-just-revealed {
  animation: builderBlockReveal 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.builder-step-heading {
  margin: 0 0 12px;
  font-family: var(--font-body, inherit);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.builder-step-note {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.builder-progress li {
  color: #9a9a9a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-progress li.is-current,
.builder-progress li.is-complete {
  color: var(--ink);
}

.builder-progress li.is-clickable {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: rgba(196, 163, 90, 0.55);
  text-underline-offset: 4px;
}

.builder-progress li.is-clickable:hover,
.builder-progress li.is-clickable:focus-visible {
  color: var(--gold-deep);
  outline: none;
}

.builder-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.builder-form {
  grid-column: 2;
  min-width: 0;
}

.builder-step > h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 4px 0 12px;
  max-width: 15ch;
}

.builder-step > p {
  max-width: 56ch;
  margin-bottom: 32px;
}

.builder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}

.builder-step > fieldset.builder-options + fieldset.builder-options,
.builder-step-block + fieldset.builder-options {
  margin-top: 24px;
}

.builder-wheels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.builder-wheels-grid > .builder-step-heading {
  grid-column: 1 / -1;
  margin: 0;
}

.builder-wheels-grid > fieldset.builder-options {
  display: contents;
}

.builder-wheels-grid + fieldset.builder-options {
  margin-top: 0;
}

.builder-option-span-full {
  grid-column: 1 / -1;
  margin-bottom: 0;
  min-height: 132px;
  padding-bottom: 24px;
}

.builder-option-span-full + .builder-option:not(.builder-option-span-full) {
  margin-top: 0;
}

.builder-option-detail-list {
  list-style: disc;
  margin: 8px 0 0;
  padding-left: 1.15em;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 20px;
  font-size: 12.5px;
  line-height: 1.4;
  color: rgba(20, 20, 20, 0.72);
}

.builder-option-detail-list li {
  padding-left: 2px;
}

.builder-option-span-full .builder-option-detail-list {
  max-width: 100%;
}

.builder-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 122px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.builder-option-thumb {
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f1ea;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: rgba(20, 20, 20, 0.32);
}

.builder-option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-sizing: border-box;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.builder-option-thumb.is-placeholder svg {
  width: 30px;
  height: 30px;
}

.builder-option-thumb.is-logo-placeholder svg {
  display: none;
}

.builder-option:has(input:checked) .builder-option-thumb {
  border-color: var(--gold);
}

/* Image-forward option cards: large photo on top, compact copy below. */
.builder-option-visual {
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.builder-option-visual .builder-option-thumb {
  flex: none;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 0;
}

.builder-option-thumb.is-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.builder-option-visual .builder-option-thumb.is-split,
.builder-option-thumb.is-split {
  overflow: hidden;
}

.builder-option-thumb-split {
  display: block;
  height: 100%;
  overflow: hidden;
  background: #fff;
}

.builder-option-thumb-split.is-empty {
  background: #fff;
}

.builder-option-thumb.is-split img,
.builder-option-visual .builder-option-thumb.is-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.builder-option-thumb.is-split.is-contain img,
.builder-option-visual .builder-option-thumb.is-split.is-contain img {
  object-fit: cover;
}

.builder-option-thumb.is-split.is-pos-up-13 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-up-13 img {
  object-position: center 37%;
}

.builder-option-visual .builder-option-thumb.is-contain img,
.builder-option-thumb.is-contain img {
  object-fit: contain;
  transform: none;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

.builder-option-visual .builder-option-thumb.is-contain.is-zoomed img,
.builder-option-thumb.is-contain.is-zoomed img {
  transform: scale(var(--thumb-scale, 0.85));
  transform-origin: center center;
}

.builder-option-visual .builder-option-thumb.is-contain {
  background: #fff;
}

.builder-option-thumb.is-contain {
  background: #fff;
}

.builder-option-thumb.is-pos-bottom img,
.builder-option-visual .builder-option-thumb.is-pos-bottom img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-bottom img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-bottom img {
  object-position: center bottom;
}

.builder-option-thumb.is-pos-top-8 img,
.builder-option-visual .builder-option-thumb.is-pos-top-8 img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-top-8 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-top-8 img {
  object-position: center 8%;
}

.builder-option-thumb.is-pos-down-4 img,
.builder-option-visual .builder-option-thumb.is-pos-down-4 img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-down-4 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-down-4 img {
  object-position: center 54%;
}

.builder-option-thumb.is-pos-up-25 img,
.builder-option-visual .builder-option-thumb.is-pos-up-25 img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-up-25 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-up-25 img {
  object-position: center 25%;
}

.builder-option-visual .builder-option-thumb.is-contain.is-zoomed.is-pos-up-25 img,
.builder-option-thumb.is-contain.is-zoomed.is-pos-up-25 img {
  transform-origin: center 25%;
}

.builder-option-thumb.is-pos-up-14 img,
.builder-option-visual .builder-option-thumb.is-pos-up-14 img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-up-14 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-up-14 img {
  object-position: center 36%;
}

.builder-option-visual .builder-option-thumb.is-contain.is-zoomed.is-pos-up-14 img,
.builder-option-thumb.is-contain.is-zoomed.is-pos-up-14 img {
  transform-origin: center 36%;
}

.builder-option-thumb.is-pos-up-18 img,
.builder-option-visual .builder-option-thumb.is-pos-up-18 img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-up-18 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-up-18 img {
  object-position: center 32%;
}

.builder-option-visual .builder-option-thumb.is-contain.is-zoomed.is-pos-up-18 img,
.builder-option-thumb.is-contain.is-zoomed.is-pos-up-18 img {
  transform-origin: center 32%;
}

.builder-option-thumb.is-pos-up-13 img,
.builder-option-visual .builder-option-thumb.is-pos-up-13 img,
.builder-option-visual .builder-option-thumb.is-contain.is-pos-up-13 img,
.builder-option-visual .builder-option-thumb.is-split.is-pos-up-13 img {
  object-position: center 37%;
}

.builder-option-visual .builder-option-thumb.is-contain.is-zoomed.is-pos-up-13 img,
.builder-option-thumb.is-contain.is-zoomed.is-pos-up-13 img {
  transform-origin: center 37%;
}

.builder-option-thumb.is-pos-top-8,
.builder-option-visual .builder-option-thumb.is-pos-top-8 {
  background: #fff;
}

.builder-option-visual .builder-option-thumb img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: none;
}

.builder-option-visual .builder-option-thumb[class*='is-pos-'] img,
.builder-option-thumb[class*='is-pos-'] img {
  transform: translateZ(0);
}

.builder-option-visual .builder-option-thumb.is-contain[class*='is-pos-'] img,
.builder-option-thumb.is-contain[class*='is-pos-'] img {
  transform: none;
}

.builder-option-visual .builder-option-thumb.is-contain.is-zoomed[class*='is-pos-'] img,
.builder-option-thumb.is-contain.is-zoomed[class*='is-pos-'] img {
  transform: scale(var(--thumb-scale, 0.85));
}

.builder-option-visual .builder-option-thumb.is-placeholder svg {
  width: 42px;
  height: 42px;
}

.builder-option-visual > span:not(.builder-option-thumb) {
  padding: 14px 16px 16px;
}

.builder-option-visual strong {
  font-size: 17px;
  margin-bottom: 5px;
}

.builder-option-visual small,
.builder-option-visual em {
  font-size: 12.5px;
}

.builder-option-visual em {
  margin-top: 8px;
}

.builder-option-visual input {
  appearance: none;
  -webkit-appearance: none;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.builder-option-visual input:checked {
  border-color: var(--gold);
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23c4a35a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.2l3 3 6-6'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.builder-option-qty > input {
  display: none;
}

.builder-option-qty .builder-qty {
  margin-top: 12px;
  width: fit-content;
}

.builder-option:hover {
  border-color: rgba(196, 163, 90, 0.7);
}

.builder-option:has(input:focus-visible) {
  outline: 3px solid rgba(142, 200, 230, 0.55);
  outline-offset: 2px;
}

.builder-option-qty.is-qty-selected,
.builder-option:has(input:checked) {
  border-color: var(--gold);
  box-shadow: inset 0 -3px 0 var(--gold);
  background: rgba(196, 163, 90, 0.06);
}

.builder-option input {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 18px;
  height: 18px;
  accent-color: var(--gold-deep);
}

.builder-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.builder-qty-btn {
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.builder-qty-btn:hover:not(:disabled) {
  background: rgba(196, 163, 90, 0.12);
  color: var(--gold-deep);
}

.builder-qty-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.builder-qty-value {
  min-width: 2ch;
  padding: 0 10px;
  text-align: center;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  border-inline: 1px solid var(--line);
}

.builder-option > span:not(.builder-option-thumb) {
  display: block;
  flex: 1;
  min-width: 0;
  padding-right: 28px;
}

.builder-option strong {
  display: block;
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.builder-option small,
.builder-option em {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.builder-option em {
  color: var(--gold-deep);
  font-weight: 800;
  margin-top: 12px;
}

.builder-option-simple,
[data-size-options] .builder-option,
[data-atm-options] .builder-option {
  min-height: 0;
  padding: 16px 18px;
  align-items: flex-start;
}

[data-size-options] .builder-option strong,
[data-atm-options] .builder-option strong {
  margin-bottom: 0;
}

[data-atm-options] .builder-option em {
  margin-top: 6px;
}

.builder-empty-category {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.builder-gate {
  padding: 90px 0 110px;
}

.builder-gate-inner {
  max-width: 560px;
}

.builder-gate-inner h2 {
  margin: 6px 0 10px;
}

.builder-gate-inner > p {
  color: var(--muted);
  margin-bottom: 26px;
}

.builder-gate-fields {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.builder-gate-fields .actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 0;
}

.builder-gate-fields .form-note {
  margin: 0;
}

.builder-gate-fields .builder-error {
  grid-column: 1 / -1;
  margin: 0;
}

.builder-text-field {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.builder-text-field > span,
.builder-fields label > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.builder-text-field textarea,
.builder-fields input,
.builder-fields select,
.builder-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.builder-text-field textarea:focus,
.builder-fields input:focus,
.builder-fields select:focus,
.builder-fields textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.builder-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.builder-fields label {
  display: grid;
  gap: 8px;
}

.builder-fields .full {
  grid-column: 1 / -1;
}

.builder-review {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.builder-review dl {
  margin: 0;
}

.builder-review dl > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.builder-review dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-review dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  overflow-wrap: anywhere;
}

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

.builder-review-options li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.builder-review-options li:first-child {
  padding-top: 0;
}

.builder-review-options li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.builder-review-row-options dd {
  min-width: 0;
}

.builder-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 24px;
  color: var(--body);
  cursor: pointer;
}

.builder-consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-deep);
}

.builder-error {
  color: #8e1b1b;
  background: rgba(198, 40, 40, 0.08);
  border-left: 3px solid #c62828;
  padding: 12px 14px;
  margin-top: 22px;
  font-weight: 700;
}

.builder-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.builder-navigation [data-builder-next],
.builder-navigation .builder-submit {
  margin-left: auto;
}

.builder-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.builder-summary {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  position: sticky;
  top: calc(96px + 16px);
  padding: 26px;
  background: #111;
  color: #fff;
}

.builder-summary .eyebrow {
  color: var(--gold);
}

.builder-summary h3 {
  color: #fff;
  font-size: 30px;
  margin: 2px 0 22px;
}

.builder-summary dl {
  margin: 0;
}

.builder-summary dl > div {
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.builder-summary dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.builder-summary dd {
  margin: 3px 0 0;
  color: #fff;
  font-weight: 700;
}

.builder-price-hero {
  display: grid;
  gap: 6px;
  margin: 0 0 16px;
  padding: 0 0 18px;
}

.builder-price-hero > span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.builder-price-hero > strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
}

.builder-price-hero > small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.45;
}

.builder-summary-eyebrow {
  margin-top: 4px;
}

.builder-starting-price {
  display: grid;
  gap: 3px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.builder-starting-price span,
.builder-starting-price small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.builder-starting-price strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 30px;
  font-variant-numeric: tabular-nums;
}

.builder-finance {
  display: grid;
  gap: 2px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid rgba(196, 163, 90, 0.55);
  background: rgba(196, 163, 90, 0.14);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.builder-finance[hidden] {
  display: none;
}

.builder-finance:hover {
  border-color: rgba(196, 163, 90, 0.85);
  background: rgba(196, 163, 90, 0.2);
}

.builder-finance > span,
.builder-finance small {
  color: rgba(232, 205, 140, 0.78);
  font-size: 10px;
  line-height: 1.35;
}

.builder-finance strong {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.build-brief {
  margin-bottom: 18px;
}

.build-brief-save {
  width: 100%;
  justify-content: center;
  font-size: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 2px;
}

.build-brief-save::after {
  display: none;
}

.build-brief-save:hover {
  color: var(--ink);
  background: #d4b56a;
  letter-spacing: 0.16em;
}

.visit-handoff {
  margin: 4px 0 8px;
}

.visit-handoff-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050505;
  aspect-ratio: 16 / 9;
}

.visit-handoff-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.visit-handoff-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.visit-handoff-line {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.05;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.builder-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 20px;
}

.builder-share,
.builder-clear {
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.builder-share:hover,
.builder-clear:hover {
  color: #fff;
  border-color: var(--gold);
}

.builder-share-status {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.4;
}

.builder-share-status input {
  width: 100%;
  margin-top: 6px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font: inherit;
}

.builder-sent {
  min-height: 64vh;
  padding: 100px 0;
  background: #111;
}

.builder-sent p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  margin-bottom: 28px;
}

.builder-noscript {
  padding: 40px 0;
}

.builder-noscript a {
  color: var(--gold-deep);
  text-decoration: underline;
}

@media (prefers-reduced-motion: no-preference) {
  .builder-step.is-active {
    animation: builderStepIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes builderStepIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Intro screen entrance */
  .builder-chooser-head > *,
  .builder-intro-carousel,
  .builder-intro-meta,
  .builder-range-rail,
  .builder-chooser-actions,
  .builder-intro > .wrap > .form-note {
    animation: builderRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .builder-chooser-head > *:nth-child(1) { animation-delay: 0.05s; }
  .builder-chooser-head > *:nth-child(2) { animation-delay: 0.1s; }
  .builder-chooser-head > *:nth-child(3) { animation-delay: 0.15s; }
  .builder-chooser-head > *:nth-child(4) { animation-delay: 0.2s; }
  .builder-intro-carousel { animation-delay: 0.22s; }
  .builder-intro-meta { animation-delay: 0.28s; }
  .builder-range-rail { animation-delay: 0.34s; }
  .builder-chooser-actions { animation-delay: 0.4s; }
  .builder-intro > .wrap > .form-note { animation-delay: 0.46s; }

  .builder-range-tile {
    animation: none;
  }
  .builder-intro:not(.is-settled) .builder-range-tile {
    animation: builderRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .builder-intro:not(.is-settled) .builder-range-tile:nth-child(1) { animation-delay: 0.36s; }
  .builder-intro:not(.is-settled) .builder-range-tile:nth-child(2) { animation-delay: 0.42s; }
  .builder-intro:not(.is-settled) .builder-range-tile:nth-child(3) { animation-delay: 0.48s; }
  .builder-intro:not(.is-settled) .builder-range-tile:nth-child(4) { animation-delay: 0.54s; }

  @keyframes builderRise {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Option cards stagger in each time a step opens */
  .builder-step.is-active .builder-option {
    animation: builderOptionIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .builder-step.is-active .builder-option:nth-child(2) { animation-delay: 0.05s; }
  .builder-step.is-active .builder-option:nth-child(3) { animation-delay: 0.1s; }
  .builder-step.is-active .builder-option:nth-child(4) { animation-delay: 0.15s; }
  .builder-step.is-active .builder-option:nth-child(5) { animation-delay: 0.2s; }
  .builder-step.is-active .builder-option:nth-child(6) { animation-delay: 0.25s; }
  .builder-step.is-active .builder-option:nth-child(7) { animation-delay: 0.3s; }
  .builder-step.is-active .builder-option:nth-child(8) { animation-delay: 0.35s; }
  .builder-step.is-active .builder-option:nth-child(9) { animation-delay: 0.4s; }

  @keyframes builderOptionIn {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Selection settle (select only — no hover tilt, no entrance replay) */
  .builder-range-tile.is-flipping,
  .builder-option.is-flipping {
    animation: builderSelectSettle 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes builderSelectSettle {
    0% {
      opacity: 0.82;
      transform: scale(0.985);
    }
    55% {
      opacity: 1;
      transform: scale(1.01);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes builderBlockReveal {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* Live summary gold flash on change */
  .builder-summary .is-updated,
  .builder-summary h3.is-updated {
    animation: builderValueFlash 0.9s ease both;
  }

  @keyframes builderValueFlash {
    0% {
      color: var(--gold);
      transform: translateY(3px);
      opacity: 0.4;
    }
    100% {
      transform: none;
      opacity: 1;
    }
  }

  /* Review rows cascade in */
  .builder-review dl > div {
    animation: builderRise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .builder-review dl > div:nth-child(1) { animation-delay: 0.02s; }
  .builder-review dl > div:nth-child(2) { animation-delay: 0.06s; }
  .builder-review dl > div:nth-child(3) { animation-delay: 0.1s; }
  .builder-review dl > div:nth-child(4) { animation-delay: 0.14s; }
  .builder-review dl > div:nth-child(5) { animation-delay: 0.18s; }
  .builder-review dl > div:nth-child(6) { animation-delay: 0.22s; }
  .builder-review dl > div:nth-child(7) { animation-delay: 0.26s; }
  .builder-review dl > div:nth-child(8) { animation-delay: 0.3s; }
  .builder-review dl > div:nth-child(9) { animation-delay: 0.34s; }
  .builder-review dl > div:nth-child(10) { animation-delay: 0.38s; }
  .builder-review dl > div:nth-child(11) { animation-delay: 0.42s; }
  .builder-review dl > div:nth-child(12) { animation-delay: 0.46s; }

  /* Error message shake */
  .builder-error:not([hidden]) {
    animation: builderErrorShake 0.4s ease;
  }

  @keyframes builderErrorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
  }

  /* Progress bar already transitions width; ease the step labels too */
  .builder-progress li {
    transition: color 0.3s ease;
  }
}

@media (max-width: 900px) {
  .builder-layout {
    grid-template-columns: 1fr;
  }

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

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

  .builder-form {
    grid-column: 1;
  }

  .builder-summary {
    grid-column: 1;
    grid-row: auto;
    position: static;
    order: -1;
    padding: 18px 20px;
  }

  .builder-summary h3 {
    font-size: 22px;
    margin: 2px 0 10px;
  }

  .builder-summary dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }

  .builder-navigation {
    position: sticky;
    bottom: 68px;
    z-index: 20;
    margin-top: 28px;
    padding: 12px 14px;
    background: rgba(247, 245, 241, 0.96);
    border: 1px solid var(--line);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(10px);
  }

  .builder-summary dl > div {
    padding: 7px 0;
  }

  .builder-summary dd {
    font-size: 13px;
  }

  .builder-price-hero {
    margin: 0 0 12px;
    padding: 16px 14px;
  }

  .builder-price-hero > strong {
    font-size: clamp(34px, 9vw, 42px);
  }

  .builder-price-hero > small {
    display: none;
  }

  .builder-finance {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .build-brief {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .builder-starting-price {
    margin-top: 8px;
    padding-top: 12px;
  }

  .builder-starting-price strong {
    font-size: 24px;
  }

  .builder-starting-price small {
    display: none;
  }

  .builder-summary-actions {
    margin-top: 12px;
  }

  .builder-progress ol {
    display: none;
  }
}

@media (max-width: 640px) {
  .builder-options,
  .builder-wheels-grid,
  .builder-fields,
  .builder-extras-grid,
  .builder-solar-grid {
    grid-template-columns: 1fr;
  }

  .builder-fields .full {
    grid-column: auto;
  }

  .builder-option {
    min-height: 104px;
    padding: 18px;
    gap: 13px;
  }

  .builder-option-simple,
  [data-size-options] .builder-option,
  [data-atm-options] .builder-option {
    min-height: 0;
    padding: 16px 18px;
  }

  .builder-option-thumb {
    flex-basis: 58px;
    width: 58px;
    height: 58px;
  }

  .builder-option-visual .builder-option-thumb {
    flex-basis: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .builder-option-detail-list {
    grid-template-columns: 1fr;
  }

  .builder-gate {
    padding: 60px 0 80px;
  }

  .builder-review dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .builder-navigation {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .repayment-calculator {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .repayment-controls,
  .repayment-result {
    padding: 26px 22px;
  }

  .repayment-control > span {
    gap: 12px;
  }

  .repayment-primary strong {
    font-size: 48px;
  }
}

/* ============================================================
   Range pages (Escape XT, Nebula, Odyssey, Cruiser) — body.xt-page
   ============================================================ */

body.xt-page {
  background: #f3f1ec;
}

body.xt-page .xt-opener {
  display: grid;
  gap: 0;
  padding: 0;
}

body.xt-page .xt-opener-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  max-height: min(34vh, 420px);
  min-height: 180px;
  overflow: hidden;
  background: #0a0a0a;
}

body.xt-page .xt-opener-media > img:not(.xt-opener-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}

body.xt-page .xt-opener-media--full {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: min(42vh, 460px);
}

body.xt-page .xt-opener-media--full > img:not(.xt-opener-logo) {
  width: auto;
  max-width: 96%;
  height: 90%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

body.escape-xt-page .xt-opener-media--full > img:not(.xt-opener-logo) {
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  transform: scale(1.38);
  transform-origin: center center;
}

body.xt-page .xt-opener-media--pending {
  display: grid;
  place-content: center;
  place-items: center;
  gap: clamp(14px, 2.2vw, 22px);
  overflow: visible;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 163, 90, 0.14), transparent 42%),
    #0a0a0a;
}

body.xt-page .xt-opener-media.xt-opener-media--pending {
  overflow: visible;
}

body.xt-page .xt-opener-media--pending .xt-opener-logo {
  width: min(220px, 42vw);
  height: auto;
  max-height: none;
  object-fit: contain;
  opacity: 0.75;
  transform-style: preserve-3d;
  will-change: transform;
  filter: none;
  backface-visibility: visible;
  -webkit-backface-visibility: visible;
}

body.xt-page .xt-opener-pending-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

body.xt-page .xt-opener-pending-label strong {
  font-weight: 800;
}

body.xt-page .xt-opener-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 40px 0 36px;
}

body.xt-page .xt-opener-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: var(--max);
}

body.xt-page .xt-opener .eyebrow {
  color: var(--gold-deep);
}

body.xt-page .xt-opener h1 {
  margin: 8px 0 22px;
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

body.xt-page .xt-opener-copy > p {
  max-width: 38ch;
  margin: 0;
  color: var(--body);
  font-size: 17px;
}

body.xt-page .xt-opener-copy {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

/* Purchase row: cash + weekly, shared height, flush to the divider */
body.xt-page .xt-opener-purchase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px 56px;
  align-items: end;
  margin-top: 28px;
}

body.xt-page .xt-opener-price {
  width: min(100%, 48ch);
  text-align: left;
  margin-top: 0;
}

body.xt-page .xt-opener-price span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

body.xt-page .xt-opener-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 0.95;
}

body.xt-page .xt-opener-price-note {
  margin: 20px 0 0;
  max-width: 48ch;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
}

body.xt-page .xt-opener-aside {
  display: grid;
  gap: 14px;
  justify-self: end;
  justify-items: start;
  width: min(100%, 34ch);
  margin-top: 0;
}

body.xt-page .xt-opener-finance-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

body.xt-page .xt-opener-finance-line {
  display: grid;
  gap: 6px;
}

body.xt-page .xt-opener-finance-line > span {
  display: block;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.xt-page .xt-opener-finance-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

body.xt-page .xt-opener-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

body.xt-page .xt-opener-finance {
  margin: 0;
}

/* Build + lead time — space above the divider */
body.xt-page .xt-opener-price-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 12px 28px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

body.xt-page .xt-opener-price-strip .btn-gold,
body.xt-page .xt-opener-aside .btn-gold {
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 0 0 6px;
  min-height: auto;
}

body.xt-page .xt-opener-price-strip .btn-gold:hover,
body.xt-page .xt-opener-aside .btn-gold:hover {
  letter-spacing: 0.1em;
}

body.xt-page .xt-opener-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: left;
  white-space: nowrap;
}

/* Size picker — Nebula layout, keep ft buttons large */
body.xt-page .xt-size .size-switch {
  background: transparent;
}

body.xt-page .xt-size .size-btn {
  display: inline-flex;
  align-items: baseline;
  gap: 0.06em;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 8px 4px 12px;
  line-height: 1;
}

body.xt-page .xt-size .size-ft-num {
  font-size: 1.15em;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: -0.04em;
}

body.xt-page .xt-size .size-ft-unit {
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  transform: translateY(-0.06em);
}

body.xt-page .xt-size .size-ft-in {
  font-size: 1.15em;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  transform: none;
}

body.xt-page .xt-size .size-switch-subhead {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.xt-page .xt-size .size-switch-next {
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

body.xt-page .size-floorplan {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

body.xt-page .size-floorplan-title {
  font-size: clamp(20px, 2.6vw, 26px);
  margin: 0 0 6px;
}

body.xt-page .size-floorplan-hint {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

body.xt-page .size-floorplan-figure {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(100%, 520px);
  border: 1px solid var(--line);
  background: var(--bg);
  user-select: none;
  -webkit-user-select: none;
  cursor: zoom-in;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

body.xt-page .size-floorplan-figure:hover,
body.xt-page .size-floorplan-figure:focus-visible {
  border-color: rgba(196, 163, 90, 0.55);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.08);
  outline: none;
}

body.xt-page .size-floorplan-art {
  width: 100%;
  aspect-ratio: 2757 / 2033;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-floorplan img {
  max-width: min(100%, 1280px);
  max-height: 86vh;
}

body.xt-page .xt-size .size-btn:hover {
  letter-spacing: -0.02em;
}

body.xt-page .xt-size .size-btn:hover .size-ft-unit {
  letter-spacing: 0.06em;
}

/* Specs */
body.xt-page .xt-specs {
  padding: clamp(56px, 8vw, 96px) 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

body.xt-page .model-trust {
  background: var(--bg);
}

body.xt-page .model-trust.section-alt {
  background: var(--bg);
}

body.xt-page .xt-specs h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

body.xt-page .xt-specs-lead {
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  max-width: 48ch;
}

body.xt-page .xt-specs-disclaimer {
  margin: clamp(24px, 3vw, 32px) 0 0;
  padding-top: 0;
  border-top: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  max-width: 78ch;
}

body.xt-page .xt-specs-cta {
  margin-top: 0;
  padding-top: clamp(18px, 2.2vw, 22px);
  border-top: 1px solid var(--line);
}

body.xt-page .xt-specs-cta .btn {
  margin: 0;
}

body.xt-page .xt-spec-block {
  margin: 0 0 40px;
  padding: 0;
  background: transparent;
  border: 0;
}

body.xt-page .xt-spec-block--size {
  max-width: none;
  margin-bottom: clamp(36px, 5vw, 52px);
  padding: 0;
  background: transparent;
  border: 0;
}

body.xt-page .xt-spec-grid {
  column-count: 1;
  column-gap: 0;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

body.xt-page .xt-spec-grid::before {
  content: "Build & equipment";
  display: block;
  margin-bottom: 2px;
  padding-top: clamp(28px, 3.5vw, 36px);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

body.xt-page .xt-spec-grid > .xt-spec-block,
body.xt-page .xt-spec-grid > .xt-spec-panel {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 0;
}

body.xt-page .xt-spec-grid .xt-spec-panel {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

body.xt-page .xt-spec-grid > .xt-spec-panel:last-child {
  border-bottom: 0;
}

body.xt-page .xt-spec-grid .xt-spec-panel + .xt-spec-panel {
  border-top: 0;
}

body.xt-page .xt-spec-panel summary {
  padding: clamp(20px, 2.5vw, 26px) 4px clamp(20px, 2.5vw, 26px) 0;
  margin: 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.9vw, 19px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  transition: color 0.2s ease;
}

body.xt-page .xt-spec-panel summary:hover {
  color: var(--gold-deep);
}

body.xt-page .xt-spec-panel summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

body.xt-page .xt-spec-panel summary::-webkit-details-marker {
  display: none;
}

body.xt-page .xt-spec-panel summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-deep);
  line-height: 1;
  transition: transform 0.25s ease;
}

body.xt-page .xt-spec-panel[open] summary {
  padding-bottom: 0;
  color: var(--ink);
}

body.xt-page .xt-spec-panel[open] summary::after {
  transform: rotate(45deg);
}

body.xt-page .xt-spec-panel > dl,
body.xt-page .xt-spec-panel > .xt-spec-list {
  margin: 0;
  padding: 0 0 clamp(20px, 2.5vw, 26px);
  border-top: 0;
  background: transparent;
}

body.xt-page .xt-spec-panel[open] > dl,
body.xt-page .xt-spec-panel[open] > .xt-spec-list {
  padding-top: clamp(28px, 3.2vw, 36px);
  padding-bottom: clamp(22px, 2.8vw, 28px);
}

body.xt-page .xt-spec-grid > .xt-spec-panel:last-child > dl,
body.xt-page .xt-spec-grid > .xt-spec-panel:last-child > .xt-spec-list,
body.xt-page .xt-spec-grid > .xt-spec-panel:last-child[open] > dl,
body.xt-page .xt-spec-grid > .xt-spec-panel:last-child[open] > .xt-spec-list {
  padding-bottom: clamp(10px, 1.2vw, 14px);
}

body.xt-page .xt-size-spec-heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 32px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

body.xt-page .xt-size-spec-heading::before {
  content: "Selected size";
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

body.xt-page .xt-size-compare-toggle {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  width: auto;
  max-width: 100%;
  align-self: flex-start;
  justify-content: flex-start;
  transition: color 0.2s ease;
}

body.xt-page .xt-size-compare-toggle::after {
  transition: transform 0.18s ease, background-color 0.18s ease;
}

body.xt-page .xt-size-compare-toggle:hover {
  letter-spacing: 0.14em;
}

body.xt-page .xt-spec-block h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

body.xt-page .xt-size-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -4px;
  padding: 0 4px;
}

body.xt-page .xt-spec-block--size .size-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

body.xt-page .xt-spec-block .size-table {
  width: 100%;
  min-width: 280px;
  border-collapse: collapse;
  table-layout: fixed;
}

body.xt-page .xt-spec-block--size .size-table th,
body.xt-page .xt-spec-block--size .size-table td {
  padding: 13px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 14px;
  background: transparent;
  width: auto;
  vertical-align: top;
  line-height: 1.5;
}

body.xt-page .xt-spec-block--size .size-table tbody tr:last-child th,
body.xt-page .xt-spec-block--size .size-table tbody tr:last-child td {
  border-bottom: 0;
  padding-bottom: 4px;
}

body.xt-page .xt-spec-block .size-table th,
body.xt-page .xt-spec-block .size-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  background: transparent;
  width: auto;
  vertical-align: top;
  line-height: 1.5;
}

body.xt-page .xt-spec-block .size-table thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  padding-top: 4px;
  padding-bottom: 16px;
}

body.xt-page .xt-spec-block .size-table tbody th {
  font-weight: 500;
  color: var(--muted);
  font-size: 14px;
  width: 42%;
  padding-right: 20px;
}

body.xt-page .xt-spec-block .size-table td {
  color: var(--ink);
  font-weight: 500;
}

body.xt-page .xt-spec-block .size-table .is-selected-size-col {
  background: transparent;
  font-weight: 700;
  color: var(--ink);
}

body.xt-page .xt-spec-list,
body.xt-page .xt-spec-block dl,
body.xt-page .xt-spec-panel dl {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  body.xt-page .xt-spec-list,
  body.xt-page .xt-spec-block dl,
  body.xt-page .xt-spec-panel dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(28px, 3.5vw, 48px);
    row-gap: 12px;
  }
}

body.xt-page .xt-spec-list > li,
body.xt-page .xt-spec-block dl > div,
body.xt-page .xt-spec-panel dl > div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

body.xt-page .xt-spec-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 8px;
  background: rgba(196, 163, 90, 0.11);
  border: 1px solid rgba(196, 163, 90, 0.28);
  color: var(--gold-deep);
}

body.xt-page .xt-spec-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

body.xt-page .xt-spec-list > li + li,
body.xt-page .xt-spec-block dl > div + div,
body.xt-page .xt-spec-panel dl > div + div {
  margin-top: 0;
}

body.xt-page .xt-spec-block dt,
body.xt-page .xt-spec-panel dt {
  display: none;
}

body.xt-page .xt-spec-block dd,
body.xt-page .xt-spec-panel dd {
  margin: 0;
  flex: 1;
  min-width: 0;
  padding-right: 4px;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.6;
}

/* Close */
body.xt-page .xt-close {
  padding: clamp(48px, 8vw, 80px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

body.xt-page .xt-close-inner {
  max-width: 520px;
}

body.xt-page .xt-close h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

body.xt-page .xt-close p {
  margin: 0 0 32px;
  color: var(--body);
  max-width: 36ch;
  line-height: 1.55;
}

body.xt-page .xt-close .actions {
  margin-top: 0;
}

@media (max-width: 900px) {
  body.xt-page .xt-opener-media {
    aspect-ratio: 16 / 9;
    max-height: min(32vh, 280px);
    min-height: 160px;
  }

  body.xt-page .xt-opener-media--full {
    aspect-ratio: 2.35 / 1;
    max-height: min(36vh, 300px);
    min-height: 148px;
  }

  body.xt-page .xt-opener-media--full > img:not(.xt-opener-logo) {
    width: auto;
    max-width: 96%;
    height: 90%;
    max-height: 90%;
  }

  body.escape-xt-page .xt-opener-media--full > img:not(.xt-opener-logo) {
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    transform: scale(1.32);
    transform-origin: center center;
  }

  body.xt-page .xt-opener-band {
    padding: 28px 0 28px;
  }

  body.xt-page .xt-opener h1 {
    font-size: clamp(40px, 11vw, 56px);
  }

  body.xt-page .xt-opener-purchase {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 28px;
  }

  body.xt-page .xt-opener-price,
  body.xt-page .xt-opener-aside {
    width: 100%;
    justify-self: start;
  }

  body.xt-page .xt-opener-price-strip {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 28px;
  }

  body.xt-page .xt-opener-meta {
    text-align: left;
    white-space: normal;
  }

  body.xt-page .xt-spec-block .size-table thead {
    display: none;
  }

  body.xt-page .xt-spec-block--size.is-comparing .size-table thead {
    display: table-header-group;
  }

  body.xt-page .xt-spec-block .size-table tbody th {
    width: 46%;
  }
}

@media (max-width: 640px) {
  body.xt-page .xt-size .size-btn {
    font-size: 24px;
  }

  body.xt-page .xt-spec-block--size {
    max-width: none;
    padding: 0;
  }

  body.xt-page .xt-spec-panel summary {
    padding-right: 0;
  }

  body.xt-page .xt-spec-panel[open] > dl,
  body.xt-page .xt-spec-panel[open] > .xt-spec-list {
    padding-top: 26px;
    padding-bottom: 22px;
  }

  body.xt-page .xt-spec-grid > .xt-spec-panel:last-child > dl,
  body.xt-page .xt-spec-grid > .xt-spec-panel:last-child > .xt-spec-list,
  body.xt-page .xt-spec-grid > .xt-spec-panel:last-child[open] > dl,
  body.xt-page .xt-spec-grid > .xt-spec-panel:last-child[open] > .xt-spec-list {
    padding-bottom: 10px;
  }

  body.xt-page .xt-spec-list,
  body.xt-page .xt-spec-block dl,
  body.xt-page .xt-spec-panel dl {
    gap: 10px;
  }

  body.xt-page .xt-spec-block .size-table tbody th {
    width: 48%;
    padding-right: 16px;
  }

  body.xt-page .xt-spec-block .size-table th,
  body.xt-page .xt-spec-block .size-table td {
    font-size: 14px;
    padding: 14px 10px;
  }
}

/* === gemini-factory-experience (optional module — delete this block to remove styling) === */
.gemini-factory-experience {
  padding: clamp(64px, 8vw, 104px) 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(196, 163, 90, 0.12), transparent 42%),
    linear-gradient(180deg, #101010, #060606);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gemini-factory-experience-head {
  max-width: 720px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.gemini-factory-experience-head .eyebrow {
  color: var(--gold);
}

.gemini-factory-experience-head h2 {
  color: #fff;
  font-size: clamp(34px, 4.8vw, 52px);
  margin: 0 0 12px;
  max-width: 22ch;
}

.gemini-factory-experience-subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.35;
}

.gemini-factory-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
  margin-bottom: clamp(32px, 5vw, 44px);
}

.gemini-factory-experience-hero {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080808;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35);
  min-height: 100%;
  display: grid;
}

.gemini-factory-experience-hero img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gemini-factory-experience-copy .eyebrow {
  color: var(--gold);
  margin-bottom: 12px;
}

.gemini-factory-experience-copy > h2 {
  color: #fff;
  font-size: clamp(34px, 4.8vw, 52px);
  margin: 0 0 12px;
  max-width: 22ch;
  text-align: left;
}

.gemini-factory-experience-copy .gemini-factory-experience-subtitle {
  margin-bottom: clamp(20px, 3vw, 28px);
}

.gemini-factory-experience-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  margin: 0 0 16px;
}

.gemini-factory-experience-actions {
  margin-top: 12px;
}

.gemini-factory-experience .btn-gold {
  color: #fff;
}

.gemini-factory-experience .btn-gold::after {
  background: var(--gold);
  transform: scaleX(0.48);
}

.gemini-factory-experience .btn-gold:hover {
  color: var(--gold);
}

.gemini-factory-experience .btn-gold:hover::after {
  transform: scaleX(1);
}

.gemini-factory-experience-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.gemini-factory-experience-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a0a0a;
}

.gemini-factory-experience-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gemini-factory-experience-gallery figcaption {
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gemini-factory-experience--on-xt {
  border-top: 0;
}

@media (min-width: 901px) {
  .gemini-factory-experience--home .gemini-factory-experience-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

body.xt-page .gemini-factory-experience--on-xt {
  margin-top: 0;
}

@media (max-width: 980px) {
  .gemini-factory-experience-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .gemini-factory-experience-hero {
    min-height: auto;
  }

  .gemini-factory-experience-hero img {
    min-height: clamp(220px, 42vw, 360px);
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .gemini-factory-experience-gallery,
  .gemini-factory-experience--home .gemini-factory-experience-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gemini-factory-experience-gallery img {
    aspect-ratio: 16 / 10;
  }
}

/* === xt-step-inside (optional module — delete this block + section in escape-xt.html) === */
.xt-step-inside {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.xt-page .xt-step-inside {
  margin-top: 0;
}

.xt-step-inside .video-showcase-copy .actions {
  margin-top: 28px;
  gap: 20px 32px;
}

@media (max-width: 1060px) {
  .xt-step-inside .video-showcase-grid {
    display: flex;
    flex-direction: column;
  }

  .xt-step-inside .feature-video {
    order: -1;
  }
}
