* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #141414;
  background: #f6f2ea;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 7%;
  background: #111;
  color: #fff;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d4af37;
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
}

.brand span {
  display: block;
  font-size: 13px;
  color: #cfcfcf;
  margin-top: 3px;
}

.nav-btn,
.primary,
.secondary {
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
}

.nav-btn,
.primary {
  background: #d4af37;
  color: #111;
}

.secondary {
  border: 1px solid #d4af37;
  color: #111;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
  padding: 70px 7%;
  background: linear-gradient(135deg, #111 0%, #2b2414 55%, #d4af37 160%);
  color: #fff;
}

.eyebrow {
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(36px, 6vw, 70px);
  line-height: 1.02;
  margin: 0 0 22px;
}

.subtext {
  font-size: 18px;
  line-height: 1.7;
  color: #e7e7e7;
  max-width: 720px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero .secondary {
  color: #fff;
}

.hero-card,
.fleet article,
.contact {
  background: #fff;
  color: #111;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.hero-card ul {
  padding-left: 20px;
  line-height: 2;
}

.fleet,
.contact {
  padding: 60px 7%;
}

.fleet h2,
.contact h2 {
  font-size: 34px;
}

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

.grid article {
  min-height: 170px;
}

footer {
  padding: 24px 7%;
  text-align: center;
  background: #111;
  color: #ccc;
}

@media (max-width: 850px) {
  .hero,
  .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }
}
