:root {
  --cod5-blue: #183677;
  --cod5-blue-dark: #102758;
  --cod5-gold: #eba015;
  --cod5-accent: #cc3366;
  --cod5-text: #54595f;
  --cod5-soft: #7a7a7a;
  --cod5-ink: #1f2124;
  --cod5-paper: #f4f6f8;
  --cod5-white: #ffffff;
  --cod5-line: #e1e5ea;
  --cod5-shadow: 0 18px 45px rgb(24 54 119 / 12%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--cod5-text);
  background: var(--cod5-white);
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

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

:focus-visible {
  outline: 3px solid var(--cod5-gold);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--cod5-white);
  background: var(--cod5-blue);
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 96px;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgb(255 255 255 / 96%);
  border-bottom: 1px solid var(--cod5-line);
  backdrop-filter: blur(14px);
}

.brand img {
  width: 190px;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--cod5-blue);
  font-size: 18px;
  font-weight: 500;
}

.site-menu a {
  border-bottom: 2px solid transparent;
}

.site-menu a:hover,
.site-menu a[aria-current="page"] {
  color: var(--cod5-gold);
  border-bottom-color: var(--cod5-gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid var(--cod5-blue);
  border-radius: 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.button.primary {
  color: var(--cod5-white);
  background: var(--cod5-blue);
}

.button.secondary {
  color: var(--cod5-blue);
  background: var(--cod5-white);
}

.button.light {
  color: var(--cod5-blue);
  background: var(--cod5-white);
  border-color: var(--cod5-white);
}

.button.light-outline {
  color: var(--cod5-white);
  background: transparent;
  border-color: rgb(255 255 255 / 70%);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--cod5-shadow);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  background: var(--cod5-white);
  border: 1px solid var(--cod5-line);
  border-radius: 7px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--cod5-blue);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.05fr);
  min-height: 650px;
  background: var(--cod5-blue);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px);
  color: var(--cod5-white);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(24 54 119 / 28%), rgb(24 54 119 / 0));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--cod5-gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--cod5-blue);
  font-family: Poppins, sans-serif;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--cod5-white);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 5.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
}

h2 {
  max-width: 900px;
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.18;
}

h3 {
  margin-bottom: 9px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

.hero-copy > p:not(.eyebrow),
.section-heading p,
.about-copy p,
.contact-section p,
.fleet-section .section-heading p,
.fleet-feature p {
  max-width: 760px;
  font-size: 18px;
  font-weight: 500;
}

.hero-copy > p:not(.eyebrow) {
  color: rgb(255 255 255 / 88%);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px clamp(18px, 5vw, 76px);
  gap: 18px;
  background: #e9ecef;
}

.proof-strip div {
  min-height: 132px;
  padding: 26px;
  background: var(--cod5-white);
  border: 1px solid var(--cod5-line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgb(24 54 119 / 7%);
}

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

.proof-strip strong {
  color: var(--cod5-blue);
  font-size: 18px;
  font-weight: 600;
}

.proof-strip span {
  margin-top: 6px;
  color: var(--cod5-soft);
  font-size: 15px;
}

.section,
.fleet-section,
.about-section,
.faq-section,
.contact-section,
.cta-band {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 76px);
}

.section-heading {
  margin-bottom: 34px;
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.benefit-grid article {
  min-height: 232px;
  padding: 28px;
  background: var(--cod5-white);
  border: 1px solid var(--cod5-line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgb(24 54 119 / 8%);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--cod5-white);
  background: var(--cod5-blue);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}

.service-card p,
.benefit-grid p,
.faq-list p,
.about-panel li {
  color: var(--cod5-soft);
  font-size: 15px;
}

.fleet-section {
  background: var(--cod5-paper);
}

.fleet-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: stretch;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--cod5-white);
  border: 1px solid var(--cod5-line);
  border-radius: 8px;
  box-shadow: var(--cod5-shadow);
}

.fleet-feature img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
}

.fleet-feature div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

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

.fleet-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--cod5-line);
  background: var(--cod5-white);
}

.benefits {
  background: var(--cod5-white);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  color: var(--cod5-white);
  background: var(--cod5-blue);
}

.cta-band h2 {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--cod5-white);
  font-size: clamp(28px, 4vw, 32px);
  font-weight: 600;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 80px);
  background: var(--cod5-white);
}

.about-copy h2 {
  color: var(--cod5-gold);
  font-size: 26px;
  font-weight: 600;
}

.about-copy h3 {
  max-width: 760px;
  color: var(--cod5-text);
  font-size: 18px;
  font-weight: 500;
}

.about-panel {
  align-self: start;
  padding: 30px;
  background: var(--cod5-paper);
  border: 1px solid var(--cod5-line);
  border-top: 8px solid var(--cod5-gold);
  border-radius: 8px;
}

.about-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.faq-section {
  background: var(--cod5-paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

details {
  background: var(--cod5-white);
  border: 1px solid var(--cod5-line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px;
  color: var(--cod5-blue);
  font-weight: 700;
}

details p {
  padding: 0 20px 20px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--cod5-white);
  background: var(--cod5-accent);
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--cod5-white);
}

.contact-section p {
  color: rgb(255 255 255 / 84%);
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 38px clamp(18px, 5vw, 76px);
  background: var(--cod5-white);
  border-top: 1px solid var(--cod5-line);
}

.site-footer img {
  width: 168px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--cod5-soft);
  font-size: 15px;
}

.cod5-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  color: rgb(255 255 255 / 80%);
  background: #000000;
  border-top: 1px solid #27272a;
  font-size: 12px;
  line-height: 1.25;
}

.cod5-credit > span {
  color: rgb(255 255 255 / 70%);
}

.cod5-credit a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cod5-white);
  transition: color 0.2s ease;
}

.cod5-credit a:hover,
.cod5-credit a:focus {
  color: var(--cod5-white);
}

.cod5-credit img {
  width: auto;
  height: 22px;
}

.cod5-credit-url {
  text-decoration: underline;
  text-decoration-color: rgb(255 255 255 / 40%);
  text-underline-offset: 3px;
}

@media (max-width: 1100px) {
  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    grid-template-columns: auto auto;
    min-height: 76px;
  }

  .brand img {
    width: 154px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-menu,
  .header-cta {
    display: none;
  }

  .site-menu.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid var(--cod5-line);
  }

  .site-menu.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--cod5-line);
  }

  .hero,
  .fleet-feature,
  .about-section,
  .contact-section,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    order: -1;
    min-height: 330px;
  }

  .hero-media img {
    min-height: 330px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-copy {
    padding: 36px 22px;
  }

  .hero-media,
  .hero-media img {
    min-height: 292px;
  }

  .service-grid,
  .benefit-grid,
  .fleet-gallery {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .cod5-credit {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
