:root {
  --ink: #13232b;
  --muted: #5d6a70;
  --line: #d9dedf;
  --paper: #f6f8f6;
  --white: #ffffff;
  --harbor: #0f6f86;
  --deep: #0b3342;
  --rust: #d86a3c;
  --gold: #d9a33a;
  --green: #4f8a62;
  --shadow: 0 22px 70px rgba(15, 38, 48, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 24, 31, .82), rgba(8, 24, 31, .2));
}

.site-header.compact {
  position: sticky;
  background: var(--deep);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  background: var(--rust);
  color: var(--white);
  font-weight: 800;
}

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

.brand strong {
  max-width: 390px;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand small {
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 650;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 31, .88), rgba(8, 24, 31, .5) 48%, rgba(8, 24, 31, .14)),
    linear-gradient(0deg, rgba(8, 24, 31, .82), transparent 42%);
}

.hero-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 76px;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(38px, 7vw, 76px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(280px, .78fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 12px;
}

.service-card {
  min-height: 244px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(15, 38, 48, .06);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  place-items: center;
  background: var(--deep);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

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

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(280px, 560px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: 86px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: var(--white);
}

.feature-copy p {
  color: rgba(255, 255, 255, .78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}

.feature-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #edf3f0;
  box-shadow: var(--shadow);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 440px);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: 86px clamp(18px, 5vw, 72px);
  background: #e6ece9;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 30px;
  border-left: 6px solid var(--rust);
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-panel a {
  color: var(--harbor);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  padding: 38px clamp(18px, 4vw, 56px);
  background: #091a22;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .64);
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: start;
}

.footer-links a {
  color: rgba(255, 255, 255, .82);
  font-weight: 750;
}

.footer-contact {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-style: normal;
}

.footer-contact a {
  color: rgba(255, 255, 255, .86);
  font-weight: 750;
  overflow-wrap: anywhere;
}

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

.legal-page {
  background:
    linear-gradient(180deg, #dce9e7 0, transparent 360px),
    var(--paper);
}

.legal-hero {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 82px 0 28px;
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-hero p:last-child {
  color: var(--muted);
}

.legal-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0 92px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 24px;
}

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

.legal-content a {
  color: var(--harbor);
  font-weight: 800;
}

.business-page {
  background: var(--paper);
}

.business-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 5vw, 72px) 72px;
  background:
    linear-gradient(90deg, rgba(8, 24, 31, .88), rgba(8, 24, 31, .48)),
    url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: var(--white);
}

.business-hero > div {
  width: min(980px, 100%);
}

.business-hero p:last-child {
  max-width: 820px;
  color: rgba(255, 255, 255, .84);
  font-size: 20px;
}

.business-intro {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(280px, .9fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.advantage-list > p {
  color: var(--muted);
  font-size: 18px;
}

.route-section {
  width: min(1160px, calc(100% - 36px));
  display: grid;
  gap: 22px;
  margin: 0 auto;
  padding: 0 0 86px;
}

.route-card {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 56px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(15, 38, 48, .08);
}

.route-title span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  background: var(--deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.route-title h2 {
  font-size: clamp(25px, 3.2vw, 38px);
}

.route-details dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.route-details div {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.route-details dt {
  color: var(--harbor);
  font-weight: 900;
}

.route-details dd {
  margin: 0;
  color: var(--muted);
}

.route-note {
  margin: 22px 0 0;
  padding: 18px;
  border-left: 4px solid var(--rust);
  background: #f2f5f3;
  color: var(--ink);
}

.business-contact {
  margin-top: 0;
}

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

  .brand strong {
    max-width: 220px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 10px;
    background: var(--deep);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 13px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-top: 128px;
  }

  .intro,
  .feature-band,
  .business-intro,
  .route-card,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .feature-band,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .business-hero {
    min-height: 360px;
    padding-top: 96px;
  }

  .route-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .button {
    width: 100%;
  }
}
