:root {
  --teal: #25a186;
  --navy: #173752;
  --ink: #292929;
  --mist: #e5f0ee;
  --line: #d7e4e0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Open Sans", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

a { color: inherit; }

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 4.6rem;
}

.logo {
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--navy);
  font-size: 1.15rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
}

nav a {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover { text-decoration: underline; text-underline-offset: 0.2em; }

.journal {
  color: #fff !important;
  background: var(--teal);
  padding: 0.45rem 0.75rem;
  border-radius: 2px;
}

.journal:hover { text-decoration: none; background: var(--navy); }

.hero {
  position: relative;
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
  min-height: 68vh;
  overflow: hidden;
  background: var(--navy);
}

.hero img {
  width: 100%;
  height: 68vh;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.hero-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.2rem 1.6rem 1.7rem;
  background: linear-gradient(transparent, rgba(23, 55, 82, 0.82));
  color: #fff;
}

.hero-copy p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0.35rem 0 0.9rem;
  max-width: 16ch;
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero-copy a {
  display: inline-block;
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.65rem 0.9rem;
}

.stories {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.1rem 1rem;
}

.stories article:first-child { grid-row: span 2; }

.stories a { display: block; text-decoration: none; color: var(--ink); }

.stories img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: var(--mist);
}

.stories article:first-child img { aspect-ratio: 16 / 14; height: 100%; }

.label {
  margin: 0.75rem 0 0.15rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stories h2 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.stories a:hover h2 { color: var(--teal); }

footer {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.2rem 0 2.5rem;
  border-top: 1px solid var(--line);
  color: #5c6b73;
  font-size: 0.95rem;
}

footer a { color: var(--teal); font-weight: 700; }

footer .foot {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
}

footer nav { gap: 0.4rem 1rem; }

.page, .live {
  width: min(760px, calc(100% - 2.5rem));
  margin: 0 auto 3rem;
}

.live { width: min(1180px, calc(100% - 2.5rem)); }

.page h1, .live h2, .band h2 {
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.page h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.2rem 0 1rem; }

.live h2, .band h2 { font-size: 1.8rem; margin: 0 0 0.4rem; }

.page p, .page li { font-size: 1.05rem; }

.page a { color: var(--teal); font-weight: 700; }

.band {
  width: min(1180px, calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
}

.band p { max-width: 62ch; color: #3d4b53; }

#live-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

#live-posts article {
  border-top: 2px solid var(--teal);
  padding-top: 0.7rem;
}

#live-posts h3 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.3;
}

#live-posts a { text-decoration: none; color: var(--navy); }
#live-posts a:hover { color: var(--teal); }

@media (max-width: 800px) {
  .top { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
  .hero, .hero img { min-height: 0; height: auto; }
  .hero img { height: 52vh; }
  .stories { grid-template-columns: 1fr; }
  .stories article:first-child { grid-row: auto; }
  .stories article:first-child img { aspect-ratio: 16 / 10; height: auto; }
  #live-posts { grid-template-columns: 1fr; }
}
