:root {
  color-scheme: light;
  --ink: #17211d;
  --paper: #f5f4ef;
  --mist: #dce3df;
  --signal: #d84c37;
  --water: #1d6568;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  min-height: 66px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(23, 33, 29, 0.2);
  background: var(--paper);
}

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

nav { display: flex; gap: 24px; }
nav a { font-size: 13px; text-decoration: none; }
nav a:hover { color: var(--signal); }

.hero {
  position: relative;
  min-height: min(72vh, 720px);
  margin: 0;
  display: flex;
  align-items: flex-end;
  background: #263a37 url('/assets/harbour.jpg') center 46% / cover no-repeat;
  overflow: hidden;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 15, 15, 0.42);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(820px, 90vw);
  padding: 0 5vw 8vh;
  color: #fff;
}

.kicker {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .kicker { color: #ffd6cd; }

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
}

.hero-copy > p:last-child {
  max-width: 570px;
  margin: 24px 0 0;
  font-size: 18px;
}

.photo-credit {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.dispatches {
  padding: 72px 5vw 84px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  margin-bottom: 42px;
}

h2 {
  max-width: 740px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
}

.story-grid article {
  min-height: 230px;
  padding: 24px 28px 24px 0;
  border-right: 1px solid rgba(23, 33, 29, 0.25);
}

.story-grid article + article { padding-left: 28px; }
.story-grid article:last-child { border-right: 0; }

.story-number {
  margin: 0 0 30px;
  color: var(--water);
  font-size: 12px;
  font-weight: 700;
}

h3 { font-size: 26px; }
.story-grid article > p:last-child { max-width: 340px; }

.places {
  padding: 70px 5vw;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 9vw;
  align-items: end;
  background: var(--water);
  color: #fff;
}

.places .kicker { color: #f0c8bd; }
.places > p { max-width: 380px; margin: 0; }

footer {
  padding: 24px 5vw;
  display: flex;
  justify-content: space-between;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
}

@media (max-width: 700px) {
  .site-header { align-items: flex-start; padding-top: 18px; padding-bottom: 18px; }
  nav { gap: 12px; }
  nav a:nth-child(2) { display: none; }
  .hero { min-height: 68vh; }
  .hero-copy { padding-bottom: 54px; }
  .section-heading, .places { grid-template-columns: 1fr; gap: 24px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-grid article, .story-grid article + article {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 33, 29, 0.25);
  }
  .story-number { margin-bottom: 12px; }
}
