:root {
  --ink: #241b16;
  --muted: #75665d;
  --paper: #f7f0df;
  --paper-deep: #eadfc9;
  --red: #a62f25;
  --red-dark: #711c17;
  --green: #3d4d39;
  --line: #c9bba2;
  --white: #fffaf0;
  --shadow: 0 18px 48px rgba(64, 39, 27, 0.14);
  --content: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.27;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(91, 59, 38, 0.035) 4px);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: rgba(166, 47, 37, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(166, 47, 37, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red-dark);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-top: 7px solid var(--red);
  background: rgba(247, 240, 223, 0.96);
}

.utility-row,
.masthead,
.section-inner,
.site-footer-inner,
.article-shell,
.category-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.utility-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.utility-row p {
  margin: 0;
}

.search-open {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.15rem;
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 24px;
  padding: 18px 0 15px;
}

.brand {
  grid-column: 2;
  text-align: center;
  text-decoration: none;
}

.brand-name {
  display: block;
  color: var(--red-dark);
  font-size: clamp(2.6rem, 6vw, 5.25rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: lowercase;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--red);
}

.edition-note {
  align-self: center;
  max-width: 180px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.main-nav {
  border-block: 1px solid var(--ink);
}

.main-nav ul {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 43px;
  margin: 0 auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 64px);
  list-style: none;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a[aria-current="page"] {
  color: var(--red);
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--red-dark);
}

.ticker-inner {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 38px;
  margin-inline: auto;
  align-items: center;
  gap: 18px;
  font-size: 0.8rem;
}

.ticker-label {
  flex: 0 0 auto;
  padding-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ticker a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
}

.eyebrow,
.kicker {
  color: var(--red);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage-lead {
  padding: 26px 0 40px;
  border-bottom: 1px solid var(--ink);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.65fr);
  gap: 34px;
}

.lead-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
  grid-template-rows: auto 1fr;
  gap: 20px 26px;
}

.lead-story figure {
  grid-row: 1 / 3;
  margin: 0;
}

.lead-story img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.lead-copy {
  align-self: end;
}

.lead-copy h1 {
  max-width: 12ch;
  margin: 8px 0 16px;
  font-size: clamp(2.35rem, 4.8vw, 4.55rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead-copy p {
  margin: 0 0 16px;
  color: #574840;
  font-size: 1.02rem;
}

.byline {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: italic;
}

.read-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--red-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.side-stories {
  display: grid;
  align-content: start;
  border-top: 5px solid var(--red);
}

.side-story {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.side-story img {
  width: 108px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.side-story h2 {
  margin: 4px 0 7px;
  font-size: 1.28rem;
  font-weight: 400;
  line-height: 1.12;
}

.side-story p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.section-band {
  padding: 38px 0 46px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 3px double var(--ink);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.section-heading a {
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.story-ledger {
  counter-reset: ledger;
}

.ledger-row {
  counter-increment: ledger;
  display: grid;
  grid-template-columns: 48px minmax(240px, 0.85fr) minmax(0, 1.35fr) 200px;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.ledger-row::before {
  content: "0" counter(ledger);
  align-self: start;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
}

.ledger-row h3 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.ledger-row p {
  margin: 0;
  color: #625248;
  font-size: 0.96rem;
}

.ledger-row img {
  width: 200px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.manifesto-band {
  color: var(--white);
  background: var(--green);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  padding-block: 42px;
}

.manifesto-inner h2 {
  margin: 0;
  color: #f4d6b7;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.manifesto-inner p {
  max-width: 62ch;
  margin: 0;
  font-size: 1.05rem;
}

.category-shell {
  padding: 34px 0 64px;
}

.category-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: end;
  padding: 26px 0 30px;
  border-bottom: 5px solid var(--red);
}

.category-intro h1 {
  max-width: 12ch;
  margin: 6px 0 0;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 400;
  line-height: 0.94;
}

.category-intro p {
  margin: 0;
  color: #5e4f46;
  font-size: 1.08rem;
}

.category-list .ledger-row {
  grid-template-columns: 48px minmax(240px, 0.9fr) minmax(0, 1.2fr) 260px;
  padding-block: 28px;
}

.category-list .ledger-row img {
  width: 260px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 760px) minmax(170px, 0.35fr);
  gap: 34px;
  padding: 34px 0 70px;
}

.article-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 40px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ink);
}

.article-header-copy {
  padding-top: 18px;
  border-top: 5px solid var(--red);
}

.article-header h1 {
  margin: 10px 0 18px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.96;
}

.article-deck {
  margin: 0 0 20px;
  color: #5b4a40;
  font-size: 1.18rem;
  line-height: 1.45;
}

.article-header figure {
  margin: 0;
}

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

.article-header figcaption {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: italic;
}

.article-rail {
  grid-column: 1;
  align-self: start;
  position: sticky;
  top: 20px;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.article-rail h2,
.related-rail h2 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-rail ul,
.related-rail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-rail li,
.related-rail li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.83rem;
  line-height: 1.3;
}

.article-rail a,
.related-rail a {
  text-decoration: none;
}

.article-body {
  grid-column: 2;
  min-width: 0;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.1em 0 0;
  color: var(--red);
  font-size: 4.5rem;
  line-height: 0.72;
}

.article-body p {
  margin: 0 0 1.2em;
}

.article-body h2 {
  margin: 1.7em 0 0.55em;
  padding-top: 0.5em;
  border-top: 3px double var(--line);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.article-body h3 {
  margin: 1.5em 0 0.45em;
  color: var(--red-dark);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
}

.article-body h4 {
  margin: 1.4em 0 0.35em;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-body ul,
.article-body ol {
  margin: 0 0 1.35em;
  padding-left: 1.25em;
}

.article-body li {
  margin-bottom: 0.45em;
  padding-left: 0.25em;
}

.article-body blockquote {
  margin: 2em 0;
  padding: 18px 0 18px 24px;
  color: var(--red-dark);
  border-left: 5px solid var(--red);
  font-size: 1.35rem;
  line-height: 1.35;
}

.tip-box {
  margin: 2em 0;
  padding: 20px 24px;
  background: var(--paper-deep);
  border-block: 1px solid var(--line);
}

.tip-box strong {
  color: var(--red-dark);
}

.related-rail {
  grid-column: 3;
  align-self: start;
  padding-top: 14px;
  border-top: 1px solid var(--ink);
}

.site-footer {
  color: var(--white);
  background: var(--red-dark);
  border-top: 8px solid var(--ink);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 38px 0;
}

.footer-brand {
  color: #f8dfc4;
  font-size: 2.8rem;
  line-height: 1;
}

.site-footer p {
  max-width: 50ch;
  margin: 8px 0 0;
  color: #ead8ca;
  font-size: 0.86rem;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
}

.search-dialog {
  width: min(680px, calc(100% - 28px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.search-dialog::backdrop {
  background: rgba(36, 27, 22, 0.72);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.search-head h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 400;
}

.search-close {
  width: 36px;
  height: 36px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 20px;
}

.search-form input {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 0;
}

.search-form button {
  padding: 10px 17px;
  color: var(--white);
  background: var(--red-dark);
  border: 1px solid var(--red-dark);
  border-radius: 0;
  cursor: pointer;
}

.search-status {
  margin: 0;
  padding: 0 20px 12px;
  color: var(--muted);
  font-size: 0.83rem;
}

.search-results {
  margin: 0;
  padding: 0 20px 20px;
  list-style: none;
}

.search-results li {
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.search-results a {
  display: block;
  font-size: 1.2rem;
  line-height: 1.2;
}

.search-results span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .lead-grid,
  .article-header {
    grid-template-columns: 1fr;
  }

  .lead-story {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  }

  .side-stories {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 24px;
  }

  .article-shell {
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  }

  .article-header {
    grid-column: 1 / -1;
  }

  .article-rail {
    grid-column: 1;
  }

  .article-body {
    grid-column: 2;
  }

  .related-rail {
    grid-column: 2;
    margin-top: 10px;
  }

  .ledger-row,
  .category-list .ledger-row {
    grid-template-columns: 38px minmax(220px, 0.8fr) minmax(0, 1.2fr) 180px;
  }

  .ledger-row img,
  .category-list .ledger-row img {
    display: block;
    width: 180px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .utility-row,
  .masthead,
  .section-inner,
  .site-footer-inner,
  .article-shell,
  .category-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .utility-row p:first-child {
    display: none;
  }

  .utility-row {
    justify-content: flex-end;
  }

  .masthead {
    grid-template-columns: 1fr;
    padding-block: 15px 12px;
  }

  .brand {
    grid-column: 1;
  }

  .edition-note {
    display: none;
  }

  .brand-name {
    font-size: 3.4rem;
  }

  .main-nav {
    overflow: visible;
  }

  .main-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    gap: 0;
  }

  .main-nav a {
    display: grid;
    min-height: 50px;
    padding: 6px;
    place-items: center;
    font-size: 0.7rem;
    line-height: 1.1;
    text-align: center;
  }

  .ticker-inner {
    width: calc(100% - 28px);
  }

  .lead-grid,
  .lead-story,
  .side-stories,
  .manifesto-inner,
  .category-intro,
  .site-footer-inner,
  .article-shell,
  .article-header {
    grid-template-columns: 1fr;
  }

  .lead-story figure {
    grid-row: auto;
  }

  .lead-story img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .lead-copy h1 {
    max-width: 14ch;
    font-size: 2.65rem;
  }

  .side-stories {
    border-top-width: 3px;
  }

  .side-story {
    grid-template-columns: 92px 1fr;
  }

  .side-story img {
    width: 92px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .ledger-row,
  .category-list .ledger-row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .ledger-row p {
    grid-column: 2;
  }

  .ledger-row > a:last-child {
    grid-column: 2;
    width: 100%;
  }

  .ledger-row img,
  .category-list .ledger-row img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .manifesto-inner {
    gap: 20px;
  }

  .category-intro {
    gap: 18px;
  }

  .category-intro h1 {
    font-size: 3.5rem;
  }

  .article-shell {
    display: block;
    padding-top: 20px;
  }

  .article-header {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .article-header h1 {
    font-size: 3rem;
  }

  .article-rail {
    position: static;
    margin: 22px 0;
  }

  .article-rail ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 16px;
  }

  .related-rail {
    margin-top: 36px;
  }

  .site-footer-inner {
    gap: 22px;
  }

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

@media (max-width: 420px) {
  .ticker-label {
    display: none;
  }

  .side-story h2 {
    font-size: 1.13rem;
  }

  .article-header h1 {
    font-size: 2.55rem;
  }

  .article-rail ul {
    grid-template-columns: 1fr;
  }

  .search-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
