:root {
  --bg: #080808;
  --panel: #0f0f0f;
  --panel-2: #151515;
  --text: #f5f5f2;
  --muted: #9b9b9b;
  --line: rgba(255,255,255,.12);
  --red: #ef1b24;
  --red-dark: #a80d14;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(239,27,36,.06), transparent 26rem),
    linear-gradient(180deg, #070707 0%, #0b0b0b 55%, #080808 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(180deg, rgba(5,5,5,.93), rgba(5,5,5,.72));
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.brand { width: 210px; line-height: 0; }
.brand img { width: 100%; }

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  color: #d2d2d2;
  transition: color .25s ease;
}
.nav a:hover { color: #fff; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(.68) brightness(.58) contrast(1.08);
  transform: scale(1.03);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.28) 46%, rgba(0,0,0,.58) 100%),
    linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.83) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 40px));
  text-align: center;
  padding-top: 70px;
}
.eyebrow,
.kicker {
  margin: 0 0 16px;
  color: var(--red);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .28em;
}
.hero-logo {
  width: min(800px, 92vw);
  margin: 0 auto;
  mix-blend-mode: screen;
}
.hero-rule {
  margin: 28px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: min(620px, 90%);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .82rem;
}
.hero-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}
.hero-rule span:last-child { transform: scaleX(-1); }
.hero-rule b { white-space: nowrap; font-weight: 600; }
.hero-copy {
  max-width: 620px;
  margin: 0 auto 32px;
  color: #c8c8c8;
  font-size: 1.05rem;
  letter-spacing: .06em;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--red);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 700;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: end;
  padding: 120px 0;
  border-bottom: 1px solid var(--line);
}
.intro h2,
.section-heading h2,
.connect h2 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 760;
}
.lead,
.section-heading > p:last-child,
.connect-copy > p:last-child {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.cars { padding: 120px 0 130px; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.section-heading .kicker { grid-column: 1 / -1; margin-bottom: -20px; }
.section-heading p:last-child { align-self: end; max-width: 520px; justify-self: end; }

.car-feature {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  min-height: 560px;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.car-image-wrap,
.car-card-image { position: relative; overflow: hidden; background: #050505; }
.car-image-wrap img,
.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.car-feature:hover .car-image-wrap img,
.car-card:hover .car-card-image img { transform: scale(1.025); }
.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(0,0,0,.4));
}
.car-copy,
.car-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}
.rank {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .68rem;
  font-weight: 700;
}
.car-copy h3,
.car-card h3 {
  margin: 18px 0 8px;
  font-size: clamp(2rem, 3.7vw, 4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.car-card h3 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
.paint {
  margin: 0 0 22px;
  color: #d6d6d6;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.car-copy > p:last-child,
.car-card-copy > p:last-child {
  color: var(--muted);
  margin: 0;
}

.car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 22px;
}
.car-card {
  display: grid;
  grid-template-rows: 370px auto;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
}
.car-card-image img { filter: saturate(.82) brightness(.76); }
.car-card:first-child .car-card-image img { object-position: 50% 60%; }
.car-card:last-child .car-card-image img { object-position: 58% 52%; }
.car-card-copy { padding: 40px; }

.wide-visual {
  margin: 70px 0 0;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #050505;
}
.wide-visual img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  filter: saturate(.78) brightness(.82);
}
.wide-visual figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  padding: 16px 18px;
  background: rgba(0,0,0,.68);
  border-left: 2px solid var(--red);
  backdrop-filter: blur(10px);
  color: #d5d5d5;
  font-size: .83rem;
  letter-spacing: .05em;
}

.essence {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}
.essence-image {
  min-height: 620px;
  overflow: hidden;
}
.essence-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.82) contrast(1.04);
}
.essence-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px);
  background:
    radial-gradient(circle at 100% 100%, rgba(239,27,36,.09), transparent 34rem),
    #0d0d0d;
}
.essence-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -.055em;
}
.drive-together {
  margin: 38px 0 0;
  color: var(--red);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .28em;
}

.community { padding: 120px 0; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.pillar {
  min-height: 270px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.016), transparent);
}
.pillar-number {
  display: block;
  color: var(--red);
  font-size: .72rem;
  letter-spacing: .2em;
  margin-bottom: 70px;
}
.pillar h3 { margin: 0 0 10px; font-size: 1.35rem; }
.pillar p { margin: 0; color: var(--muted); font-size: .93rem; }

.collage-band {
  width: 100%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
}
.collage-band img { width: 100%; }

.connect {
  padding: 120px 0 140px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 80px;
}
.social-links { border-top: 1px solid var(--line); }
.social-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  transition: color .2s ease, padding-left .2s ease;
}
.social-links a:hover { color: var(--red); padding-left: 10px; }
.social-links span { color: var(--muted); font-size: .9rem; letter-spacing: .08em; }

.site-footer {
  display: grid;
  grid-template-columns: 220px 1fr 40px;
  gap: 24px;
  align-items: center;
  padding: 32px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: #050505;
}
.site-footer img { width: 220px; }
.site-footer p {
  margin: 0;
  color: #9b9b9b;
  text-transform: uppercase;
  letter-spacing: .16em;
  text-align: center;
  font-size: .66rem;
}
.site-footer p span { color: var(--red); padding: 0 8px; }
.site-footer > a { text-decoration: none; text-align: right; color: var(--red); font-size: 1.4rem; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s ease, transform .85s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .brand { width: 178px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(6,6,6,.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 18px 24px; border-top: 1px solid var(--line); }

  .hero { min-height: 88svh; }
  .hero-media img { object-position: 42% center; }
  .hero-rule { gap: 12px; }
  .hero-rule b { font-size: .7rem; letter-spacing: .22em; }

  .intro,
  .section-heading,
  .car-feature,
  .essence,
  .connect { grid-template-columns: 1fr; }
  .intro { gap: 28px; padding: 90px 0; }
  .section-heading { gap: 24px; }
  .section-heading .kicker { margin-bottom: 0; }
  .section-heading p:last-child { justify-self: start; }
  .car-feature { min-height: 0; }
  .car-image-wrap { min-height: 450px; }
  .image-shade { background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.45)); }
  .car-copy { padding: 42px; }
  .essence-image { min-height: 500px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .connect { gap: 48px; }
  .site-footer { grid-template-columns: 1fr 40px; }
  .site-footer p { display: none; }
}

@media (max-width: 620px) {
  .section-shell { width: min(var(--max), calc(100% - 30px)); }
  .hero-content { width: calc(100% - 28px); }
  .hero-copy { font-size: .95rem; }
  .hero-rule { width: 100%; }
  .hero-rule span { display: none; }
  .intro h2,
  .section-heading h2,
  .connect h2 { font-size: clamp(2.2rem, 13vw, 4rem); }
  .cars { padding: 90px 0 100px; }
  .car-image-wrap { min-height: 340px; }
  .car-grid { grid-template-columns: 1fr; }
  .car-card { grid-template-rows: 300px auto; }
  .car-copy,
  .car-card-copy { padding: 30px; }
  .wide-visual figcaption { position: static; margin: 0; border-left: 0; border-top: 1px solid var(--line); }
  .essence-image { min-height: 390px; }
  .essence-copy { padding: 56px 28px; }
  .community { padding: 90px 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 210px; }
  .pillar-number { margin-bottom: 42px; }
  .connect { padding: 90px 0 100px; }
  .social-links a { flex-direction: column; gap: 5px; }
  .site-footer { padding-block: 24px; }
}
