* {
  box-sizing: border-box;
}

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

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.58)),
    url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 24px;
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 800;
  letter-spacing: .5px;
  font-size: 18px;
}

.logo span {
  color: #d6b25e;
}

.nav-btn,
.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  display: inline-block;
}

.nav-btn,
.primary {
  background: #d6b25e;
  color: #111;
  border: none;
  cursor: pointer;
}

.secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.65);
}

.hero-content {
  max-width: 1180px;
  margin: 150px auto 0;
}

.eyebrow {
  color: #d6b25e;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 13px;
}

.eyebrow.dark {
  color: #9b751d;
}

h1 {
  font-size: clamp(42px, 7vw, 86px);
  max-width: 850px;
  line-height: .95;
  margin: 12px 0;
}

.subhead {
  max-width: 640px;
  font-size: 20px;
  color: #eee;
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin: 8px 0 28px;
}

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

.card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.car-img {
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(135deg, #171717, #555);
  color: #d6b25e;
  display: flex;
  align-items: end;
  padding: 20px;
  font-size: 26px;
  font-weight: 900;
}

.card h3 {
  margin-bottom: 8px;
}

.card p,
.features p {
  color: #555;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.features {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.dark-section {
  background: #111;
  color: white;
  max-width: none;
  padding-left: max(24px, calc((100vw - 1180px)/2 + 24px));
  padding-right: max(24px, calc((100vw - 1180px)/2 + 24px));
}

.form {
  max-width: 760px;
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #ddd;
  font-size: 16px;
}

textarea {
  min-height: 130px;
}

.form-message {
  color: #d6b25e;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 35px 20px;
  background: #070707;
  color: #ddd;
}

@media (max-width: 800px) {
  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-top: 95px;
  }
}
