/* ==========================================================================
   OBSIDIAN — Automobil Centrum
   Design system + component styles
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  --black: #0a0a0b;
  --graphite: #131315;
  --anthracite: #1b1b1e;
  --surface: #19191c;
  --surface-2: #202023;
  --border: rgba(255,255,255,.09);
  --border-strong: rgba(255,255,255,.16);
  --text: #f4f3ef;
  --text-dim: #9d9da2;
  --text-faint: #6b6b70;
  --accent: #c6a15b;
  --accent-soft: rgba(198,161,91,.35);
  --accent-glow: rgba(198,161,91,.18);

  --font-display: "Syne", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1360px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);

  --radius: 2px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{
  scroll-behavior: auto;
  background: var(--black);
  color-scheme: dark;
}
body{
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul{ list-style: none; margin: 0; padding: 0; }
input, select{ font: inherit; color: inherit; }
h1,h2,h3,h4,p{ margin: 0; }

.skip-link{
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--black);
  padding: .75rem 1.25rem; z-index: 999;
  font-weight: 600;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

:focus-visible{ outline: 2px solid var(--accent); outline-offset: 3px; }

h1,h2,h3{ font-family: var(--font-display); font-weight: 700; letter-spacing: -.01em; }

.eyebrow{
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 1.1rem;
}
.eyebrow::before{
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.eyebrow--light{ color: var(--text); }
.eyebrow--light::before{ background: var(--text); }

/* ---------- Layout helpers ---------- */
main{ display: block; }
section{ position: relative; padding: var(--section-y) var(--gutter); }
.section-head{ max-width: var(--container); margin: 0 auto clamp(2.5rem, 6vw, 4.5rem); }
.section-head h2{ font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.08; }
.section-head--split{ display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; }
.section-head__note{ max-width: 340px; color: var(--text-dim); font-size: .95rem; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2.1rem; font-size: .85rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .5s var(--ease), background-color .35s, border-color .35s, color .35s;
  white-space: nowrap;
}
.btn--primary{
  background: var(--accent); color: var(--black);
}
.btn--primary:hover{ background: #d6b475; }
.btn--ghost{
  border-color: var(--border-strong); color: var(--text);
  padding: .85rem 1.6rem;
}
.btn--ghost:hover{ border-color: var(--accent); color: var(--accent); }
.btn--text{ padding: 1rem .2rem; position: relative; }
.btn--text span{ position: relative; }
.btn--text span::after{
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px;
  background: currentColor; transform: scaleX(1); transform-origin: right;
  transition: transform .5s var(--ease);
}
.btn--text:hover span::after{ transform: scaleX(0); transform-origin: left; }
.btn--lg{ padding: 1.25rem 2.8rem; font-size: .9rem; }

.link-arrow{
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .03em;
  color: var(--text); position: relative; padding-bottom: 2px;
}
.link-arrow::after{ content: "→"; transition: transform .4s var(--ease); }
.link-arrow:hover::after{ transform: translateX(6px); }
.link-arrow::before{
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--border-strong);
}

/* ==========================================================================
   Intro Loader
   ========================================================================== */
.loader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.5rem;
  transition: opacity .6s var(--ease), visibility .6s;
}
.loader.is-done{ opacity: 0; visibility: hidden; pointer-events: none; }
.loader__mark{ color: var(--accent); }
.loader__diamond{ stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw-diamond 1s var(--ease) forwards .1s; }
@keyframes draw-diamond{ to{ stroke-dashoffset: 0; } }
.loader__bar{ width: 160px; height: 1px; background: var(--border); overflow: hidden; }
.loader__bar span{ display: block; height: 100%; width: 0%; background: var(--accent); animation: load-bar 1s var(--ease) forwards .15s; }
@keyframes load-bar{ to{ width: 100%; } }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .45s var(--ease), background-color .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  height: 66px;
  background: rgba(10,10,11,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--border);
}
.site-header__inner{
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.logo{ display: inline-flex; align-items: center; gap: .6rem; }
.logo__mark{ color: var(--accent); }
.logo__word{ font-family: var(--font-display); font-weight: 700; letter-spacing: .12em; font-size: .95rem; }

.main-nav ul{ display: flex; gap: clamp(1.2rem, 2vw, 2.4rem); }
.main-nav a{
  font-size: .85rem; font-weight: 500; color: var(--text-dim);
  position: relative; padding: 6px 0; transition: color .35s;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a::after{
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--accent); transition: width .4s var(--ease);
}
.main-nav a:hover::after{ width: 100%; }

.site-header__actions{ display: flex; align-items: center; gap: 1rem; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 34px; height: 34px;
}
.nav-toggle span{ display: block; width: 100%; height: 1px; background: var(--text); transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.mobile-nav{
  position: fixed; inset: 0; z-index: 480;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.mobile-nav.is-open{ opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav nav{ text-align: center; display: flex; flex-direction: column; gap: 2.6rem; align-items: center; }
.mobile-nav ul{ display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-nav a{ font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; padding: var(--header-h) var(--gutter) 4rem;
}
.hero__bg{ position: absolute; inset: 0; z-index: 0; }
.hero__gradient{
  position: absolute; inset: 0; z-index: 3;
  background:
    linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.25) 30%, rgba(10,10,11,.55) 68%, var(--black) 100%),
    linear-gradient(90deg, rgba(10,10,11,.85) 0%, rgba(10,10,11,.15) 45%, rgba(10,10,11,.15) 55%, rgba(10,10,11,.85) 100%);
}
.hero__car{ position: absolute; inset: 0; }
.hero__img{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.72) contrast(1.06);
  transform: scale(1.08);
}
.hero__glow{
  position: absolute; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0; filter: blur(6px); z-index: 2;
  transition: opacity 1.4s var(--ease-soft);
}
.hero__glow--left{ left: 22%; top: 52%; }
.hero__glow--right{ left: 46%; top: 52%; }
.hero__scanline{
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-soft), transparent);
  opacity: .5; z-index: 4;
}

.hero__content{ position: relative; z-index: 5; max-width: var(--container); margin: 0 auto; width: 100%; }
.hero__headline{ font-size: clamp(2.6rem, 7.2vw, 5.6rem); line-height: 1.02; margin: 0 0 1.4rem; }
.split-line{ display: block; overflow: hidden; }
.split-line > span, .split-line{ }
.hero__headline .split-line{ padding-bottom: .08em; }
.split-line--accent{ color: var(--accent); }
.hero__sub{ max-width: 480px; color: var(--text-dim); font-size: 1.05rem; margin-bottom: 2.4rem; }
.hero__actions{ display: flex; gap: 1.2rem; flex-wrap: wrap; align-items: center; }

.scroll-hint{
  position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint);
}
.scroll-hint__line{ width: 1px; height: 36px; background: linear-gradient(var(--accent), transparent); animation: scroll-hint 2s ease-in-out infinite; }
@keyframes scroll-hint{ 0%{ transform: scaleY(0); transform-origin: top; } 50%{ transform: scaleY(1); transform-origin: top; } 51%{ transform-origin: bottom; } 100%{ transform: scaleY(0); transform-origin: bottom; } }

/* ==========================================================================
   Brand Statement
   ========================================================================== */
.statement{
  background: var(--graphite);
  padding-top: clamp(6rem, 12vw, 10rem); padding-bottom: clamp(6rem, 12vw, 10rem);
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.statement__bg-text{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(5rem, 18vw, 15rem); color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  white-space: nowrap; z-index: 0; pointer-events: none; letter-spacing: -.02em;
}
.statement__content{ position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.statement__text{
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem); line-height: 1.3; letter-spacing: -.01em;
  margin-bottom: 3.5rem;
}
.statement__values{
  display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap;
}
.value{ display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.value__index{ font-size: .75rem; color: var(--accent); letter-spacing: .1em; }
.value__label{ font-size: .95rem; color: var(--text-dim); }

/* ==========================================================================
   Services
   ========================================================================== */
.services__grid{ max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch; }
.services__list{ display: flex; flex-direction: column; }
.services__item{
  display: grid; grid-template-columns: auto 1fr; column-gap: 1.2rem; row-gap: .4rem;
  text-align: left; padding: 1.5rem 0; border-top: 1px solid var(--border); width: 100%;
  transition: padding .4s var(--ease);
}
.services__list li:last-child .services__item{ border-bottom: 1px solid var(--border); }
.services__num{ font-size: .8rem; color: var(--text-faint); padding-top: .2rem; }
.services__name{ font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; transition: color .3s; }
.services__desc{
  grid-column: 2; color: var(--text-dim); font-size: .9rem; max-width: 420px;
  max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s var(--ease), margin-top .4s var(--ease);
}
.services__item.is-active{ padding: 2rem 0; }
.services__item.is-active .services__name{ color: var(--accent); }
.services__item.is-active .services__desc{ max-height: 80px; opacity: 1; margin-top: .3rem; }

.services__visual{ position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; background: var(--surface); }
.services__image{
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.05); transition: opacity .8s var(--ease), transform .9s var(--ease);
}
.services__image.is-active{ opacity: 1; transform: scale(1); }
.services__visual-gradient{ position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%); }

/* ==========================================================================
   Showroom
   ========================================================================== */
.showroom__track{
  display: flex; gap: clamp(1.2rem, 2.5vw, 2rem); overflow-x: auto;
  padding: 0 var(--gutter) 1.5rem; margin: 0 calc(var(--gutter) * -1);
  scrollbar-width: none;
}
.showroom__track::-webkit-scrollbar{ display: none; }
.car-card{
  flex: 0 0 clamp(280px, 78vw, 460px);
  display: flex; flex-direction: column;
}
.car-card__media{
  aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); background: var(--surface); margin-bottom: 1.4rem;
}
.car-card__media img{ width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.car-card:hover .car-card__media img{ transform: scale(1.06); }
.car-card__info h3{ font-size: 1.4rem; margin-bottom: .3rem; }
.car-card__claim{ color: var(--text-dim); font-size: .92rem; margin-bottom: 1rem; }
.car-card__facts{
  display: flex; gap: 1rem; font-size: .78rem; color: var(--text-faint);
  letter-spacing: .04em; text-transform: uppercase; margin-bottom: 1.2rem;
  padding-bottom: 1.2rem; border-bottom: 1px solid var(--border);
}
.showroom__progress{ max-width: var(--container); margin: 0 auto; height: 1px; background: var(--border); position: relative; }
.showroom__progress span{ position: absolute; left: 0; top: 0; bottom: 0; width: 25%; background: var(--accent); transition: width .2s linear; }

/* ==========================================================================
   Exterior-to-Interior Journey
   ========================================================================== */
.journey{ position: relative; height: 500vh; }
.journey__pin{ position: sticky; top: 0; height: 100svh; overflow: hidden; }
.journey__frames{ position: absolute; inset: 0; }
.journey__frame{
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s var(--ease-soft);
}
.journey__frame.is-active{ opacity: 1; }
.journey__frame img{
  width: 100%; height: 100%; object-fit: cover; filter: brightness(.62) contrast(1.05);
}
.journey__frame::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.5) 0%, rgba(10,10,11,.15) 35%, rgba(10,10,11,.65) 100%);
}
.journey__glow{ position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0; transition: opacity 1.2s var(--ease-soft); z-index: 1; }
.journey__glow--l{ width: 160px; height: 160px; left: 20%; top: 55%; background: radial-gradient(circle, var(--accent-glow), transparent 70%); }
.journey__glow--r{ width: 160px; height: 160px; left: 55%; top: 55%; background: radial-gradient(circle, var(--accent-glow), transparent 70%); }
.journey__glow--full{ width: 100%; height: 100%; inset: 0; left: 0; top: 0; background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%); }
.journey__frame.is-active .journey__glow{ opacity: 1; }

.journey__overlay{
  position: absolute; left: var(--gutter); bottom: clamp(6rem, 14vh, 9rem); z-index: 3; max-width: 560px;
}
.journey__title{ font-size: clamp(1.8rem, 4vw, 3rem); color: var(--text); }

.journey__chapters{
  position: absolute; right: var(--gutter); bottom: clamp(6rem, 14vh, 9rem); z-index: 3;
  display: flex; flex-direction: column; gap: .9rem; text-align: right;
}
.journey__chapters li{
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-faint);
  display: flex; align-items: center; justify-content: flex-end; gap: .7rem;
  transition: color .4s;
}
.journey__chapters li span{ font-size: .7rem; color: var(--text-faint); }
.journey__chapters li.is-active{ color: var(--text); }
.journey__chapters li.is-active span{ color: var(--accent); }

/* ==========================================================================
   Numbers
   ========================================================================== */
.numbers{ background: var(--graphite); }
.numbers__grid{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.number{ display: flex; flex-direction: column; }
.number__value, .number__suffix{
  font-family: var(--font-display); font-weight: 700; color: var(--accent);
  font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1;
}
.number__value{ display: inline; }
.number__suffix{ display: inline; }
.number__label{ margin-top: .9rem; color: var(--text-dim); font-size: .9rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-slider{ max-width: var(--container); margin: 0 auto; }
.testimonial-slider__track{ position: relative; min-height: 180px; }
.testimonial{
  position: absolute; inset: 0; opacity: 0; transform: translateY(14px);
  pointer-events: none; transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.testimonial.is-active{ position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }
.testimonial p{
  font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.4; max-width: 900px; margin-bottom: 1.6rem;
}
.testimonial footer{ color: var(--text-dim); font-size: .9rem; }
.testimonial cite{ color: var(--text); font-style: normal; font-weight: 600; }

.testimonial-slider__controls{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
}
.testimonial-slider__rating{ color: var(--accent); letter-spacing: .05em; font-size: .95rem; }
.testimonial-slider__rating span{ color: var(--text-dim); font-size: .85rem; margin-left: .5rem; }
.testimonial-slider__nav{ display: flex; gap: .8rem; }
.testimonial-slider__nav button{
  width: 44px; height: 44px; border: 1px solid var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: border-color .3s, color .3s;
}
.testimonial-slider__nav button:hover{ border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   About
   ========================================================================== */
.about{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; max-width: var(--container); margin: 0 auto; }
.about__media{ aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.about__media img{ width: 100%; height: 100%; object-fit: cover; }
.about__content h2{ font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.4rem; line-height: 1.15; }
.about__content p{ color: var(--text-dim); margin-bottom: 1.1rem; max-width: 480px; }
.about__content .link-arrow{ margin-top: .8rem; }

/* ==========================================================================
   Ankauf Form
   ========================================================================== */
.ankauf{ background: var(--graphite); }
.form{ max-width: var(--container); margin: 0 auto; }
.form__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-bottom: 2.5rem; }
.field{ display: flex; flex-direction: column; gap: .6rem; }
.field label{ font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--text-dim); }
.field input, .field select{
  background: transparent; border: none; border-bottom: 1px solid var(--border-strong);
  padding: .7rem .1rem; color: var(--text); transition: border-color .3s;
}
.field select option{ background: var(--anthracite); }
.field input:focus, .field select:focus{ border-color: var(--accent); outline: none; }
.form__status{ margin-top: 1.2rem; color: var(--accent); font-size: .9rem; min-height: 1.2em; }

/* ==========================================================================
   Financing
   ========================================================================== */
.financing__panel{
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3.5rem);
}
.financing__controls{ display: flex; flex-direction: column; gap: 2.2rem; }
.slider-field__row{ display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .8rem; }
.slider-field label{ font-size: .85rem; color: var(--text-dim); }
.slider-field output{ font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 1.1rem; }
input[type="range"]{
  -webkit-appearance: none; appearance: none; width: 100%; height: 1px;
  background: var(--border-strong); outline: none;
}
input[type="range"]::-webkit-slider-thumb{
  -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent); cursor: pointer; border: 3px solid var(--black); box-shadow: 0 0 0 1px var(--accent);
}
input[type="range"]::-moz-range-thumb{
  width: 16px; height: 16px; border-radius: 50%; background: var(--accent); cursor: pointer; border: 3px solid var(--black);
}
.financing__result{
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  border-left: 1px solid var(--border); padding-left: clamp(1.5rem, 3vw, 3rem);
}
.financing__result-label{ font-size: .8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .7rem; }
.financing__result-value{ font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--text); }
.financing__result-unit{ font-size: 1rem; color: var(--text-dim); font-weight: 500; margin-left: .3rem; }
.financing__disclaimer{ margin-top: 1.2rem; font-size: .78rem; color: var(--text-faint); max-width: 320px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid{ max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); }
.contact__info{ display: flex; flex-direction: column; gap: 2.2rem; }
.contact__block h3{ font-size: 1rem; margin-bottom: .6rem; color: var(--accent); font-family: var(--font-display); }
.contact__block p{ color: var(--text-dim); line-height: 1.7; }
.contact__block a:not(.link-arrow){ color: var(--text); }
.contact__block a:not(.link-arrow):hover{ color: var(--accent); }
.contact__map{ min-height: 340px; border-radius: var(--radius); overflow: hidden; filter: grayscale(.4) contrast(1.05) invert(.92) brightness(.9); border: 1px solid var(--border); }
.contact__map iframe{ width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta{
  text-align: center; padding-top: clamp(7rem, 14vw, 11rem); padding-bottom: clamp(7rem, 14vw, 11rem);
  display: flex; flex-direction: column; align-items: center; gap: 2.4rem; overflow: hidden;
}
.final-cta__bg{
  position: absolute; bottom: -6%; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 16vw, 13rem);
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.06); white-space: nowrap; z-index: 0;
}
.final-cta h2{ position: relative; z-index: 1; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.15; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--graphite); border-top: 1px solid var(--border); padding: clamp(3rem, 6vw, 5rem) var(--gutter) 2rem; }
.site-footer__top{
  max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between; align-items: center;
  gap: 2rem; flex-wrap: wrap; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.site-footer__top nav ul{ display: flex; gap: 1.8rem; flex-wrap: wrap; }
.site-footer__top nav a{ font-size: .85rem; color: var(--text-dim); transition: color .3s; }
.site-footer__top nav a:hover{ color: var(--text); }
.site-footer__social{ display: flex; gap: 1rem; }
.site-footer__social a{
  width: 38px; height: 38px; border: 1px solid var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--text-dim);
  transition: color .3s, border-color .3s;
}
.site-footer__social a:hover{ color: var(--accent); border-color: var(--accent); }
.site-footer__bottom{
  max-width: var(--container); margin: 0 auto; display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem;
  font-size: .8rem; color: var(--text-faint);
}
.site-footer__legal{ display: flex; gap: 1.4rem; }
.site-footer__legal a:hover{ color: var(--text); }

/* ==========================================================================
   Scroll reveal (JS-driven state classes)
   ========================================================================== */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }

.split-line__inner{ display: block; transform: translateY(115%); transition: transform 1.1s var(--ease); }
.split-line__inner.is-revealed{ transform: translateY(0); }

.word-reveal{
  display: inline-block; opacity: 0; transform: translateY(.5em);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal-lines].is-visible .word-reveal{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .main-nav{ display: none; }
  .nav-toggle{ display: flex; }
  .site-header__actions .btn--ghost{ display: none; }
  .services__grid{ grid-template-columns: 1fr; }
  .services__visual{ order: -1; aspect-ratio: 16/10; min-height: 0; }
  .about{ grid-template-columns: 1fr; }
  .about__media{ aspect-ratio: 16/10; }
  .contact__grid{ grid-template-columns: 1fr; }
  .financing__panel{ grid-template-columns: 1fr; }
  .financing__result{ border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 2rem; }
  .numbers__grid{ grid-template-columns: repeat(2, 1fr); row-gap: 3rem; }
  .form__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  :root{ --header-h: 72px; }
  .hero__headline{ font-size: clamp(2.2rem, 10vw, 3rem); }
  .numbers__grid{ grid-template-columns: 1fr 1fr; }
  .form__grid{ grid-template-columns: 1fr; }
  .site-footer__top{ flex-direction: column; align-items: flex-start; }
  .site-footer__bottom{ flex-direction: column; align-items: flex-start; gap: .8rem; }
  .journey__chapters{ display: none; }
  .journey__overlay{ left: var(--gutter); right: var(--gutter); bottom: 3rem; }
  .car-card{ flex-basis: 82vw; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal]{ transform: none; }
  .scroll-hint__line{ animation: none; }
}
