:root {
  --ink: #172022;
  --muted: #5c686b;
  --line: #dce3e2;
  --paper: #f7f9f7;
  --white: #ffffff;
  --forest: #123d35;
  --teal: #0d8070;
  --gold: #c59a3e;
  --rust: #b84c33;
  --shadow: 0 18px 45px rgba(18, 61, 53, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 249, 247, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.main-nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--forest);
  background: #e8efed;
}

.hero {
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 72px) 38px;
  background:
    linear-gradient(90deg, rgba(18, 32, 34, 0.82), rgba(18, 32, 34, 0.28)),
    url("https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--white);
}

.hero-copy {
  max-width: 720px;
  padding-bottom: 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(48px, 10vw, 118px);
  line-height: 0.9;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  margin: 4px 0 8px;
  font-size: 22px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0;
  font-size: 18px;
}

.hero-actions,
.fleet-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button,
.filter-btn {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary,
.filter-btn.active {
  color: var(--white);
  background: var(--teal);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.44);
}

.button.full {
  width: 100%;
}

.quick-booking,
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}

.quick-booking h2 {
  font-size: 26px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.quote-result {
  min-height: 48px;
  padding: 12px;
  color: var(--forest);
  background: #edf6f4;
  border-radius: 8px;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 52px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
}

.section-shell,
.quote-band,
.policy-page {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-heading p:not(.eyebrow),
.quote-band p {
  color: var(--muted);
  font-size: 17px;
}

.fleet-controls {
  margin-bottom: 20px;
}

.filter-btn {
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
}

.search-label {
  min-width: min(100%, 320px);
  margin-left: auto;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vehicle-card[hidden] {
  display: none;
}

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

.vehicle-card div {
  padding: 18px;
}

.vehicle-card p {
  color: var(--muted);
}

.vehicle-type {
  margin: 0;
  color: var(--rust);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  color: var(--white);
  background: var(--forest);
}

.quote-band p {
  color: #d7e4e1;
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.company-grid div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: #d7e4e1;
  background: #0d2622;
}

.site-footer p {
  margin: 0;
}

.policy-hero {
  max-width: 900px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.policy-hero h1 {
  color: var(--forest);
  font-size: clamp(42px, 7vw, 82px);
}

.policy-content {
  max-width: 860px;
  padding-top: 28px;
}

.policy-content h2 {
  margin-top: 30px;
  font-size: 26px;
}

.policy-content p {
  color: var(--muted);
}

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

  .quick-booking {
    max-width: 560px;
  }

  .fleet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .trust-strip,
  .company-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .search-label {
    margin-left: 0;
  }
}
