/* ===== Tokens ===== */
:root {
  --navy: #0E1A2B;
  --navy-panel: #16263B;
  --ivory: #F2ECE1;
  --crimson: #B3122E;
  --crimson-bright: #D4213F;
  --brass: #B08D46;
  --frost: #7C95A8;
  --line: rgba(242, 236, 225, 0.14);

  --font-display: "Fraunces", serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

h1, h2 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ===== Top bar ===== */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.brand-word {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.topnav { display: flex; gap: 32px; }
.topnav a {
  font-size: 0.95rem;
  color: var(--ivory);
  opacity: 0.82;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.topnav a:hover { opacity: 1; border-color: var(--brass); }

/* ===== Hero ===== */
.hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px 90px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--brass);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.08;
  max-width: 12ch;
}

.hero-sub {
  max-width: 46ch;
  margin: 26px 0 34px;
  color: var(--ivory);
  opacity: 0.82;
  font-size: 1.05rem;
}

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

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--crimson); color: var(--ivory); }
.btn-primary:hover { background: var(--crimson-bright); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--line); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--brass); }

/* ===== Hero route map / globe ===== */
.hero-map { width: 100%; position: relative; display: flex; justify-content: center; }
.route-svg { width: 100%; height: auto; }

#globe-canvas { cursor: grab; touch-action: none; border-radius: 50%; }
#globe-canvas:active { cursor: grabbing; }

.globe-hint {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: var(--frost);
  opacity: 0.7;
  margin: 0;
}

.tracker-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ivory);
  opacity: 0.85;
}

.tracker-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7fd67f;
  box-shadow: 0 0 0 0 rgba(127,214,127,0.6);
  animation: pulse-dot 1.8s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(127,214,127,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(127,214,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,214,127,0); }
}

.tracker-count strong { color: var(--brass); font-family: var(--font-mono); }
.tracker-sep { opacity: 0.4; }
.tracker-ticker {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--frost);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (prefers-reduced-motion: reduce) {
  .tracker-live-dot { animation: none; }
}

@media (max-width: 560px) {
  .tracker-strip { flex-wrap: wrap; padding-left: 24px; padding-right: 24px; }
}

.hub-dot { fill: var(--frost); }
.hub-main { fill: var(--brass); }

.hub-label {
  font-family: var(--font-mono);
  font-size: 11px;
  fill: var(--ivory);
  opacity: 0.75;
}
.hub-label-main { fill: var(--brass); opacity: 1; font-weight: 500; }

.route-arc {
  fill: none;
  stroke: var(--crimson-bright);
  stroke-width: 1.6;
  stroke-linecap: round;
  opacity: 0.85;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw-route 1.4s ease-out forwards;
  animation-delay: var(--d);
}

@keyframes draw-route {
  to { stroke-dashoffset: 0; }
}

/* ===== Stats strip ===== */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.stats p {
  margin: 0;
  padding: 30px 48px;
  font-size: 0.95rem;
  color: var(--ivory);
  opacity: 0.8;
  border-right: 1px solid var(--line);
}
.stats p:last-child { border-right: none; }
.stats span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ivory);
  opacity: 1;
  margin-bottom: 6px;
}

/* ===== Departure board section ===== */
.board-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
}
.board-intro { max-width: 52ch; margin-bottom: 40px; }
.board-intro h2 { font-size: 2rem; margin-bottom: 14px; }
.board-intro p { color: var(--ivory); opacity: 0.78; }

.board {
  background: var(--navy-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.board-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.6fr 1.6fr;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  align-items: center;
}
.board-row:last-child { border-bottom: none; }

.board-head {
  color: var(--frost);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 14px 24px;
}

.flip {
  font-family: var(--font-mono);
  color: var(--brass);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 0.95rem;
  color: var(--brass);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.text-link:hover { border-color: var(--brass); }

/* ===== Fleet teaser ===== */
.fleet-teaser {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 100px;
}
.fleet-teaser h2 { font-size: 2rem; max-width: 20ch; }
.fleet-sub { max-width: 52ch; color: var(--ivory); opacity: 0.78; margin: 14px 0 40px; }

.tag-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tag {
  background: var(--navy-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--crimson);
  border-radius: 2px;
  padding: 20px;
}

.tag-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--frost);
  margin-bottom: 18px;
}

.tag-mid {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brass);
  margin-bottom: 14px;
}

.tag-bottom { font-size: 0.8rem; color: var(--ivory); opacity: 0.7; }

/* ===== Heritage ===== */
.heritage {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px 120px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.wing-svg { width: 100%; max-width: 220px; }
.wing-svg path { fill: none; stroke: var(--brass); stroke-width: 1.4; opacity: 0.7; }

.logo-plaque {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
}

.heritage-copy h2 { font-size: 1.9rem; max-width: 16ch; margin-bottom: 20px; }
.heritage-copy p { max-width: 60ch; color: var(--ivory); opacity: 0.82; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 48px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-word { font-family: var(--font-display); font-size: 1.1rem; margin: 0 0 8px; }
.footer-tag { font-size: 0.85rem; opacity: 0.65; margin: 0; }
.footer-head {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--frost);
  margin: 0 0 12px;
}
.footer-cols a, .footer-plain {
  display: block;
  font-size: 0.88rem;
  opacity: 0.78;
  margin-bottom: 8px;
}
.footer-cols a:hover { opacity: 1; }

.footer-fine {
  font-size: 0.78rem;
  opacity: 0.5;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 20px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats p { border-right: 1px solid var(--line); }
  .stats p:nth-child(2n) { border-right: none; }
  .board-row { grid-template-columns: 80px 1fr 1fr; font-size: 0.82rem; }
  .board-row span:nth-child(4) { display: none; }
  .board-head span:nth-child(4) { display: none; }
  .tag-row { grid-template-columns: repeat(2, 1fr); }
  .heritage { grid-template-columns: 1fr; }
  .wing-svg { max-width: 140px; }
  .logo-plaque { max-width: 220px; }
  .footer-cols { grid-template-columns: 1fr; }
  .topbar { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 560px) {
  .topbar, .hero, .board-section, .fleet-teaser, .heritage, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .tag-row { grid-template-columns: 1fr; }
  .topnav { gap: 20px; flex-wrap: wrap; }
}

/* ===== Shared page-level hero (non-home pages) ===== */
.topnav a.is-active { opacity: 1; border-color: var(--brass); }

.page-hero {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 48px 50px;
}
.page-hero h1 {
  font-size: clamp(2.1rem, 3.6vw, 2.8rem);
  margin: 16px 0 18px;
}
.page-hero-sub { max-width: 60ch; color: var(--ivory); opacity: 0.8; font-size: 1.02rem; }

/* ===== Fleet page ===== */
.fleet-stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}
.fleet-stats p {
  margin: 0;
  padding: 26px 48px;
  font-size: 0.9rem;
  opacity: 0.8;
  border-right: 1px solid var(--line);
}
.fleet-stats p:last-child { border-right: none; }
.fleet-stats span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 4px;
}

.fleet-controls {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 48px 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.control-group { display: flex; flex-direction: column; gap: 6px; min-width: 160px; }
.control-group label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--frost);
}
.control-group input, .control-group select {
  background: var(--navy-panel);
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 10px 12px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.control-group input:focus, .control-group select:focus {
  outline: none;
  border-color: var(--brass);
}

.btn-small { padding: 10px 18px; font-size: 0.85rem; height: fit-content; }

.fleet-table-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 100px;
}

.fleet-table-scroll {
  max-height: 640px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.fleet-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.fleet-table thead th {
  position: sticky;
  top: 0;
  background: var(--navy-panel);
  text-align: left;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--frost);
  border-bottom: 1px solid var(--line);
  z-index: 1;
}

.fleet-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}
.fleet-table tbody tr:hover { background: rgba(176, 141, 70, 0.06); }
.fleet-table tbody tr:last-child td { border-bottom: none; }

.mono { font-family: var(--font-mono); color: var(--brass); }
.nickname-cell { font-family: var(--font-display); color: var(--ivory); }

.branch-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid var(--line);
  color: var(--ivory);
  opacity: 0.85;
}
.branch-PSL { border-color: var(--crimson); }
.branch-PSA { border-color: var(--frost); }
.branch-PSO { border-color: var(--brass); }
.branch-PSC { border-color: #8a8a8a; }
.branch-PSH { border-color: var(--brass); }
.branch-PSX { border-color: var(--frost); }

.no-results {
  text-align: center;
  padding: 40px;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .fleet-stats { grid-template-columns: repeat(2, 1fr); }
  .fleet-stats p:nth-child(2n) { border-right: none; }
  .fleet-table-scroll { max-height: 70vh; }
  .fleet-table { font-size: 0.8rem; }
  .fleet-table thead th:nth-child(4), .fleet-table tbody td:nth-child(4) { display: none; }
}

@media (max-width: 560px) {
  .page-hero, .fleet-controls, .fleet-table-wrap { padding-left: 24px; padding-right: 24px; }
  .fleet-table thead th:nth-child(6), .fleet-table tbody td:nth-child(6) { display: none; }
}

/* ===== Network page ===== */
.season-toggle-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 48px 30px;
}

.season-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.season-btn {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 24px;
  background: transparent;
  color: var(--ivory);
  opacity: 0.65;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.season-btn + .season-btn { border-left: 1px solid var(--line); }
.season-btn.is-active {
  background: var(--crimson);
  opacity: 1;
}
.season-btn:not(.is-active):hover { opacity: 0.9; background: rgba(242,236,225,0.06); }

.season-caption { color: var(--ivory); opacity: 0.72; font-size: 0.92rem; max-width: 60ch; }

.network-stats { margin-top: 0; }

.network-table th, .network-table td { white-space: nowrap; }
.days-head { text-align: center; font-family: var(--font-mono); letter-spacing: 2px; }

.day-cell { padding: 0 !important; text-align: center; width: 20px; }
.day-cell::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.day-cell.day-on::after { background: var(--crimson-bright); }

.center { text-align: center; }
.strong { font-weight: 600; color: var(--brass); }

.change-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.chg-boost { border-color: #6fae6f; color: #9fd39f; }
.chg-reduce { border-color: #c98a4b; color: #e0ab72; }
.chg-suspend { border-color: #c96a6a; color: #e29494; }
.chg-same, .chg-base { color: var(--frost); }

@media (max-width: 900px) {
  .network-table .days-head, .network-table .day-cell { display: none; }
}

/* ===== Hubs page ===== */
.hub-legend {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 30px;
  display: flex;
  gap: 28px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  opacity: 0.75;
}
.legend-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.legend-main { background: var(--crimson-bright); }
.legend-secondary { background: var(--frost); }
.legend-other { background: var(--line); }

.hub-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.hub-card {
  background: var(--navy-panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
  color: var(--ivory);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.15s ease, transform 0.15s ease;
  border-top: 3px solid var(--line);
}
.hub-card:hover { transform: translateY(-2px); }
.hub-card.is-selected { border-color: var(--brass); }

.hub-card.tier-main.region-europe { border-top-color: var(--crimson-bright); }
.hub-card.tier-main.region-na { border-top-color: var(--frost); }
.hub-card.tier-main.region-asia { border-top-color: var(--brass); }
.hub-card.tier-main.region-oceania { border-top-color: #C97C2C; }
.hub-card.tier-secondary { border-top-color: var(--frost); opacity: 0.92; }
.hub-card.tier-other { opacity: 0.8; }

.hub-card-icao { font-family: var(--font-mono); font-size: 1.1rem; color: var(--brass); }
.hub-card-city { font-family: var(--font-display); font-size: 1.15rem; }
.hub-card-role { font-size: 0.78rem; opacity: 0.6; }
.hub-card-count { font-size: 0.78rem; opacity: 0.5; margin-top: 4px; }

/* ===== Hub detail panel ===== */
.hub-detail {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 120px;
  border-top: 1px solid var(--line);
}

.detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 40px;
  margin-bottom: 40px;
}
.detail-head h2 { font-size: 2.2rem; margin-top: 8px; }

.detail-meta { display: flex; gap: 24px; font-size: 0.85rem; opacity: 0.75; }
.detail-meta strong { color: var(--brass); font-family: var(--font-display); font-size: 1rem; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.detail-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.stationed-row {
  display: grid;
  grid-template-columns: 110px 1fr 30px;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.stationed-type { opacity: 0.85; }
.stationed-bar-track { background: var(--line); border-radius: 2px; height: 6px; overflow: hidden; }
.stationed-bar { background: var(--crimson-bright); height: 100%; }
.stationed-count { text-align: right; font-family: var(--font-mono); color: var(--brass); }

.route-list { max-height: 420px; overflow-y: auto; }
.route-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.route-line-mid { opacity: 0.75; }
.route-line-freq { opacity: 0.55; font-size: 0.78rem; white-space: nowrap; }
.route-empty { font-size: 0.88rem; opacity: 0.6; }

.detail-foot {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.detail-foot p { margin: 0 0 10px; opacity: 0.8; }
.detail-notes { max-width: 80ch; opacity: 0.65 !important; }

@media (max-width: 900px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 560px) {
  .hub-legend, .hub-grid, .hub-detail { padding-left: 24px; padding-right: 24px; }
  .hub-grid { grid-template-columns: 1fr; }
}

/* ===== About page ===== */
.about-hero h1 { max-width: 22ch; }

.timeline-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 48px 100px;
}

.timeline { position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 108px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 40px;
  position: relative;
  padding: 26px 0;
}

.timeline-row::after {
  content: "";
  position: absolute;
  left: 104px;
  top: 32px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--crimson-bright);
  border: 2px solid var(--navy);
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--brass);
  padding-top: 2px;
  text-align: right;
}

.timeline-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 10px;
}
.timeline-body p { max-width: 62ch; opacity: 0.82; font-size: 0.96rem; margin: 0; }
.timeline-body em { color: var(--brass); font-style: normal; }

.timeline-row-muted .timeline-year, .timeline-row-muted h3 { opacity: 0.55; }
.timeline-row-muted::after { background: var(--frost); }
.timeline-row-muted p { opacity: 0.6; }

.timeline-row-highlight { background: rgba(179, 18, 46, 0.07); border-radius: 6px; margin: 0 -24px; padding: 26px 24px; }
.timeline-row-highlight::after { background: var(--brass); width: 12px; height: 12px; left: 102.5px; }
.timeline-row-highlight .timeline-year { color: var(--ivory); font-weight: 600; }

.timeline-row-today::after { background: var(--brass); box-shadow: 0 0 0 4px rgba(176,141,70,0.2); }
.timeline-row-today .timeline-year { color: var(--ivory); font-weight: 600; }

/* ===== Phoenix spotlight ===== */
.phoenix-spotlight {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 110px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.phoenix-copy h2 { font-size: 1.9rem; max-width: 18ch; margin: 14px 0 22px; }
.phoenix-copy p { max-width: 62ch; opacity: 0.82; margin-bottom: 16px; }
.phoenix-image { justify-self: center; }

/* ===== Winged hussars / nicknames ===== */
.hussars-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 130px;
  border-top: 1px solid var(--line);
}
.hussars-intro { max-width: 72ch; padding-top: 50px; margin-bottom: 44px; }
.hussars-intro h2 { font-size: 1.9rem; margin: 14px 0 20px; }
.hussars-intro p { opacity: 0.82; }

.nickname-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.nickname-item {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nickname-pl { font-family: var(--font-display); font-size: 1.2rem; color: var(--brass); }
.nickname-en { font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 900px) {
  .timeline::before { left: 68px; }
  .timeline-row { grid-template-columns: 60px 1fr; gap: 24px; }
  .timeline-row::after { left: 64px; }
  .timeline-row-highlight::after { left: 62.5px; }
  .phoenix-spotlight { grid-template-columns: 1fr; }
  .phoenix-image { order: -1; }
  .nickname-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .timeline-section, .phoenix-spotlight, .hussars-section { padding-left: 24px; padding-right: 24px; }
  .timeline::before { left: 50px; }
  .timeline-row { grid-template-columns: 44px 1fr; gap: 16px; }
  .timeline-row::after { left: 46px; }
  .timeline-row-highlight { margin: 0 -12px; padding: 22px 12px; }
  .timeline-row-highlight::after { left: 44.5px; }
  .timeline-year { font-size: 0.8rem; }
  .nickname-grid { grid-template-columns: 1fr; }
}
