﻿:root {
  color-scheme: light;
  --ink: #101318;
  --muted: #65707d;
  --paper: #f4f6f8;
  --surface: #ffffff;
  --line: #dfe5eb;
  --navy: #142033;
  --navy-soft: #1e334f;
  --signal: #f4b000;
  --signal-dark: #cb7a00;
  --red: #c83c31;
  --shadow: 0 24px 70px rgba(15, 28, 45, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(16, 19, 24, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: var(--signal);
  color: var(--navy);
  font-size: 24px;
  font-weight: 900;
}

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

.brand strong {
  font-size: 18px;
}

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

.main-nav {
  display: flex;
  gap: clamp(14px, 2vw, 30px);
  color: #384557;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a,
.site-footer a {
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.site-footer a:hover {
  border-color: currentColor;
}

.header-call,
.button,
.call-strip a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 850;
}

.header-call {
  padding: 0 18px;
  background: var(--navy);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 73px);
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 20, 31, 0.94), rgba(13, 20, 31, 0.68) 46%, rgba(13, 20, 31, 0.2)),
    linear-gradient(0deg, rgba(13, 20, 31, 0.86), rgba(13, 20, 31, 0.08) 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 36px));
  margin: auto 0 clamp(190px, 24vh, 260px) clamp(18px, 7vw, 96px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--signal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.contact .eyebrow {
  color: var(--signal);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  padding: 0 22px;
}

.button.primary {
  background: var(--signal);
  color: var(--navy);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #fff;
}

.wide {
  width: 100%;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 34px;
  left: clamp(18px, 5vw, 72px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.hero-panel div {
  min-height: 112px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.05;
}

.hero-panel strong {
  display: block;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.35;
}

.call-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px;
  background: var(--signal);
  color: var(--navy);
}

.call-strip p {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
}

.call-strip a {
  min-height: 42px;
  padding: 0 18px;
  background: var(--navy);
  color: #fff;
}

.section,
.coverage,
.contact {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(900px, 100%);
  margin-bottom: 34px;
}

.section-heading.compact {
  width: min(760px, 100%);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
  align-items: stretch;
}

.intro-grid > p,
.coverage p,
.safety-copy p,
.contact p {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.72;
}

.quick-card,
.service-grid article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(16, 19, 24, 0.08);
}

.quick-card {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 28px;
}

.quick-card span,
.contact-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-card a,
.phone-main {
  color: var(--navy);
  font-size: 34px;
  font-weight: 950;
}

.quick-card small {
  color: var(--muted);
}

.services {
  background: #fff;
}

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

.service-grid article {
  min-height: 255px;
  padding: 24px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 8px;
  background: #fff4cc;
  color: var(--signal-dark);
  font-weight: 950;
}

.service-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--navy);
  color: #fff;
}

.coverage p {
  color: rgba(255, 255, 255, 0.75);
}

.route-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-list li {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 18px;
  font-weight: 800;
}

.safety {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.safety-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.safety-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list span {
  padding: 16px 18px;
  border-left: 5px solid var(--signal);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(16, 19, 24, 0.06);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  background: var(--navy-soft);
  color: #fff;
}

.contact p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  color: var(--ink);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #0b111b;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero-content {
    margin-bottom: 250px;
  }

  .hero-panel,
  .intro-grid,
  .coverage,
  .safety,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 74px 16px 260px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero-actions,
  .call-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-panel {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero-panel div {
    min-height: 88px;
    padding: 16px;
  }

  .hero-panel span {
    font-size: 20px;
  }

  .button,
  .call-strip a {
    width: 100%;
  }

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

  .quick-card a,
  .phone-main {
    font-size: 28px;
  }
}

