@charset "UTF-8";

:root {
  --red: #ce2029;
  --red-deep: #98151d;
  --red-soft: #fff0ed;
  --gold: #b9904d;
  --gold-soft: #ead7a6;
  --ivory: #fbf7ee;
  --paper: #fffdf8;
  --cream: #f2e7d6;
  --navy: #132238;
  --ink: #211d1a;
  --muted: #6f635a;
  --teal: #0f6975;
  --line: rgba(185, 144, 77, 0.3);
  --shadow: 0 22px 64px rgba(69, 38, 22, 0.11);
  --radius-lg: 30px;
  --radius-md: 22px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(206, 32, 41, 0.055), transparent 31rem),
    radial-gradient(circle at 95% 7%, rgba(15, 105, 117, 0.065), transparent 28rem),
    var(--ivory);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 10px;
  color: white;
  background: var(--navy);
  transition: top 160ms ease;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-top: 4px solid var(--red);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(18px) saturate(145%);
}
.nav-shell {
  min-height: 126px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 26px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
}
.brand-logo { flex: 0 0 auto; width: 104px; height: 113px; object-fit: contain; }
.brand small {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-transform: uppercase;
}
.brand strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.desktop-nav a {
  position: relative;
  padding: 16px 0;
  color: #51463f;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.1;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.desktop-nav a[aria-current="page"] { color: var(--red-deep); }
.language-switcher {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.language-switcher a,
.mobile-languages a {
  display: grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.language-switcher a:hover,
.language-switcher a[aria-current="true"],
.mobile-languages a:hover,
.mobile-languages a[aria-current="true"] {
  color: white;
  background: var(--navy);
}
.mobile-languages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: white;
  background: var(--red);
  font-weight: 850;
  box-shadow: 0 13px 34px rgba(206, 32, 41, 0.19);
  transition: transform 180ms ease, background 180ms ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--red-deep); }
.mobile-menu { display: none; justify-self: end; position: relative; }
.mobile-menu summary {
  min-width: 78px;
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: var(--paper);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(286px, calc(100vw - 28px));
  display: grid;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.mobile-menu nav a {
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 1.08rem;
  font-weight: 780;
  line-height: 1.2;
}
.mobile-menu nav a:hover,
.mobile-menu nav a[aria-current="page"] { color: var(--red-deep); background: var(--red-soft); }

main { min-height: 60vh; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.55; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { color: var(--navy); font-family: var(--serif); font-weight: 500; letter-spacing: -0.06em; }
h1 { margin: 15px 0 20px; font-size: clamp(3.5rem, 6.7vw, 6.8rem); line-height: 0.9; }
h2 { margin: 9px 0 0; font-size: clamp(2.5rem, 4.8vw, 4.75rem); line-height: 0.95; }
h3 {
  margin-bottom: 9px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.lead { max-width: 650px; margin-bottom: 26px; color: #53483f; font-size: clamp(1.05rem, 1.45vw, 1.22rem); }
.muted { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { color: white; background: var(--red); box-shadow: 0 14px 34px rgba(206, 32, 41, 0.18); }
.btn-red:hover { background: var(--red-deep); }
.btn-light { color: var(--navy); background: rgba(255,255,255,0.7); border-color: var(--line); }
.btn-light:hover { border-color: var(--gold); }
.text-link { color: var(--red-deep); font-weight: 850; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.mt-18 { margin-top: 18px; }
.mt-22 { margin-top: 22px; }

.home-hero { padding: 54px 0 42px; border-bottom: 1px solid var(--line); }
.home-hero-grid { min-height: 540px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.86fr); gap: 48px; align-items: center; }
.home-copy { max-width: 660px; padding: 22px 0; }
.home-copy > h1:first-child { margin-top: 0; }
.hero-media { min-height: 534px; display: grid; grid-template-rows: minmax(0, 1fr) 150px; gap: 14px; }
.hero-photo {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 42%, rgba(19,34,56,0.62)); }
.hero-caption { position: absolute; left: 24px; right: 24px; bottom: 20px; z-index: 2; color: white; }
.hero-caption strong { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.hero-caption span { display: block; max-width: 390px; margin-top: 5px; color: rgba(255,255,255,0.82); font-size: 0.9rem; }
.hero-pair { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 14px; }
.hero-stat, .hero-thumb { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: 0 15px 40px rgba(69,38,22,0.075); }
.hero-stat { display: grid; align-content: center; padding: 20px; }
.hero-stat strong { color: var(--red); font-family: var(--serif); font-size: 2rem; font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.hero-stat span { margin-top: 7px; color: var(--muted); font-size: 0.86rem; }

.proof-strip { padding: 0 0 18px; transform: translateY(-8px); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 17px 46px rgba(69,38,22,0.08);
}
.proof-item { min-height: 88px; display: grid; align-content: center; gap: 2px; padding: 16px 22px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item strong { color: var(--navy); font-family: var(--serif); font-size: 1.75rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.proof-item span { color: var(--muted); font-size: 0.78rem; }

.section { padding: clamp(3.8rem, 5.8vw, 5.25rem) 0; }
.section-paper { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.section-tint { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #fffdf8, #f6ead9 68%, #fff1ee); }
.section-head { display: grid; grid-template-columns: 0.82fr 1fr; gap: 34px; align-items: end; margin-bottom: 30px; }
.section-head p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.03rem; }
.section-intro { max-width: 880px; margin: -5px 0 28px; color: var(--muted); font-size: 1.08rem; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.split-wide { grid-template-columns: 1.1fr 0.9fr; }
.feature-image { height: 430px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.feature-image.feature-portrait { height: 760px; }
.panel {
  padding: clamp(25px, 3.3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 17px 50px rgba(69,38,22,0.075);
}
.panel p:last-child { margin-bottom: 0; }
.panel-red { color: white; border-color: transparent; background: linear-gradient(145deg, var(--red), var(--red-deep)); }
.panel-red h2, .panel-red h3, .panel-red .eyebrow, .panel-red p { color: white; }
.panel-red p { opacity: 0.82; }
.panel-red .eyebrow::before { background: white; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; }
.card-grid-four { grid-template-columns: repeat(4, 1fr); }
.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 14px 42px rgba(69,38,22,0.065);
}
.card p { margin-bottom: 0; color: var(--muted); }
.card-link { transition: transform 180ms ease, border-color 180ms ease; }
.card-link:hover { transform: translateY(-4px); border-color: var(--gold); }
.card-kicker { margin-bottom: 14px; color: var(--red); font-size: 0.73rem; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase; }
.icon-number { width: 40px; height: 40px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; color: var(--red); background: var(--red-soft); font-family: var(--serif); font-weight: 700; }
.standard-list { margin: 0; padding: 0; border-bottom: 1px solid var(--line); list-style: none; }
.standard-list li { display: grid; grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 72px); align-items: baseline; padding: 27px 0; border-top: 1px solid var(--line); }
.standard-list h3 { margin: 0; font-size: clamp(1.45rem, 2.1vw, 1.85rem); }
.standard-list p { max-width: 680px; margin: 0; color: var(--muted); font-size: 1.02rem; line-height: 1.65; }
.events-archive-section { border-top: 1px solid var(--line); background: var(--ivory); }
.events-archive-layout { display: grid; grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr); gap: clamp(40px, 8vw, 120px); align-items: start; }
.events-archive-layout h2 { margin: 19px 0 0; }
.events-archive-copy > p { max-width: 700px; margin: 0; color: var(--muted); font-size: 1.06rem; line-height: 1.72; }
.events-archive-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 700px; margin: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.events-archive-stats div { padding: 21px clamp(12px, 2vw, 24px); border-right: 1px solid var(--line); }
.events-archive-stats div:first-child { padding-left: 0; }
.events-archive-stats div:last-child { border-right: 0; }
.events-archive-stats strong { display: block; color: var(--red); font-family: var(--serif); font-size: clamp(1.7rem, 2.8vw, 2.45rem); font-weight: 520; line-height: 1; }
.events-archive-stats span { display: block; margin-top: 7px; color: var(--muted); font-size: 0.78rem; }

.officers-hero { background: linear-gradient(145deg, var(--ivory), #f5e8d6); }
.officers-hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr); gap: clamp(42px, 7vw, 96px); align-items: center; }
.officer-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.officer-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 14px 42px rgba(69,38,22,0.065); }
.officer-portrait { aspect-ratio: 5 / 6; overflow: hidden; background: var(--cream); }
.officer-portrait img { width: 100%; height: 100%; object-fit: cover; }
.officer-copy { padding: 24px; }
.officer-copy h3 { margin: 0 0 10px; font-size: clamp(1.55rem, 2.25vw, 2.05rem); line-height: 1.03; }
.officer-copy p { margin: 0; color: var(--muted); line-height: 1.55; }
.officer-copy .officer-note { margin-top: 7px; font-size: 0.88rem; }
.officer-lead-card { display: grid; grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1fr); align-items: stretch; border: 0; border-radius: var(--radius-lg); background: var(--navy); box-shadow: 0 26px 70px rgba(19,34,56,0.22); }
.officer-lead-card .officer-portrait { min-height: 520px; aspect-ratio: auto; background: #0b1d35; }
.officer-lead-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4vw, 54px); color: white; }
.officer-lead-copy .card-kicker { color: #f2c46d; }
.officer-lead-copy h2 { margin: 0 0 14px; color: white; font-size: clamp(2.8rem, 4.5vw, 4.65rem); line-height: 0.95; }
.officer-lead-copy p { margin: 0 0 20px; color: rgba(255,255,255,0.76); font-size: 1.08rem; }
.officer-lead-copy a { width: fit-content; color: white; border-bottom: 1px solid rgba(255,255,255,0.45); font-weight: 760; }
.officer-card-duo { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr); }
.officer-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.officer-duo .officer-portrait { height: 100%; aspect-ratio: auto; border-right: 2px solid var(--paper); }
.officer-card-duo .officer-copy { align-self: center; }
.officers-region-section { border-top: 1px solid var(--line); background: var(--red-soft); }
.officer-grid-region { max-width: 820px; grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 1040px) {
  .officers-hero-grid { grid-template-columns: 1fr; }
  .officer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .officer-card-duo { grid-column: span 2; }
}

.quote { margin: 22px 0; padding: 18px 21px; border-left: 4px solid var(--red); border-radius: 0 18px 18px 0; color: #483930; background: rgba(206,32,41,0.055); font-family: var(--serif); font-size: 1.25rem; line-height: 1.3; }

.editorial-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.55fr); gap: clamp(28px, 5vw, 68px); align-items: start; }
.editorial-layout-balanced { grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr); align-items: center; }
.prose-article { max-width: 780px; }
.prose-article h2 { margin-bottom: 30px; }
.prose-article p { color: #4f453e; font-size: 1.04rem; line-height: 1.78; }
.prose-article p + p { margin-top: 19px; }
.prose-article .source-link { margin-top: 28px; }
.compact-prose { max-width: 720px; }
.compact-prose h2 { margin-bottom: 25px; }
.invitation-panel { position: sticky; top: 118px; }
.milestone-panel { position: sticky; top: 118px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
.milestone-panel div { display: grid; gap: 7px; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.milestone-panel div:last-child { border-bottom: 0; }
.milestone-panel time { color: var(--red); font-family: var(--serif); font-size: 2rem; line-height: 1; }
.milestone-panel span { color: var(--muted); font-size: 0.9rem; }
.presence-panel { margin-top: 24px; padding: clamp(24px, 3.4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: 0 17px 50px rgba(69,38,22,0.07); }
.presence-panel h3 { margin-bottom: 22px; }
.presence-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; list-style: none; }
.presence-list li { position: relative; padding: 0 0 0 24px; color: #51473f; line-height: 1.62; }
.presence-list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px var(--red-soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.professional-copy { align-self: center; }
.list-heading { margin: 24px 0 13px; font-size: 1.35rem; }
.recognition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.recognition-card { padding: clamp(25px, 3.4vw, 38px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 17px 50px rgba(69,38,22,0.07); }
.recognition-card p { color: var(--muted); }
.recognition-card p:last-child { margin-bottom: 0; }

.page-hero { padding: 62px 0 54px; border-bottom: 1px solid var(--line); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 0.82fr; gap: 48px; align-items: center; }
.page-hero-copy { max-width: 680px; }
.page-hero h1 { font-size: clamp(3.35rem, 6.1vw, 6.25rem); }
.page-hero-image { height: 360px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.timeline-item { padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.timeline-item time { display: block; margin-bottom: 12px; color: var(--red); font-family: var(--serif); font-size: 2rem; font-weight: 500; line-height: 1; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 0.93rem; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.stat-card { padding: 24px 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: white; }
.stat-card strong { display: block; color: var(--red); font-family: var(--serif); font-size: 2.45rem; font-weight: 500; letter-spacing: -0.05em; line-height: 1; }
.stat-card span { display: block; margin-top: 7px; color: var(--muted); font-size: 0.85rem; }
.benefit-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.benefit-list li { display: grid; grid-template-columns: 27px 1fr; gap: 10px; color: #4b413a; }
.benefit-list li::before { content: "✓"; width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; color: var(--red); background: var(--red-soft); font-weight: 900; }
.mondiale-panel h2 { margin-bottom: 24px; letter-spacing: -0.035em; line-height: 1.12; }
.mondiale-panel > .muted { line-height: 1.82; }
.mondiale-panel .benefit-list { gap: 20px; }
.mondiale-panel .benefit-list li { line-height: 1.75; }
.event-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 17px; }
.event-card { min-height: 220px; display: grid; align-content: end; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 14px 42px rgba(69,38,22,0.065); }
.event-card .tag { width: fit-content; margin-top: 17px; padding: 6px 10px; border: 1px solid rgba(15,105,117,0.17); border-radius: 999px; color: var(--teal); background: rgba(15,105,117,0.08); font-size: 0.76rem; font-weight: 850; }

.cta-band { padding: 46px 0; color: white; background: var(--navy); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-inner h2 { margin: 0 0 8px; color: white; font-size: clamp(2.35rem, 4vw, 4rem); }
.cta-inner p { max-width: 700px; margin: 0; color: rgba(255,255,255,0.72); }
.cta-band .btn-light { color: var(--navy); background: white; border-color: white; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.contact-card { padding: clamp(26px, 3.4vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow); }
.contact-card h2 { font-size: clamp(2.45rem, 4.3vw, 4.2rem); }
.contact-card address { margin: 20px 0; color: var(--muted); font-style: normal; }
.step-list { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.step strong:first-child { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--red); }
.step h3 { margin: 2px 0 4px; font-size: 1.35rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.resource { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); }
.resource p { color: var(--muted); }

.site-footer { padding: 36px 0; color: rgba(255,255,255,0.7); background: #0d1728; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 52px; height: 68px; object-fit: contain; }
.footer-brand strong { color: white; }
.footer-brand p { margin: 2px 0 0; }
.footer-navigation { display: grid; gap: 14px; justify-items: end; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-size: 0.88rem; }
.footer-links a:hover { color: white; }
.footer-socials { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.footer-socials a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; color: white; line-height: 1; transition: border-color 160ms ease, background-color 160ms ease; }
.footer-socials a:hover { border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.08); }
.footer-socials img { display: block; width: 17px; height: 17px; }

@media (max-width: 1160px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta, .language-switcher { display: none; }
  .mobile-menu { display: block; }
}

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .nav-cta, .language-switcher { display: none; }
  .mobile-menu { display: block; }
  .home-hero-grid, .page-hero-grid, .split, .split-wide, .section-head, .contact-grid, .editorial-layout, .editorial-layout-balanced { grid-template-columns: 1fr; }
  .home-hero-grid { gap: 22px; }
  .home-copy { max-width: 760px; }
  .hero-media { min-height: 480px; }
  .page-hero-image { height: 330px; }
  .milestone-panel, .invitation-panel { position: static; }
  .card-grid-four, .timeline, .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .wrap { width: min(var(--max), calc(100% - 28px)); }
  .nav-shell { min-height: 100px; gap: 12px; }
  .brand { gap: 12px; }
  .brand-logo { width: 78px; height: 85px; }
  .brand small { font-size: 0.76rem; letter-spacing: 0.06em; }
  .brand strong { font-size: 1.34rem; }
  .home-hero { padding: 38px 0 32px; }
  .home-hero-grid { min-height: auto; }
  .home-copy { padding: 0; }
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.75rem; }
  .hero-media { min-height: 432px; grid-template-rows: 300px 118px; }
  .hero-photo { min-height: 300px; border-radius: 26px; }
  .hero-caption strong { font-size: 1.5rem; }
  .hero-caption span { display: none; }
  .hero-stat { padding: 15px; }
  .hero-stat strong { font-size: 1.45rem; }
  .proof-strip { transform: none; padding: 16px 0 0; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-item { min-height: 75px; padding: 13px 16px; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 50px 0; }
  .section-head { margin-bottom: 24px; gap: 16px; }
  .standard-list li { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .events-archive-layout { grid-template-columns: 1fr; gap: 24px; }
  .events-archive-stats { margin: 24px 0; }
  .events-archive-stats div { padding: 18px 10px; }
  .events-archive-stats div:first-child { padding-left: 0; }
  .events-archive-stats strong { font-size: 1.75rem; }
  .officers-hero-grid { gap: 30px; }
  .officer-lead-card { display: block; }
  .officer-lead-card .officer-portrait { min-height: 0; aspect-ratio: 5 / 6; }
  .officer-lead-copy { padding: 30px 24px; }
  .officer-lead-copy h2 { font-size: 3.1rem; }
  .officer-grid, .officer-grid-region { grid-template-columns: 1fr; }
  .officer-card-duo { grid-column: auto; display: block; }
  .officer-duo { aspect-ratio: 5 / 3; }
  .feature-image, .page-hero-image { height: 300px; }
  .feature-image.feature-portrait { height: 640px; }
  .card-grid, .card-grid-four, .timeline, .stat-grid, .event-grid, .resource-grid, .presence-list, .benefit-grid, .recognition-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 44px 0 38px; }
  .page-hero-grid { gap: 26px; }
  .page-hero h1 { font-size: 3.2rem; }
  .timeline-item, .card, .event-card { padding: 21px; }
  .event-card { min-height: auto; }
  .cta-band { padding: 40px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-navigation { justify-items: start; }
  .footer-links { justify-content: flex-start; }
  .footer-socials { justify-content: flex-start; }
}

/* Past Events archive */
[hidden] { display: none !important; }
.archive-index-hero { background: linear-gradient(150deg, rgba(255,253,248,0.96), rgba(242,231,214,0.72)); }
.archive-hero-image { position: relative; height: 440px; }
.archive-hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(19,34,56,0.78)); }
.archive-hero-caption { position: absolute; z-index: 2; left: 26px; right: 26px; bottom: 24px; color: white; }
.archive-hero-caption span { display: block; margin-bottom: 4px; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.17em; text-transform: uppercase; opacity: 0.76; }
.archive-hero-caption strong { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -0.045em; line-height: 1; }
.archive-hero-stats { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 27px; }
.archive-hero-stats span { display: grid; gap: 2px; min-width: 132px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,0.66); color: var(--muted); font-size: 0.76rem; }
.archive-hero-stats strong { color: var(--navy); font-family: var(--serif); font-size: 1.55rem; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.archive-browser { background: var(--ivory); }
.archive-toolbar { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.34fr) auto; gap: 12px; align-items: end; margin-bottom: 13px; padding: 15px; border: 1px solid var(--line); border-radius: 21px; background: var(--paper); box-shadow: 0 12px 38px rgba(69,38,22,0.055); }
.archive-toolbar label { display: grid; gap: 7px; }
.archive-toolbar label span { color: var(--muted); font-size: 0.69rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.archive-toolbar input,
.archive-toolbar select { width: 100%; min-height: 48px; padding: 0 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--navy); background: white; outline: none; }
.archive-toolbar input:focus,
.archive-toolbar select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(206,32,41,0.11); }
.archive-clear { min-height: 48px; padding: 0 17px; border: 1px solid var(--line); border-radius: 13px; color: var(--red-deep); background: transparent; font-weight: 850; cursor: pointer; }
.archive-clear:hover { border-color: var(--red); background: var(--red-soft); }
.archive-results { margin: 0 0 20px; color: var(--muted); font-size: 0.88rem; }
.archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.archive-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); box-shadow: 0 14px 42px rgba(69,38,22,0.065); transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.archive-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 22px 58px rgba(69,38,22,0.12); }
.archive-card > a { display: grid; height: 100%; grid-template-rows: auto 1fr; }
.archive-card-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream); }
.archive-card-image img { transition: transform 420ms ease; }
.archive-card:hover .archive-card-image img { transform: scale(1.035); }
.archive-count { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; border-radius: 999px; color: white; background: rgba(19,34,56,0.83); backdrop-filter: blur(8px); font-size: 0.73rem; font-weight: 850; }
.archive-card-copy { display: grid; align-content: start; padding: 21px; }
.archive-card-copy .card-kicker { margin-bottom: 10px; }
.archive-card-copy h3 { margin-bottom: 8px; font-size: 1.55rem; }
.archive-card-copy p { display: -webkit-box; min-height: 3em; margin-bottom: 16px; overflow: hidden; color: var(--muted); font-size: 0.88rem; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.archive-card-link { align-self: end; color: var(--red-deep); font-size: 0.84rem; font-weight: 900; }
.archive-load-wrap { display: flex; justify-content: center; padding-top: 30px; }

.archive-detail-hero { padding: 28px 0 62px; border-bottom: 1px solid var(--line); background: linear-gradient(145deg, var(--ivory), #f6ead9); }
.archive-breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 22px; color: var(--muted); font-size: 0.82rem; }
.archive-breadcrumb a { color: var(--red-deep); font-weight: 850; }
.archive-detail-grid { display: grid; grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1fr); gap: clamp(34px, 6vw, 74px); align-items: center; }
.archive-detail-image { min-height: 510px; max-height: 660px; overflow: hidden; border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow); }
.archive-detail-image img { object-fit: cover; }
.archive-detail-copy { max-width: 670px; }
.archive-detail-copy h1 { margin: 14px 0 20px; color: var(--navy); font-family: var(--serif); font-size: clamp(3.4rem, 6.4vw, 6.25rem); font-weight: 500; letter-spacing: -0.065em; line-height: 0.9; }
.archive-detail-meta { display: flex; flex-wrap: wrap; gap: 22px; margin: 25px 0; padding: 17px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); }
.archive-detail-meta span { display: grid; gap: 2px; font-size: 0.8rem; }
.archive-detail-meta strong { color: var(--red); font-family: var(--serif); font-size: 1.75rem; font-weight: 500; line-height: 1; }
.archive-gallery-section { position: relative; }
.archive-photo-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
.archive-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; padding: 0; border: 0; border-radius: 12px; background: var(--cream); cursor: zoom-in; }
.archive-photo img { transition: transform 260ms ease, filter 260ms ease; }
.archive-photo:hover img { transform: scale(1.04); filter: saturate(1.06); }
.archive-photo:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.archive-video-badge { position: absolute; left: 9px; bottom: 9px; padding: 5px 8px; border-radius: 999px; color: white; background: rgba(19,34,56,0.82); font-size: 0.68rem; font-weight: 900; }
.archive-modal-open { overflow: hidden; }
.archive-lightbox { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 42px 82px; background: rgba(8,13,23,0.96); }
.archive-lightbox figure { width: min(1100px, 100%); max-height: calc(100vh - 84px); display: grid; grid-template-rows: minmax(0, 1fr) auto; gap: 12px; justify-items: center; margin: 0; }
.archive-lightbox figure > img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 150px); object-fit: contain; border-radius: 7px; box-shadow: 0 28px 80px rgba(0,0,0,0.45); }
.archive-lightbox figcaption { width: 100%; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,0.72); font-size: 0.82rem; }
.archive-lightbox figcaption a { color: white; font-weight: 850; }
.archive-lightbox-close,
.archive-lightbox-prev,
.archive-lightbox-next { position: absolute; display: grid; place-items: center; border: 0; color: white; background: rgba(255,255,255,0.1); cursor: pointer; }
.archive-lightbox-close { top: 18px; right: 20px; width: 46px; height: 46px; border-radius: 50%; font-size: 2rem; line-height: 1; }
.archive-lightbox-prev,
.archive-lightbox-next { top: 50%; width: 56px; height: 74px; border-radius: 16px; font-family: var(--serif); font-size: 3.2rem; transform: translateY(-50%); }
.archive-lightbox-prev { left: 18px; }
.archive-lightbox-next { right: 18px; }
.archive-lightbox button:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 1040px) {
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .archive-detail-grid { grid-template-columns: 1fr; gap: 28px; }
  .archive-detail-image { min-height: 390px; height: min(64vw, 580px); }
  .archive-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .archive-hero-image { height: 310px; }
  .archive-hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .archive-hero-stats span { min-width: 0; padding: 11px; }
  .archive-hero-stats strong { font-size: 1.25rem; }
  .archive-toolbar { grid-template-columns: 1fr; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-card-copy p { min-height: auto; }
  .archive-detail-hero { padding: 20px 0 46px; }
  .archive-breadcrumb { overflow: hidden; white-space: nowrap; }
  .archive-breadcrumb span:last-child { overflow: hidden; text-overflow: ellipsis; }
  .archive-detail-image { min-height: 300px; height: 104vw; max-height: 520px; }
  .archive-detail-copy h1 { font-size: 3.25rem; }
  .archive-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; }
  .archive-photo { border-radius: 8px; }
  .archive-lightbox { padding: 64px 12px 22px; }
  .archive-lightbox figure { max-height: calc(100vh - 86px); }
  .archive-lightbox figure > img { max-height: calc(100vh - 180px); }
  .archive-lightbox figcaption { display: grid; gap: 6px; padding: 0 52px; text-align: center; }
  .archive-lightbox-prev,
  .archive-lightbox-next { top: 50%; width: 48px; height: 58px; border-radius: 13px; background: rgba(0,0,0,0.62); font-size: 2.8rem; }
  .archive-lightbox-prev { left: 8px; }
  .archive-lightbox-next { right: 8px; }
}

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

/* Consolidated Home, Story, and Membership review */
.nav-shell {
  grid-template-columns: minmax(230px, auto) minmax(0, 1fr) auto;
  gap: clamp(18px, 2.5vw, 36px);
}
.desktop-nav { justify-content: flex-end; gap: clamp(16px, 1.65vw, 24px); }
.cta-microcopy { margin: 13px 0 0; color: var(--muted); font-size: 0.86rem; }
.home-hero .hero-photo img { object-position: center center; }
.editorial-note {
  max-width: 550px;
  padding: 14px 0 14px clamp(24px, 3vw, 38px);
  border-left: 2px solid var(--red);
}
.editorial-note h3 { max-width: 460px; margin: 18px 0 14px; font-size: clamp(1.8rem, 2.35vw, 2.45rem); font-weight: 520; }
.editorial-note p { margin-bottom: 18px; }
.next-table-copy { padding: clamp(6px, 1.5vw, 18px) 0; }
.action-links { display: flex; flex-wrap: wrap; gap: 15px 28px; margin-top: 24px; }
.cta-text-link { color: white; font-weight: 820; text-decoration: underline; text-decoration-color: rgba(255,255,255,0.45); text-underline-offset: 5px; }
.cta-text-link:hover { text-decoration-color: white; }

.history-section { scroll-margin-top: 90px; }
.history-article h2 { margin-bottom: 38px; }
.history-chapter { scroll-margin-top: 122px; padding-top: 10px; }
.history-chapter + .history-chapter { margin-top: 38px; padding-top: 38px; border-top: 1px solid var(--line); }
.history-chapter h3 { margin-bottom: 14px; color: var(--navy); font-size: clamp(1.7rem, 2.25vw, 2.25rem); font-weight: 540; }
.history-chapter-local { margin-top: 44px !important; padding: 30px !important; border: 0 !important; border-left: 4px solid var(--red) !important; background: var(--red-soft); }
.history-chapter-local h3 { color: var(--red-deep); }
.timeline-index { padding: 10px; overflow: visible; }
.timeline-index a {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 13px;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease;
}
.timeline-index a:hover,
.timeline-index a.is-active { color: var(--red-deep); background: var(--red-soft); }
.timeline-index a time { color: inherit; font-family: var(--serif); font-size: 1.25rem; line-height: 1; }
.timeline-index a span { color: inherit; font-size: 0.88rem; font-weight: 760; }
.stat-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 36px 0 50px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-line > div { padding: 28px clamp(18px, 2.5vw, 34px); border-right: 1px solid var(--line); }
.stat-line > div:first-child { padding-left: 0; }
.stat-line > div:last-child { border-right: 0; }
.stat-line strong { display: block; color: var(--red); font-family: var(--serif); font-size: clamp(2.15rem, 3vw, 3.3rem); font-weight: 520; line-height: 1; }
.stat-line span { display: block; margin-top: 9px; color: var(--muted); font-size: 0.9rem; line-height: 1.4; }
.presence-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.presence-groups section { padding: 34px clamp(24px, 3vw, 42px); border-right: 1px solid var(--line); }
.presence-groups section:first-child { padding-left: 0; }
.presence-groups section:last-child { border-right: 0; }
.presence-groups h3 { margin: 17px 0 20px; font-size: 1.55rem; }
.presence-groups ul { margin: 0; padding-left: 19px; color: var(--muted); }
.presence-groups li + li { margin-top: 12px; }
.tribute-section { scroll-margin-top: 90px; padding: clamp(6rem, 9vw, 9rem) 0; background: var(--navy); }
.radlauer-tribute {
  max-width: 1180px;
  margin: 0 auto;
}
.tribute-layout { display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr); gap: clamp(52px, 7vw, 96px); align-items: center; }
.tribute-content { grid-column: 2; padding-left: clamp(30px, 4vw, 60px); border-left: 4px solid var(--red); }
.radlauer-tribute .eyebrow { color: #f2c46d; }
.radlauer-tribute .eyebrow::before { background: var(--red); }
.radlauer-tribute h2 { color: white; max-width: 700px; margin: 24px 0 18px; font-size: clamp(4rem, 6vw, 6.5rem); letter-spacing: -0.055em; line-height: 0.94; }
.tribute-deck { margin: 0 0 34px; color: rgba(255,255,255,0.72); font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 1.9rem); line-height: 1.25; }
.tribute-copy { max-width: 820px; }
.tribute-copy p { margin: 0; color: rgba(255,255,255,0.78); font-size: 1.08rem; line-height: 1.8; }
.tribute-copy p + p { margin-top: 20px; }
.tribute-signoff { margin: 34px 0 0; color: #f2c46d; font-family: var(--serif); font-size: 1.65rem; font-style: italic; line-height: 1.2; }
.tribute-photo { grid-column: 1; grid-row: 1; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-lg); background: #091b33; box-shadow: 0 30px 70px rgba(0,0,0,0.34); }
.tribute-photo img { width: 100%; height: auto; object-fit: contain; }
.story-close-section { padding: clamp(5rem, 8vw, 8rem) 0; color: white; background: var(--red); }
.story-close { max-width: 920px; }
.story-close .eyebrow,
.story-close h2,
.story-close p { color: white; }
.story-close .eyebrow::before { background: white; }
.story-close h2 { max-width: 820px; margin: 22px 0 24px; font-size: clamp(3rem, 5.5vw, 5.75rem); }
.story-close p { max-width: 720px; margin: 0; color: rgba(255,255,255,0.84); font-size: 1.1rem; }

.organization-panel { padding: clamp(26px, 3.5vw, 40px); border-top: 3px solid var(--navy); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.5); }
.organization-panel h3 { margin: 18px 0 22px; }
.organization-panel dl { margin: 0 0 22px; }
.organization-panel dl > div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 13px 0; border-top: 1px solid var(--line); }
.organization-panel dt { color: var(--red-deep); font-weight: 840; }
.organization-panel dd { margin: 0; color: var(--muted); }
.benefit-rows { border-bottom: 1px solid var(--line); }
.benefit-rows article { display: grid; grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr); gap: clamp(24px, 5vw, 76px); padding: 30px 0; border-top: 1px solid var(--line); }
.benefit-rows h3 { margin: 0 0 9px; font-size: clamp(1.55rem, 2vw, 2rem); }
.benefit-rows p { max-width: 760px; margin: 0; color: var(--muted); }
.benefit-label { align-self: start; color: var(--red-deep); font-size: 0.77rem; font-weight: 880; letter-spacing: 0.14em; text-transform: uppercase; }

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .history-article { order: 2; }
  .timeline-index { order: 1; position: static; display: flex; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; }
  .timeline-index a { min-width: 150px; grid-template-columns: 1fr; gap: 5px; }
  .stat-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-line > div:nth-child(2) { border-right: 0; }
  .stat-line > div:first-child { padding-left: clamp(18px, 2.5vw, 34px); }
  .stat-line > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .presence-groups { grid-template-columns: 1fr; }
  .presence-groups section,
  .presence-groups section:first-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .presence-groups section:last-child { border-bottom: 0; }
}

@media (max-width: 680px) {
  .editorial-note { padding-left: 22px; }
  .action-links { display: grid; gap: 14px; }
  .history-chapter + .history-chapter { margin-top: 28px; padding-top: 28px; }
  .history-chapter-local { padding: 24px !important; }
  .stat-line { margin: 28px 0 38px; }
  .stat-line > div { padding: 22px 14px; }
  .stat-line > div:first-child { padding-left: 14px; }
  .stat-line strong { font-size: 2.15rem; }
  .tribute-section { padding: 4.5rem 0; }
  .tribute-layout { grid-template-columns: 1fr; gap: 38px; }
  .tribute-content { grid-column: 1; grid-row: 2; padding-left: 24px; border-left-width: 3px; }
  .radlauer-tribute h2 { font-size: 3.25rem; line-height: 0.98; }
  .tribute-deck { margin-bottom: 28px; font-size: 1.4rem; }
  .tribute-photo { grid-column: 1; grid-row: 1; border-radius: var(--radius-md); }
  .tribute-copy p { font-size: 1rem; line-height: 1.75; }
  .story-close h2 { font-size: 3.15rem; }
  .benefit-rows article { grid-template-columns: 1fr; gap: 10px; padding: 25px 0; }
  .organization-panel dl > div { grid-template-columns: 88px 1fr; gap: 12px; }
}
