:root {
  color-scheme: light;
  --bg: #f0ede4;
  --paper: #fffdf8;
  --ink: #191919;
  --muted: #625b53;
  --line: #cec2b0;
  --accent: #111111;
  --accent-soft: #e7e0d4;
  --brand-red: #7b1818;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    linear-gradient(180deg, #f7f4ed 0, #f2ece2 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.masthead,
.nav-bar,
.site-footer,
.card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 30px rgba(25, 25, 25, 0.06);
}

.masthead,
.site-footer {
  padding: 1.25rem 1.5rem;
}

.masthead {
  display: grid;
  gap: 0.85rem;
}

.masthead-brand-row {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-decoration: none;
  gap: 0.45rem;
}

.masthead-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.45rem;
}

.masthead-word {
  display: flex;
  align-items: baseline;
  font-family: "Book Antiqua", Palatino, "Palatino Linotype", Georgia, serif;
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 0.03em;
  font-weight: 700;
  white-space: nowrap;
}

.masthead-left,
.masthead-center,
.masthead-right {
  font-size: clamp(1.1rem, 2.7vw, 2.2rem);
  color: #1c1c1c;
}

.masthead-initial {
  font-size: 1.8em;
  line-height: 0.8;
  letter-spacing: 0.01em;
}

.masthead-rest {
  display: inline-block;
}

.masthead-image {
  width: clamp(110px, 13vw, 150px);
  height: auto;
  display: block;
}

.masthead-subline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 1rem;
}

.masthead-meta,
.contact-card {
  font-size: 0.95rem;
}

.meta-line,
.contact-card p {
  margin: 0.2rem 0;
}

.contact-card {
  text-align: right;
}

.masthead-meta {
  text-align: left;
}

.tagline,
.story-meta,
.site-footer,
.nav {
  color: var(--muted);
}

.tagline {
  margin: 0.4rem 0 0;
  text-align: center;
  font-size: 0.98rem;
  align-self: center;
}

.nav-bar {
  margin-top: 0.9rem;
  background: #111;
  border-color: #111;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
}

.nav a {
  text-decoration: none;
  color: #f8f4ee;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.15rem;
}

.nav a[aria-current="page"] {
  color: #fff;
  border-color: #f2c26b;
}

.content-grid,
.content-single {
  margin-top: 1.5rem;
}

.content-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
}

.frontpage-banner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
}

.frontpage,
.frontpage-grid {
  display: grid;
  gap: 1.5rem;
}

.frontpage-grid {
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 0.95fr);
  align-items: start;
}

.frontpage-main,
.frontpage-rail {
  display: grid;
  gap: 1.5rem;
}

.frontpage-note {
  max-width: 34ch;
  color: var(--muted);
}

.frontpage-banner h1,
.content-single h1 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
  margin: 0;
  max-width: 13ch;
}

.summary {
  font-size: 1.2rem;
  max-width: 55ch;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.section-heading h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.story-card h3,
.story-card p {
  margin-top: 0.5rem;
}

.story-card {
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.story-photo-wrap {
  margin-bottom: 1rem;
  background: #ebe4d6;
}

.story-photo {
  display: block;
  width: 100%;
  height: auto;
}

.lead-photo {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.grid-photo {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-photo {
  max-height: 560px;
  object-fit: contain;
  background: #f4eee5;
}

.extra-photo-wrap {
  margin-top: 1.5rem;
}

.story-card h3 a,
.story-list a {
  text-decoration: none;
}

.story-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.story-list li {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
}

.story-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.richtext {
  font-size: 1.05rem;
  line-height: 1.75;
}

.richtext p {
  margin: 1rem 0;
}

.list-summary {
  margin: 0.4rem 0 0;
  color: var(--muted);
  max-width: 60ch;
}

.lead-story h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.story-link {
  font-weight: 700;
  text-decoration: none;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chip {
  display: inline-block;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--accent-soft);
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chip-inline {
  margin-left: 0.4rem;
}

.article-shell {
  max-width: 860px;
}

.section-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.section-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.section-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.section-list a {
  text-decoration: none;
}

.site-footer {
  margin-top: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .masthead,
  .site-footer,
  .story-list li {
    display: block;
  }

  .masthead-subline,
  .frontpage-banner,
  .frontpage-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .masthead-brand-row {
    padding-bottom: 1rem;
  }

  .contact-card {
    text-align: center;
  }

  .masthead-meta,
  .tagline {
    text-align: center;
  }

  .brand-lockup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.5rem;
  }

  .masthead-left,
  .masthead-right {
    font-size: clamp(0.9rem, 4vw, 1.25rem);
  }

  .masthead-left {
    justify-content: flex-end;
    text-align: right;
  }

  .masthead-right {
    justify-content: flex-start;
    text-align: left;
  }

  .masthead-image {
    width: clamp(84px, 22vw, 120px);
  }

  .nav {
    margin-top: 1rem;
  }

  .story-list span {
    display: block;
    margin-top: 0.3rem;
  }
}
