/* ==========================================================================
   Page compositions
   ========================================================================== */

/* ---------- HOME · Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 32px);
  padding-bottom: 64px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 34px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.hero__honorific {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--text-on-ink-muted);
}

.hero__title { color: var(--text-on-ink); }
.hero__title .line { display: block; }
.hero__title em { font-style: italic; color: var(--brass-light); }

.hero__roles {
  display: grid;
  gap: 4px;
  margin: 38px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line-on-ink);
  list-style: none;
}

.hero__roles li {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--text-on-ink);
}

.hero__roles li:first-child { color: var(--brass-light); }

.hero__portrait {
  position: relative;
  justify-self: center;
  width: min(100%, 460px);
  isolation: isolate;
}

.hero__arch {
  position: absolute;
  inset: -28px -28px auto;
  height: calc(100% + 56px);
  z-index: -1;
  color: var(--brass);
  opacity: 0.55;
  pointer-events: none;
}

.hero__arch svg { width: 100%; height: 100%; }

.hero__portrait .figure__media { background: var(--ink-2); box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6); }

.hero__portrait figcaption { color: var(--text-on-ink-muted); }

.hero__vertical {
  display: none;
  position: absolute;
  left: calc(var(--gutter) / 2 - 8px);
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
  white-space: nowrap;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 46px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-on-ink-muted);
  text-decoration: none;
}

.scroll-cue__line {
  position: relative;
  width: 1px;
  height: 44px;
  background: var(--line-on-ink);
  overflow: hidden;
}

.scroll-cue__line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 1px;
  height: 40%;
  background: var(--brass-light);
  animation: cue 2.6s var(--ease) infinite;
}

@keyframes cue { to { top: 100%; } }

/* ---------- HOME · Glance ---------- */
.glance { display: grid; gap: 56px; }

.glance__intro .lede { margin-top: 26px; }

.role-list { list-style: none; border-top: 1px solid var(--line); }

.role-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 8px 18px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.role-list .numeral { font-size: 1.4rem; line-height: 1.2; }
.role-list h3 { font-size: clamp(1.5rem, 2.3vw, 2rem); }
.role-list p { grid-column: 2; margin: 0; color: var(--text-muted); }

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.facts div { padding: 24px 22px; background: var(--ivory); }
.on-sand .facts div { background: var(--sand-3); }
.facts dt {
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.facts dd { margin: 0; font-family: var(--serif); font-size: 1.28rem; line-height: 1.3; }

/* ---------- HOME · Journey preview ---------- */
.journey__head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.journey__track {
  position: relative;
  display: grid;
  gap: 0;
  list-style: none;
}

.journey__track::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--brass);
  opacity: 0.6;
}

.journey__step { position: relative; padding: 0 0 40px 44px; }
.journey__step:last-child { padding-bottom: 0; }

.journey__step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 15px;
  height: 15px;
  border: 1px solid var(--brass);
  background: var(--sand-3);
  transform: rotate(45deg) scale(0.8);
}

.journey__step--current::before { background: var(--brass); }

.journey__year {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--brass-ink);
}

.journey__step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.journey__step p { margin: 0; font-size: 0.94rem; color: var(--text-muted); }

/* ---------- HOME · Vision band ---------- */
.vision-band__grid { display: grid; gap: 56px; }

.theme-index { list-style: none; border-top: 1px solid var(--line-on-ink); counter-reset: theme; }

.theme-index li {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
  gap: 4px 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-on-ink);
}

.theme-index li::before {
  counter-increment: theme;
  content: counter(theme, decimal-leading-zero);
  grid-row: span 2;
  padding-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  color: var(--brass-light);
}

.theme-index h3 { font-size: 1.45rem; }
.theme-index p { margin: 0; font-size: 0.92rem; color: var(--text-on-ink-muted); }

.attribution-note {
  margin-top: 28px;
  padding-left: 18px;
  border-left: 1px solid var(--brass);
  font-size: 0.84rem;
  color: var(--text-on-ink-muted);
}

.attribution-note--light { color: var(--text-muted); }

/* ---------- HOME · In action collage ---------- */
.action__grid { display: grid; gap: 40px; }

.action__caption-block { display: grid; gap: 22px; align-content: start; }

.action__links { display: flex; flex-wrap: wrap; gap: 8px 30px; margin-top: 8px; }

/* ---------- Quotes ---------- */
.quote {
  margin: 0;
  position: relative;
}

.quote blockquote { margin: 0; }

.quote__text {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.3;
  font-weight: 400;
  text-wrap: pretty;
}

.quote__text::before {
  content: "\201C";
  display: block;
  height: 0.5em;
  margin-bottom: 0.35em;
  font-size: 3.4em;
  line-height: 0.9;
  color: var(--brass);
}

.quote--small .quote__text { font-size: clamp(1.2rem, 1.8vw, 1.45rem); }
.quote--small .quote__text::before { font-size: 2.4em; }

.quote figcaption {
  margin-top: 24px;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.quote figcaption strong {
  display: block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--brass-ink);
}

.statements { display: grid; gap: 64px; }
.statements-archive { display: grid; gap: 56px; }
@media (min-width: 1024px) {
  .statements-archive { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px 96px; }
  .statements-archive > :first-child { grid-column: 1 / -1; max-width: 980px; }
}
.statements__side { display: grid; gap: 48px; align-content: start; }

/* ---------- HOME · Closing ---------- */
.closing { text-align: left; }
.closing__statement { max-width: 22ch; }

.closing__links {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line-on-ink);
  list-style: none;
}

.closing__links a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-on-ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

.closing__links a span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.closing__links a:hover { color: var(--brass-light); }

/* ---------- BIOGRAPHY ---------- */
.bio-hero__grid { display: grid; gap: 48px; align-items: end; }

.bio-hero__title .italic { color: var(--brass-ink); }

.bio-hero__figure { justify-self: start; width: min(100%, 420px); }

.bio-layout { display: grid; gap: 48px; }

.toc {
  font-size: 0.86rem;
}

.toc__title {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.toc ol { list-style: none; border-top: 1px solid var(--line); counter-reset: toc; }

.toc li { border-bottom: 1px solid var(--line); }

.toc a {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.toc a::before {
  counter-increment: toc;
  content: counter(toc, upper-roman);
  flex: none;
  width: 2.4em;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-ink);
}

.toc a:hover { color: var(--text); }

.chapter { padding-bottom: clamp(56px, 7vw, 96px); margin-bottom: clamp(56px, 7vw, 96px); border-bottom: 1px solid var(--line); }
.chapter:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.chapter__head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 28px; }
.chapter__num { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--brass-ink); flex: none; }
.chapter__head h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }

.chapter__figure { margin: 40px 0; }

.fact-file {
  margin: 40px 0;
  padding: 30px 28px;
  background: var(--sand-3);
  border-top: 1px solid var(--brass);
}

.fact-file h3 { margin: 0 0 18px; font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-ink); }

.fact-file dl { margin: 0; display: grid; gap: 14px; }
.fact-file dt { font-size: 0.78rem; color: var(--text-muted); }
.fact-file dd { margin: 2px 0 0; font-family: var(--serif); font-size: 1.2rem; line-height: 1.35; }

.pull {
  margin: 44px 0;
  padding: 8px 0 8px 28px;
  border-left: 1px solid var(--brass);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.35;
}

.sources {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.sources ol { padding-left: 1.3em; display: grid; gap: 6px; }
.sources a { word-break: break-word; }

/* ---------- LEADERSHIP ---------- */
.lead-hero__grid { display: grid; gap: 48px; align-items: center; }
.lead-hero__figure { max-width: 600px; }

.structure {
  display: grid;
  gap: 0;
  max-width: 880px;
  margin-inline: auto;
  list-style: none;
}

.structure__node {
  position: relative;
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: center;
}

.structure__node + .structure__node { margin-top: 44px; }

.structure__node + .structure__node::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -45px;
  width: 1px;
  height: 44px;
  background: var(--brass);
}

.structure__node--focus {
  background: var(--ink);
  color: var(--text-on-ink);
  border-color: var(--ink);
}

.structure__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.structure__node--focus .structure__label { color: var(--brass-light); }
.structure__node h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
.structure__node p { margin: 10px auto 0; max-width: 60ch; font-size: 0.9rem; color: var(--text-muted); }
.structure__node--focus p { color: var(--text-on-ink-muted); }

.structure__branches {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-top: 18px;
  list-style: none;
  text-align: left;
}

.structure__branches li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  line-height: 1.45;
  background: var(--ivory);
}

.ledger { list-style: none; border-top: 1px solid var(--line); }

.ledger__row {
  display: grid;
  gap: 12px 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.ledger__row h3 { font-size: clamp(1.45rem, 2.2vw, 1.9rem); }
.ledger__row .numeral { display: block; margin-bottom: 8px; font-size: 1.05rem; }
.ledger__row p { margin: 0 0 0.8em; color: var(--text-muted); }
.ledger__basis { font-size: 0.8rem; color: var(--text-muted); }
.ledger__basis a { color: var(--text); }

.band-figure { padding-block: clamp(40px, 6vw, 80px); }
.band-figure .figure { max-width: 1100px; margin-inline: auto; }

.history-note {
  display: grid;
  gap: 32px;
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--white);
}

/* ---------- VISION ---------- */
.vision-hero { overflow: hidden; }
.vision-hero__grid { display: grid; gap: 48px; align-items: end; }

.vision-hero__figure { justify-self: end; width: min(100%, 480px); }

.vision-hero__big {
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.82;
  color: var(--brass-deep);
  font-style: italic;
}

.theme-nav {
  position: sticky;
  top: var(--header-h-compact);
  z-index: 20;
  background: rgba(248, 245, 239, 0.96);
  border-block: 1px solid var(--line);
}

.theme-nav__list {
  display: flex;
  gap: 4px 28px;
  overflow-x: auto;
  list-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.theme-nav__list::-webkit-scrollbar { display: none; }

.theme-nav a {
  display: inline-block;
  padding: 16px 0;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
}

.theme-nav a:hover { color: var(--text); }

.theme {
  display: grid;
  gap: 40px;
  padding-block: clamp(64px, 9vw, 128px);
  border-bottom: 1px solid var(--line);
}

.theme:last-child { border-bottom: 0; }
.vision-themes > section { scroll-margin-top: calc(var(--header-h-compact) + 52px); }

.theme__num {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 0.9;
  font-style: italic;
  color: var(--brass-deep);
}

.theme__points {
  margin-top: 28px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.theme__points li {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.theme__points strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
}

.theme__points span { color: var(--text-muted); }

.theme__motif {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  color: var(--brass);
}

.theme__motif svg { width: 100%; height: 100%; }

.theme-band { background: var(--ink); color: var(--text-on-ink); }
.theme-band .theme { border-bottom: 0; }
.theme-band .theme__num { color: var(--brass-light); }
.theme-band .theme__points,
.theme-band .theme__points li { border-color: var(--line-on-ink); }
.theme-band .theme__points span,
.theme-band .source-link { color: var(--text-on-ink-muted); }
.theme-band .prose p { color: var(--text-on-ink); }

/* ---------- GOVERNANCE ---------- */
.gov-hero { padding-bottom: clamp(56px, 8vw, 110px); }
.gov-hero__title { max-width: 18ch; }

.layers { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }

.layer { padding: clamp(28px, 4vw, 44px); background: var(--ivory); }
.layer--focus { background: var(--ink); color: var(--text-on-ink); }

.layer__tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.layer--focus .layer__tag { color: var(--brass-light); }
.layer h3 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); margin-bottom: 14px; }
.layer p { font-size: 0.94rem; color: var(--text-muted); }
.layer--focus p { color: var(--text-on-ink-muted); }
.layer ul { list-style: none; margin-top: 16px; display: grid; gap: 8px; font-size: 0.9rem; }
.layer li { padding-left: 18px; position: relative; }
.layer li::before { content: ""; position: absolute; left: 0; top: 0.75em; width: 8px; height: 1px; background: var(--brass); }

.council { display: grid; gap: 48px; align-items: start; }
.council__figures { display: grid; gap: 28px; }

.entity-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.entity-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.entity-table caption {
  text-align: left;
  padding-bottom: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.entity-table th,
.entity-table td {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.entity-table thead th {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-ink);
  border-bottom-color: var(--brass);
}

.entity-table tbody th { font-family: var(--serif); font-size: 1.15rem; font-weight: 500; width: 36%; }

.council-record { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.council-record li { display: grid; gap: 6px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.council-record time { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-ink); }
.council-record h3 { font-size: 1.35rem; }
.council-record p { margin: 0; font-size: 0.92rem; color: var(--text-muted); }

/* ---------- TIMELINE ---------- */
.tl-hero { padding-bottom: clamp(48px, 6vw, 88px); }

.tl-legend { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 36px; list-style: none; font-size: 0.8rem; color: var(--text-on-ink-muted); }
.tl-legend li { display: inline-flex; align-items: center; gap: 10px; }
.tl-legend i { width: 9px; height: 9px; transform: rotate(45deg); border: 1px solid var(--brass-light); }
.tl-legend .is-filled { background: var(--brass-light); }

.tl { position: relative; list-style: none; padding-bottom: 40px; }

.tl::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line-on-ink);
}

.tl__era {
  position: relative;
  padding: 56px 0 28px 48px;
}

.tl__era h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.tl__item {
  position: relative;
  padding: 0 0 56px 48px;
}

.tl__item::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 10px;
  width: 13px;
  height: 13px;
  border: 1px solid var(--brass-light);
  background: var(--ink);
  transform: rotate(45deg);
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.tl__item--key::before { background: var(--brass-light); }

.tl__item.is-active::before {
  background: var(--brass-light);
  box-shadow: 0 0 0 6px rgba(201, 177, 134, 0.14);
}

.tl__date {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1;
  color: var(--text-on-ink);
}

.tl__date small {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-light);
}

.tl__body { margin-top: 18px; max-width: 60ch; }
.tl__body h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); margin-bottom: 10px; color: var(--text-on-ink); }
.tl__body p { color: var(--text-on-ink-muted); font-size: 0.96rem; }
.tl__body .figure { margin-top: 26px; }
.tl__body .figure__media { background: var(--ink-2); }

/* ---------- INITIATIVES ---------- */
.init-hero__grid { display: grid; gap: 48px; align-items: end; }
.init-hero__figure { width: min(100%, 560px); justify-self: end; }

.init-layout { display: grid; gap: 48px; }

.init-index { font-size: 0.86rem; }
.init-index ol { list-style: none; border-top: 1px solid var(--line); }
.init-index li { border-bottom: 1px solid var(--line); }
.init-index a { display: grid; grid-template-columns: 3.4em 1fr; gap: 8px; padding: 11px 0; text-decoration: none; color: var(--text-muted); }
.init-index a:hover { color: var(--text); }
.init-index time { color: var(--brass-ink); font-variant-numeric: tabular-nums; }

.dossier {
  padding-block: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.dossier:first-child { padding-top: 0; }

.dossier__head { display: grid; gap: 10px; margin-bottom: 24px; }
.dossier__year { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-ink); }
.dossier__head h2 { font-size: clamp(1.7rem, 2.8vw, 2.35rem); }

.dossier__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin: 26px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.dossier__meta div { padding: 18px 20px; background: var(--ivory); }
.dossier__meta dt { margin-bottom: 6px; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-ink); }
.dossier__meta dd { margin: 0; font-size: 0.92rem; line-height: 1.6; }

.dossier .figure { margin: 30px 0 0; }

.figure-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
}

.figure-stats div { padding: 20px; background: var(--white); }
.figure-stats strong { display: block; font-family: var(--serif); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; line-height: 1.05; }
.figure-stats span { display: block; margin-top: 6px; font-size: 0.8rem; color: var(--text-muted); line-height: 1.45; }

/* ---------- NEWS ---------- */
.news-hero { padding-bottom: 40px; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.filter-bar button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.filter-bar button:hover { border-color: var(--brass); color: var(--text); }
.filter-bar button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--ivory); }

.lead-story {
  display: grid;
  gap: 36px;
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
}

.story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-bottom: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-ink);
}

.story-meta span + span::before { content: "·"; margin-right: 18px; color: var(--text-muted); }

.lead-story h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin-bottom: 18px; }

.story-grid {
  display: grid;
  gap: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.story {
  display: grid;
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.story h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); margin-bottom: 10px; }
.story p { color: var(--text-muted); font-size: 0.94rem; margin-bottom: 12px; }
.story .figure { max-width: 560px; }

.story__date {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
}

/* ---------- GALLERY ---------- */
.gallery-hero { padding-bottom: clamp(40px, 5vw, 72px); }

.masonry {
  columns: 1;
  column-gap: 22px;
}

.masonry__item {
  break-inside: avoid;
  margin: 0 0 22px;
}

.masonry__link {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  background: var(--sand-2);
}

.masonry__link img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.8s var(--ease), opacity 0.4s ease;
}

.masonry__link img.is-small { width: auto; max-width: 100%; margin-inline: auto; }

.masonry__link:hover img { transform: scale(1.025); }

.masonry__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 22, 43, 0.72);
  color: var(--ivory);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry__zoom svg { width: 16px; height: 16px; }
.masonry__link:hover .masonry__zoom,
.masonry__link:focus-visible .masonry__zoom { opacity: 1; }

.masonry__item figcaption { margin-top: 10px; font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.lightbox {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(10, 14, 28, 0.96);
  color: var(--text-on-ink);
}

.lightbox::backdrop { background: rgba(10, 14, 28, 0.9); }

.lightbox__inner {
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  padding: 12px var(--gutter) 20px;
}

.lightbox__bar { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.lightbox__count { font-size: 0.74rem; letter-spacing: 0.2em; color: var(--text-on-ink-muted); }

.lightbox__stage {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  min-height: 0;
}

.lightbox__img {
  justify-self: center;
  max-width: 100%;
  max-height: calc(100dvh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox__caption { margin: 14px auto 0; max-width: 70ch; text-align: center; font-size: 0.86rem; color: var(--text-on-ink-muted); min-height: 1.4em; }

.lightbox .icon-button { color: var(--text-on-ink); }
.lightbox .icon-button:hover { background: rgba(236, 230, 218, 0.1); }

/* ---------- CONTACT ---------- */
.contact { display: grid; gap: 56px; align-items: start; }

.contact__card { border-top: 1px solid var(--brass); padding-top: 32px; }

.contact__name { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin: 0 0 6px; font-weight: 500; line-height: 1.1; }

.contact__list { list-style: none; margin-top: 32px; border-top: 1px solid var(--line); }

.contact__list li { border-bottom: 1px solid var(--line); }

.contact__list a {
  display: grid;
  gap: 4px;
  padding: 22px 0;
  text-decoration: none;
  transition: padding 0.35s var(--ease);
}

.contact__list a:hover { padding-left: 8px; }
.contact__list span { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-ink); }
.contact__list strong { font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 500; word-break: break-word; }

.contact__figure { max-width: 569px; }

.contact__note {
  margin-top: 40px;
  padding: 26px 28px;
  background: var(--sand-3);
  font-size: 0.9rem;
  color: var(--text-muted);
}
