:root {
  --navy: #111d29;
  --navy-deep: #09121a;
  --burgundy: #541b2b;
  --burgundy-deep: #35101b;
  --charcoal: #27231f;
  --ink: #29231d;
  --ink-soft: #554c42;
  --muted: #685d51;
  --gold: #b79553;
  --gold-bright: #d8b975;
  --gold-ink: #74531f;
  --ivory: #f8f3e9;
  --parchment: #eee4d2;
  --paper: #fbf7ef;
  --line: rgba(73, 57, 39, 0.2);
  --line-dark: rgba(235, 210, 158, 0.24);
  --shadow: 0 22px 60px rgba(19, 14, 10, 0.16);
  --font-serif: "Cormorant Garamond", "Iowan Old Style", Baskerville, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.72;
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(76, 55, 31, 0.24) 0 0.5px, transparent 0.7px),
    radial-gradient(circle at 78% 67%, rgba(76, 55, 31, 0.18) 0 0.45px, transparent 0.7px);
  background-size: 13px 17px, 19px 23px;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

figure,
address {
  margin: 0;
}

address {
  font-style: normal;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--burgundy);
}

:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--burgundy-deep);
}

::selection {
  color: var(--ivory);
  background: var(--burgundy);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  margin-bottom: 1rem;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.container {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: var(--ivory);
  border: 2px solid var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header and primary navigation */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--ivory);
  background: rgba(9, 18, 26, 0.88);
  border-bottom: 1px solid rgba(216, 185, 117, 0.38);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 18, 26, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
}

.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.78rem;
  color: var(--ivory);
  text-decoration: none;
}

.wordmark:hover,
.wordmark:focus-visible {
  color: var(--ivory);
}

.wordmark-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wordmark-copy {
  display: grid;
  line-height: 1.02;
}

.wordmark-copy > span {
  color: rgba(248, 243, 233, 0.72);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wordmark-copy strong {
  font-family: var(--font-serif);
  font-size: 1.36rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.85rem, 1.55vw, 1.45rem);
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(248, 243, 233, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-bright);
  transition: transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="location"] {
  color: var(--ivory);
}

.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  min-width: 86px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid rgba(216, 185, 117, 0.55);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
}

.nav-toggle-word {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  position: relative;
  width: 16px;
  height: 12px;
}

.nav-toggle-icon i {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transition: top 160ms ease, transform 160ms ease;
}

.nav-toggle-icon i:first-child {
  top: 3px;
}

.nav-toggle-icon i:last-child {
  top: 9px;
}

.nav-toggle.is-open .nav-toggle-icon i:first-child,
.nav-toggle.is-open .nav-toggle-icon i:last-child {
  top: 6px;
}

.nav-toggle.is-open .nav-toggle-icon i:first-child {
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-icon i:last-child {
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: max(720px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background: var(--navy-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center 44%;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 12, 17, 0.94) 0%, rgba(8, 15, 22, 0.79) 43%, rgba(8, 15, 22, 0.33) 76%, rgba(8, 15, 22, 0.56) 100%),
    linear-gradient(0deg, rgba(7, 13, 19, 0.88) 0%, transparent 38%, rgba(7, 13, 19, 0.42) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(216, 185, 117, 0.24);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  min-height: max(720px, 100svh);
  grid-template-rows: 1fr auto;
  align-items: end;
  padding-top: calc(var(--header-height) + clamp(6rem, 13vh, 10rem));
  padding-bottom: clamp(2.25rem, 6vh, 4.5rem);
}

.hero-copy {
  max-width: 920px;
  min-width: 0;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  width: 54px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 900px;
  margin-bottom: 1.4rem;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(4.8rem, 8.6vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.hero h1 span {
  display: block;
}

.hero-deck {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(248, 243, 233, 0.86);
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.35;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem 1.5rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.82rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-deep);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.button-gold:hover {
  color: var(--navy-deep);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button-burgundy {
  color: var(--ivory);
  background: var(--burgundy);
  border-color: var(--burgundy);
}

.button-burgundy:hover {
  color: var(--ivory);
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.45rem;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.095em;
  text-decoration-color: rgba(84, 27, 43, 0.45);
  text-transform: uppercase;
}

.text-link-light,
.text-link-light:hover {
  color: var(--ivory);
  text-decoration-color: rgba(248, 243, 233, 0.48);
}

.hero-folio {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(4rem, 10vh, 8rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 185, 117, 0.42);
  color: rgba(248, 243, 233, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-folio strong {
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Shared editorial structure */

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-heading {
  max-width: 760px;
  min-width: 0;
}

.section-heading-wide {
  max-width: 960px;
}

.section-marker {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-marker::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--gold);
}

.section-marker span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(84, 27, 43, 0.35);
  color: var(--burgundy);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0;
}

.section-heading h2 {
  margin-bottom: 1.4rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 6.4vw, 6.1rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.section-heading > p:not(.section-marker) {
  max-width: 65ch;
  color: var(--muted);
}

.section-heading-dark .section-marker {
  color: var(--gold-bright);
}

.section-heading-dark .section-marker span {
  border-color: rgba(216, 185, 117, 0.44);
  color: var(--gold-bright);
}

.section-heading-dark h2 {
  color: var(--ivory);
}

.section-heading-dark > p:not(.section-marker) {
  color: rgba(248, 243, 233, 0.7);
}

.prose {
  max-width: 68ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose-lead {
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(1.38rem, 2.1vw, 1.75rem);
  line-height: 1.52;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.06em 0.12em 0 0;
  color: var(--burgundy);
  font-family: var(--font-serif);
  font-size: 4.25em;
  font-weight: 500;
  line-height: 0.74;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.purpose-ledger {
  border-top: 1px solid var(--gold);
}

.purpose-ledger h3 {
  margin: 1.25rem 0 1rem;
  color: var(--burgundy);
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.purpose-ledger ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.purpose-ledger li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--line);
}

.purpose-ledger li span {
  color: var(--gold-ink);
  font-family: var(--font-serif);
  font-size: 1rem;
}

.purpose-ledger li strong {
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Founding chapter */

.chapter {
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 149, 83, 0.12), transparent 28rem),
    linear-gradient(135deg, var(--burgundy-deep), #411421 55%, #281019);
}

.chapter::after,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.chapter > .container,
.contact > .container {
  position: relative;
  z-index: 1;
}

.chapter-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: end;
}

.prose-on-dark {
  color: rgba(248, 243, 233, 0.78);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.56;
}

.chapter-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(280px, 0.64fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
  margin-top: clamp(4rem, 8vw, 7rem);
}

.archival-figure,
.event-figure {
  min-width: 0;
}

.photo-link {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  background: #0b0b0a;
  border: 1px solid rgba(216, 185, 117, 0.36);
  text-decoration: none;
}

.photo-link img {
  width: 100%;
  height: auto;
  transition: transform 280ms ease, opacity 280ms ease;
}

.photo-link:hover img,
.photo-link:focus-visible img {
  transform: scale(1.012);
  opacity: 0.92;
}

.enlarge-cue {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  min-width: 48px;
  min-height: 42px;
  place-items: center;
  padding: 0.5rem 0.65rem;
  color: var(--ivory);
  background: rgba(9, 18, 26, 0.88);
  border: 1px solid rgba(216, 185, 117, 0.55);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.archival-figure figcaption,
.event-figure figcaption {
  padding-top: 0.72rem;
  color: rgba(248, 243, 233, 0.68);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.4;
}

.archival-figure figcaption span {
  margin-right: 0.55rem;
  color: var(--gold-bright);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Founders */

.founders-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}

.founders-heading > p {
  margin-bottom: 1.5rem;
}

.leadership-record {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.leadership-record::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 12%, var(--line) 88%, transparent);
}

.profile-record {
  min-width: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--gold);
}

.record-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.record-label span {
  color: var(--burgundy);
}

.portrait-frame {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--parchment);
}

.portrait-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: 50% 44%;
}

.portrait-placeholder {
  display: grid;
  aspect-ratio: 2 / 3;
  place-content: center;
  place-items: center;
  gap: 1rem;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(183, 149, 83, 0.12), transparent 55%),
    var(--parchment);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.portrait-initials {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(84, 27, 43, 0.38);
  color: var(--burgundy);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.profile-copy {
  position: relative;
  padding: 1.8rem 0 0 1.4rem;
  border-left: 1px solid var(--gold);
}

.profile-copy h3 {
  margin-bottom: 0.4rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(2.45rem, 4vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.profile-copy h3 span,
.continuity-record h3 span {
  display: block;
  color: var(--muted);
  font-size: 0.58em;
  font-style: italic;
  letter-spacing: 0;
}

.profile-role {
  margin-bottom: 0;
  color: var(--burgundy);
  font-family: var(--font-serif);
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.3;
}

.profile-role-secondary {
  margin-top: 0.15rem;
}

.profile-term {
  margin: 0.5rem 0 1.2rem;
  color: var(--gold-ink);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-placeholder {
  max-width: 50ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}

/* Founding-year archive */

.archive {
  background:
    linear-gradient(rgba(238, 228, 210, 0.68), rgba(248, 243, 233, 0.84)),
    var(--parchment);
  border-top: 1px solid rgba(183, 149, 83, 0.32);
}

.archive-heading {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.archive-year {
  display: grid;
  padding-top: 1rem;
  border-top: 2px solid var(--burgundy);
  color: var(--burgundy);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.archive-year span {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.archive-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
  list-style: none;
}

.archive-list::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 2rem;
  left: 89px;
  width: 1px;
  background: linear-gradient(var(--burgundy), rgba(84, 27, 43, 0.18));
}

.archive-item {
  position: relative;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.archive-item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 83px;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 3px solid var(--parchment);
  background: var(--burgundy);
  box-shadow: 0 0 0 1px var(--burgundy);
}

.archive-item:last-child {
  padding-bottom: 0;
}

.event-date {
  display: grid;
  align-content: start;
  justify-items: start;
  color: var(--burgundy);
  font-style: normal;
  line-height: 1;
}

.event-day {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 500;
}

.event-month,
.event-year {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.55;
  text-transform: uppercase;
}

.archive-entry {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(260px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-top: 1.3rem;
  border-top: 1px solid rgba(84, 27, 43, 0.28);
}

.event-copy {
  min-width: 0;
}

.event-index {
  margin-bottom: 0.75rem;
  color: var(--gold-ink);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.event-copy h3 {
  margin-bottom: 0.9rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 4.4vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.event-copy > p:not(.event-index) {
  color: var(--ink-soft);
}

.event-details {
  margin: 1.45rem 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.event-details div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.event-details dt {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.35;
}

.event-figure .photo-link {
  border-color: rgba(84, 27, 43, 0.24);
}

.event-figure figcaption {
  color: var(--muted);
}

.missing-record {
  display: grid;
  align-content: center;
  min-height: 210px;
  margin: 0;
  padding: 2rem;
  border: 1px solid rgba(84, 27, 43, 0.25);
  color: var(--muted);
  background: rgba(248, 243, 233, 0.46);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
}

.missing-record span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

/* Continuity */

.continuity {
  color: var(--ivory);
  background:
    radial-gradient(circle at 88% 18%, rgba(183, 149, 83, 0.14), transparent 28rem),
    var(--navy);
}

.continuity-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.continuity-record {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: center;
}

.continuity-record article {
  min-height: 230px;
  padding: 1.6rem;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.025);
}

.continuity-year {
  margin-bottom: 2.5rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.continuity-record h3 {
  margin-bottom: 0.6rem;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.continuity-record h3 span {
  color: rgba(248, 243, 233, 0.58);
}

.continuity-record article > p:last-child {
  margin-bottom: 0;
  color: rgba(248, 243, 233, 0.68);
  font-family: var(--font-serif);
  font-size: 1.08rem;
}

.continuity-arrow {
  display: flex;
  align-items: center;
}

.continuity-arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.continuity-arrow span::after {
  content: "";
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* Membership and contact */

.membership {
  background: var(--ivory);
}

.membership-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.membership-copy {
  max-width: 68ch;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold);
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.55;
}

.membership-copy .small-note {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.65;
}

.contact {
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 12% 80%, rgba(84, 27, 43, 0.32), transparent 32rem),
    var(--navy-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.06fr);
  gap: clamp(3rem, 9vw, 8rem);
  align-items: start;
}

.contact-ledger {
  border-top: 1px solid var(--gold);
}

.contact-ledger a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  min-height: 70px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ivory);
  text-decoration: none;
  transition: background 160ms ease, padding 160ms ease;
}

.contact-ledger a:hover,
.contact-ledger a:focus-visible {
  padding-inline: 0.7rem;
  color: var(--ivory);
  background: rgba(216, 185, 117, 0.07);
}

.contact-ledger span {
  color: var(--gold-bright);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-ledger strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
}

.disclaimer {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 2rem;
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.disclaimer h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.disclaimer p {
  max-width: 80ch;
  margin-bottom: 0;
  color: rgba(248, 243, 233, 0.68);
  font-size: 0.88rem;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(248, 243, 233, 0.6);
  background: #070e14;
  border-top: 1px solid rgba(216, 185, 117, 0.24);
  font-size: 0.76rem;
}

.footer-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.footer-layout p {
  margin: 0;
}

.footer-wordmark {
  display: inline-block;
  margin-bottom: 0.25rem;
  color: var(--ivory);
  font-family: var(--font-serif);
  font-size: 1.35rem;
  text-decoration: none;
}

.footer-wordmark:hover {
  color: var(--gold-bright);
}

/* Accessible lightbox */

.lightbox {
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  color: var(--ivory);
  background: rgba(5, 9, 13, 0.97);
}

.lightbox::backdrop {
  background: rgba(5, 9, 13, 0.88);
}

.lightbox[open] {
  display: grid;
}

.lightbox-panel {
  position: relative;
  display: grid;
  width: min(1500px, 100%);
  height: 100dvh;
  margin-inline: auto;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  padding: 74px clamp(18px, 4vw, 58px) 22px;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: clamp(18px, 4vw, 58px);
  z-index: 2;
  min-width: 84px;
  min-height: 44px;
  border: 1px solid rgba(216, 185, 117, 0.5);
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close span {
  margin-right: 0.35rem;
  color: var(--gold-bright);
  font-size: 1.2rem;
  vertical-align: -0.08em;
}

.lightbox-figure {
  display: grid;
  min-width: 0;
  min-height: 0;
  place-items: center;
  align-self: stretch;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(100dvh - 190px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-figure figcaption {
  width: min(900px, 100%);
  margin-top: 0.7rem;
  color: rgba(248, 243, 233, 0.72);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
  text-align: center;
}

.lightbox-controls {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(216, 185, 117, 0.25);
}

.lightbox-controls button {
  min-height: 44px;
  border: 0;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-controls button:first-child {
  justify-self: start;
}

.lightbox-controls button:last-child {
  justify-self: end;
}

.lightbox-controls button:hover {
  color: var(--gold-bright);
}

.lightbox-controls [data-lightbox-count] {
  color: rgba(248, 243, 233, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Responsive layout */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 40px, 1240px);
  }

  html:not(.js) .site-header {
    position: relative;
    background: var(--navy-deep);
  }

  html:not(.js) .header-inner {
    flex-wrap: wrap;
    padding-block: 0.7rem;
  }

  html:not(.js) .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 0.3rem;
    border-top: 1px solid var(--line-dark);
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0.6rem max(20px, calc((100vw - 1240px) / 2 + 20px)) 1.2rem;
    color: var(--ivory);
    background: rgba(9, 18, 26, 0.99);
    border-bottom: 1px solid rgba(216, 185, 117, 0.38);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
  }

  .js .site-nav.is-open {
    display: grid;
  }

  .js .site-nav a {
    min-height: 54px;
    padding-inline: 0.85rem;
    border-bottom: 1px solid rgba(216, 185, 117, 0.16);
  }

  .js .site-nav a::after {
    right: auto;
    bottom: 11px;
    left: 0.85rem;
    width: 36px;
  }

  .archive-entry {
    grid-template-columns: minmax(240px, 0.78fr) minmax(300px, 1.22fr);
  }

  .continuity-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(4.5rem, 12vw, 7rem);
  }

  .about-layout,
  .chapter-intro,
  .founders-heading,
  .membership-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-layout,
  .chapter-intro,
  .membership-layout,
  .contact-layout {
    gap: 2.5rem;
  }

  .chapter-gallery {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .leadership-record {
    gap: 2rem;
  }

  .archive-heading {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .archive-entry {
    grid-template-columns: 1fr;
  }

  .missing-record {
    min-height: 170px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(100% - 30px, 1240px);
  }

  .wordmark-mark {
    width: 38px;
    height: 38px;
  }

  .wordmark-copy strong {
    font-size: 1.16rem;
  }

  .hero,
  .hero-inner {
    min-height: max(680px, 100svh);
  }

  .hero::after {
    inset: 10px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(6, 12, 17, 0.9), rgba(8, 15, 22, 0.58)),
      linear-gradient(0deg, rgba(7, 13, 19, 0.9), transparent 52%, rgba(7, 13, 19, 0.42));
  }

  .hero h1 {
    font-size: clamp(3.65rem, 15.6vw, 5.6rem);
    line-height: 0.86;
  }

  .hero-folio {
    margin-top: 4rem;
  }

  .section {
    padding: clamp(4.5rem, 16vw, 6.5rem) 0;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 12.5vw, 4.75rem);
  }

  .chapter-gallery,
  .leadership-record,
  .archive-heading,
  .continuity-record {
    grid-template-columns: 1fr;
  }

  .leadership-record {
    gap: 4.5rem;
  }

  .leadership-record::before {
    display: none;
  }

  .archive-year {
    max-width: 240px;
  }

  .archive-list::before {
    display: none;
  }

  .archive-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .archive-item::before {
    display: none;
  }

  .event-date {
    grid-template-columns: auto 1fr auto;
    gap: 0.8rem;
    align-items: baseline;
    justify-items: start;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(84, 27, 43, 0.28);
  }

  .event-day {
    font-size: 2.4rem;
  }

  .event-month,
  .event-year {
    align-self: center;
  }

  .archive-entry {
    padding-top: 0;
    border-top: 0;
  }

  .continuity-arrow {
    min-height: 54px;
    justify-content: center;
  }

  .continuity-arrow span {
    width: 1px;
    height: 54px;
  }

  .continuity-arrow span::after {
    top: auto;
    right: -4px;
    bottom: 0;
    transform: rotate(135deg);
  }

  .disclaimer {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .wordmark-copy strong {
    max-width: 130px;
    font-size: 1.02rem;
    line-height: 0.92;
  }

  .nav-toggle {
    min-width: 76px;
  }

  .js .site-nav {
    grid-template-columns: 1fr;
    padding-inline: 15px;
  }

  .hero-eyebrow {
    gap: 0.4rem;
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .hero-eyebrow::before {
    width: 28px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.4rem);
    letter-spacing: -0.045em;
  }

  .hero-deck {
    font-size: 1.24rem;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .hero-actions .text-link,
  .button-row .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-folio {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .section-marker::after {
    width: 38px;
  }

  .section-heading h2 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .drop-cap::first-letter {
    font-size: 3.6em;
  }

  .profile-copy {
    padding-left: 1rem;
  }

  .event-copy h3 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  .event-details div,
  .contact-ledger a {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .contact-ledger a {
    align-content: center;
    padding-block: 0.75rem;
  }

  .lightbox-panel {
    padding: 66px 14px 14px;
  }

  .lightbox-close {
    top: 10px;
    right: 14px;
  }

  .lightbox-controls {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.25rem;
  }

  .lightbox-controls button {
    overflow: hidden;
    font-size: 0;
  }

  .lightbox-controls button span {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
