/* =========================================================
   AACA — Refined homepage stylesheet
   Premium editorial, restrained.

   Type pairing: Freight (display + serif body) + Halyard (sans).
   Both Adobe Fonts, both Joshua Darden — they share rhythm.

   Why this pair (and why we left Operetta):
     - Operetta is a high-contrast didone. Gorgeous at hero size, but its
       hairline-to-stem ratio fatigues the eye at 16–28px regardless of
       which optical cut you call. The colophon body and journal lede both
       sat squarely in that zone.
     - Freight is Dutch-warm and lower-contrast — scholarly without
       fashion-magazine severity. Halyard is its sans counterpart from the
       same designer; together they read as monograph, not Vogue.
   ========================================================= */

/* ----- Tokens -----
   Bronze refinement: v1 used #c49a3f (oklch ~0.71 0.115 80) which sits in
   the muddy mustard zone (hue ~80). Refined to oklch(0.66 0.13 65) — shifted
   ~15° toward orange, deepened, slightly more saturated. Reads as polished
   metal, not olive paint.

   Alternate bronzes (uncomment to swap and review):
     --bronze: oklch(0.78 0.135 80);   // brighter "polished brass"
     --bronze: oklch(0.72 0.090 85);   // restrained "aged champagne"
     --bronze: oklch(0.62 0.140 55);   // deeper "antique copper"
*/
:root {
  /* Navy family — three tones along one axis (hue 252).
     --ink-strip   bluer, "header unit" only (top bar + nav CTA). The accent
                   navy. Used sparingly so it reads as a treated band, not
                   as the page's dominant color.
     --ink         mid-navy workhorse. Body text, borders, hero title, hero
                   CTA, footer. Slightly bluer than v1 so it feels related
                   to --ink-strip, but tonally restrained.
     --ink-deep    midnight anchor. Reserved for the event section (a large
                   dark surface where we want gravitas, not "blue panel"). */
  --ink-strip:    oklch(0.24 0.080 252);
  --ink:          oklch(0.21 0.055 252);
  --ink-soft:     oklch(0.30 0.045 252);
  --ink-rule:     oklch(0.36 0.035 252);
  --ink-deep:     oklch(0.16 0.025 252);

  --paper:        oklch(0.97 0.012 90);
  --cream:        oklch(0.94 0.020 88);
  --cream-deep:   oklch(0.90 0.025 86);

  --bronze:       oklch(0.66 0.130 65);
  --bronze-deep:  oklch(0.55 0.115 60);

  --text:         oklch(0.25 0.025 250);
  --muted:        oklch(0.50 0.020 250);

  --rule:         oklch(0.86 0.018 85);
  --rule-strong:  oklch(0.74 0.020 85);
  --rule-dark:    oklch(0.30 0.025 252);

  /* Type families — Adobe Fonts kit slugs.
     Both Freight and Halyard ship optical-size cuts. Pick the cut that
     matches the rendered px range so contrast and proportions read as
     designed. Stacks cascade from the ideal cut to a workhorse fallback
     so missing kit cuts degrade gracefully instead of falling to system.

       freight-big-pro      → hero display (≥ 56px) — chiseled headline
       freight-display-pro  → section H2 / large display (36–56px)
       freight-text-pro     → H3, body serif, italic emphasis (≤ 32px)

       halyard-text         → body, lede, button labels — the workhorse

     Kit setup (fonts.adobe.com → Web Project): activate Freight Big Pro,
     Freight Display Pro, Freight Text Pro, and Halyard Text. */
  --serif-hero:    "freight-big-pro", "freight-display-pro", "freight-text-pro", "Iowan Old Style", Georgia, serif;
  --serif-display: "freight-display-pro", "freight-text-pro", "Iowan Old Style", Georgia, serif;
  --serif-sub:     "freight-text-pro", "freight-display-pro", "Iowan Old Style", Georgia, serif;
  --serif-text:    "freight-text-pro", "Iowan Old Style", Georgia, serif;
  --serif:         var(--serif-display);
  --sans:          "halyard-text", "Halyard Text", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --measure: 66ch;

  /* Spacing — 4pt scale, semantic */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 96px;
  --space-6xl: 144px;
}

/* ----- Reset + base ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  font-family: var(--sans);
  font-feature-settings: "kern", "liga", "calt";
  color: var(--text);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease;
}
a:hover { color: var(--bronze-deep); }

::selection { background: var(--ink); color: var(--cream); }

/* ----- Display family -----
   Freight wants gentler tracking than Operetta did; its proportions are
   already open. Reduced letter-spacing from -0.012em → -0.006em. */
.display {
  font-family: var(--serif);
  font-feature-settings: "kern", "liga", "lnum";
  letter-spacing: -0.006em;
}

.smallcaps {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  font-size: 0.75em;
}

.measure { max-width: var(--measure); }

/* ----- Container ----- */
.shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.shell--wide { max-width: 1480px; }
.shell--narrow { max-width: 920px; }

/* ----- Skip / focus ----- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  z-index: 1000;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-family: var(--sans);
}
.skip-link:focus,
.skip-link:focus-visible {
  left: 0;
  outline: 2px solid var(--bronze);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

/* ============== ANNOUNCEMENT STRIP ==============
   Newspaper-masthead styling: dark ink ground, bronze label, cream body
   with bronze mid-dot separators, bronze arrow link pushed right. */
.masthead {
  background: var(--ink-strip);
  color: var(--cream);
  border-bottom: 1px solid var(--rule-dark);
  font-family: var(--sans);
}
.masthead__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  padding: 11px 0;
  flex-wrap: wrap;
}
.masthead__label {
  color: var(--bronze);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  white-space: nowrap;
}
.masthead__sep {
  width: 1px;
  height: 14px;
  background: oklch(1 0 0 / 0.2);
  display: inline-block;
}
.masthead__body {
  color: oklch(0.92 0.02 88);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.masthead__dot {
  color: var(--bronze);
  margin: 0 4px;
  font-weight: 600;
}
.masthead__link {
  margin-left: auto;
  color: var(--bronze);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  white-space: nowrap;
  transition: border-color 200ms ease, color 200ms ease;
}
.masthead__link:hover {
  border-bottom-color: var(--bronze);
  color: oklch(0.78 0.13 65);
}

@media (max-width: 720px) {
  .masthead__sep { display: none; }
  .masthead__link { margin-left: 0; }
}

/* ============== HEADER / NAV ============== */
.nav {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: relative;
}
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: 26px 0;
}
.nav__inner > nav { display: contents; }
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
}
.brand__name {
  font-family: var(--serif-sub);
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.005em;
}
.brand__name em { font-style: italic; color: var(--bronze-deep); }
.brand__sub {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 5px;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 32px);
  list-style: none;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  padding: 4px 0;
  color: var(--ink);
  border-bottom: 1px solid transparent;
}
.nav__links a:hover { border-bottom-color: var(--bronze); }
.nav__links a[aria-current="page"] {
  border-bottom-color: var(--bronze);
  color: var(--bronze-deep);
}

/* Primary action: filled ink button. The Association is asking the visitor
   to join — that's the action with the highest rank, and it should look it. */
.nav__cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: var(--ink-strip);
  padding: 11px 20px 12px;
  border: 1px solid var(--ink-strip);
  white-space: nowrap;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.nav__cta:hover {
  background: var(--bronze-deep);
  border-color: var(--bronze-deep);
  color: var(--cream);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav__toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  display: block;
}

@media (max-width: 880px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  body.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    padding: 16px clamp(20px, 4vw, 56px) 24px;
    gap: 14px;
    box-shadow: 0 12px 24px -8px oklch(0.18 0.035 252 / 0.18);
  }
}

/* ============== HERO ============== */
/* ============== HERO ==============
   Editorial spread, two columns separated by a full-height hairline.
   No surfaces, no card chrome — typography and 1px rules do all the work.

   Top: a folio header runs across the hero — kicker text on the left, a
   hairline rule on the right. This is the running-head of a printed journal.
   Below: a 3-track grid (main / 1px rule / colophon) with the rule
   stretched to the tallest column so it reads as a single editorial spine.

   Two display moments share the spread: the H1 (left) anchors the editorial
   copy; the monumental "1983" (right) anchors the colophon as its frontispiece.
   The right column is a scholarly imprint — head, prose line, definition-list
   index, and a small-caps foot — every block separated by hairline rules. */
.hero {
  padding: clamp(48px, 7.5vh, 96px) 0 clamp(64px, 9vh, 112px);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.hero__inner { display: block; }

/* ----- Folio header ----- */
.hero__folio {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(48px, 7vh, 88px);
}
.hero__kicker {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--bronze-deep);
  font-weight: 600;
}
.hero__folio-rule {
  display: block;
  height: 1px;
  background: var(--rule-strong);
}

/* ----- Two-column spread with explicit middle rule -----
   The 1px middle track avoids the alignment trap of a column-edge border:
   the rule is its own grid cell, stretched by align-items, so it visually
   lines up with the gap whether main or colophon ends up taller. */
.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1px minmax(300px, 1fr);
  column-gap: clamp(28px, 4.2vw, 64px);
  align-items: stretch;
}
.hero__main { max-width: 42rem; }

.hero__rule-v {
  background: var(--rule);
  align-self: stretch;
  width: 1px;
}

/* Bigger, tighter hero title. Previously clamp(2.3,4.8vw,4.3rem) read as
   polite middle-volume — fine on a narrow column but underweight as the
   one display moment of a wide editorial spread. Bumped to 5rem with
   line-height 1.0 at large sizes so it lands as a true folio headline. */
.hero__title {
  font-family: var(--serif-hero);
  font-weight: 400;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: clamp(28px, 4.5vh, 44px);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--bronze-deep);
}

.hero__lede {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 52ch;
  margin-bottom: clamp(32px, 5vh, 48px);
  font-weight: 400;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
  flex-wrap: wrap;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 14px 22px 14px 24px;
  border: 1px solid var(--ink);
  background: transparent;
  transition: background 200ms ease, color 200ms ease;
}
.hero__cta::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease;
}
.hero__cta:hover {
  background: var(--ink);
  color: var(--cream);
}
.hero__cta:hover::after { width: 32px; }

.hero__link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-strong);
  padding-bottom: 4px;
  transition: color 200ms ease, border-color 200ms ease;
}
.hero__link:hover {
  color: var(--bronze-deep);
  border-bottom-color: var(--bronze);
}

/* ----- Colophon -----
   Frontispiece for the Association: monumental year + one prose line +
   labeled index + small-caps imprint line. No surface, no panel — hairline
   rules between blocks carry the rhythm. */
.colophon {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 30px);
  align-self: start;
  padding-top: 4px;
}

.colophon__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.colophon__mark-lbl {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--bronze-deep);
  font-weight: 600;
}
/* Monumental establishment year — co-equal display anchor with the H1 so
   the right column has its own headline event instead of leading with a
   small bookplate. Sized just below the H1's clamp ceiling so the H1
   still leads the page. */
.colophon__mark-year {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-feature-settings: "lnum", "kern";
}

.colophon__body {
  font-family: var(--serif-text);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.55;
  color: var(--ink-soft);
  letter-spacing: -0.002em;
  padding-top: clamp(18px, 2.5vh, 26px);
  border-top: 1px solid var(--rule);
}
.colophon__body em {
  font-style: italic;
  color: var(--bronze-deep);
  font-weight: 500;
}

.colophon__index {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vh, 18px);
  margin: 0;
  padding-top: clamp(18px, 2.5vh, 26px);
  border-top: 1px solid var(--rule);
}
.colophon__index > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.colophon__index dt {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}
.colophon__index dd {
  font-family: var(--serif-text);
  font-size: 0.98rem;
  line-height: 1.4;
  color: var(--ink);
  margin: 0;
  font-feature-settings: "lnum", "kern";
}
.colophon__index dd em {
  font-style: italic;
  color: var(--bronze-deep);
}
.colophon__sep {
  color: var(--rule-strong);
  margin: 0 4px;
}

.colophon__foot {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  padding-top: clamp(16px, 2vh, 22px);
  border-top: 1px solid var(--rule);
  margin: 0;
}

@media (max-width: 880px) {
  .hero__folio { margin-bottom: 40px; }
  .hero__layout {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 48px;
  }
  .hero__rule-v {
    width: 100%;
    height: 1px;
    align-self: stretch;
  }
  .colophon { align-self: start; }
  .colophon__mark-year { font-size: clamp(2.2rem, 9vw, 3rem); }
}

@media (max-width: 540px) {
  .hero__folio {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero__folio-rule { display: none; }
  .hero__kicker {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule-strong);
    align-self: start;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__folio,
  .hero__title,
  .hero__lede,
  .hero__actions,
  .colophon {
    animation: hero-rise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
  }
  .hero__folio    { animation-delay: 0ms; }
  .hero__title    { animation-delay: 80ms; }
  .hero__lede     { animation-delay: 180ms; }
  .hero__actions  { animation-delay: 260ms; }
  .colophon       { animation-delay: 320ms; }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== SECTION ATOMS ============== */
section.editorial {
  padding: clamp(60px, 9vh, 120px) 0;
  position: relative;
}
.editorial--cream { background: var(--cream); }
.editorial--ink {
  background: var(--ink-deep);
  color: var(--cream);
}
.editorial--ink a { color: var(--cream); }
.editorial--ink p { color: oklch(0.88 0.01 88); }

.section__label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11.5px;
  color: var(--bronze-deep);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.editorial--ink .section__label { color: var(--bronze); }

.section__title {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.010em;
  color: var(--ink);
  max-width: 22ch;
  text-wrap: balance;
}
.editorial--ink .section__title { color: var(--cream); }
.section__title em { font-style: italic; color: var(--bronze-deep); }
.editorial--ink .section__title em { color: var(--bronze); }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.editorial--ink .rule { border-top-color: var(--rule-dark); }

/* ============== DEFINITION ==============
   Two-column editorial: heading on the left, definition prose on the right.
   The pattern of a magazine "front matter" page. */
.define {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.define__head .section__title {
  margin-top: 6px;
}
.define__prose {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vh, 22px);
}
.define__prose p {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 60ch;
}
.define__more {
  margin-top: clamp(8px, 1.4vh, 16px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color 200ms ease, border-color 200ms ease;
}
.define__more:hover {
  color: var(--bronze-deep);
  border-bottom-color: var(--bronze);
}

@media (max-width: 880px) {
  .define { grid-template-columns: 1fr; gap: 32px; }
}

/* ============== PILLARS ============== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(40px, 6vh, 80px);
}
.pillar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar__topic {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bronze-deep);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: 8px;
}
.pillar__title {
  font-family: var(--serif-sub);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -0.006em;
  color: var(--ink);
}
.pillar__body {
  font-family: var(--sans);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 38ch;
}
.pillar__more {
  margin-top: auto;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
}
.pillar__more:hover { color: var(--bronze-deep); border-bottom-color: var(--bronze); }

@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== ANNUAL MEETING ============== */
.meeting {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.meeting__head { display: flex; flex-direction: column; }
.meeting__ord {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--bronze);
  margin-bottom: 12px;
}
.meeting__title {
  font-family: var(--serif-hero);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.014em;
  color: var(--cream);
  margin-bottom: 24px;
}
.meeting__title em { font-style: italic; color: var(--bronze); }

.meeting__when {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif-sub);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  color: var(--cream);
  margin-bottom: 8px;
}
.meeting__when .sep {
  width: 14px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.meeting__where {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--bronze);
  margin-bottom: 28px;
}
.meeting__lede {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
  color: oklch(0.86 0.012 88);
  margin-bottom: 32px;
}
.meeting__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--bronze);
  padding: 12px 0;
  border-bottom: 1px solid var(--bronze);
}
.meeting__cta::after {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  transition: width 200ms ease;
}
.meeting__cta:hover { color: oklch(0.78 0.13 65); }
.meeting__cta:hover::after { width: 32px; }

.meeting__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 8px;
  border-top: 1px solid var(--rule-dark);
}
.meeting__list-head {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--bronze);
  padding-top: 14px;
  margin-bottom: 16px;
}
.meeting__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-dark);
}
.meeting__list li:last-child { border-bottom: none; }
.meeting__list .yr {
  font-family: var(--serif-text);
  font-style: italic;
  font-weight: 500;
  color: var(--bronze);
  font-size: 1.25rem;
}
.meeting__list .name {
  display: block;
  font-family: var(--sans);
  color: var(--cream);
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.meeting__list .place {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: oklch(0.78 0.012 88);
}

@media (max-width: 880px) {
  .meeting { grid-template-columns: 1fr; gap: 50px; }
}

/* ============== JOURNAL ============== */
.journal {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

/* Journal cover — restored as a real bound volume.
   Navy face with gold spine and rule, off-axis a touch so it reads as a
   physical object on a shelf rather than a flat plate. */
.journal__art {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding: 20px 0 8px;
}
.journal__cover {
  position: relative;
  width: min(340px, 80vw);
  aspect-ratio: 5 / 7;
  transform: rotate(-2.2deg);
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  filter:
    drop-shadow(0 1px 0 oklch(0.18 0.035 252 / 0.12))
    drop-shadow(18px 28px 36px oklch(0.18 0.035 252 / 0.22));
}
.journal__cover:hover { transform: rotate(0deg) translateY(-4px); }

.journal__spine {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 22px;
  background:
    linear-gradient(to right,
      oklch(0.45 0.10 60) 0%,
      var(--bronze) 35%,
      oklch(0.55 0.115 60) 70%,
      oklch(0.30 0.06 60) 100%);
  border-right: 1px solid oklch(0 0 0 / 0.18);
}
.journal__face {
  position: absolute;
  left: 22px; top: 0; right: 0; bottom: 0;
  background:
    linear-gradient(165deg,
      oklch(0.22 0.035 252) 0%,
      oklch(0.16 0.030 252) 100%);
  padding: clamp(22px, 3vw, 32px) clamp(20px, 2.6vw, 30px);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  border-top: 1px solid oklch(1 0 0 / 0.06);
}
.journal__face-top {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--bronze);
}
.journal__face-title {
  margin-top: auto;
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  line-height: 0.96;
  letter-spacing: -0.012em;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.journal__face-title em {
  font-style: italic;
  color: var(--bronze);
}
.journal__face-rule {
  width: 56%;
  height: 1px;
  background: var(--bronze);
  margin: clamp(18px, 2.4vw, 26px) 0 clamp(12px, 1.6vw, 18px);
}
.journal__face-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10.5px;
  color: oklch(0.78 0.02 88);
  font-weight: 500;
}

/* Faint shelf shadow to ground the cover. */
.journal__shelf {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 14px;
  background: radial-gradient(ellipse at center,
    oklch(0.18 0.035 252 / 0.18) 0%,
    transparent 70%);
  filter: blur(6px);
  z-index: -1;
}

.journal__copy h2.section__title { max-width: 16ch; }

.journal__lede {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 52ch;
  margin: 22px 0 28px;
}
.journal__lede em {
  font-family: var(--serif-text);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.08em;
}

.journal__facts {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: clamp(40px, 6vw, 80px);
  row-gap: 16px;
  padding: 24px 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  margin-bottom: 28px;
}
.journal__facts li {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 14px;
  align-items: baseline;
}
.journal__facts strong {
  font-family: var(--serif-sub);
  font-weight: 500;
  color: var(--bronze-deep);
  font-size: 1.5rem;
  line-height: 1;
  min-width: 4ch;
}
.journal__facts span {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.journal__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
}
.journal__cta:hover { color: var(--bronze-deep); border-bottom-color: var(--bronze); }
.journal__cta::after { content: ""; width: 22px; height: 1px; background: currentColor; }

@media (max-width: 880px) {
  .journal { grid-template-columns: 1fr; gap: 56px; }
  .journal__art { order: 2; }
  .journal__copy { order: 1; }
}

@media (max-width: 600px) {
  .journal__facts {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }
}

/* ============== GOVERNANCE DIRECTORY ============== */
.directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  margin-top: clamp(40px, 6vh, 72px);
}
.dir-entry {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(32px, 4vw, 48px) clamp(20px, 3vw, 36px);
  border-right: 1px solid var(--rule);
}
.dir-entry:last-child { border-right: none; }
.dir-entry__topic {
  font-family: var(--sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: var(--bronze-deep);
}
.dir-entry__title {
  font-family: var(--serif-sub);
  font-weight: 500;
  font-size: clamp(1.5rem, 2vw, 1.85rem);
  line-height: 1.15;
  color: var(--ink);
}
.dir-entry__body {
  font-family: var(--sans);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.6;
}
.dir-entry__more {
  margin-top: auto;
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
}
.dir-entry__more:hover { color: var(--bronze-deep); border-bottom-color: var(--bronze); }

@media (max-width: 880px) {
  .directory { grid-template-columns: 1fr; }
  .dir-entry {
    border-right: none;
    border-bottom: 1px solid var(--rule);
    padding: 32px 0;
  }
  .dir-entry:last-child { border-bottom: none; }
}

/* ============== MEMBERSHIP ============== */
.join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.join__lede {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.6;
  color: var(--text);
  max-width: 52ch;
  margin: 28px 0 32px;
}
.join__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  font-size: 13px;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px 22px;
  background: transparent;
  transition: background 200ms ease, color 200ms ease;
}
.join__cta:hover { background: var(--ink); color: var(--cream); }
.join__cta::after { content: ""; width: 22px; height: 1px; background: currentColor; }

.tiers {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.tiers li {
  display: grid;
  grid-template-columns: minmax(140px, 0.5fr) 1fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.tiers li:first-child { border-top: 1px solid var(--rule-strong); }
.tiers li:last-child { border-bottom: 1px solid var(--rule-strong); }

/* Tier names read as editorial labels — sans, weight 600, slight tracking.
   Sans here gives the column a clear anchor against the descriptive prose
   to its right; a serif at 0.92rem would read as decorative, not as a label. */
.tiers__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.tiers__detail {
  font-family: var(--sans);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 52ch;
}

@media (max-width: 540px) {
  .tiers li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 880px) {
  .join { grid-template-columns: 1fr; }
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: oklch(0.85 0.012 88);
  padding: clamp(60px, 9vh, 100px) 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-dark);
}
.footer__brand .footer__name {
  font-family: var(--serif-sub);
  font-weight: 500;
  color: var(--cream);
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
  max-width: 14ch;
}
.footer__brand .footer__name em { font-style: italic; color: var(--bronze); }
.footer__tag {
  font-family: var(--sans);
  font-style: italic;
  color: oklch(0.74 0.012 88);
  font-size: 0.95rem;
  max-width: 28ch;
  line-height: 1.55;
}

.footer__col h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-family: var(--sans);
  color: oklch(0.85 0.012 88);
  font-size: 0.93rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.footer__col a:hover { color: var(--bronze); border-bottom-color: var(--bronze); }

.footer__col address {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.93rem;
  line-height: 1.7;
}
.footer__col address a { color: oklch(0.85 0.012 88); }

.footer__legal {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 11px;
  color: oklch(0.7 0.012 88);
  flex-wrap: wrap;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}
.footer__legal a { color: oklch(0.7 0.012 88); }
.footer__legal a:hover { color: var(--bronze); }

@media (max-width: 880px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============== Reduced motion ============== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============== Print ============== */
@media print {
  .masthead, .nav, .footer__legal { display: none; }
  body { background: white; color: black; }
  .editorial--ink, .footer { background: white !important; color: black !important; }
}
