:root {
  --ink: #17384b;
  --wine: #8f294c;
  --paper: #fbf8f2;
  --oat: #ece4d7;
  --sand: #d5c4ad;
  --soft-blue: #dbe4e6;
  --charcoal: #262a2b;
  --white: #fffdf9;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font: 18px/1.72 var(--serif);
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: var(--wine); text-underline-offset: 4px; }
a:hover { text-decoration-thickness: 2px; }

.skip-link {
  position: fixed;
  z-index: 50;
  left: 18px;
  top: 12px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 10;
  border-top: 5px solid var(--wine);
  border-bottom: 1px solid color-mix(in srgb, var(--ink), transparent 72%);
  background: color-mix(in srgb, var(--paper), transparent 4%);
}

.header-inner {
  width: min(1240px, 92vw);
  min-height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font: 600 25px/1 var(--serif);
  letter-spacing: -.035em;
}
.wordmark small {
  color: var(--wine);
  font: 760 10px/1 var(--sans);
  letter-spacing: .2em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 38px); }
.main-nav a {
  color: var(--ink);
  text-decoration: none;
  font: 700 12px/1.2 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--wine); }

.home-hero {
  width: min(1370px, 96vw);
  margin: 32px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .83fr) minmax(420px, 1.17fr);
  min-height: 690px;
  background: var(--ink);
}
.hero-copy {
  padding: clamp(55px, 8vw, 105px) clamp(36px, 6vw, 86px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--wine);
  font: 800 11px/1.3 var(--sans);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-copy .eyebrow { color: #e5adbd; }
.hero-copy h1 {
  max-width: 620px;
  margin: 0 0 32px;
  font: 500 clamp(58px, 7.2vw, 108px)/.88 var(--serif);
  letter-spacing: -.065em;
}
.hero-copy > p:not(.eyebrow) { max-width: 530px; margin: 0 0 37px; color: #f0ede7; font-size: 20px; }
.button-link {
  width: fit-content;
  padding: 13px 19px;
  border: 1px solid #fff8;
  color: white;
  text-decoration: none;
  font: 750 12px/1.3 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.button-link:hover, .button-link:focus-visible { border-color: white; background: white; color: var(--ink); }
.hero-image { position: relative; min-height: 560px; overflow: hidden; color: white; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image::after { content: ""; position: absolute; inset: 62% 0 0; background: linear-gradient(transparent, #0b1825d9); }
.hero-image span {
  position: absolute;
  z-index: 1;
  left: 32px;
  right: 32px;
  bottom: 27px;
  font: 700 12px/1.4 var(--sans);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.editor-note {
  width: min(1160px, 90vw);
  margin: 95px auto 0;
  display: grid;
  grid-template-columns: 80px minmax(220px, .75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.note-number { margin: 0; color: var(--wine); font: 500 44px/1 var(--serif); }
.editor-note h2, .section-heading h2, .about-strip h2 {
  margin: 0;
  color: var(--ink);
  font: 500 clamp(38px, 5vw, 66px)/.95 var(--serif);
  letter-spacing: -.045em;
}
.editor-note > p:last-child { margin: 3px 0 0; font-size: 20px; }

.latest-section { width: min(1240px, 92vw); margin: 115px auto; }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 58px 26px;
}
.story-card { min-width: 0; }
.story-card.wide { grid-column: span 2; display: grid; grid-template-columns: 1.25fr .75fr; background: var(--oat); }
.story-image { display: block; overflow: hidden; background: var(--soft-blue); }
.story-image img { width: 100%; aspect-ratio: 1.35/1; object-fit: cover; transition: transform .35s ease; }
.story-card.wide .story-image img { height: 100%; aspect-ratio: auto; }
.story-image:hover img { transform: scale(1.018); }
.story-copy { padding: 23px 3px 0; }
.story-card.wide .story-copy { padding: 45px 38px; align-self: center; }
.story-copy .eyebrow { margin-bottom: 13px; }
.story-copy h2 { margin: 0 0 13px; color: var(--ink); font: 500 clamp(26px, 2.4vw, 38px)/1.02 var(--serif); letter-spacing: -.035em; }
.story-copy h2 a { color: inherit; text-decoration: none; }
.story-copy > p:not(.eyebrow) { margin: 0 0 18px; font-size: 16px; line-height: 1.6; }
.text-link { font: 750 12px/1.4 var(--sans); letter-spacing: .07em; text-transform: uppercase; }

.about-strip {
  width: min(1160px, 90vw);
  margin: 0 auto 120px;
  padding: clamp(48px, 7vw, 85px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: center;
  background: var(--soft-blue);
}
.author-monogram {
  width: 82px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 50%);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font: 500 24px/1 var(--serif);
  letter-spacing: -.04em;
}
.author-monogram.large { width: 100%; max-width: 220px; font-size: 52px; }
.about-strip h2 { max-width: 720px; margin-bottom: 24px; }
.about-strip p:not(.eyebrow) { max-width: 760px; }

.post { width: min(1180px, 92vw); margin: auto; padding: 80px 0 115px; }
.post-header { max-width: 970px; margin: 0 auto 48px; text-align: center; }
.post-header h1 {
  margin: 0 auto 28px;
  color: var(--ink);
  font: 500 clamp(52px, 8vw, 105px)/.91 var(--serif);
  letter-spacing: -.063em;
}
.post-deck { max-width: 780px; margin: 0 auto 27px; color: #4f5556; font-size: 22px; }
.post-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px 23px; color: #6b6d6a; font: 700 11px/1.4 var(--sans); letter-spacing: .06em; text-transform: uppercase; }
.post-meta span + span::before { content: "·"; margin-right: 23px; color: var(--wine); }

.article-body { max-width: 760px; margin: auto; }
.article-body > p:first-child { color: var(--ink); font-size: 23px; line-height: 1.55; }
.article-body p { margin: 0 0 1.45em; }
.article-body h2 {
  margin: 2.1em 0 .62em;
  color: var(--ink);
  font: 500 clamp(34px, 4vw, 50px)/1 var(--serif);
  letter-spacing: -.035em;
}
.article-body h3 { margin: 2em 0 .7em; color: var(--ink); font: 600 27px/1.1 var(--serif); }
.article-body ol, .article-body ul { margin: 0 0 1.7em; padding-left: 1.25em; }
.article-body li { margin: 0 0 .6em; padding-left: .35em; }
.article-body blockquote { margin: 2em 0; padding: 24px 30px; border-left: 5px solid var(--wine); background: var(--oat); font-size: 22px; }
.article-figure { width: min(1060px, calc(100vw - 6vw)); margin: 60px 50%; transform: translateX(-50%); }
.article-figure img { width: 100%; aspect-ratio: 1.5/1; object-fit: cover; background: var(--oat); }
.article-figure figcaption { margin-top: 10px; color: #6a6d69; font: 12px/1.5 var(--sans); }

.author-note {
  max-width: 920px;
  margin: 95px auto 0;
  padding: 42px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  background: var(--soft-blue);
}
.author-note h2 { margin: 0 0 12px; color: var(--ink); font: 500 34px/1 var(--serif); letter-spacing: -.03em; }
.author-note p:not(.eyebrow) { margin: 0 0 12px; }
.author-note a { font: 750 12px/1.4 var(--sans); letter-spacing: .06em; text-transform: uppercase; }

.related { max-width: 920px; margin: 70px auto 0; padding-top: 35px; border-top: 1px solid var(--sand); }
.related > div { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.related-card a { min-height: 145px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); background: var(--oat); text-decoration: none; }
.related-card span { color: var(--wine); font: 750 10px/1.3 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.related-card strong { font: 500 25px/1.08 var(--serif); }

.static-main { width: min(1080px, 90vw); margin: auto; padding: 90px 0 125px; }
.static-header { max-width: 850px; margin-bottom: 70px; }
.static-header h1 { margin: 0 0 25px; color: var(--ink); font: 500 clamp(65px, 10vw, 126px)/.84 var(--serif); letter-spacing: -.07em; }
.static-header > p:last-child { max-width: 700px; font-size: 23px; }
.archive-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--sand); }
.archive-list li { border-bottom: 1px solid var(--sand); }
.archive-list a { padding: 28px 4px; display: grid; grid-template-columns: 170px 1fr 160px; gap: 28px; align-items: center; color: var(--ink); text-decoration: none; }
.archive-list span, .archive-list em { color: #73736e; font: 700 11px/1.4 var(--sans); letter-spacing: .05em; text-transform: uppercase; font-style: normal; }
.archive-list strong { font: 500 28px/1.08 var(--serif); }
.archive-list a:hover strong { color: var(--wine); }
.about-layout { display: grid; grid-template-columns: 270px minmax(0, 650px); gap: clamp(45px, 8vw, 100px); align-items: start; }
.author-monogram.portrait { width: 100%; border-radius: 0; background: var(--ink); color: white; font-size: 64px; }
.about-copy p:first-child { color: var(--ink); font-size: 24px; line-height: 1.55; }

.site-footer { padding: 70px 0 28px; color: #ece8df; background: var(--ink); }
.footer-grid { width: min(1160px, 90vw); margin: auto; display: grid; grid-template-columns: 1.2fr .65fr 1fr; gap: 65px; }
.footer-grid p { margin: 0 0 14px; color: #cbd3d5; font: 15px/1.6 var(--sans); }
.footer-mark { color: white !important; font: 500 34px/1 var(--serif) !important; letter-spacing: -.04em; }
.footer-heading { color: #e7b4c2 !important; font: 800 10px/1.4 var(--sans) !important; letter-spacing: .15em; text-transform: uppercase; }
.footer-grid a { display: block; margin: 0 0 9px; color: white; font: 14px/1.5 var(--sans); }
.footer-bottom { width: min(1160px, 90vw); margin: 50px auto 0; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #ffffff2b; color: #aebcbe; font: 700 10px/1.4 var(--sans); letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 980px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 510px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-card.wide { grid-column: 1 / -1; }
  .editor-note { grid-template-columns: 60px 1fr; }
  .editor-note > p:last-child { grid-column: 2; }
  .article-figure { width: min(900px, 92vw); }
}

@media (max-width: 680px) {
  body { font-size: 17px; }
  .header-inner { min-height: 78px; align-items: flex-start; padding: 18px 0; }
  .wordmark { flex-direction: column; gap: 5px; font-size: 21px; }
  .main-nav { gap: 13px; flex-wrap: wrap; justify-content: flex-end; }
  .main-nav a { font-size: 10px; }
  .home-hero { width: 100%; margin-top: 0; min-height: 0; }
  .hero-copy { padding: 58px 7vw 64px; }
  .hero-copy h1 { font-size: clamp(55px, 17vw, 82px); }
  .hero-image { min-height: 420px; }
  .editor-note { margin-top: 68px; grid-template-columns: 1fr; gap: 20px; }
  .editor-note > p:last-child { grid-column: 1; }
  .latest-section { margin: 80px auto; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card.wide { display: block; grid-column: auto; }
  .story-card.wide .story-copy { padding: 27px 4px 0; }
  .story-card.wide .story-image img { aspect-ratio: 1.35/1; }
  .about-strip { grid-template-columns: 1fr; padding: 38px 26px; margin-bottom: 80px; }
  .author-monogram.large { width: 150px; }
  .post { width: min(100% - 34px, 1180px); padding-top: 55px; }
  .post-header h1 { font-size: clamp(47px, 15vw, 78px); }
  .post-deck { font-size: 19px; }
  .post-meta { gap: 8px 13px; }
  .post-meta span + span::before { margin-right: 13px; }
  .article-body > p:first-child { font-size: 20px; }
  .article-figure { width: calc(100vw - 18px); margin-top: 42px; margin-bottom: 42px; }
  .author-note { grid-template-columns: 1fr; padding: 30px 24px; }
  .related > div { grid-template-columns: 1fr; }
  .static-main { padding-top: 65px; }
  .archive-list a { grid-template-columns: 1fr; gap: 7px; }
  .about-layout { grid-template-columns: 1fr; }
  .author-monogram.portrait { width: 180px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .story-image img { transition: none; }
}
