:root { --bg: #f3f4f1; --paper: #fbfbf8; --ink: #10232c; --muted: #5d6d73; --line: #d7dcda; --orange: #d99400; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: Arial, Helvetica, sans-serif; line-height: 1.65; }
a { color: inherit; }
.page { min-height: 100vh; overflow-x: hidden; }
.hero { width: 100%; background: #031722; }
.hero picture, .hero img { display: block; width: 100%; }
.hero img { height: min(78vh, 760px); object-fit: cover; object-position: center; }
.site-nav { position: sticky; z-index: 20; top: 0; width: 100%; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0 max(24px, calc((100vw - 1120px) / 2)); border-bottom: 1px solid rgba(215,220,218,.9); background: rgba(251,251,248,.93); backdrop-filter: blur(14px); }
.wordmark { color: var(--orange); font-size: 22px; font-weight: 800; letter-spacing: -.06em; text-decoration: none; }
.wordmark span { color: var(--ink); font-weight: 500; }
.site-nav > div { display: flex; align-items: center; gap: 30px; }
.site-nav > div a { font-size: 12px; font-weight: 700; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.site-nav > div a:hover, .site-nav > div a:focus { color: var(--orange); }
.section { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: clamp(88px, 12vw, 150px) 0; scroll-margin-top: 66px; }
.kicker { margin-bottom: 22px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
h1, h2 { margin: 0; max-width: 820px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.045em; line-height: 1.05; }
h1 { font-size: clamp(44px, 7vw, 82px); }
h2 { font-size: clamp(40px, 6vw, 68px); }
p { margin: 0 0 25px; }
em { color: inherit; }
.lead { max-width: 850px; margin-top: 38px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 2.4vw, 29px); line-height: 1.48; }
.columns { max-width: 900px; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(35px, 7vw, 90px); margin-top: 55px; color: var(--muted); }
.edition { display: grid; grid-template-columns: minmax(220px, 370px) 1fr; gap: clamp(60px, 10vw, 135px); align-items: center; border-top: 1px solid var(--line); }
.cover { padding: 11%; background: #0c2b39; box-shadow: 0 28px 60px rgba(12,43,57,.15); }
.cover img { display: block; width: 100%; height: auto; box-shadow: 15px 20px 35px rgba(0,0,0,.35); }
.edition-copy > p { max-width: 610px; margin-top: 27px; color: var(--muted); }
.facts { margin: 38px 0 0; }
.facts div { display: grid; grid-template-columns: 145px minmax(0,1fr); padding: 12px 0; border-bottom: 1px solid var(--line); }
.facts dt { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.facts dd { margin: 0; }
.note { font-size: 12px; }
.author { display: grid; grid-template-columns: minmax(0, 1fr) 220px; gap: clamp(50px, 10vw, 140px); align-items: center; border-top: 1px solid var(--line); }
.author-copy > p:not(.lead) { max-width: 760px; color: var(--muted); }
.portrait { margin: 0; }
.portrait img { display: block; width: 100%; height: auto; filter: grayscale(100%); }
.portrait figcaption { padding-top: 10px; color: var(--muted); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.legal { width: min(1120px, calc(100% - 48px)); margin: 0 auto; border-top: 1px solid var(--line); }
.legal details { border-bottom: 1px solid var(--line); }
.legal summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 0; cursor: pointer; color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .11em; list-style: none; text-transform: uppercase; }
.legal summary::-webkit-details-marker { display: none; }
.legal summary span:last-child { color: var(--orange); font-size: 22px; font-weight: 400; transition: transform .18s ease; }
.legal details[open] summary span:last-child { transform: rotate(45deg); }
.legal-content { max-width: 790px; padding: 12px 0 65px; color: var(--muted); font-size: 14px; }
.legal-content h2 { margin-bottom: 38px; font-size: clamp(32px, 5vw, 54px); }
.legal-content h3 { margin: 34px 0 10px; color: var(--ink); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.legal-content address { margin-bottom: 25px; font-style: normal; }
.footer { width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 30px 0 42px; color: var(--muted); font-size: 12px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .legal summary span:last-child { transition: none; } }
@media (max-width: 720px) {
  .hero img { height: min(86svh, 820px); object-position: center; }
  .site-nav { min-height: 58px; padding: 0 20px; }
  .site-nav > div { gap: 15px; }
  .site-nav > div a { font-size: 9px; letter-spacing: .07em; }
  .section { width: calc(100% - 36px); padding: 82px 0; scroll-margin-top: 58px; }
  .columns, .edition, .author { grid-template-columns: 1fr; }
  .columns { gap: 0; margin-top: 38px; }
  .edition { gap: 55px; }
  .cover { width: min(76vw, 330px); margin: 0 auto; }
  .author { gap: 48px; }
  .portrait { width: 150px; }
  .facts div { grid-template-columns: 120px minmax(0,1fr); }
  .legal, .footer { width: calc(100% - 36px); }
}
