:root {
  --black: #050505;
  --soft-black: #0d0d0f;
  --card: #141416;
  --white: #f5f0ea;
  --muted: #b7b1aa;
  --maroon: #7b0f1d;
  --line: #2a2a2d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, sans-serif;
}

h1, h2 {
  font-family: Georgia, serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 5%;
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border: 1px solid var(--maroon);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 28px;
}

.logo h1 {
  font-size: 24px;
  margin: 0;
  letter-spacing: 2px;
}

.logo p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 4px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  text-transform: uppercase;
}

.phone {
  background: var(--maroon);
  padding: 14px 22px;
  border-radius: 4px;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  padding: 5%;
  background:
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.55), rgba(0,0,0,.25)),
    url("YOUR-HERO-IMAGE.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 560px;
}

.eyebrow {
  color: #c9505c;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
}

.center {
  text-align: center;
}

.hero h2 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  margin: 20px 0;
}

.hero-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 36px;
}

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid var(--line);
  cursor: pointer;
}

.primary {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
}

.secondary {
  background: transparent;
}

.services,
.quote-section {
  padding: 80px 5%;
}

.services h2,
.quote-section h2 {
  text-align: center;
  font-size: 42px;
  margin-top: 10px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: 40px;
}

.service-grid div {
  min-height: 160px;
  display: grid;
  place-items: center;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 38px;
}

.service-grid div:last-child {
  border-right: none;
}

.service-grid span {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.split {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split h2 {
  font-size: 44px;
}

.split li {
  margin: 14px 0;
  color: var(--muted);
}

.fleet-card {
  min-height: 360px;
  background: var(--card);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.quote-subtitle {
  text-align: center;
  color: var(--muted);
}

.quote-form {
  max-width: 760px;
  margin: 40px auto 0;
  background: var(--card);
  border: 1px solid var(--line);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  background: #080808;
  border: 1px solid var(--line);
  color: var(--white);
  font-size: 15px;
}

textarea {
  resize: vertical;
}

.full {
  width: 100%;
}

.hidden {
  display: none;
}

.form-status {
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
}

footer {
  padding: 40px 5%;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 20px;
}

.logo.small .logo-mark {
  width: 38px;
  height: 38px;
  font-size: 22px;
}

.logo.small h1 {
  font-size: 18px;
}

@media (max-width: 800px) {
  nav a:not(.phone) {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-buttons,
  .form-row,
  .split {
    grid-template-columns: 1fr;
    display: grid;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid div {
    border-bottom: 1px solid var(--line);
  }

  .quote-form {
    padding: 22px;
  }
}