:root {
  --bg: #0a0a0c;
  --bg-2: #101014;
  --line: rgba(200, 164, 92, 0.22);
  --text: #f2eee5;
  --body: #d8d2c6;
  --muted: #beb7ab;
  --gold: #d3af64;
  --gold-2: #ead4a0;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 90vw); margin: 0 auto; }

/* ---------- type ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; }
h1 { font-size: clamp(2.6rem, 6.2vw, 5.2rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h1 em, h2 em, .quote-line em { font-style: italic; color: var(--gold-2); }
.eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 0.95rem 2.1rem;
  border: 1px solid var(--gold);
  transition: all 0.35s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #141008; }
.btn-gold:hover { background: var(--gold-2); border-color: var(--gold-2); transform: translateY(-2px); }
.btn-ghost { color: var(--text); border-color: rgba(236, 231, 221, 0.35); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 2.6rem; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  width: min(1320px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.4rem 0;
}
.site-header.scrolled .header-inner { padding: 1rem 0; }
.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: 0.34em;
  color: var(--text);
}
.wordmark span { color: var(--gold); }
.main-nav { margin-left: auto; display: flex; gap: 2.6rem; }
.main-nav a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d8d2c6;
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--gold-2); }
.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center 72%; animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,12,0.94) 0%, rgba(10,10,12,0.62) 55%, rgba(10,10,12,0.35) 100%),
    linear-gradient(to bottom, rgba(10,10,12,0.8) 0%, rgba(10,10,12,0) 32%),
    linear-gradient(to top, rgba(10,10,12,1) 0%, rgba(10,10,12,0) 30%);
}
.hero-content { position: relative; width: min(1180px, 90vw); margin: 0 auto; padding-top: 4rem; text-shadow: 0 2px 22px rgba(0, 0, 0, 0.85); }
.hero-sub { max-width: 34rem; color: #e4ded2; font-size: 1.12rem; margin-top: 1.6rem; }
.hero-actions { display: flex; gap: 1.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 1px; height: 64px; overflow: hidden;
}
.scroll-cue span {
  display: block; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* ---------- marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee-track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--muted);
  white-space: nowrap;
}
.marquee-track i { color: var(--gold); font-size: 0.5rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 7.5rem 0; }
.section-head { max-width: 44rem; margin-bottom: 4rem; }
.section-note { color: var(--body); font-size: 1.04rem; margin-top: 1.4rem; }
.section-head .eyebrow::before, .split-copy .eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 0.9rem;
}

/* ---------- collection ---------- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
.car-card {
  background: var(--bg-2);
  border: 1px solid rgba(236, 231, 221, 0.07);
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.car-card:hover { border-color: var(--line); transform: translateY(-4px); }
.car-media { height: 340px; overflow: hidden; }
.car-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1); }
.car-card:hover .car-media img { transform: scale(1.06); }
.car-info { padding: 1.8rem 2rem 2rem; }
.car-info h3 { font-size: 1.7rem; }
.car-spec { color: var(--muted); font-size: 0.92rem; letter-spacing: 0.08em; margin-top: 0.4rem; }
.car-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 1px solid rgba(236, 231, 221, 0.08);
}
.poa { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); }
.car-link { font-size: 0.86rem; letter-spacing: 0.14em; color: #d8d2c6; transition: color 0.3s; }
.car-link:hover { color: var(--gold-2); }
.collection-cta { margin-top: 3.5rem; text-align: center; color: var(--muted); font-size: 1rem; }
.collection-cta a { color: var(--gold-2); border-bottom: 1px solid var(--line); }

/* ---------- sourcing ---------- */
.sourcing { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.step-num {
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-bottom: 1.2rem;
}
.step h3 { font-size: 1.55rem; margin-bottom: 0.8rem; }
.step p { color: var(--body); font-size: 1.02rem; }

/* ---------- experience ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-media img { width: 100%; height: 560px; object-fit: cover; }
.split-copy p { color: var(--body); font-size: 1.02rem; margin-top: 1.2rem; }
.assurances { list-style: none; margin-top: 2rem; }
.assurances li {
  padding: 0.85rem 0 0.85rem 1.8rem;
  border-bottom: 1px solid rgba(236, 231, 221, 0.08);
  position: relative;
  font-size: 0.95rem;
}
.assurances li::before { content: "\25C6"; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 1.25rem; }

/* ---------- proof band ---------- */
.proof-band {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 4.5rem 0;
}
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.proof { border-left: 1px solid var(--line); padding-left: 2rem; }
.proof-value {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.9rem;
  color: var(--gold-2);
  display: block;
  line-height: 1.1;
}
.proof-label { color: var(--body); font-size: 0.98rem; margin-top: 0.8rem; max-width: 22rem; }

/* ---------- quote band ---------- */
.quote-band { position: relative; padding: 11rem 0; overflow: hidden; }
.quote-media, .quote-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.quote-media img { object-fit: cover; }
.quote-scrim { position: absolute; inset: 0; background: rgba(10, 10, 12, 0.72); }
.quote-content { position: relative; text-align: center; width: min(760px, 88vw); margin: 0 auto; }
.quote-line { font-family: var(--serif); font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.25; }
.quote-sub { color: #e4ded2; font-size: 1.05rem; margin-top: 1.4rem; letter-spacing: 0.06em; text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9); }

/* ---------- contact ---------- */
.contact { text-align: center; padding: 9rem 0; }
.contact-sub { color: var(--body); font-size: 1.04rem; max-width: 30rem; margin: 1.6rem auto 0; }
.contact-actions { display: flex; gap: 1.2rem; justify-content: center; margin-top: 2.8rem; flex-wrap: wrap; }
.contact-details { margin-top: 3.2rem; color: var(--muted); font-size: 0.98rem; letter-spacing: 0.05em; }
.contact-details p { margin-top: 0.4rem; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 0; }
.footer-inner { display: flex; align-items: baseline; gap: 2rem; flex-wrap: wrap; }
.wordmark.small { font-size: 1.05rem; }
.footer-note { color: var(--muted); font-size: 0.85rem; letter-spacing: 0.14em; }
.footer-copy { margin-left: auto; color: var(--muted); font-size: 0.85rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.15s; }
.reveal.d2 { transition-delay: 0.3s; }
.reveal.d3 { transition-delay: 0.45s; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 12, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { font-size: 1rem; }
  .header-cta { display: none; }
  .nav-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: none;
    z-index: 60;
    cursor: pointer;
    padding: 0.6rem 0;
  }
  .nav-toggle span { display: block; width: 26px; height: 1px; background: var(--gold); margin: 8px 0; transition: transform 0.3s; }
  .nav-toggle.open span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle.open span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  html { font-size: 16px; }
  .car-grid, .steps, .split, .proof-grid { grid-template-columns: 1fr; }
  .split { gap: 3rem; }
  .split-media img { height: 380px; }
  section { padding: 5rem 0; }
  .car-media { height: 280px; }
}
