:root {
  --charcoal: #111111;
  --charcoal-soft: #1a1a1a;
  --pearl: #f8f8f6;
  --pearl-deep: #efefec;
  --gold: #c6a972;
  --gold-hover: #b8995f;
  --gold-muted: rgba(198, 169, 114, 0.18);
  --gray-lux: #7e7e7e;
  --gray-light: #a8a8a8;
  --white: #ffffff;
  --ink: #111111;
  --ink-soft: #3d3d3d;
  --text-on-dark: #f8f8f6;
  --text-on-dark-muted: #c8c8c4;
  --text-on-light: var(--ink-soft);
  --text-on-light-heading: var(--charcoal);
  --card-bg: var(--white);
  --shadow: 0 42px 96px rgba(17, 17, 17, 0.08), 0 18px 44px rgba(17, 17, 17, 0.06);
  --shadow-soft: 0 28px 58px rgba(17, 17, 17, 0.06), 0 10px 28px rgba(17, 17, 17, 0.04);
  --shadow-lift: 0 32px 68px rgba(17, 17, 17, 0.12);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(198, 169, 114, 0.28);
  --radius: 24px;
  --radius-sm: 16px;
  --leading-body: 1.72;
  --leading-prose: 1.68;
  --leading-tight: 1.22;
  --leading-hero: 1.15;
  --measure-prose: 38rem;
  --space-section: clamp(2.65rem, 7.5vw, 4.75rem);
  --space-block: clamp(1.5rem, 4vw, 2.25rem);
  --max: 40rem;
  --max-wide: 68rem;
  --sticky-h: 3.75rem;
  --font-display: "Assistant", "Heebo", system-ui, sans-serif;
  --font-body: "Heebo", "Assistant", system-ui, sans-serif;
  --text-prose: clamp(0.98rem, 0.93rem + 0.2vw, 1.06rem);
  --text-bridge: clamp(1.1rem, 1.02rem + 0.32vw, 1.22rem);
  --text-insight: clamp(1.12rem, 1.04rem + 0.38vw, 1.28rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-on-light);
  text-align: center;
  background: var(--pearl);
  line-height: var(--leading-body);
  font-size: clamp(1.02rem, 0.97rem + 0.38vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: rgba(198, 169, 114, 0.28);
  color: var(--ink);
}

@media (max-width: 768px) {
  body.has-sticky-cta {
    padding-bottom: calc(var(--sticky-h) + env(safe-area-inset-bottom, 0px) + 0.75rem);
  }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-on-light-heading);
  line-height: var(--leading-tight);
  margin: 0 auto var(--space-block);
  max-width: min(var(--measure-prose), 100%);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(1.75rem, 1.1rem + 2.5vw, 2.65rem);
  max-width: min(30rem, 100%);
  line-height: var(--leading-hero);
}

h2, .section-title {
  font-size: clamp(1.35rem, 1.02rem + 1.15vw, 1.85rem);
  max-width: min(34rem, 100%);
  line-height: 1.28;
}

h3 { font-size: clamp(1.06rem, 1rem + 0.28vw, 1.22rem); font-weight: 600; }

p {
  margin: 0 auto clamp(1rem, 2.2vw, 1.4rem);
  max-width: var(--measure-prose);
  line-height: var(--leading-prose);
}

p strong, li strong { font-weight: 600; color: var(--ink); }

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease-smooth);
}
a:hover { color: var(--gold-hover); }

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

.wrap-narrow {
  width: min(100% - clamp(1.25rem, 5vw, 3rem), var(--max));
  margin-inline: auto;
}

.wrap-wide {
  width: min(100% - clamp(1.25rem, 5vw, 3rem), var(--max-wide));
  margin-inline: auto;
}

.section:not(.hero) > .wrap-narrow,
.section:not(.hero) > .wrap-wide {
  padding-block: var(--space-section);
}

.section { position: relative; }

.section--pearl {
  background: var(--pearl);
  border-block: 1px solid rgba(17, 17, 17, 0.06);
}

.section--white {
  background: var(--white);
  border-block: 1px solid rgba(17, 17, 17, 0.05);
}

.section--charcoal {
  background: linear-gradient(165deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
  color: var(--text-on-dark-muted);
  border-block: 1px solid rgba(198, 169, 114, 0.12);
}

.section-title--light { color: var(--text-on-dark); }
.section-lede {
  margin: -0.5rem auto clamp(1.5rem, 4vw, 2rem);
  max-width: min(32rem, 100%);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  color: var(--gray-lux);
  line-height: 1.6;
}
.section-lede--light { color: var(--text-on-dark-muted); }

.h-with-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.icon-svg {
  width: 1.65rem;
  height: 1.65rem;
  color: var(--gold);
  flex-shrink: 0;
}

.section--charcoal .icon-svg { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(3.5rem, 8vw, 5.5rem);
}

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

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.72) 55%, rgba(17, 17, 17, 0.88) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(1.25rem, 5vw, 3rem), var(--max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__brand {
  margin: 0 0 clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1rem + 1.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero__title {
  margin: 0 auto clamp(1rem, 2.8vw, 1.35rem);
  font-size: clamp(1.85rem, 1.2rem + 2.4vw, 2.75rem);
  line-height: var(--leading-hero);
  color: var(--text-on-dark);
}

.hero__tagline {
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  max-width: min(28rem, 100%);
  font-size: clamp(1.05rem, 0.98rem + 0.35vw, 1.22rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-on-dark-muted);
}

.hero__cta-block {
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-animate {
  opacity: 0;
  animation: hero-rise 1s var(--ease-expo) forwards;
}
.hero-animate--d1 { animation-delay: 0.12s; }
.hero-animate--d2 { animation-delay: 0.24s; }
.hero-animate--d3 { animation-delay: 0.38s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.02rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
}

.btn svg {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #b8995f 100%);
  color: var(--charcoal);
  box-shadow: 0 8px 28px rgba(198, 169, 114, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #d4b882 0%, var(--gold) 100%);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(198, 169, 114, 0.42);
}

.btn--full { width: 100%; max-width: 22rem; }

/* Panels & story */
.intro-panel {
  max-width: min(36rem, 100%);
  margin-inline: auto;
  padding: clamp(1.45rem, 4vw, 2.1rem) clamp(1.35rem, 4.2vw, 2rem);
  border-radius: calc(var(--radius-sm) + 4px);
  background: var(--card-bg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.intro-panel--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(198, 169, 114, 0.18);
  box-shadow: none;
}

.story-p {
  max-width: none;
  margin: 0;
  line-height: 1.78;
  font-size: var(--text-prose);
  color: var(--text-on-light);
}
.story-p + .story-p { margin-top: clamp(0.95rem, 2.4vw, 1.25rem); }
.story-p--narrative { font-weight: 400; line-height: 1.84; }
.story-p--insight {
  font-size: var(--text-insight);
  font-weight: 600;
  color: var(--text-on-light-heading);
}
.story-p--bridge {
  font-size: var(--text-bridge);
  font-weight: 600;
  color: var(--text-on-light-heading);
}
.story-p--light { color: var(--text-on-dark-muted); }
.story-p--gold { color: var(--gold); }

.closing-note { margin-top: clamp(1.5rem, 4vw, 2rem); }

/* Check lists */
.check-list {
  list-style: none;
  padding: 0;
  margin: clamp(1.25rem, 3.5vw, 1.75rem) auto 0;
  max-width: min(34rem, 100%);
}

.check-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  text-align: center;
}

.check-list li span {
  max-width: 28rem;
  font-size: var(--text-prose);
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}

.check-list--dark li span { color: var(--text-on-dark-muted); }
.check-list--compact { max-width: min(32rem, 100%); }

.list-check__ico {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  color: var(--gold);
}

/* Benefits grid */
.benefits-grid {
  list-style: none;
  padding: 0;
  margin: 0 auto clamp(1.5rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(0.85rem, 2.5vw, 1.15rem);
  max-width: 100%;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1rem, 2.5vw, 1.25rem);
  border-radius: var(--radius-sm);
  background: var(--pearl);
  border: 1px solid rgba(17, 17, 17, 0.07);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}

@media (hover: hover) {
  .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(198, 169, 114, 0.35);
  }
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--gold-muted);
  color: var(--gold);
}

.benefit-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.benefit-card span:last-child {
  font-size: clamp(0.92rem, 0.88rem + 0.18vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Media */
.media-frame {
  margin: clamp(1.5rem, 4vw, 2rem) auto 0;
  width: 100%;
  max-width: min(36rem, 100%);
  border-radius: calc(var(--radius-sm) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.media-frame--section-lead {
  margin-top: 0;
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  width: fit-content;
  max-width: min(22rem, 100%);
  margin-inline: auto;
}

.media-frame .media-img {
  width: 100%;
  height: auto;
  display: block;
}

.media-img--wide {
  max-height: none;
  object-fit: contain;
}

/* Car gallery */
.section--gallery { padding-bottom: 0; }

.car-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 2vw, 1.15rem);
  margin: clamp(1.5rem, 4vw, 2rem) auto 0;
  max-width: min(52rem, 100%);
}

@media (min-width: 900px) {
  .car-gallery {
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
  }
}

.car-gallery__item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(198, 169, 114, 0.15);
}

.car-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-expo);
}

@media (hover: hover) {
  .car-gallery__item:hover img {
    transform: scale(1.06);
  }
}

@media (max-width: 640px) {
  .car-gallery {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* Videos */
.section-videos__lede {
  margin: -0.5rem auto clamp(1.5rem, 4vw, 2rem);
  max-width: min(32rem, 100%);
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.12rem);
  color: var(--gray-lux);
  line-height: 1.6;
}

.videos-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 1.65rem);
  margin: 0 auto;
  max-width: min(42rem, 100%);
}

.video-block {
  margin: 0;
  width: 100%;
  border-radius: calc(var(--radius-sm) + 2px);
  overflow: hidden;
  background: linear-gradient(165deg, #1a1a1a 0%, var(--charcoal) 100%);
  border: 1px solid rgba(198, 169, 114, 0.22);
  box-shadow: var(--shadow-soft);
}

.video-block video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  background: var(--charcoal);
  object-fit: contain;
}

.section-videos__note {
  margin: clamp(1rem, 2.8vw, 1.35rem) auto 0;
  max-width: 28rem;
  font-size: 0.88rem;
  color: var(--gray-lux);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: 1rem;
}

.timeline__track {
  position: absolute;
  top: 2.1rem;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
  opacity: 0.5;
}

.timeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.timeline__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.timeline__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid rgba(198, 169, 114, 0.4);
  position: relative;
  z-index: 1;
}

.timeline__label {
  font-size: clamp(0.82rem, 0.78rem + 0.15vw, 0.92rem);
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.35;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(1rem, 3vw, 1.35rem);
  margin-top: clamp(1.5rem, 4vw, 2rem);
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3.5vw, 1.65rem);
  border-radius: var(--radius);
  background: var(--charcoal);
  border: 1px solid rgba(198, 169, 114, 0.22);
  box-shadow: 0 24px 56px rgba(17, 17, 17, 0.2);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-smooth), border-color 0.35s var(--ease-smooth);
}

@media (hover: hover) {
  .package-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(198, 169, 114, 0.38);
  }
}

.package-card--featured {
  border-color: rgba(198, 169, 114, 0.45);
  box-shadow: 0 28px 64px rgba(17, 17, 17, 0.28);
}

.package-card__title { color: var(--gold); }
.package-card__text,
.package-card__list li { color: var(--text-on-dark-muted); }

.package-card__badge {
  position: absolute;
  top: -0.65rem;
  padding: 0.25rem 0.85rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1rem + 0.25vw, 1.2rem);
}

.package-card__text {
  margin: 0;
  font-size: var(--text-prose);
  line-height: 1.65;
}

.package-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.package-card__list li {
  margin-bottom: 0.55rem;
  font-size: clamp(0.88rem, 0.84rem + 0.15vw, 0.95rem);
  line-height: 1.55;
}

.package-card__list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* Lead form */
.lead-capture > .wrap-narrow {
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
}

.lead-form {
  max-width: 22rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3.5vw, 1.75rem);
  border-radius: calc(var(--radius-sm) + 4px);
}

.lead-form--glass {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.lead-form__field {
  margin-bottom: 1.1rem;
  text-align: center;
}

.lead-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
}

.lead-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(198, 169, 114, 0.25);
  border-radius: calc(var(--radius-sm) - 4px);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-on-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}

.lead-form input::placeholder { color: rgba(248, 248, 246, 0.35); }

.lead-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 169, 114, 0.18);
}

.lead-form input[type="date"] {
  color-scheme: dark;
}

.lead-form .btn { margin-top: 0.5rem; }

.lead-form__feedback {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
}
.lead-form__feedback--ok { color: #8fd4a0; }
.lead-form__feedback--err { color: #e8a0a0; }

/* FAQ */
.faq-panel {
  max-width: min(36rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.faq-item {
  margin-bottom: clamp(1.25rem, 3.5vw, 1.65rem);
  padding: clamp(1.25rem, 3.5vw, 1.5rem) clamp(1.15rem, 3vw, 1.35rem);
  border-radius: calc(var(--radius-sm) + 2px);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.faq-item:last-child { margin-bottom: 0; }

.faq-item__q {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.95rem + 0.22vw, 1.12rem);
  font-weight: 700;
  color: var(--text-on-light-heading);
  line-height: 1.4;
}

.faq-item__a {
  margin: 0;
  font-size: var(--text-prose);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: none;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: var(--text-on-dark-muted);
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1.25rem, 5vw, 3rem);
  border-top: 1px solid rgba(198, 169, 114, 0.15);
}

.site-footer__inner {
  max-width: var(--max);
  margin-inline: auto;
  text-align: center;
}

.site-footer__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-footer__tagline {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  color: var(--text-on-dark-muted);
}

.site-footer__closing {
  margin: 0 auto 1.25rem;
  max-width: 26rem;
  font-size: clamp(0.92rem, 0.88rem + 0.15vw, 1rem);
  line-height: 1.65;
  color: var(--gray-light);
}

.site-footer__copy {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: rgba(248, 248, 246, 0.4);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
}

.footer-legal a {
  color: var(--text-on-dark);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-legal .dot {
  color: rgba(248, 248, 246, 0.35);
}

.site-footer__credit {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: rgba(248, 248, 246, 0.78);
}

.site-footer__credit a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__credit a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.65rem clamp(1rem, 4vw, 1.5rem) calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(198, 169, 114, 0.2);
  display: flex;
  justify-content: center;
  transition: transform 0.35s var(--ease-expo), opacity 0.35s var(--ease-smooth);
}

.sticky-cta--hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 769px) {
  .sticky-cta { display: none; }
  body.has-sticky-cta { padding-bottom: 0; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-animate,
  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
  .car-gallery__item img { transition: none; }
}

/* Process route: desktop inline, mobile separate section */
.process-route--desktop {
  display: block;
}

.process-route-mobile {
  display: none;
}

.process-route-mobile > .wrap-narrow {
  padding-block: clamp(2rem, 5.5vw, 3rem);
}

.process-route-mobile__lede {
  margin-bottom: clamp(1.25rem, 3.5vw, 1.75rem);
}

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

@media (max-width: 768px) {
  .process-route--desktop {
    display: none;
  }

  .process-route-mobile {
    display: block;
  }

  .timeline--stacked {
    margin-top: 0;
    padding-top: 0;
  }

  .timeline--stacked .timeline__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 15rem;
    margin-inline: auto;
  }

  .timeline--stacked .timeline__step {
    width: 100%;
    padding-bottom: 1.35rem;
    position: relative;
  }

  .timeline--stacked .timeline__step:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 0.85rem;
    background: var(--gold);
    opacity: 0.45;
  }

  .timeline--stacked .timeline__num {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1rem;
  }

  .timeline--stacked .timeline__label {
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 12rem;
  }
}

/* Legal pages */
.legal-page-body {
  min-height: 100vh;
  background: var(--pearl);
  color: var(--ink-soft);
}

.legal-page {
  max-width: min(40rem, 100%);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) clamp(1rem, 4vw, 1.5rem) clamp(3rem, 8vw, 4rem);
  text-align: center;
}

.legal-page__back {
  display: inline-block;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

.legal-page__back:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__back--bottom {
  margin: 2rem 0 0;
  width: 100%;
}

.legal-page h1 {
  font-size: clamp(1.65rem, 1.2rem + 1.4vw, 2.1rem);
  color: var(--text-on-light-heading);
  margin: 0 0 1rem;
}

.legal-page .legal-prose {
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.08rem);
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}

.legal-page .legal-prose p {
  margin: 0 0 1rem;
}

.legal-page .legal-prose__h2 {
  font-size: clamp(1.12rem, 1.02rem + 0.35vw, 1.22rem);
  font-weight: 700;
  color: var(--text-on-light-heading);
  margin: 1.35rem 0 0.65rem;
}

.legal-page .legal-prose__list {
  margin: 0 auto 1rem;
  padding: 0;
  list-style: none;
  max-width: 28rem;
}

.legal-page .legal-prose__list li {
  margin-bottom: 0.45em;
}

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

.legal-page .legal-prose a:hover {
  color: var(--gold-hover);
}

.legal-page .legal-prose__meta {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: var(--gray-lux);
}

.legal-footer-nav {
  margin-top: 1.5rem;
}

.legal-footer-nav a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.legal-footer-nav a:hover {
  text-decoration: underline;
}
