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

:root {
  --bg: #f7f7f4;
  --card: #ffffff;
  --text: #151515;
  --muted: #707070;
  --line: #e7e7e2;
  --dark: #111111;
  --accent: #d8b46a;
  --whatsapp: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

.header {
  width: min(1180px, 92%);
  margin: 22px auto;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 18px;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
}

.logo span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  display: grid;
  place-items: center;
}

nav {
  display: flex;
  gap: 22px;
}

nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

nav a:hover {
  color: var(--text);
}

.hero {
  width: min(980px, 92%);
  margin: 95px auto 70px;
  text-align: center;
}

.small-title,
.section-head p,
.contact p {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -3px;
}

.hero-text {
  max-width: 720px;
  margin: 24px auto 32px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-btn,
.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  background: var(--dark);
  color: white;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.25s;
}

.hero-btn:hover,
.contact-btn:hover {
  transform: translateY(-2px);
  background: #000;
}

.vehicles-section {
  width: min(1180px, 92%);
  margin: 0 auto;
  padding: 30px 0 80px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -1.5px;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vehicle-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  transition: 0.25s;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.vehicle-image {
  height: 250px;
  background: linear-gradient(135deg, #f0f0ea, #ffffff);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-content {
  padding: 22px;
}

.vehicle-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 15px;
  margin-bottom: 18px;
}

.vehicle-top h3 {
  font-size: 22px;
  letter-spacing: -0.5px;
}

.vehicle-top p {
  padding: 7px 11px;
  background: #f3f3ee;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

li {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.vehicle-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.whatsapp-btn {
  min-height: 44px;
  padding: 0 18px;
  background: var(--whatsapp);
  color: white;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.25s;
  width: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  background: #1fbd5a;
}

.contact {
  width: min(1180px, 92%);
  margin: 0 auto 70px;
  padding: 32px;
  border-radius: 28px;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact h2 {
  margin-top: 8px;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: -1.2px;
}

.contact-btn {
  background: white;
  color: var(--dark);
}

.contact-btn:hover {
  background: var(--accent);
}

footer {
  width: min(1180px, 92%);
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 920px) {
  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .contact {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .header {
    border-radius: 18px;
  }

  nav {
    display: none;
  }

  .hero {
    margin-top: 70px;
  }

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