:root {
  --ink: #10233f;
  --ink-2: #183354;
  --paper: #f5f3ed;
  --white: #fff;
  --orange: #f26a36;
  --orange-dark: #d84e1d;
  --aqua: #85d8cf;
  --muted: #607087;
  --line: rgba(16, 35, 63, 0.13);
  --shadow: 0 24px 70px rgba(16, 35, 63, 0.13);
  --radius: 28px;
  --container: min(1180px, calc(100% - 40px));
}

* { 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;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 999;
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}

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

.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--ink);
  color: var(--white);
  box-shadow: inset -8px -8px 0 rgba(133, 216, 207, 0.2);
  font-size: 0.78rem;
  letter-spacing: -0.06em;
}

.main-nav { display: flex; align-items: center; gap: 8px; }

.main-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 720;
  color: #324760;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 21px;
  border: 0;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  font: inherit;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(242, 106, 54, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.button:hover { background: var(--orange-dark); transform: translateY(-2px); }

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 23, 41, 0.98) 4%, rgba(8, 23, 41, 0.84) 38%, rgba(8, 23, 41, 0.13) 70%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content { max-width: 690px; padding: 100px 0 120px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }

h1, h2, h3 {
  margin: 0 0 0.55em;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h1 { font-size: clamp(3rem, 7vw, 6.7rem); max-width: 950px; }
h2 { font-size: clamp(2.25rem, 4.4vw, 4.45rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -0.025em; }

.hero h1 { max-width: 670px; }
.hero .lead { max-width: 640px; color: #dbe3ed; }

.lead { font-size: clamp(1.12rem, 1.7vw, 1.35rem); line-height: 1.55; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .button.secondary { color: #fff; border-color: rgba(255,255,255,.35); }
.hero .button.secondary:hover { background: rgba(255,255,255,.1); }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 50px;
  color: #c4cfdd;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-proof span::before { content: "✓"; color: var(--aqua); margin-right: 8px; }

.page-hero { padding: 112px 0 82px; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero .lead { max-width: 800px; color: #ced8e4; }
.page-hero h1 { max-width: 1000px; font-size: clamp(3rem, 6vw, 5.8rem); }
.breadcrumb { margin: 0 0 30px; color: #a9b8ca; font-size: .9rem; }
.breadcrumb a { color: #fff; text-underline-offset: 4px; }
.breadcrumb span { margin: 0 8px; }

.section { padding: 110px 0; }
.section.compact { padding: 78px 0; }
.section.white { background: var(--white); }
.section.dark { background: var(--ink); color: #fff; }
.section.tint { background: #e8eee9; }
.section-header { max-width: 800px; margin-bottom: 52px; }
.section-header p { color: var(--muted); font-size: 1.12rem; }
.dark .section-header p { color: #b9c6d5; }

.intro-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.prose { max-width: 780px; }
.prose p { margin: 0 0 1.25em; color: #334a64; }
.prose h2 { margin-top: 1.1em; }
.prose h3 { margin-top: 1.8em; }
.prose a, .text-link { color: #b63f17; font-weight: 750; text-underline-offset: 4px; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .7rem; }

.fact-panel,
.contact-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.fact-panel { position: sticky; top: 116px; }
.fact-panel h2, .fact-panel h3 { font-size: 1.65rem; }
.fact-panel p, .fact-panel li { color: #c5d0dd; }
.fact-panel ul { padding-left: 1.2rem; }
.fact-panel a { color: var(--aqua); font-weight: 750; }

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

.card {
  position: relative;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(16,35,63,.05);
}

.card-number,
.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--aqua);
  font-weight: 850;
}

.card p { color: var(--muted); }
.card .text-link { display: inline-block; margin-top: 12px; }
.card:hover { border-color: rgba(242,106,54,.45); }

.route-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 32px;
  border-radius: 26px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 180ms ease;
}

.route-card:nth-child(2) { background: #164c50; }
.route-card:nth-child(3) { background: #71391f; }
.route-card:hover { transform: translateY(-6px); }
.route-card p { color: #ced8e4; }
.route-card .route-meta { margin-top: auto; padding-top: 28px; color: var(--aqua); font-weight: 800; }
.route-card .route-meta::after { content: " →"; }

.image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.image-frame img { width: 100%; min-height: 440px; object-fit: cover; }
.image-caption { margin-top: 12px; color: var(--muted); font-size: .86rem; }

.band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 46px 52px;
  border-radius: 30px;
  background: var(--orange);
  color: #fff;
}

.band h2 { font-size: clamp(2rem, 4vw, 3.6rem); }
.band p { max-width: 720px; margin-bottom: 0; color: #fff2ea; }
.band .button { background: var(--ink); box-shadow: none; }

.steps { counter-reset: step; display: grid; gap: 1px; border-radius: 24px; overflow: hidden; }
.step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 32px;
  background: #fff;
}
.step::before {
  content: "0" counter(step);
  color: var(--orange);
  font-weight: 900;
  font-size: 1.3rem;
}
.step p { margin-bottom: 0; color: var(--muted); }

.table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; background: #fff; min-width: 720px; }
th, td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { background: var(--ink); color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .08em; }
tr:last-child td { border-bottom: 0; }

.quote {
  padding-left: 30px;
  border-left: 4px solid var(--orange);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.45;
  font-weight: 720;
  letter-spacing: -.02em;
}

details { border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { padding: 22px 4px; cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--orange); font-size: 1.4rem; }
details[open] summary::after { content: "−"; }
details p { max-width: 820px; margin: 0 0 24px; color: var(--muted); }

.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-list span { display: block; color: #9eafc2; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list a { color: #fff; text-decoration: none; font-weight: 750; }

.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .9rem; }
input, select, textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 160px; resize: vertical; }

.site-footer { padding: 78px 0 26px; background: #09192d; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 52px; }
.site-footer h2, .site-footer h3 { font-size: 1rem; letter-spacing: -.01em; }
.site-footer p, .site-footer a { color: #aebdce; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 8px 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #8193a8; font-size: .82rem; }

.pill-list { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; list-style: none; }
.pill-list li { padding: 8px 13px; border-radius: 999px; background: #e5ebe9; color: #345069; font-size: .86rem; font-weight: 750; }

.notice { padding: 20px 22px; border-left: 4px solid var(--orange); background: #fff; color: #40536b; }

@media (max-width: 1040px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 86px 0 auto;
    display: grid;
    gap: 3px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    opacity: 0;
    visibility: hidden;
    transition: max-height 240ms ease, padding 240ms ease, opacity 180ms ease;
  }
  .menu-open .main-nav { max-height: calc(100vh - 86px); overflow-y: auto; padding: 18px 20px 26px; opacity: 1; visibility: visible; border-color: var(--line); }
  .main-nav a { padding: 14px 16px; font-size: 1rem; }
  .main-nav .nav-cta { margin-top: 8px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; max-width: 640px; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 660px); --radius: 22px; }
  body { font-size: 16px; }
  .brand { font-size: 1rem; }
  .nav-wrap { min-height: 74px; }
  .main-nav { inset: 74px 0 auto; }
  .hero { min-height: 720px; align-items: end; }
  .hero::after { background: linear-gradient(0deg, rgba(8,23,41,.98) 5%, rgba(8,23,41,.85) 55%, rgba(8,23,41,.2) 100%); }
  .hero-image { object-position: 65% center; }
  .hero-content { padding: 210px 0 62px; }
  .page-hero { padding: 78px 0 62px; }
  .section { padding: 76px 0; }
  .section.compact { padding: 58px 0; }
  .intro-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .fact-panel { position: static; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .route-card { min-height: 320px; }
  .band { grid-template-columns: 1fr; padding: 34px 26px; }
  .step { grid-template-columns: 48px 1fr; gap: 14px; padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 26px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .image-frame img { min-height: 300px; }
}

@media (max-width: 460px) {
  h1 { font-size: 2.7rem; }
  .actions { display: grid; }
  .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .hero-proof { display: grid; }
}

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