:root {
  --bg: #0f1117;
  --bg-soft: #161a24;
  --card: #f7f2ea;
  --accent: #ff5b2e;
  --accent-dark: #b83b1f;
  --text: #14151b;
  --muted: #5b6270;
  --white: #ffffff;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(12, 12, 18, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 10%, #22273a 0%, #0f1117 55%, #0b0b0f 100%);
  color: var(--white);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -10%;
  background-image:
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2000&q=80"),
    url("https://images.unsplash.com/photo-1503736334956-4c8f8e92946d?auto=format&fit=crop&w=2000&q=80"),
    url("https://images.unsplash.com/photo-1493238792000-8113da705763?auto=format&fit=crop&w=2000&q=80");
  background-size: 60% auto, 55% auto, 70% auto;
  background-position: 10% 20%, 85% 10%, 50% 80%;
  background-repeat: no-repeat;
  filter: blur(9px) saturate(1.15);
  opacity: 0.66;
  z-index: -2;
  transform: scale(1.05);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(15, 17, 23, 0.45), rgba(15, 17, 23, 0.72));
  z-index: -1;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  display: grid;
  gap: 36px;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand span {
  display: block;
  font-size: 0.85rem;
  color: #b0b5c3;
}

.brand-name {
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-family: "Fraunces", serif;
}

.brand span {
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 16px;
}

.nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin: 12px 0 16px;
}

.hero-text p {
  color: #d7d9e4;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: #a9b0c2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 32px rgba(255, 91, 46, 0.28);
}

.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.hero-stats strong {
  font-size: 1.6rem;
}

.hero-stats span {
  display: block;
  font-size: 0.85rem;
  color: #a9b0c2;
}

.hero-card {
  background: var(--card);
  color: var(--text);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
}

.highlight-card p {
  color: #c9ceda;
  margin-top: 8px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 91, 46, 0.16), rgba(255, 210, 138, 0.18));
}

.contact-info {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.map-embed {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #9aa0b3;
  font-size: 0.9rem;
}

.catalog-header {
  display: grid;
  gap: 10px;
}

.catalog-header p {
  color: #c9ceda;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.car-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 160px auto;
}

.car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-card-content {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.car-card-content strong {
  font-size: 1.1rem;
}

.car-card-content span {
  color: #c9ceda;
  font-size: 0.9rem;
}

.car-card-content a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}

.details-card {
  background: var(--card);
  color: var(--text);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.details-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.details-media {
  border-radius: 26px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid var(--border);
}

.details-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
  }

  .brand-name {
    font-size: 32px;
  }
}
