:root {
  --ink: #101820;
  --coal: #171d24;
  --muted: #5b6570;
  --line: #d9d2c3;
  --paper: #fffaf1;
  --wash: #f3ead8;
  --gold: #c9972b;
  --oxide: #a6472d;
  --green: #253d32;
  --blue: #203645;
  --white: #fffdf8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Arial", "Helvetica Neue", sans-serif;
  line-height: 1.58;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.topline {
  align-items: center;
  background: var(--ink);
  color: #efe4cc;
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  padding: 6px clamp(16px, 4vw, 48px);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.topline span { margin-right: auto; }
.topline a { color: #efe4cc; }

.masthead {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 22px clamp(16px, 4vw, 48px) 18px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 290px;
}

.brand-mark {
  display: grid;
  height: 58px;
  place-items: center;
  width: 58px;
}

.brand-mark svg {
  height: 58px;
  width: 58px;
}

.brand-mark rect { fill: var(--ink); }
.brand-mark path:nth-of-type(1) { fill: var(--gold); }
.brand-mark path:nth-of-type(2) { fill: #e8dcc3; }
.brand-mark path:nth-of-type(3) { stroke: var(--ink); stroke-width: 4; }

.brand-type strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 0.95;
}

.brand-type em {
  color: var(--muted);
  display: block;
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-top: 6px;
  text-transform: uppercase;
}

.search,
.search-page,
.newsletter form {
  display: flex;
}

.search { width: min(430px, 40vw); }

.search input,
.search-page input,
.newsletter input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px 0 0 3px;
  color: var(--ink);
  font: inherit;
  min-width: 0;
  padding: 11px 12px;
  width: 100%;
}

.search button,
.search-page button,
.newsletter button {
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 0 3px 3px 0;
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  padding: 11px 14px;
}

.nav {
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.nav a {
  border-right: 1px solid var(--line);
  color: #313942;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 12px 13px;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav a:first-child { border-left: 1px solid var(--line); }
.nav a:hover { background: var(--wash); }

main {
  padding: 28px clamp(16px, 4vw, 48px) 64px;
}

.hero-news {
  border-bottom: 4px solid var(--ink);
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.72fr) 330px;
  margin-bottom: 34px;
  padding-bottom: 30px;
}

.lead-story {
  background: var(--ink);
  color: var(--white);
  min-height: 470px;
  padding: clamp(24px, 4vw, 44px);
}

.lead-story h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  letter-spacing: 0;
  line-height: 0.93;
  margin: 10px 0 18px;
}

.lead-story p {
  color: #eadfca;
  font-size: 1.13rem;
  max-width: 720px;
}

.lead-image img {
  height: 470px;
  object-fit: cover;
  width: 100%;
}

.top-grid {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

h1, h2, h3 { line-height: 1.12; }

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  margin: 0 0 16px;
}

.kicker {
  color: var(--oxide);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.09em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cards {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.cards.compact {
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.card {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 150px minmax(0, 1fr);
  padding-top: 16px;
}

.card .thumb img {
  aspect-ratio: 4 / 3;
  background: var(--wash);
  object-fit: cover;
  width: 100%;
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  margin: 0 0 7px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card.mini {
  grid-template-columns: 1fr;
}

.card.mini .thumb { display: none; }

.card.wide {
  grid-column: span 2;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
}

.card.wide h3 { font-size: 2rem; }

.meta,
.article-meta {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 800;
  gap: 8px;
  margin-top: 10px;
}

.meta a {
  background: var(--wash);
  border-radius: 999px;
  padding: 3px 8px;
}

.latest-row {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 1fr) 340px;
  margin-bottom: 34px;
}

.newsletter {
  align-self: start;
  background: var(--green);
  color: var(--white);
  padding: 24px;
}

.newsletter p { color: #dce9de; }
.newsletter .kicker { color: var(--gold); }
.newsletter button { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.section-stack {
  display: grid;
  gap: 30px;
}

.home-block {
  border-top: 4px solid var(--ink);
  padding-top: 18px;
}

.block-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.block-head a {
  border-bottom: 2px solid var(--gold);
  font-weight: 900;
}

.article {
  margin: 0 auto;
  max-width: 880px;
}

.article h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 6px 0 14px;
}

.dek {
  color: #3d4650;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  line-height: 1.35;
}

.article-image {
  border-top: 1px solid var(--line);
  margin: 28px 0 28px;
  padding-top: 14px;
}

.article-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

figcaption {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 8px;
}

.article p {
  font-size: 1.08rem;
  margin: 0 0 18px;
}

.pullquote {
  border-left: 5px solid var(--gold);
  color: var(--ink);
  float: right;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.18;
  margin: 6px 0 18px 26px;
  max-width: 330px;
  padding-left: 18px;
}

.source-notes {
  background: var(--wash);
  border-top: 4px solid var(--ink);
  margin-top: 34px;
  padding: 18px 20px;
}

.source-notes h2 {
  font-size: 1.25rem;
}

.source-notes ul {
  margin: 0;
  padding-left: 20px;
}

.source-notes li {
  margin: 9px 0;
}

.source-notes a {
  font-weight: 900;
  text-decoration: underline;
}

.source-notes span {
  color: var(--muted);
  display: block;
  font-size: 0.92rem;
}

.related {
  border-top: 1px solid var(--line);
  margin-top: 42px;
  padding-top: 22px;
}

.listing h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin: 0 0 8px;
}

.section-dek {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 24px;
}

.section-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-list {
  border-top: 1px solid var(--line);
}

.archive-list a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 130px minmax(0, 1fr) 220px;
  padding: 14px 0;
}

.archive-list time,
.archive-list span {
  color: var(--muted);
  font-size: 0.9rem;
}

.search-panel { max-width: 980px; }
.search-page { margin: 16px 0 26px; max-width: 720px; }

.footer {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 30px clamp(16px, 4vw, 48px);
}

.footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.footer p {
  color: #d8c9ab;
  margin: 8px 0 0;
  max-width: 760px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: #f3ead8;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .hero-news,
  .latest-row {
    grid-template-columns: 1fr;
  }

  .lead-story { min-height: 0; }
  .lead-image img { height: 330px; }
  .top-grid { border-left: 0; padding-left: 0; }
  .section-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .topline {
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .topline span {
    flex-basis: 100%;
    margin: 0;
  }

  .masthead {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .brand { min-width: 0; }
  .brand-mark,
  .brand-mark svg {
    height: 48px;
    width: 48px;
  }

  .search { width: 100%; }
  .nav a { font-size: 0.76rem; padding: 10px; }
  main { padding-top: 20px; }

  .lead-story {
    padding: 24px;
  }

  .lead-story h1 {
    font-size: 2.45rem;
  }

  .lead-image img { height: 230px; }
  .cards,
  .cards.compact,
  .section-cards {
    grid-template-columns: 1fr;
  }

  .card,
  .card.wide {
    grid-column: auto;
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .card.wide h3 { font-size: 1.22rem; }

  .pullquote {
    float: none;
    margin: 8px 0 20px;
    max-width: none;
  }

  .archive-list a {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
