:root {
  color-scheme: light;
  --ink: #102027;
  --muted: #5d6b71;
  --line: #d9e2e4;
  --panel: #f6f8f7;
  --brand: #056a7b;
  --brand-dark: #034c5a;
  --accent: #c7922a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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

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

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

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

.brand-mark {
  display: block;
  width: 54px;
  height: 44px;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  padding: 9px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 15px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: var(--panel);
}

.nav .nav-cta {
  color: var(--white);
  background: var(--brand);
}

.nav .nav-cta:hover,
.nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--brand-dark);
}

.hero,
.page-hero,
.section,
.split-section {
  padding-inline: clamp(20px, 5vw, 72px);
}

.hero {
  display: flex;
  align-items: center;
  min-height: 680px;
  padding-top: 64px;
  padding-bottom: 72px;
  background:
    linear-gradient(130deg, rgba(5, 106, 123, 0.11), transparent 46%),
    linear-gradient(0deg, #ffffff 0%, #f8fbfa 100%);
}

.hero-copy {
  max-width: 900px;
}

.page-hero {
  max-width: 980px;
  padding-top: 82px;
  padding-bottom: 48px;
}

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

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid var(--brand);
  font-weight: 700;
}

.button.primary {
  color: var(--white);
  background: var(--brand);
}

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

.section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.compact {
  padding-top: 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.icon {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--accent);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list p {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  font-weight: 700;
}

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 8px;
  color: var(--white);
  background: var(--brand-dark);
}

.route-highlight {
  max-width: 880px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(5, 106, 123, 0.1), rgba(199, 146, 42, 0.14));
}

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

.callout p,
.callout .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.callout .button {
  border-color: var(--white);
  background: var(--white);
  color: var(--brand-dark);
  min-width: 140px;
}

.contact-card a {
  color: var(--brand);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--brand);
}

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

  .nav {
    justify-content: flex-start;
  }

  .hero,
  .grid.three,
  .grid.two,
  .split-section {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  .nav a {
    padding: 8px 9px;
    font-size: 14px;
  }

  h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero,
  .page-hero,
  .section,
  .split-section {
    padding-inline: 18px;
  }

  .hero {
    padding-top: 34px;
  }

  .button,
  .actions,
  .callout {
    width: 100%;
  }

  .callout {
    align-items: stretch;
    flex-direction: column;
  }

  .card {
    min-height: auto;
  }
}
