:root {
  color-scheme: light;
  --ink: #15171a;
  --muted: #5d6673;
  --line: #d9dee5;
  --paper: #fafafa;
  --panel: #ffffff;
  --accent: #0b6b75;
  --accent-dark: #084d54;
  --gold: #b6832e;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(21, 23, 26, 0.1);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  color: var(--muted);
  font-size: 15px;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 6vw, 78px) clamp(18px, 5vw, 72px) clamp(24px, 5vw, 60px);
  min-height: calc(100vh - 86px);
}

.hero h1,
.page h1 {
  margin: 0;
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.kicker,
.tag {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  font-weight: 700;
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.hero-media {
  margin: 0;
  height: min(68vh, 620px);
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(28, 34, 42, 0.18);
}

.section-heading,
.page {
  padding: clamp(32px, 6vw, 76px) clamp(18px, 5vw, 72px) 20px;
}

.section-heading h2,
.page h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(40px, 6vw, 76px);
}

.story-card,
.video-card,
.list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
}

.story-card img {
  aspect-ratio: 16 / 10;
}

.story-card div,
.video-card,
.list article {
  padding: 20px;
}

.story-card h3,
.video-card h2,
.list h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.12;
}

.story-card p:last-child,
.video-card p,
.list p:last-child,
.page.narrow p {
  color: var(--muted);
  line-height: 1.6;
}

.lead-card {
  grid-column: span 1;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef4f2;
}

.ticker span {
  border: 1px solid rgba(11, 107, 117, 0.25);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--accent-dark);
  font-weight: 700;
}

.list,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.video-card img {
  aspect-ratio: 16 / 9;
  margin: -20px -20px 18px;
  width: calc(100% + 40px);
  height: auto;
}

.narrow {
  max-width: 860px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-media {
    height: 380px;
  }

  .story-grid,
  .list,
  .video-grid {
    grid-template-columns: 1fr;
  }
}
