:root {
  --ink: #33222a;
  --muted: #705f58;
  --paper: #faf6ee;
  --soft: #f3ead9;
  --line: #eadfc9;
  --accent: #5e1a24;
  --accent-dark: #41111a;
  --gold: #c9962e;
  --max: 1180px;
  --reading: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, 'Times New Roman', serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { color: inherit; }
button { font: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.reading-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 100;
  background: transparent;
}
.reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.utility-bar { background: var(--ink); color: #fff; }
.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.utility-inner p { margin: 0; }

.site-header {
  background: rgba(255,253,249,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.masthead {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--accent);
  font-size: 1.55rem;
  font-weight: 700;
}
.brand strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: .18em;
  font-size: 1.1rem;
}
.brand small {
  color: var(--muted);
  font-style: italic;
  font-size: .82rem;
}
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a {
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--accent); }
.menu-button {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: transparent;
}

.article-heading {
  max-width: 1000px;
  padding-top: clamp(60px, 8vw, 112px);
  padding-bottom: clamp(38px, 5vw, 70px);
  text-align: center;
}
.category, .eyebrow {
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1 {
  margin: 20px auto 18px;
  max-width: 960px;
  font-size: clamp(2.7rem, 6.8vw, 6.2rem);
  line-height: .97;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.dek {
  max-width: 780px;
  margin: 0 auto;
  color: #534c4f;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}
.article-meta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
}
.article-meta span + span::before {
  content: '•';
  margin-right: 26px;
  color: var(--gold);
}

.hero-figure {
  width: min(calc(100% - 28px), 1180px);
  margin: 0 auto;
  position: relative;
  background: #111;
  overflow: hidden;
}
.hero-figure img {
  width: 100%;
  height: min(78vh, 860px);
  object-fit: cover;
  object-position: 50% 35%;
}
.hero-figure figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  color: #fff;
  background: rgba(0,0,0,.58);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 78px minmax(0, var(--reading)) 1fr;
  gap: 44px;
  align-items: start;
  padding-block: clamp(54px, 7vw, 100px);
}
.article-body { grid-column: 2; }
.article-body p {
  margin: 0 0 1.55em;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.82;
}
.article-body .lead {
  font-size: clamp(1.32rem, 2vw, 1.65rem);
  line-height: 1.65;
}
.article-body .lead::first-letter {
  float: left;
  margin: .08em .12em 0 0;
  color: var(--accent);
  font-size: 5.4rem;
  line-height: .72;
  font-weight: 700;
}
.translation-note {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--soft);
  color: #4e4748;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .92rem !important;
  line-height: 1.6 !important;
}
.article-body h2 {
  margin: 2.25em 0 .7em;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.share-rail {
  grid-column: 1;
  position: sticky;
  top: 132px;
  display: grid;
  justify-items: center;
  gap: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.share-rail span { writing-mode: vertical-rl; transform: rotate(180deg); margin-bottom: 5px; }
.share-rail button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.share-rail button:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

.image-pair, .closing-gallery {
  width: min(100vw - 40px, 1100px);
  margin: 52px 0 58px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.image-pair figure, .image-strip figure, .closing-gallery figure { margin: 0; overflow: hidden; background: #111; }
.image-pair img, .closing-gallery img { aspect-ratio: 2 / 3; object-fit: cover; }
.tall-short figure:nth-child(2) img { object-position: 50% 22%; }
.image-strip {
  width: min(100vw - 40px, 1130px);
  margin: 54px 0 62px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.image-strip img { aspect-ratio: 2 / 3; object-fit: cover; }
.feature-image {
  width: min(100vw - 40px, 880px);
  margin: 54px 0;
  overflow: hidden;
  background: #111;
}
.feature-image img { max-height: 880px; object-fit: cover; }
.pull-quote {
  margin: 52px 0;
  padding: 34px 0 34px 34px;
  border-left: 6px solid var(--accent);
}
.pull-quote p {
  margin: 0;
  font-size: clamp(1.65rem, 3.3vw, 2.65rem);
  line-height: 1.23;
  font-style: italic;
  letter-spacing: -.02em;
}
.ceremony-image { margin: 58px 0; }
.ceremony-image img { aspect-ratio: 3 / 2; object-fit: cover; }
.ceremony-image figcaption {
  padding-top: 10px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .76rem;
}
.author-card {
  margin-top: 64px;
  padding: 28px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  background: var(--soft);
  border-top: 4px solid var(--accent);
}
.author-card img { aspect-ratio: 1; object-fit: cover; }
.author-card h2 { margin: 8px 0 12px; }
.author-card p { margin-bottom: 0; font-size: 1rem; line-height: 1.65; }
.source-card {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid var(--line);
}
.source-card p { font-family: Arial, Helvetica, sans-serif; font-size: .94rem; line-height: 1.6; }
.source-card a {
  display: inline-block;
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer { color: #fff; background: var(--ink); }
.footer-inner {
  min-height: 180px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer-inner strong { font-family: Arial, Helvetica, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.footer-inner p { color: #c9c2c4; }
.footer-inner a { color: #fff; text-underline-offset: 4px; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  translate: -50% 20px;
  z-index: 200;
  padding: 11px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .82rem;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; translate: -50% 0; }

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 18px 20px 24px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-button { display: inline-block; }
  .article-layout { grid-template-columns: minmax(0, var(--reading)); justify-content: center; }
  .article-body { grid-column: 1; }
  .share-rail { display: none; }
  .image-pair, .image-strip, .feature-image, .closing-gallery { width: 100%; }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .utility-inner { min-height: 30px; font-size: .62rem; }
  .utility-inner p:last-child { display: none; }
  .masthead { min-height: 72px; }
  .brand-mark { width: 38px; }
  .brand strong { font-size: .95rem; }
  h1 { font-size: clamp(2.55rem, 13vw, 4.4rem); }
  .article-meta span + span::before { display: none; }
  .article-meta { flex-direction: column; gap: 6px; }
  .hero-figure { width: 100%; }
  .hero-figure img { height: 70vh; min-height: 540px; object-position: 55% 25%; }
  .article-layout { padding-top: 46px; }
  .article-body p { line-height: 1.75; }
  .image-pair, .closing-gallery { grid-template-columns: 1fr; }
  .image-strip { grid-template-columns: 1fr 1fr; }
  .image-strip figure:last-child { grid-column: 1 / -1; }
  .image-strip figure:last-child img { aspect-ratio: 4 / 5; }
  .pull-quote { padding-left: 22px; }
  .author-card { grid-template-columns: 88px 1fr; padding: 20px; gap: 18px; }
  .author-card h2 { font-size: 1.55rem; }
  .author-card p { grid-column: 1 / -1; }
  .footer-inner { min-height: 210px; flex-direction: column; align-items: flex-start; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
