 :root {
  --paper: #f7f4ee;
  --ink: #141a24;
  --muted: #667085;
  --line: #d9d0c3;
  --blue: #226db2;
  --gold: #b9812d;
  --panel: rgba(255,255,255,0.82);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(20, 26, 36, 0.09);
  background: rgba(247, 244, 238, 0.9);
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.brand strong { font-size: 18px; font-weight: 780; white-space: nowrap; }
.brand span { color: var(--muted); font-size: 13px; white-space: nowrap; }
nav { display: flex; gap: 8px; color: #344054; font-size: 14px; }
nav a { padding: 8px 10px; border-radius: 7px; }
nav a:hover, nav a[aria-current="page"] { background: rgba(34, 109, 178, 0.1); }
.stories-page { padding: clamp(24px, 4vw, 56px); }
.stories-hero {
  max-width: 760px;
  margin-bottom: 26px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}
.stories-hero h1, .article h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 830;
}
.stories-hero p {
  color: #344054;
  font-size: 17px;
  line-height: 1.7;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}
.story-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: 170px 1fr;
  border: 1px solid rgba(20, 26, 36, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}
.cover { background: #e3dccd; overflow: hidden; }
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-card-body { padding: 16px; }
.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.story-date, .flight-link time {
  color: #475467;
  font-size: 12px;
  font-weight: 760;
}
.airport-tags, .flight-link {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.airport-tags span, .flight-link span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(34, 109, 178, 0.09);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.story-card h2 {
  margin: 12px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}
.story-card p {
  margin: 0;
  color: #475467;
  font-size: 14px;
  line-height: 1.65;
}
.article-shell {
  display: flex;
  justify-content: center;
  padding: clamp(22px, 5vw, 64px) clamp(16px, 4vw, 42px);
}
.article {
  width: min(1180px, 100%);
}
.article > h1,
.article > .flight-link,
.article > p,
.article > ul,
.article > h2,
.article > h3,
.article > hr {
  width: min(840px, 100%);
  margin-left: auto;
  margin-right: auto;
}
.flight-link {
  margin: 18px auto 28px;
  padding: 12px 0;
  border-top: 1px solid rgba(20,26,36,0.1);
  border-bottom: 1px solid rgba(20,26,36,0.1);
}
.flight-link b {
  margin-right: 6px;
  color: #475467;
  font-size: 12px;
  text-transform: uppercase;
}
.article p, .article li {
  color: #283342;
  font-size: 18px;
  line-height: 1.92;
}
.article h2 {
  margin-top: 34px;
  font-size: 26px;
  line-height: 1.25;
}
.article h3 { margin-top: 28px; font-size: 21px; }
.article figure {
  width: min(920px, 100%);
  margin: 34px auto;
}
.article img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.photo-grid {
  width: min(1120px, 100%);
  margin: 34px auto;
  display: grid;
  gap: 12px;
}
.photo-grid.photos-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.photo-grid.photos-many { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.photo-grid figure {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-grid figcaption {
  display: none;
}
.article figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.article hr {
  border: 0;
  border-top: 1px solid rgba(20,26,36,0.1);
  margin: 30px 0;
}
@media (max-width: 680px) {
  .site-header { flex-direction: column; align-items: flex-start; }
  nav { width: 100%; justify-content: space-between; }
  .story-grid { grid-template-columns: 1fr; }
  .article-shell { padding: 20px 14px 42px; }
  .article h1 { font-size: clamp(34px, 11vw, 48px); }
  .article figure, .photo-grid { margin: 24px auto; }
  .photo-grid.photos-2,
  .photo-grid.photos-many { grid-template-columns: 1fr; }
  .photo-grid img {
    height: auto;
    object-fit: contain;
  }
  .photo-grid figure {
    aspect-ratio: auto;
  }
  .photo-grid figcaption {
    display: block;
  }
}
