:root {
  --bg: #090a0c;
  --surface: #111318;
  --surface-2: #171a20;
  --text: #f4f5f7;
  --muted: #a5a9b2;
  --line: rgba(255, 255, 255, 0.1);
  --red: #ed1c24;
  --red-dark: #a90f16;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(237, 28, 36, 0.09), transparent 25rem),
    var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #111;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 12, 0.88);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  padding: 8px 13px;
  background: #fff;
  border-radius: 12px;
}

.brand img {
  width: 174px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 650;
}

.main-nav > a:not(.button) {
  color: #d7d9de;
  transition: color 160ms ease;
}

.main-nav > a:not(.button):hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  color: #fff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(237, 28, 36, 0.2);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  background: #ff3038;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(237, 28, 36, 0.3);
}

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.contact-card:focus-visible,
.gallery-item:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.button-small {
  min-height: 42px;
  padding-inline: 20px;
}

.button-large {
  min-height: 58px;
  padding-inline: 30px;
  font-size: 1.04rem;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  padding: 145px 0 90px;
}

.hero::before {
  position: absolute;
  width: 680px;
  height: 680px;
  top: -140px;
  right: -180px;
  content: "";
  background:
    repeating-radial-gradient(
      circle,
      transparent 0 25px,
      rgba(255, 255, 255, 0.035) 26px 27px
    );
  opacity: 0.8;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #ff4a51;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.22em;
}

.hero h1,
.section-heading h2,
.showroom-overlay h2,
.dealer-content h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #fff, #9da1aa);
  background-clip: text;
}

.hero-text {
  max-width: 610px;
  margin: 30px 0 0;
  color: #bec1c8;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 750;
}

.hero-proof {
  display: flex;
  gap: 36px;
  margin-top: 54px;
}

.hero-proof div {
  display: grid;
  padding-left: 16px;
  border-left: 2px solid var(--red);
}

.hero-proof strong {
  font-size: 1.02rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  width: min(100%, 590px);
  aspect-ratio: 1;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  inset: 7%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(237, 28, 36, 0.35), transparent 66%);
  filter: blur(20px);
}

.hero-wheel {
  position: absolute;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.55));
}

.hero-wheel-main {
  z-index: 3;
  width: 73%;
  top: 11%;
  right: 2%;
}

.hero-wheel-left {
  z-index: 2;
  width: 43%;
  left: -3%;
  bottom: 3%;
  transform: rotate(-10deg);
}

.hero-wheel-right {
  z-index: 1;
  width: 34%;
  top: 2%;
  left: 5%;
  opacity: 0.95;
  transform: rotate(8deg);
}

.hero-ring {
  position: absolute;
  z-index: -1;
  inset: -28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-ring::before,
.hero-ring::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.hero-ring::before {
  inset: 38px;
  border: 1px solid rgba(237, 28, 36, 0.3);
}

.hero-ring::after {
  width: 12px;
  height: 12px;
  top: 12%;
  right: 6%;
  background: var(--red);
  box-shadow: 0 0 24px var(--red);
}

.intro-strip {
  border-block: 1px solid var(--line);
  background: #0d0f12;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-grid article {
  display: flex;
  gap: 20px;
  padding: 38px 30px;
  border-right: 1px solid var(--line);
}

.intro-grid article:first-child {
  padding-left: 0;
}

.intro-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.number {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.intro-grid h2 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.section {
  padding: 120px 0;
}

.about {
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
}

.section-heading h2,
.showroom-overlay h2,
.dealer-content h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.4rem);
}

.section-heading > p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-copy p {
  margin: 0 0 22px;
  color: var(--muted);
}

.about-copy .lead {
  color: #eef0f3;
  font-size: 1.32rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  margin-top: 82px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.value-card {
  min-height: 300px;
  padding: 42px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card-accent {
  background:
    linear-gradient(145deg, rgba(237, 28, 36, 0.22), transparent 65%),
    var(--surface);
}

.value-card h3 {
  max-width: 500px;
  margin: 0 0 24px;
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.value-card > p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.showroom-callout {
  position: relative;
  height: clamp(430px, 50vw, 660px);
  overflow: hidden;
}

.showroom-callout > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showroom-callout::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.14));
}

.showroom-overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
}

.showroom-overlay h2 {
  max-width: 620px;
}

.designs {
  background: #f3f3f4;
  color: #101115;
}

.designs .eyebrow {
  color: var(--red);
}

.designs-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.designs-heading > p {
  max-width: 430px;
  margin: 0;
  color: #60636b;
}

.gallery {
  display: grid;
  grid-auto-rows: 300px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  background:
    radial-gradient(circle at 50% 42%, #ffffff 0, #ececef 58%, #d8d9dd 100%);
  border: 0;
  border-radius: 20px;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(25, 27, 32, 0.24));
  transition: transform 360ms ease;
}

.gallery-item::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  content: "+";
  color: #fff;
  background: rgba(10, 10, 12, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 1.5rem;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.dealer-section {
  padding: 110px 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #090a0c;
  background-size: 40px 40px;
}

.dealer-card {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(237, 28, 36, 0.32);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.dealer-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.dealer-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.97) 0 42%, rgba(7, 8, 10, 0.2) 75%);
}

.dealer-content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 600px;
  min-height: 600px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px;
}

.dealer-content p:not(.eyebrow) {
  max-width: 480px;
  margin: 26px 0 34px;
  color: #c3c6cd;
  font-size: 1.1rem;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px 90px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-card {
  display: grid;
  min-height: 125px;
  align-content: center;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.contact-card:hover {
  border-color: rgba(237, 28, 36, 0.6);
  transform: translateY(-3px);
}

.contact-card span,
.hours-card > span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.contact-card strong {
  font-size: 1.02rem;
}

.contact-card-wide {
  grid-column: span 2;
}

.hours-card {
  grid-column: 2;
  padding: 28px 32px;
  background: linear-gradient(145deg, rgba(237, 28, 36, 0.12), var(--surface));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hours-card dl {
  margin: 14px 0 0;
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card dl div:last-child {
  border-bottom: 0;
}

.hours-card dt {
  color: var(--muted);
}

.hours-card dd {
  margin: 0;
  font-weight: 750;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #060708;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand img {
  width: 140px;
}

.footer-inner p {
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-inner > a:last-child {
  font-weight: 800;
}

.lightbox {
  width: min(92vw, 900px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox button {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  top: -18px;
  right: -18px;
  cursor: pointer;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 18px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(74vw, 560px);
    justify-self: center;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hours-card {
    grid-column: 1;
  }

  .gallery {
    grid-auto-rows: 260px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 145px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    padding: 30px 20px 38px;
    background: rgba(9, 10, 12, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 220ms ease;
  }

  .main-nav.is-open {
    transform: translateY(0);
  }

  .hero {
    min-height: auto;
    padding: 125px 0 78px;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hero-proof div {
    padding-left: 10px;
  }

  .hero-proof strong {
    font-size: 0.9rem;
  }

  .hero-proof span {
    font-size: 0.68rem;
  }

  .hero-visual {
    width: min(84vw, 500px);
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .intro-grid article:first-child,
  .intro-grid article:last-child {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-grid article:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 86px 0;
  }

  .about-grid {
    gap: 36px;
  }

  .values-grid {
    margin-top: 56px;
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .showroom-callout {
    height: 520px;
  }

  .showroom-callout > img {
    object-position: 54% center;
  }

  .designs-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery {
    grid-auto-rows: 240px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item-large {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .dealer-section {
    padding: 70px 0;
  }

  .dealer-card,
  .dealer-content {
    min-height: 590px;
  }

  .dealer-card::after {
    background: linear-gradient(0deg, rgba(7, 8, 10, 0.98) 0 50%, rgba(7, 8, 10, 0.2) 100%);
  }

  .dealer-content {
    justify-content: flex-end;
    padding: 34px 24px;
  }

  .dealer-content h2 {
    font-size: 2.55rem;
  }

  .dealer-content .button {
    width: 100%;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: 1;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .lightbox button {
    right: 0;
  }
}

@media (max-width: 480px) {
  .gallery {
    display: grid;
    grid-auto-rows: 290px;
    grid-template-columns: 1fr;
  }

  .gallery-item-wide {
    grid-column: 1;
  }

  .contact-card strong {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
