:root {
  --ink: #111827;
  --muted: #5b6472;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --navy: #10345b;
  --blue: #1267a3;
  --red: #d4483f;
  --green: #19745f;
  --gold: #f3b23d;
  --line: #e6e1d8;
  --shadow: 0 20px 60px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(230, 225, 216, 0.85);
  backdrop-filter: blur(16px);
}

.announcement {
  display: block;
  padding: 0.55rem 1rem;
  color: #1d3552;
  background: linear-gradient(90deg, #f8d46d, #f5ede2 42%, #d5efe7);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

.brand img {
  width: 128px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.35rem;
  color: #263548;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links a {
  padding: 0.5rem 0;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  font-weight: 850;
  line-height: 1;
}

.nav-cta {
  padding: 0 1rem;
  color: white;
  background: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 117px);
  overflow: hidden;
  color: white;
}

.hero picture,
.hero picture img,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero picture img {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 117px);
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 30, 50, 0.9) 0%, rgba(13, 30, 50, 0.72) 43%, rgba(13, 30, 50, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 42%);
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 117px);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd76f;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.35rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.button {
  border: 0;
  padding: 0.95rem 1.2rem;
  cursor: pointer;
  font-size: 0.94rem;
}

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(212, 72, 63, 0.3);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.button.outline {
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof span {
  padding: 0.55rem 0.75rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
}

.section,
.intro,
.metrics,
.fleet-band,
.quote-section,
.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 5rem 0 3rem;
  align-items: end;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.12rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metrics article {
  min-height: 180px;
  padding: 1.25rem;
  background: var(--surface);
}

.metrics strong {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--navy);
  font-size: 1.35rem;
}

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

.split {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 2rem;
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 122px;
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 1.15rem;
  align-items: center;
  min-height: 190px;
  padding: 0.75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.06);
}

.service-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 6px;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.fleet-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: 1rem;
  color: white;
  background: var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fleet-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.fleet-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.fleet-band img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}

.text-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #ffd76f;
  font-weight: 900;
}

.schools {
  padding-bottom: 3rem;
}

.school-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #eef7f4;
  border: 1px solid #c9e7de;
  border-radius: 8px;
}

.school-panel p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
}

.school-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.safety {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.safety-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}

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

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 0.9rem 1rem;
  background: white;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
  margin-top: 1rem;
  margin-bottom: 5rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 50px rgba(17, 24, 39, 0.08);
}

.quote-copy p {
  color: var(--muted);
}

.contact-strip {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.contact-strip a {
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #253043;
  font-size: 0.86rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6dce5;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #fbfcfe;
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 190px;
  margin-bottom: 1rem;
}

.footer h2 {
  margin-bottom: 0.85rem;
  color: var(--navy);
  font-size: 1rem;
}

.footer p,
.footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.85rem 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.2rem;
  }

  .hero,
  .hero-content,
  .hero picture img {
    min-height: 720px;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(13, 30, 50, 0.88), rgba(13, 30, 50, 0.38));
  }

  .intro,
  .split,
  .fleet-band,
  .school-panel,
  .safety,
  .quote-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .section-heading {
    position: static;
  }

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

  .fleet-band img {
    height: 360px;
  }

  .school-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .announcement {
    font-size: 0.72rem;
  }

  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 104px;
  }

  .nav-cta {
    min-height: 40px;
    font-size: 0.84rem;
  }

  .hero,
  .hero-content,
  .hero picture img {
    min-height: 690px;
  }

  .hero-content,
  .section,
  .intro,
  .metrics,
  .fleet-band,
  .quote-section,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 4rem 0;
  }

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

  .metrics article {
    min-height: auto;
  }

  .metrics strong {
    margin-bottom: 1rem;
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 230px;
  }

  .fleet-band {
    padding: 0.7rem;
  }

  .fleet-copy {
    padding: 1.25rem;
  }

  .quote-section {
    padding: 1.25rem;
  }
}
