:root {
  --ink: #091521;
  --ink-soft: #132434;
  --cream: #f3f0e9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --accent: #d7ad65;
  --accent-light: #ecd19d;
  --line: rgba(9, 21, 33, 0.14);
  --text-muted: #60707c;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { display: block; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 128px 0; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -60px;
  z-index: 100;
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.13);
  transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.site-header.scrolled {
  background: rgba(9,21,33,.94);
  border-color: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
}
.site-header.hidden { transform: translateY(-100%); }
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: .1em; font-size: 15px; }
.brand > span:last-child > span { color: var(--accent); }
.brand-mark { display: grid; place-items: center; width: 41px; height: 41px; border: 1px solid rgba(255,255,255,.36); }
.brand-mark svg { width: 29px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.primary-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 650; letter-spacing: .025em; }
.primary-nav > a:not(.nav-cta) { position: relative; padding: 31px 0; color: rgba(255,255,255,.82); }
.primary-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 24px; height: 1px; background: var(--accent); transition: right .25s ease; }
.primary-nav > a:hover::after { right: 0; }
.nav-cta { padding: 12px 19px; border: 1px solid rgba(255,255,255,.5); transition: background .2s ease, color .2s ease; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 850px;
  height: 100svh;
  max-height: 970px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,13,22,.98) 0%, rgba(4,13,22,.78) 32%, rgba(4,13,22,.12) 70%),
    linear-gradient(0deg, rgba(4,13,22,.67) 0%, transparent 46%),
    url("assets/images/hero-cars.webp") center/cover no-repeat;
  transform: scale(1.02);
  animation: hero-in 1.4s cubic-bezier(.2,.7,.2,1) both;
}
.hero-bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(to right, black, transparent 70%); }
@keyframes hero-in { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
.hero-content { position: relative; z-index: 2; padding-top: 36px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 25px; color: #7a6239; font-size: 11px; line-height: 1.2; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 35px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--accent-light); }
.hero h1, .section-heading h2, .process h2, .sell-content h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.047em;
  line-height: .97;
}
.hero h1 { max-width: 800px; font-size: clamp(56px, 7.2vw, 102px); }
.hero h1 em { color: var(--accent-light); font-weight: 400; }
.hero-copy { max-width: 590px; margin: 30px 0 0; color: rgba(255,255,255,.73); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 17px; min-height: 56px; padding: 0 25px; border: 1px solid transparent; border-radius: 0; cursor: pointer; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { color: var(--ink); background: var(--accent); }
.button-primary:hover { background: var(--accent-light); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.02); }
.button-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-soft); }
.hero-foot { position: absolute; inset: auto 0 0; z-index: 2; border-top: 1px solid rgba(255,255,255,.14); background: linear-gradient(90deg, rgba(4,13,22,.65), rgba(4,13,22,.28)); backdrop-filter: blur(8px); }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); }
.hero-points > div { display: flex; gap: 18px; min-height: 112px; padding: 25px 34px; align-items: center; border-right: 1px solid rgba(255,255,255,.13); }
.hero-points > div:first-child { padding-left: 0; }
.hero-points > div:last-child { border-right: 0; }
.hero-points span { color: var(--accent); font-family: var(--serif); font-size: 19px; }
.hero-points p { margin: 0; color: rgba(255,255,255,.55); font-size: 12px; line-height: 1.5; }
.hero-points strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 13px; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 10vw; }
.section-heading h2, .process h2, .sell-content h2, .contact h2 { font-size: clamp(47px, 5.5vw, 76px); }
.intro-copy { padding-top: 42px; }
.intro-copy p { color: var(--text-muted); }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-family: var(--serif); font-size: clamp(22px, 2.1vw, 30px); line-height: 1.42; letter-spacing: -.02em; }
.text-link { display: inline-flex; gap: 14px; align-items: center; margin-top: 22px; padding-bottom: 4px; border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.company-facts { margin: 34px 0 4px; border-top: 1px solid var(--line); }
.company-facts dl { margin: 0; }
.company-facts div { display: grid; grid-template-columns: 170px 1fr; gap: 24px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.company-facts dt { color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.company-facts dd { margin: 0; color: var(--text-muted); }
.company-facts a { color: var(--ink); border-bottom: 1px solid currentColor; }

.advantages { background: var(--cream); }
.split-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 72px; }
.split-heading > p { max-width: 390px; margin: 0 0 7px; color: var(--text-muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-card { position: relative; min-height: 390px; padding: 45px 42px 50px; border-right: 1px solid var(--line); transition: background .3s ease, transform .3s ease; }
.feature-card:first-child { border-left: 1px solid var(--line); }
.feature-card:hover { z-index: 2; background: var(--white); transform: translateY(-8px); box-shadow: 0 24px 55px rgba(9,21,33,.07); }
.feature-number { position: absolute; right: 28px; top: 24px; color: rgba(9,21,33,.27); font-family: var(--serif); font-style: italic; }
.feature-icon { display: grid; place-items: center; width: 66px; height: 66px; margin-bottom: 58px; background: var(--ink); color: var(--accent-light); }
.feature-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3, .process-list h3 { margin: 0 0 14px; font-family: var(--serif); font-weight: 400; font-size: 28px; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: 14px; }

.process { overflow: hidden; color: var(--white); background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.process-intro { position: sticky; top: 135px; }
.process-intro > p:not(.eyebrow) { max-width: 420px; margin: 30px 0; color: rgba(255,255,255,.63); }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: steps; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li { display: grid; grid-template-columns: 95px 1fr; gap: 18px; padding: 35px 5px; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list > li > span { color: var(--accent); font-family: var(--serif); font-size: 24px; font-style: italic; }
.process-list h3 { margin-bottom: 7px; color: var(--white); }
.process-list p { max-width: 500px; margin: 0; color: rgba(255,255,255,.56); font-size: 14px; }

.sell-band { position: relative; min-height: 560px; display: flex; align-items: center; overflow: hidden; background: var(--accent); }
.sell-content { position: relative; z-index: 2; }
.sell-content h2 { max-width: 620px; }
.sell-content > p:not(.eyebrow) { max-width: 480px; margin: 25px 0 30px; color: rgba(9,21,33,.72); }
.sell-art { position: absolute; width: 63%; right: -5%; bottom: -4%; color: rgba(9,21,33,.23); }
.sell-art svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10vw; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 48px 25px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 22px; letter-spacing: -.015em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; right: 3px; top: 50%; width: 17px; height: 1px; background: var(--ink); transition: transform .25s ease; }
.faq-list summary span::after { content: ""; inset: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 650px; margin: -7px 0 25px; color: var(--text-muted); font-size: 14px; }

.contact { color: var(--white); background: var(--ink-soft); }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10vw; }
.contact-copy > p:not(.eyebrow) { max-width: 440px; color: rgba(255,255,255,.59); }
.contact-direct { display: grid; gap: 16px; margin-top: 50px; }
.contact-direct a, .contact-direct span { width: max-content; color: var(--accent-light); font-family: var(--serif); font-size: 20px; }
.contact-direct small { display: block; margin-bottom: 1px; color: rgba(255,255,255,.43); font-family: var(--sans); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.contact-form { display: grid; gap: 21px; padding: 46px; color: var(--ink); background: var(--white); box-shadow: 0 35px 80px rgba(0,0,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: grid; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 11px 0 13px; outline: none; color: var(--ink); background: transparent; font-size: 15px; letter-spacing: 0; text-transform: none; transition: border-color .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 105px; }
.contact-form .consent { grid-template-columns: 18px 1fr; align-items: start; gap: 11px; color: var(--text-muted); font-size: 10px; font-weight: 500; line-height: 1.55; letter-spacing: 0; text-transform: none; }
.consent input { width: 16px; height: 16px; margin: 1px 0 0; accent-color: var(--ink); }
.contact-form .button { justify-self: start; border: 0; }
.form-note { margin: -5px 0 0; color: var(--text-muted); font-size: 11px; }

.legal { background: var(--paper); }
.legal-alt { background: var(--cream); }
.legal-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 10vw; align-items: start; }
.legal-updated { margin: 28px 0 0; color: var(--text-muted); font-size: 13px; }
.legal-content { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.legal-content article { min-height: 220px; padding: 31px; background: var(--paper); }
.legal-alt .legal-content article { background: var(--cream); }
.legal-content h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 24px; font-weight: 400; letter-spacing: -.015em; line-height: 1.15; }
.legal-content p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.72; }
.legal-content a { color: var(--ink); border-bottom: 1px solid currentColor; }

.site-footer { padding: 55px 0 22px; color: rgba(255,255,255,.64); background: #050d14; }
.footer-main { display: grid; grid-template-columns: 1fr 1.2fr auto; align-items: center; padding-bottom: 45px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { color: var(--white); }
.footer-main > p { max-width: 340px; margin: 0; font-family: var(--serif); font-size: 20px; }
.back-top { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.24); transition: background .2s ease, color .2s ease; }
.back-top:hover { color: var(--ink); background: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 32px; padding-top: 22px; font-size: 10px; letter-spacing: .04em; }
.footer-bottom p { max-width: 760px; margin: 0; }
.footer-bottom p span:not([data-year]) { display: block; margin-top: 7px; color: rgba(255,255,255,.5); line-height: 1.8; }
.footer-bottom div { display: flex; gap: 28px; }
.footer-bottom a { transition: color .2s ease; }
.footer-bottom a:hover { color: var(--accent-light); }

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: min(calc(100% - 48px), 980px);
  margin-inline: auto;
  padding: 22px;
  color: var(--white);
  background: rgba(5, 13, 20, .96);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 25px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 5px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.cookie-banner p { max-width: 610px; margin: 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.55; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-actions .button { min-height: 46px; padding-inline: 18px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(2) { transition-delay: .08s; }
.hero .reveal:nth-child(3) { transition-delay: .16s; }
.hero .reveal:nth-child(4) { transition-delay: .24s; }

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

@media (max-width: 900px) {
  .section { padding: 92px 0; }
  .menu-toggle { display: grid; gap: 7px; border: 0; padding: 10px 0 10px 15px; color: inherit; background: transparent; }
  .menu-toggle span { display: block; width: 27px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 86px 0 auto; display: grid; gap: 0; padding: 25px 24px 34px; visibility: hidden; opacity: 0; transform: translateY(-10px); background: var(--ink); transition: opacity .25s ease, transform .25s ease, visibility .25s; }
  .primary-nav.open { visibility: visible; opacity: 1; transform: none; }
  .primary-nav > a:not(.nav-cta) { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .primary-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 20px; text-align: center; }
  .hero { min-height: 820px; height: 100svh; }
  .hero-bg { background-position: 62% center; }
  .hero-points > div { padding-inline: 20px; }
  .intro-grid, .process-grid, .faq-grid, .contact-grid, .legal-grid { grid-template-columns: 1fr; gap: 56px; }
  .intro-copy { padding-top: 0; }
  .split-heading { display: grid; gap: 28px; }
  .feature-card { padding-inline: 26px; }
  .process-intro { position: static; }
  .sell-art { width: 73%; opacity: .5; right: -17%; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .section { padding: 76px 0; }
  .nav-wrap { height: 74px; }
  .brand-mark { width: 37px; height: 37px; }
  .primary-nav { inset: 74px 0 auto; }
  .hero { min-height: 740px; max-height: none; height: 100svh; align-items: start; }
  .hero-bg { background: linear-gradient(90deg, rgba(4,13,22,.96), rgba(4,13,22,.35)), linear-gradient(0deg, rgba(4,13,22,.88), transparent 55%), url("assets/images/hero-cars.webp") 58% center/cover no-repeat; }
  .hero-content { padding-top: 155px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); }
  .hero-copy { margin-top: 22px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 280px; margin-top: 28px; }
  .hero-foot { display: none; }
  .section-heading h2, .process h2, .sell-content h2, .contact h2 { font-size: clamp(43px, 13vw, 60px); }
  .feature-grid { grid-template-columns: 1fr; border-bottom: 0; }
  .feature-card { min-height: 325px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .feature-icon { margin-bottom: 38px; }
  .process-grid { gap: 65px; }
  .process-list li { grid-template-columns: 55px 1fr; padding: 29px 0; }
  .sell-band { min-height: 610px; align-items: start; padding-top: 85px; }
  .sell-art { width: 110%; right: -30%; bottom: 0; }
  .faq-grid { gap: 44px; }
  .faq-list summary { font-size: 19px; }
  .contact-form { padding: 30px 23px; }
  .field-row { grid-template-columns: 1fr; }
  .company-facts div { grid-template-columns: 1fr; gap: 3px; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-content article { min-height: auto; padding: 26px 23px; }
  .contact-form .button { width: 100%; }
  .footer-main { grid-template-columns: 1fr auto; gap: 35px 15px; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 2; font-size: 18px; }
  .footer-bottom { display: grid; gap: 13px; }
  .footer-bottom div { flex-wrap: wrap; gap: 12px 22px; }
  .cookie-banner { display: grid; left: 18px; right: 18px; bottom: 18px; width: calc(100% - 36px); padding: 18px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .button { width: 100%; }
}
