:root {
  color-scheme: light;
  --ink: #14211f;
  --muted: #52615d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #d8ddd7;
  --accent: #b93f2d;
  --accent-dark: #7e2b22;
  --gold: #c9922e;
  --sky: #2f738f;
  --space: #172434;
  --space-2: #223649;
  --ok: #236b4e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.site-header {
  align-items: center;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-height: 4rem;
  padding: 0.75rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.hero {
  background: var(--space);
  color: #fff;
  display: grid;
  min-height: min(720px, calc(100vh - 4rem));
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(12, 20, 31, 0.88), rgba(12, 20, 31, 0.56), rgba(12, 20, 31, 0.25)),
    var(--hero-image, none) center / cover no-repeat;
  content: "";
  inset: 0;
  position: absolute;
}

.hero.compact {
  min-height: 390px;
}

.hero-content {
  align-self: center;
  max-width: 760px;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  position: relative;
}

.hero p,
.hero li {
  color: rgba(255, 255, 255, 0.86);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.15rem;
}

.lead {
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  max-width: 62ch;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.button {
  align-items: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
  color: #fff;
}

.button.light {
  background: #fff;
  border-color: var(--line);
  color: var(--accent-dark);
}

.notice {
  background: #fff4d8;
  border: 1px solid #e6c876;
  border-radius: 6px;
  color: #4c3b11;
  margin-top: 1.2rem;
  max-width: 64ch;
  padding: 0.85rem 1rem;
}

.band {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
}

.band.alt {
  background: #eef4f1;
}

.content {
  margin: 0 auto;
  max-width: 1120px;
}

.section-head {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.15rem;
}

.card > * + * {
  margin-top: 0.7rem;
}

.status {
  color: var(--ok);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.list {
  margin: 0;
  padding-left: 1.2rem;
}

.list li + li {
  margin-top: 0.45rem;
}

.split {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.route-table {
  border-collapse: collapse;
  width: 100%;
}

.route-table th,
.route-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.route-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.footer {
  background: var(--space);
  color: rgba(255, 255, 255, 0.76);
  padding: 2rem clamp(1rem, 4vw, 4rem);
}

.footer a {
  color: #fff;
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

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

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }

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

  .route-table,
  .route-table tbody,
  .route-table tr,
  .route-table td,
  .route-table th {
    display: block;
  }

  .route-table thead {
    display: none;
  }

  .route-table td {
    padding-left: 0;
    padding-right: 0;
  }
}

