:root {
  --navy: #031d46;
  --navy-deep: #02132e;
  --blue: #0a3b78;
  --orange: #ff5b00;
  --cream: #f5f3ed;
  --white: #ffffff;
  --ink: #101820;
  --muted: #5e6873;
  --line: #dce0e4;
  --font-display: "Archivo", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Archivo", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  align-items: center;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  display: flex;
  height: 82px;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 10;
}

.brand { align-items: center; display: flex; gap: 14px; }
.brand-mark {
  color: var(--orange);
  font-family: var(--font-display), sans-serif;
  font-size: 24px;
  font-style: italic;
  letter-spacing: -2px;
}
.brand-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a {
  color: #c8d1dc;
  font-size: 13px;
  font-weight: 700;
  transition: color 160ms ease;
}
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--white); }
.header-actions { align-items: center; display: flex; gap: 20px; }
.header-phone {
  color: var(--white);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: right;
}
.header-phone span {
  color: #9eacbd;
  font-size: 9px;
  letter-spacing: .14em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.header-phone:hover, .header-phone:focus-visible { color: var(--orange); }

.button {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 18px;
  justify-content: center;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-small {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  min-height: 46px;
  padding: 0 20px;
}

.hero {
  background:
    linear-gradient(100deg, rgba(2, 19, 46, 1) 0%, rgba(3, 29, 70, 0.98) 48%, rgba(3, 29, 70, 0.85) 100%),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,.025) 29px 30px);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  min-height: 640px;
  overflow: hidden;
  padding: 70px clamp(24px, 5vw, 80px) 82px;
  position: relative;
}
.hero::after {
  background: var(--orange);
  bottom: 0;
  clip-path: polygon(0 82%, 100% 0, 100% 100%, 0 100%);
  content: "";
  height: 17px;
  left: 0;
  position: absolute;
  width: 100%;
}
.hero-copy { align-self: center; position: relative; z-index: 2; }
.eyebrow {
  align-items: center;
  color: #c5cfdb;
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow span { background: var(--orange); display: inline-block; height: 3px; width: 36px; }
.hero h1 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(52px, 5.7vw, 84px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
  max-width: 790px;
  text-transform: uppercase;
}
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-description {
  color: #c5cfdb;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.65;
  margin: 30px 0 0;
  max-width: 630px;
}
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 30px; margin-top: 40px; }
.button-primary {
  background: var(--orange);
  color: var(--white);
  min-height: 58px;
  padding: 0 26px;
}
.button-primary:hover, .button-primary:focus-visible,
.button-small:hover, .button-small:focus-visible { background: #ff7022; }
.button-outline {
  border: 1px solid rgba(255,255,255,.48);
  color: var(--white);
  min-height: 58px;
  padding: 0 24px;
}
.button-outline:hover, .button-outline:focus-visible {
  background: var(--white);
  color: var(--navy-deep);
}
.text-link {
  border-bottom: 1px solid rgba(255,255,255,.38);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 7px;
}
.hero-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 420px;
  position: relative;
  z-index: 1;
}
.hero-glow {
  background: radial-gradient(circle, rgba(255, 91, 0, 0.32), transparent 68%);
  height: 620px;
  position: absolute;
  width: 620px;
}
.hero-art img {
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.42));
  height: auto;
  max-width: 590px;
  position: relative;
  transform: scale(1.06);
  width: 110%;
  z-index: 1;
}

.availability-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 5vw, 80px);
}
.availability-strip p {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  margin: 0;
  min-height: 118px;
  text-align: center;
}
.availability-strip p:first-child { border-left: 1px solid var(--line); }
.availability-strip strong {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 23px;
  font-weight: 400;
  text-transform: uppercase;
}
.availability-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section { padding: 100px clamp(24px, 7vw, 120px); }
.services-section { background: var(--cream); }
.section-heading {
  align-items: end;
  display: flex;
  gap: 80px;
  justify-content: space-between;
  margin: 0 auto 48px;
  max-width: 1280px;
}
.eyebrow.dark { color: var(--blue); margin-bottom: 18px; }
.section-heading h2 {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 450px;
}
.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin: auto;
  max-width: 1280px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 320px;
  padding: 34px;
  position: relative;
  transition: border-color 180ms ease, transform 180ms ease;
}
.service-card:hover { border-color: var(--orange); transform: translateY(-5px); }
.service-number { color: #89929d; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-icon {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: 20px;
  height: 52px;
  justify-content: center;
  margin: 34px 0 28px;
  width: 52px;
}
.service-card h3 {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
.service-card p { color: var(--muted); line-height: 1.65; margin: 0; }

.fleet-section {
  background: var(--navy-deep);
  color: var(--white);
  display: grid;
  gap: clamp(45px, 7vw, 110px);
  grid-template-columns: .72fr 1.28fr;
  padding: 110px clamp(24px, 7vw, 120px);
}
.fleet-intro { align-self: center; }
.fleet-intro h2 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .96;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.fleet-intro h2 em { color: var(--orange); font-style: normal; }
.fleet-intro > p:last-child { color: #b9c4d0; line-height: 1.75; max-width: 450px; }
.fleet-cards { display: grid; gap: 14px; grid-template-columns: repeat(3, 1fr); }
.fleet-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}
.fleet-card-blue { background: var(--blue); color: var(--white); }
.fleet-card-light { background: var(--white); color: var(--navy); }
.fleet-card-orange { background: var(--orange); color: var(--white); }
.fleet-size {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(88px, 9vw, 140px);
  letter-spacing: -.08em;
  line-height: .8;
  opacity: .16;
  white-space: nowrap;
}
.fleet-size span { font-size: .26em; letter-spacing: 0; margin-left: 8px; }
.fleet-size-word {
  font-size: clamp(42px, 4.6vw, 72px);
  letter-spacing: -.06em;
  padding-top: 7px;
}
.card-kicker { font-size: 11px; font-weight: 800; letter-spacing: .17em; margin: 0 0 10px; text-transform: uppercase; }
.fleet-card h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 28px;
  font-weight: 400;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.fleet-card p:not(.card-kicker) { line-height: 1.65; margin: 0; opacity: .78; }
.fleet-card ul { list-style: none; margin: 24px 0 0; padding: 0; }
.fleet-card li { border-top: 1px solid currentColor; font-size: 13px; font-weight: 700; opacity: .8; padding: 12px 0; }
.fleet-card li::before { content: "✓"; margin-right: 10px; }

.after-hours-banner {
  align-items: center;
  background: var(--orange);
  color: var(--white);
  display: grid;
  gap: 60px;
  grid-template-columns: .55fr 1.35fr .5fr;
  padding: 65px clamp(24px, 7vw, 120px);
}
.after-hours-banner .eyebrow { color: var(--white); margin: 0; }
.after-hours-banner .eyebrow span { background: var(--navy-deep); }
.after-hours-banner h2 {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}
.after-hours-banner div p { line-height: 1.6; margin: 0; opacity: .9; }
.button-dark { background: var(--navy-deep); color: var(--white); min-height: 58px; padding: 0 24px; }
.button-dark:hover, .button-dark:focus-visible { background: var(--navy); }

.about-section {
  background: var(--white);
  display: grid;
  gap: 100px;
  grid-template-columns: .85fr 1.15fr;
}
.about-copy h2 {
  color: var(--navy);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
  margin: 0;
  text-transform: uppercase;
}
.about-lead { color: var(--muted); font-size: 18px; line-height: 1.75; margin: 30px 0 0; max-width: 530px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.values-grid article { border-left: 1px solid var(--line); border-top: 1px solid var(--line); min-height: 230px; padding: 28px; }
.values-grid article:nth-child(1), .values-grid article:nth-child(2) { border-top: 0; }
.values-grid span { color: var(--orange); font-size: 12px; font-weight: 900; }
.values-grid h3 { color: var(--navy); font-size: 17px; margin: 42px 0 12px; text-transform: uppercase; }
.values-grid p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0; }

.process-section { background: var(--cream); padding: 100px clamp(24px, 7vw, 120px); }
.process-heading { justify-content: flex-start; }
.process-grid { display: grid; gap: 0; grid-template-columns: repeat(3, 1fr); margin: auto; max-width: 1280px; }
.process-grid article { border-left: 1px solid #c9ced4; padding: 10px 42px 30px; }
.process-grid strong {
  align-items: center;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-family: var(--font-display), sans-serif;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  margin: 0 0 28px -66px;
  width: 48px;
}
.process-grid h3 { color: var(--navy); font-size: 18px; margin: 0 0 12px; text-transform: uppercase; }
.process-grid p { color: var(--muted); line-height: 1.65; margin: 0; }

.contact-section {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  padding: 100px clamp(24px, 7vw, 120px);
}
.contact-section h2 {
  color: var(--orange);
  font-family: var(--font-display), sans-serif;
  font-size: clamp(64px, 8vw, 120px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .8;
  margin: 0 0 34px;
  text-transform: uppercase;
}
.contact-section > div > p:last-child { color: #c5cfdb; line-height: 1.7; max-width: 550px; }
.contact-action { border-left: 1px solid rgba(255,255,255,.2); padding: 24px 0 24px 60px; }
.contact-action > p { color: #aab7c7; font-size: 11px; font-weight: 800; letter-spacing: .16em; margin: 0 0 12px; text-transform: uppercase; }
.contact-phone {
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -.03em;
  margin: 0 0 28px;
  padding-bottom: 7px;
}
.contact-email { display: inline-block; font-size: clamp(18px, 2vw, 28px); font-weight: 800; margin-bottom: 34px; word-break: break-word; }
.contact-phone:hover, .contact-phone:focus-visible,
.contact-email:hover, .contact-email:focus-visible { color: var(--orange); }
.contact-action .button { display: flex; max-width: 250px; }

footer {
  align-items: center;
  background: var(--navy-deep);
  color: #a9b5c4;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  padding: 34px clamp(24px, 5vw, 80px);
}
footer p { margin: 0; }
footer .brand-name { color: var(--white); }
.footer-phone { color: var(--white); font-weight: 800; }
.footer-phone:hover, .footer-phone:focus-visible { color: var(--orange); }

.brand-mark,
.hero h1,
.availability-strip strong,
.section-heading h2,
.fleet-intro h2,
.fleet-size,
.fleet-card h3,
.after-hours-banner h2,
.about-copy h2,
.process-grid strong,
.contact-section h2,
.contact-phone {
  font-weight: 900;
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-phone span { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-art { min-height: 360px; }
  .hero-art img { max-width: 580px; }
  .section-heading { align-items: start; flex-direction: column; gap: 22px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-section, .about-section { grid-template-columns: 1fr; }
  .after-hours-banner { gap: 30px; grid-template-columns: 1fr; }
  .after-hours-banner .button { max-width: 230px; }
  .contact-section { gap: 50px; grid-template-columns: 1fr; }
  .contact-action { padding-left: 40px; }
}

@media (max-width: 700px) {
  .site-header { height: 72px; }
  .brand-name { display: none; }
  .button-small { min-height: 42px; padding: 0 14px; }
  .header-actions { gap: 10px; }
  .header-phone { font-size: 12px; }
  .hero { min-height: 0; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(44px, 13vw, 68px); }
  .hero-description { font-size: 16px; }
  .hero-art { min-height: 280px; }
  .hero-art img { transform: scale(1.06); width: 116%; }
  .availability-strip { grid-template-columns: repeat(2, 1fr); }
  .availability-strip p:nth-child(3) { border-left: 1px solid var(--line); }
  .section { padding-bottom: 74px; padding-top: 74px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 280px; }
  .fleet-section { padding-bottom: 74px; padding-top: 74px; }
  .fleet-cards { grid-template-columns: 1fr; }
  .fleet-card { min-height: 430px; }
  .about-section { gap: 60px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article:nth-child(2) { border-top: 1px solid var(--line); }
  .process-grid { gap: 38px; grid-template-columns: 1fr; }
  .process-grid article { margin-left: 24px; padding-right: 0; }
  .contact-section { padding-bottom: 74px; padding-top: 74px; }
  .contact-action { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); padding: 34px 0 0; }
  footer { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
