@font-face {
  font-family: "DM Sans";
  src: url("/assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --ink: #060a0f;
  --navy: #0b1119;
  --slate: #131c27;
  --paper: #f2efe9;
  --warm: #ece7de;
  --muted: #9aa9b4;
  --paper-muted: #52606b;
  --teal: #7fa7a2;
  --copper: #c2724a;
  --line: #26323f;
  --line-light: rgba(236, 231, 222, 0.2);
  --line-dark: rgba(22, 32, 43, 0.2);
  --shell: min(1200px, calc(100vw - 64px));
  --display: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--navy);
  color: var(--warm);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--teal); color: var(--ink); }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 4px; }
[hidden] { display: none !important; }

h1, h2, h3, p { overflow-wrap: normal; word-break: normal; hyphens: none; }

.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.skip-link:focus { transform: none; }

.notice-bar {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.notice-bar__inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.notice-bar__inner span + span::before,
.notice-bar__inner a::before {
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 22px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--copper);
}

.notice-bar__inner a { margin-left: auto; color: var(--warm); }

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(236, 231, 222, .14);
  background: rgba(11, 17, 25, .92);
  backdrop-filter: blur(16px);
}

.site-nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  width: max-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 36px;
  height: 30px;
  display: block;
  flex: 0 0 auto;
  border-top: 1px solid var(--teal);
}

.brand__mark::before,
.brand__mark::after,
.brand__mark i {
  content: "";
  position: absolute;
  right: 0;
  height: 8px;
  border-bottom: 1px solid var(--teal);
  border-radius: 0 0 50% 50%;
}

.brand__mark::before { top: 4px; width: 29px; }
.brand__mark::after { top: 11px; width: 22px; }
.brand__mark i:first-child { top: 18px; width: 15px; }
.brand__mark i:last-child { display: none; }

.brand__type {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .02em;
}

.site-nav > nav { margin-left: auto; }

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  position: relative;
  padding: 25px 0 22px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 15px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--copper);
  transition: transform 180ms var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--warm); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--warm);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1px;
  background: currentColor;
}

.nav-toggle span { top: 21px; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.eyebrow,
.section-code,
.footer-links > span,
.footer-legal > span {
  margin: 0 0 18px;
  color: var(--copper);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: max(680px, calc(100svh - 108px));
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero__picture,
.hero__picture img,
.hero__veil { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero__picture img {
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.82) contrast(1.03);
  animation: image-breathe 30s ease-in-out infinite alternate;
}

.hero__veil {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 10, 15, .92) 0%, rgba(6, 10, 15, .68) 42%, rgba(6, 10, 15, .22) 72%, rgba(6, 10, 15, .45) 100%),
    linear-gradient(0deg, rgba(6, 10, 15, .9), transparent 43%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: max(680px, calc(100svh - 108px));
  padding: 42px 0 34px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  gap: 24px;
}

.hero__identity {
  grid-column: 1 / span 5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  color: rgba(236, 231, 222, .72);
  font-size: 13px;
}

.brand-line {
  color: var(--warm);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero__identity p { margin: 0; max-width: 320px; }

.hero__copy {
  grid-column: 3 / span 8;
  align-self: end;
  max-width: 920px;
  padding-bottom: 54px;
}

.hero h1 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.hero h1 em { color: #a7c2bd; font-weight: 400; }

.hero__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(236, 231, 222, .78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero__index {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
}

.hero__index a {
  min-height: 68px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-right: 1px solid var(--line-light);
  color: rgba(236, 231, 222, .86);
  font-family: var(--display);
  font-size: 17px;
  text-decoration: none;
  transition: background 180ms ease;
}

.hero__index a:last-child { border-right: 0; }
.hero__index a:hover { background: rgba(127, 167, 162, .12); }
.hero__index span { color: var(--copper); font-family: var(--mono); font-size: 9px; }

.photo-credit {
  color: rgba(236, 231, 222, .65);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero__credit,
.page-hero__credit {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 5px;
  margin: 0;
}

.section { padding: 126px 0; }
.section--dark { background: var(--navy); }
.section--slate { background: var(--slate); }
.section--paper { background: var(--paper); color: #16202b; }
.section--split { background: #d8d1c5; color: #16202b; }
.section--essay { position: relative; overflow: hidden; background: var(--ink); }
.section--closing { background: var(--navy); border-top: 1px solid var(--line); }

.section > .shell > h2 {
  max-width: 18ch;
  margin: 0 0 42px;
  font-family: var(--display);
  font-size: clamp(40px, 4.8vw, 66px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 32px;
}

.editorial-grid--ink { color: #16202b; }

.section-kicker {
  padding-top: 10px;
  border-top: 1px solid currentColor;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.editorial-grid--ink .section-kicker { color: #66717a; }
.section-kicker span { color: var(--copper); }
.section-kicker p { margin: 8px 0 0; }

.editorial-copy h2,
.section-heading h2,
.paper-heading h2,
.arrival-copy h2,
.essay h2,
.closing-grid h2,
.source-callout h2,
.reading-rail h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
}

.editorial-copy h2 { max-width: 18ch; font-size: clamp(42px, 5vw, 72px); }

.prose-columns {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
  border-top: 1px solid var(--line);
}

.editorial-grid--ink .prose-columns { border-color: var(--line-dark); }
.prose-columns p { margin: 0; padding-top: 22px; color: var(--muted); }
.editorial-grid--ink .prose-columns p { color: var(--paper-muted); }

.section-heading {
  margin-bottom: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 80px;
  align-items: end;
}

.section-heading > * { min-width: 0; }
.section-heading h2 { max-width: 17ch; font-size: clamp(42px, 4.8vw, 70px); }
.section-heading > p { max-width: 500px; margin: 0; color: var(--muted); }
.section-heading--ink > p { color: var(--paper-muted); }

.photo-ledger {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.photo { min-width: 0; margin: 0; grid-column: span 4; }
.photo--wide { grid-column: span 7; }
.photo--tall { grid-column: span 5; }
.photo--panorama { grid-column: 1 / -1; }

.photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.78) contrast(1.02);
  transition: filter 250ms ease;
}

.photo--wide img,
.photo--tall img { aspect-ratio: 16 / 10; }
.photo--panorama img { aspect-ratio: 2.2 / 1; }
.photo:hover img { filter: saturate(.96); }

.photo figcaption,
.arrival-photo figcaption {
  min-height: 46px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.photo figcaption a { color: var(--warm); }

.register {
  display: grid;
  grid-template-columns: 5fr 7fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.register__tabs { border-right: 1px solid var(--line); }

.register__tabs button {
  width: 100%;
  min-height: 86px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  gap: 1px 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
}

.register__tabs button:last-child { border-bottom: 0; }
.register__tabs button:hover,
.register__tabs button[aria-selected="true"] { background: var(--slate); color: var(--warm); }
.register__tabs button[aria-selected="true"] { box-shadow: inset 3px 0 0 var(--copper); }
.register__tabs button span { grid-row: 1 / span 2; color: var(--copper); font-family: var(--mono); font-size: 9px; }
.register__tabs strong { font-family: var(--display); font-size: 17px; font-weight: 400; }
.register__tabs small { font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }

.register__panels { min-width: 0; padding: clamp(34px, 5vw, 70px); }
.property-panel h3 { max-width: 17ch; margin: 0; font-family: var(--display); font-size: clamp(34px, 4vw, 54px); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.property-panel > p:not(.eyebrow) { max-width: 720px; margin: 26px 0; color: var(--muted); }
.property-panel ul { margin: 0 0 30px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.property-panel li { padding: 13px 0 13px 24px; border-bottom: 1px solid var(--line); color: var(--muted); }
.property-panel li::before { content: "—"; margin-left: -24px; margin-right: 12px; color: var(--copper); }

.source-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  color: var(--teal);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.source-pair { display: flex; flex-wrap: wrap; gap: 22px; }
.register__note { max-width: 720px; margin: 22px 0 30px; color: var(--muted); font-size: 13px; }

.button-link {
  min-height: 48px;
  padding: 12px 17px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--teal);
  color: var(--warm);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button-link:hover { background: var(--teal); color: var(--ink); }
.button-link--dark { border-color: #16202b; color: #16202b; }
.button-link--dark:hover { background: #16202b; color: var(--paper); }

.paper-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 32px;
}

.paper-heading h2 { max-width: 18ch; font-size: clamp(44px, 5vw, 72px); }

.editorial-rows { border-top: 1px solid var(--line-dark); }
.editorial-rows article {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 2fr 3fr 7fr;
  gap: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.editorial-rows span { color: var(--copper); font-family: var(--mono); font-size: 9px; }
.editorial-rows h3 { margin: 0; font-family: var(--display); font-size: 27px; font-weight: 400; }
.editorial-rows p { margin: 0; color: var(--paper-muted); }

.arrival-grid { display: grid; grid-template-columns: 6.2fr 5.8fr; gap: 68px; align-items: center; }
.arrival-grid--reverse { grid-template-columns: 5.8fr 6.2fr; }
.arrival-grid--reverse .arrival-photo { order: 1; }
.arrival-grid--reverse .arrival-copy { order: 2; }
.arrival-copy h2 { max-width: 14ch; font-size: clamp(44px, 5vw, 72px); }
.arrival-copy > p:not(.eyebrow) { max-width: 600px; margin: 25px 0 30px; color: var(--paper-muted); }
.arrival-list { margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--line-dark); }
.arrival-list li { padding: 16px 0; display: grid; grid-template-columns: 48px 1fr; gap: 16px; border-bottom: 1px solid var(--line-dark); }
.arrival-list li > span { color: var(--copper); font-family: var(--mono); font-size: 9px; }
.arrival-list strong { font-family: var(--display); font-size: 20px; font-weight: 400; }
.arrival-list p { margin: 4px 0 0; color: var(--paper-muted); }
.arrival-photo { min-width: 0; margin: 0; }
.arrival-photo img { width: 100%; min-height: 650px; object-fit: cover; filter: saturate(.8); }
.arrival-photo figcaption { border-color: var(--line-dark); color: #66717a; }

.essay { position: relative; max-width: 920px; }
.essay::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -180px;
  right: -35%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(127, 167, 162, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(127, 167, 162, .025), 0 0 0 130px rgba(194, 114, 74, .018);
}

.essay > * { position: relative; z-index: 1; }
.essay h2 { max-width: 14ch; font-size: clamp(48px, 6vw, 82px); }
.essay__copy { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.essay__copy p { margin: 0; color: var(--muted); }

.detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line-dark); }
.detail-grid > div { padding: 26px 26px 26px 0; display: grid; grid-template-columns: 1.4fr 2.6fr; gap: 24px; border-bottom: 1px solid var(--line-dark); }
.detail-grid > div:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.detail-grid > div:nth-child(even) { padding-left: 26px; }
.detail-grid dt { font-family: var(--display); font-size: 22px; }
.detail-grid dd { margin: 0; color: var(--paper-muted); }

.closing-grid { display: grid; grid-template-columns: 2fr 10fr; gap: 32px; }
.closing-grid h2 { max-width: 17ch; font-size: clamp(44px, 5vw, 72px); }
.closing-grid p:not(.section-code) { max-width: 850px; margin: 28px 0; color: var(--muted); }
.closing-links { display: flex; flex-wrap: wrap; gap: 28px; }
.closing-links a { color: var(--teal); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }

.page-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.page-hero:not(.page-hero--photo)::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -260px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(127, 167, 162, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 62px rgba(127, 167, 162, .025), 0 0 0 124px rgba(194, 114, 74, .018);
}

.page-hero > img,
.page-hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero > img { z-index: -2; object-fit: cover; object-position: center; filter: saturate(.75) contrast(1.05); }
.page-hero--window > img { object-position: center 45%; }
.page-hero__overlay { z-index: -1; background: linear-gradient(90deg, rgba(6, 10, 15, .9), rgba(6, 10, 15, .5) 58%, rgba(6, 10, 15, .25)), linear-gradient(0deg, rgba(6, 10, 15, .75), transparent 55%); }
.page-hero__content { min-height: 590px; padding: 100px 0 64px; display: flex; flex-direction: column; justify-content: flex-end; }
.page-hero h1 { max-width: 13ch; margin: 0; font-family: var(--display); font-size: clamp(54px, 7vw, 92px); font-weight: 400; letter-spacing: -.045em; line-height: .96; }
.page-hero__content > p:last-child { max-width: 680px; margin: 24px 0 0; color: rgba(236, 231, 222, .78); font-size: 19px; }

.page-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 590px;
  padding: 100px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 4fr);
  gap: 70px;
  align-items: end;
}

.page-hero__grid > * { min-width: 0; }

.page-hero__grid h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6.4vw, 84px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

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

.page-hero__intro p { margin: 0 0 14px; color: var(--muted); }

.fine-print {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .05em;
  line-height: 1.65;
  text-transform: uppercase;
}

.text-link {
  color: var(--teal);
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 30px);
}

.property-list { border-top: 1px solid var(--line); }
.property-entry { padding: 58px 0; display: grid; grid-template-columns: 2fr 10fr; gap: 32px; border-bottom: 1px solid var(--line); }
.property-entry__number { padding-top: 8px; color: var(--copper); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }
.property-entry__body h3 { max-width: 22ch; margin: 0; font-family: var(--display); font-size: clamp(36px, 4.2vw, 60px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.property-entry__body > p:not(.eyebrow) { max-width: 780px; margin: 26px 0; color: var(--muted); }
.property-entry dl { max-width: 820px; margin: 30px 0; border-top: 1px solid var(--line); }
.property-entry dl > div { padding: 12px 0; display: grid; grid-template-columns: 180px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.property-entry dt { color: var(--warm); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.property-entry dd { margin: 0; color: var(--muted); }
.correction-note { max-width: 780px; margin-top: 30px; padding: 22px; border-left: 2px solid var(--copper); background: var(--slate); }
.correction-note strong { font-family: var(--display); font-size: 19px; font-weight: 400; }
.correction-note p { color: var(--muted); }
.correction-note a { color: var(--teal); font-size: 13px; }

.source-callout { display: grid; grid-template-columns: 7fr 5fr; gap: 80px; align-items: end; }
.source-callout h2 { max-width: 16ch; font-size: clamp(42px, 5vw, 68px); }
.source-callout p { color: var(--paper-muted); }

.method-cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.method-cards article { min-width: 0; padding: clamp(28px, 4vw, 52px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-cards article > span { color: var(--copper); font-family: var(--mono); font-size: 9px; }
.method-cards h3 { margin: 52px 0 16px; font-family: var(--display); font-size: clamp(30px, 3vw, 42px); font-weight: 400; }
.method-cards p, .method-cards li { color: var(--muted); }
.method-cards ul { margin: 24px 0 0; padding-left: 18px; }

.reading-grid { display: grid; grid-template-columns: 4fr 8fr; gap: 80px; align-items: start; }
.reading-rail { position: sticky; top: 110px; }
.reading-rail h2 { font-size: clamp(38px, 4vw, 56px); }
.reading-rail > p:last-child { color: var(--paper-muted); }
.evidence-list { border-top: 1px solid var(--line-dark); }
.evidence-list article { padding: 26px 0; display: grid; grid-template-columns: 54px 1fr; gap: 24px; border-bottom: 1px solid var(--line-dark); }
.evidence-list article > span { color: var(--copper); font-family: var(--mono); font-size: 9px; }
.evidence-list h3 { margin: 0; font-family: var(--display); font-size: 25px; font-weight: 400; }
.evidence-list p { margin: 7px 0 0; color: var(--paper-muted); }

.content-grid,
.legal-grid {
  display: grid;
  grid-template-columns: minmax(230px, 3fr) minmax(0, 9fr);
  gap: 72px;
  align-items: start;
}

.content-rail,
.legal-rail { position: sticky; top: 110px; }
.content-rail h2,
.legal-rail h2 { margin: 0; font-family: var(--display); font-size: clamp(34px, 4vw, 52px); font-weight: 400; letter-spacing: -.035em; line-height: 1; }
.content-rail p,
.legal-rail p { color: var(--muted); }

.prose {
  min-width: 0;
  padding: clamp(30px, 5vw, 70px);
  background: var(--paper);
  color: #16202b;
}

.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h2 { margin: 48px 0 13px; font-family: var(--display); font-size: clamp(29px, 3vw, 40px); font-weight: 400; letter-spacing: -.025em; line-height: 1.1; }
.prose h3 { margin: 30px 0 9px; font-family: var(--display); font-size: 24px; font-weight: 400; }
.prose p, .prose li { color: var(--paper-muted); line-height: 1.75; }
.prose a { color: #466d68; font-weight: 700; }
.prose ul, .prose ol { padding-left: 22px; }

.cards,
.info-cards,
.support-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.info-card,
.cards > article,
.support-cards > article { min-width: 0; padding: 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.info-card h3,
.cards h3,
.support-cards h3 { margin: 28px 0 12px; font-family: var(--display); font-size: 25px; font-weight: 400; }
.info-card p,
.cards p,
.support-cards p { color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.contact-card { padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); background: var(--slate); }
.contact-card h2 { margin: 0; color: var(--warm); font-family: var(--display); font-size: clamp(34px, 4vw, 50px); font-weight: 400; }
.contact-card p { color: var(--muted); }
.contact-card .contact-email { display: block; margin: 22px 0; color: var(--teal); font-family: var(--display); font-size: clamp(19px, 2.5vw, 31px); }

.contact-email { overflow-wrap: anywhere; }

.info-card .text-link { font-size: clamp(17px, 2vw, 26px); }

.source-list { display: grid; gap: 24px; }
.source-list article { padding: 26px 0; border-top: 1px solid var(--line); }
.source-list h2, .source-list h3 { margin: 0; font-family: var(--display); font-weight: 400; }
.source-list a { color: var(--teal); }

.note,
.callout { padding: 22px; border-left: 2px solid var(--copper); background: rgba(19, 28, 39, .68); }

.site-footer { border-top: 1px solid var(--line); background: var(--ink); }
.footer-grid { padding: 72px 0 58px; display: grid; grid-template-columns: 4fr 2.5fr 5.5fr; gap: 58px; }
.footer-brand p { max-width: 390px; margin: 25px 0 0; color: var(--muted); font-size: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.footer-links > span, .footer-legal > span { display: block; color: var(--muted); }
.footer-links a { color: var(--warm); font-family: var(--display); font-size: 17px; text-decoration: none; }
.footer-links a:hover { color: var(--teal); }
.footer-legal { padding-left: 30px; border-left: 1px solid var(--line); }
.footer-legal p { margin: 0 0 14px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-legal a { color: var(--warm); }
.footer-bottom { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: .09em; text-transform: uppercase; }
.footer-bottom nav { display: flex; gap: 20px; }

@keyframes image-breathe {
  from { transform: scale(1.01); }
  to { transform: scale(1.045); }
}

@media (max-width: 1000px) {
  :root { --shell: min(100% - 44px, 900px); }
  .nav-links { gap: 18px; }
  .hero__copy { grid-column: 2 / span 10; }
  .section { padding: 96px 0; }
  .register { grid-template-columns: 4.5fr 7.5fr; }
  .register__tabs button { padding-inline: 15px; }
  .register__panels { padding: 38px; }
  .arrival-grid, .arrival-grid--reverse { gap: 42px; }
  .arrival-photo img { min-height: 570px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-legal { grid-column: 1 / -1; padding: 28px 0 0; border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 780px) {
  :root { --shell: min(100% - 32px, 720px); }
  .notice-bar__inner { min-height: 38px; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
  .notice-bar__inner::-webkit-scrollbar { display: none; }
  .notice-bar__inner a { margin-left: 0; padding-right: 16px; }
  .site-nav { min-height: 64px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 12px 16px 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 17, 25, .99);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .hero, .hero__content { min-height: 720px; }
  .hero__content { padding-top: 30px; }
  .hero__identity { grid-column: 1 / -1; grid-template-columns: 1fr; gap: 6px; }
  .hero__copy { grid-column: 1 / -1; padding-bottom: 30px; }
  .hero h1 { font-size: clamp(44px, 12.3vw, 70px); }
  .hero__index { grid-template-columns: 1fr; }
  .hero__index a { min-height: 50px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .hero__index a:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .editorial-grid, .closing-grid, .paper-heading, .property-entry { grid-template-columns: 1fr; gap: 30px; }
  .section-kicker { max-width: 140px; }
  .prose-columns, .essay__copy { grid-template-columns: 1fr; gap: 22px; }
  .prose-columns { margin-top: 38px; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 40px; }
  .photo-ledger { gap: 16px; }
  .photo, .photo--wide, .photo--tall { grid-column: span 6; }
  .photo--panorama { grid-column: 1 / -1; }
  .register { grid-template-columns: 1fr; }
  .register__tabs { display: grid; grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .register__tabs button { min-height: 88px; border-right: 1px solid var(--line); }
  .register__tabs button[aria-selected="true"] { box-shadow: inset 0 3px 0 var(--copper); }
  .editorial-rows article { grid-template-columns: 46px 1fr; }
  .editorial-rows p { grid-column: 2; }
  .arrival-grid, .arrival-grid--reverse { grid-template-columns: 1fr; }
  .arrival-grid--reverse .arrival-photo, .arrival-grid--reverse .arrival-copy { order: initial; }
  .arrival-photo img { min-height: 0; aspect-ratio: 4 / 3; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-grid > div, .detail-grid > div:nth-child(even) { padding: 22px 0; border-right: 0; }
  .page-hero, .page-hero__content { min-height: 520px; }
  .page-hero__content { padding: 78px 0 48px; }
  .page-hero__grid { min-height: 520px; padding: 78px 0 48px; grid-template-columns: 1fr; gap: 34px; }
  .property-entry dl > div { grid-template-columns: 140px 1fr; }
  .source-callout, .reading-grid, .content-grid, .legal-grid { grid-template-columns: 1fr; gap: 42px; }
  .reading-rail, .content-rail, .legal-rail { position: static; }
  .method-cards { grid-template-columns: 1fr; }
  .cards, .info-cards, .support-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  :root { --shell: min(100% - 24px, 480px); }
  body { font-size: 15px; }
  .brand__type { font-size: 18px; }
  .hero, .hero__content { min-height: 680px; }
  .hero h1 { font-size: clamp(40px, 12vw, 58px); }
  .hero__lead { font-size: 16px; }
  .section { padding: 64px 0; }
  .editorial-copy h2, .section-heading h2, .paper-heading h2, .arrival-copy h2, .essay h2, .closing-grid h2, .source-callout h2 { font-size: clamp(36px, 11vw, 50px); }
  .photo, .photo--wide, .photo--tall, .photo--panorama { grid-column: 1 / -1; }
  .photo img, .photo--wide img, .photo--tall img, .photo--panorama img { aspect-ratio: 4 / 3; }
  .photo figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .register__tabs { grid-template-columns: 1fr; }
  .register__tabs button { border-right: 0; }
  .register__panels { padding: 28px 20px; }
  .property-panel h3 { font-size: 34px; }
  .editorial-rows article { gap: 18px; }
  .detail-grid > div { grid-template-columns: 1fr; gap: 6px; }
  .page-hero h1 { font-size: clamp(42px, 13vw, 60px); }
  .page-hero__grid h1 { font-size: clamp(40px, 12vw, 58px); }
  .property-entry__body h3 { font-size: 36px; }
  .property-entry dl > div { grid-template-columns: 1fr; gap: 4px; }
  .prose { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; padding: 58px 0 44px; }
  .footer-legal { grid-column: auto; }
  .footer-bottom { padding: 18px 0; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
