﻿:root {
  --ink: #17202a;
  --muted: #66727d;
  --line: #e2e0da;
  --surface: #f7f4ef;
  --paper: #fffaf4;
  --accent: #146c5c;
  --accent-dark: #0e5549;
  --sun: #e97825;
  --sky: #2f6797;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 34px;
  border-bottom: 1px solid rgba(34, 39, 43, .12);
  background: rgba(255, 250, 244, .94);
  backdrop-filter: blur(10px);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
}
.brand-word {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.05;
}
.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
}
.top-nav { display: flex; gap: 20px; color: var(--muted); font-size: 14px; }
.top-nav a { text-decoration: none; }
.top-nav a:hover { color: var(--sun); }
.hero {
  display: block;
  min-height: 0;
  padding: 0;
  background: #fff7f0;
  border-bottom: 1px solid var(--line);
}
.hero img {
  display: block;
  width: 100%;
  height: min(38vw, 520px);
  min-height: 245px;
  object-fit: cover;
  object-position: center;
}
.intro-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .85fr);
  gap: 34px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 28px 20px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: 0; }
h2 { margin-bottom: 10px; font-size: 32px; letter-spacing: 0; }
h3 { margin-bottom: 8px; font-size: 21px; letter-spacing: 0; }
.lead { margin-bottom: 0; color: var(--muted); font-size: 19px; }
.section { max-width: 1180px; margin: 0 auto; padding: 56px 28px; }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 20px; }
.section-note { max-width: 430px; color: var(--muted); }
.route-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.route-card {
  min-height: 210px;
  display: flex;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 30, 38, .06);
}
.route-card a { color: var(--accent-dark); font-weight: 800; }
.route-tag { margin-bottom: 8px; color: var(--sky); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.empty-state { grid-column: 1 / -1; }
code { padding: 1px 5px; border-radius: 4px; background: #ece6df; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; border-top: 1px solid var(--line); }
.text-block { color: var(--muted); font-size: 17px; }
.contact-band {
  border-top: 1px solid var(--line);
  background: var(--surface);
  max-width: none;
  padding-left: max(28px, calc((100vw - 1180px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1180px) / 2 + 28px));
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 32px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  background: #fff;
}
@media (max-width: 860px) {
  .site-header { align-items: flex-start; padding: 11px 18px; }
  .brand-word { font-size: 21px; }
  .top-nav { flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
  .hero img { height: 42vw; min-height: 180px; object-position: center; }
  .intro-band { grid-template-columns: 1fr; gap: 14px; padding: 28px 18px 10px; }
  .section { padding: 42px 18px; }
  .section-head, .split, .site-footer { display: block; }
  .route-grid { grid-template-columns: 1fr; }
}
