.charity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charity-text h3 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-3);
}
.charity-text .tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-secondary-dark);
  background: var(--c-secondary-bg);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-full);
  margin-bottom: var(--space-3);
}
.charity-text p {
  color: var(--c-text2);
  margin-bottom: var(--space-4);
}/* ═══ OFFICER / LEADERSHIP GRID ══════════════════════════════════
   Used on: Leadership page
   ═══════════════════════════════════════════════════════════════ */

.officer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.officer {
  text-align: center;
  padding: var(--space-5);
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
}

.officer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-3);
  font-family: var(--font-h);
  font-size: var(--text-lg);
  font-weight: var(--w-semibold);
  color: var(--c-primary);
}.officer-title {
  font-size: var(--text-sm);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--w-medium);
  margin-bottom: var(--space-2);
}/* ═══ SECTIONS-BY-STATE ══════════════════════════════════════════
   Heading and group containers live in the v3 leadership block at
   the bottom of this file (.state-accordion). Only .state-badge
   remains here because it's the shared visual element. */

.state-badge {
  /* v3 refresh: 36px white circle with 2px gold ring, Cormorant
     Garamond letters in deep gold. Matches hifi_04_leadership_v2. */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-white);
  font-family: var(--font-h);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-secondary-dark);
  border: 2px solid var(--c-secondary);
  letter-spacing: 0.01em;
  line-height: 1;
  flex-shrink: 0;
}.section-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  transition: border-color var(--tr-f), box-shadow var(--tr-f);
  /* When used as an <a> on the Leadership page (links to /sections/[slug]/) */
  text-decoration: none;
  color: inherit;
  display: block;
}
.section-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--sh-sm);
}


/* ═══ ORG STRUCTURE GRID ═════════════════════════════════════════
   Used on: About page (2x2 org cards)
   ═══════════════════════════════════════════════════════════════ */

.org-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin: var(--space-8) 0;
}

.org-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;     /* stacked: icon → heading → paragraph */
  align-items: center;        /* horizontally centered, icon stays 48×48 */
  text-align: center;
  gap: 0.25rem;
}


/* ═══ THREE PILLAR CARDS ═════════════════════════════════════════
   Used on: Join page
   ═══════════════════════════════════════════════════════════════ */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin: var(--space-8) 0;
}.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--c-primary);
}
.pillar-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.pillar-card p {
  font-size: var(--text-sm);
  color: var(--c-text2);
  line-height: 1.6;
  margin: 0;
}


/* ═══ STEPPER ════════════════════════════════════════════════════
   Used on: Join page (5-step nomination process)
   ═══════════════════════════════════════════════════════════════ */

.stepper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--space-8) 0;
  max-width: 640px;
}

.step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  position: relative;
}
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 2px;
  height: calc(100% + var(--space-1));
  background: var(--c-border);
  z-index: 0;
}.step:last-child .step-body {
  padding-bottom: 0;
}
.step-body h4 {
  font-size: var(--text-lg);
  font-weight: var(--w-semibold);
  margin-bottom: var(--space-1);
}
.step-body p {
  font-size: var(--text-sm);
  color: var(--c-text2);
  line-height: 1.6;
  margin: 0;
}


/* ═══ COST BOX ════════════════════════════════════════════════════
   Used on: Join page
   ═══════════════════════════════════════════════════════════════ */

.cost-box {
  background: var(--c-bg2);
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  margin: var(--space-8) 0;
}.cost-item {
  text-align: center;
  padding: var(--space-5);
  background: var(--c-white);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-lt);
}
.cost-amount {
  font-family: var(--font-h);
  font-size: var(--text-4xl);
  font-weight: var(--w-bold);
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.cost-label {
  font-size: var(--text-sm);
  color: var(--c-muted);
  font-weight: var(--w-medium);
}


/* ═══ FUNDING BAR (Impact page) ══════════════════════════════════ */

.funding-bar {
  margin: var(--space-8) 0;
}.funding-legend {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-4);
}/* ═══ GALLERY CAROUSEL ════════════════════════════════════════════ */

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--c-bg3);
  aspect-ratio: 2.4;
}.carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
  padding: 1rem;
  background: var(--c-bg3);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.carousel-dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 240, 0.5);
  border: none;
  cursor: pointer;
  transition: background var(--tr-f);
  padding: 0;
}
.carousel-dot.is-active { background: var(--c-ivory); }/* ═══ TIMELINE (About page) ══════════════════════════════════════ */

.timeline {
  position: relative;
  padding: var(--space-8) 0;
  margin: var(--space-8) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-border);
}/* ═══ FAQ GRID ════════════════════════════════════════════════════ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.faq-item {
  padding: var(--space-6);
  background: var(--c-bg2);
  border-radius: var(--r-lg);
}
.faq-item h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}
.faq-item p {
  font-size: var(--text-sm);
  color: var(--c-text2);
  line-height: 1.6;
  margin: 0;
}


/* ═══ TRUST BADGES ════════════════════════════════════════════════ */

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border-lt);
}.trust-badge-text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--c-text);
}
.trust-badge-text span {
  font-size: var(--text-xs);
  color: var(--c-muted);
}


/* ═══ PAGE CONTENT WRAPPERS ══════════════════════════════════════
   .content      = 800px — About, Join (prose-width pages)
   .content--wide = 1000px — Impact, Leadership (wider pages)
   ═══════════════════════════════════════════════════════════════ */

.content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}
.content--wide {
  max-width: 1000px;
}
.content--med {
  max-width: 900px;
}


/* ═══ TEXTURE (global base) ══════════════════════════════════════
   Scoped `.{container} .texture` rules set the actual background image
   ═══════════════════════════════════════════════════════════════ */

.texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-repeat: repeat;
}
@supports (background-attachment: fixed) {
  .texture { background-attachment: fixed; }
}


/* ═══ PROSE TYPOGRAPHY ═══════════════════════════════════════════
   Used inside .content on About and Join pages
   ═══════════════════════════════════════════════════════════════ */

.prose h2 {
  font-size: 1.875rem;
  font-weight: var(--w-semibold);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border-lt);
}
.prose h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.prose p {
  margin-bottom: 0.875rem;
  max-width: 680px;
}


/* ═══ HORIZONTAL TIMELINE ════════════════════════════════════════
   About page — scrolling dots + years + labels
   ═══════════════════════════════════════════════════════════════ */

.timeline {
  display: flex;
  gap: 0;
  margin: 2rem 0;
  padding: 1.75rem 0;
  border-top: 1px solid var(--c-border-lt);
  border-bottom: 1px solid var(--c-border-lt);
  overflow-x: auto;
  /* reset the vertical-timeline styles from layout.css above */
  position: static;
}
.timeline::before { display: none; }

.tl-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}
.tl-item::before {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--c-primary);
  margin: 0 auto 0.625rem;
  border: 3px solid var(--c-white);
  box-shadow: 0 0 0 2px var(--c-border);
}
.tl-item::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--c-border-lt);
  z-index: -1;
}
.tl-item:last-child::after { display: none; }

.tl-year {
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: var(--w-bold);
  color: var(--c-charcoal);
}
.tl-label {
  font-size: 0.75rem;
  color: var(--c-muted);
  line-height: 1.35;
  margin-top: 0.25rem;
}


/* ═══ DATA CALLOUT — flex two-column ════════════════════════════
   About page: large number left, explanatory text right
   Overrides the centered version in base.css
   ═══════════════════════════════════════════════════════════════ */

.data-callout {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.data-callout .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.data-number {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: var(--w-bold);
  color: var(--c-primary);
  line-height: 1;
  flex-shrink: 0;
  position: relative;
}
.data-body {
  position: relative;
}
.data-body h3 {
  font-size: 1.25rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.375rem;
}
.data-body p {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.65;
}


/* ═══ PHOTO BREAK ════════════════════════════════════════════════
   Full-width image placeholder between sections
   ═══════════════════════════════════════════════════════════════ */

.photo-break {
  margin: 2rem 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  display: block;
}
.photo-break img {
  display: block;
  width: 100%;
  height: auto;
}
/* Placeholder styling — only applies until a real image is wired in. */
.photo-break.img-placeholder {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
  padding: 1.5rem;
  background: var(--c-bg3);
}


/* ═══ ORG ICON ═══════════════════════════════════════════════════
   Icon circle in About page org-grid cards
   ═══════════════════════════════════════════════════════════════ */

.org-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg2);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;       /* never let the flex parent compress the circle */
}
.org-icon svg { width: 24px; height: 24px; flex-shrink: 0; }
.org-card h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.org-card p { font-size: 0.875rem; color: var(--c-muted); margin: 0; }


/* ═══ CTA PAIR ═══════════════════════════════════════════════════
   Two side-by-side CTA buttons, centered
   ═══════════════════════════════════════════════════════════════ */

.cta-pair {
  display: flex;
  gap: 1rem;
  margin: 2.5rem 0;
  justify-content: center;
  flex-wrap: wrap;
}


/* ═══ OVERVIEW STATS (Impact page) ══════════════════════════════ */

.ov-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border-lt);
}
.ov-stat { text-align: center; }
.ov-stat .num {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: var(--w-bold);
  color: var(--c-primary);
}
.ov-stat .label {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
  font-weight: var(--w-medium);
}


/* ═══ CHARITY SECTIONS (Impact page) ════════════════════════════
   Alternating image-left / image-right charity rows
   ═══════════════════════════════════════════════════════════════ */

.charity {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border-lt);
}
.charity:last-of-type { border-bottom: none; }
.charity.reverse { flex-direction: row-reverse; }

.charity-img {
  width: 300px;
  flex-shrink: 0;
  aspect-ratio: 7/5;           /* desktop spec aspect 560/400 = 1.40 */
  border-radius: var(--r-lg);
  overflow: hidden;
}
/* Placeholder styling — only applies until a real image is wired in */
.charity-img.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  padding: 1rem;
  background: var(--c-bg3);
}
.charity-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.charity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.charity-body { flex: 1; }
.charity-tag {
  font-size: 0.6875rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-secondary-dark);
  margin-bottom: 0.375rem;
}
.charity-body h2 {
  font-size: 1.625rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
}
.charity-body p {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}
.charity-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.charity-stat {
  display: inline-block;
  background: var(--c-bg2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: var(--w-semibold);
  color: var(--c-text2);
}
.charity-link {
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap var(--tr-f);
}
.charity-link:hover { gap: 0.625rem; color: var(--c-primary-dark); }


/* ═══ FUNDING BOX (Impact page) ══════════════════════════════════
   Shaded box with cross texture, stacked bar chart, and legend
   ═══════════════════════════════════════════════════════════════ */

.funding {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.funding .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.funding-content { position: relative; z-index: 1; }
.funding h3 {
  font-size: 1.375rem;
  font-weight: var(--w-medium);
  margin-bottom: 1rem;
  text-align: center;
}
.funding-bar {
  display: flex;
  height: 28px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 1rem;
}
.funding-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: var(--w-bold);
  color: var(--c-white);
  letter-spacing: 0.02em;
}
.funding-legend {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}
.funding-legend span {
  font-size: 0.8125rem;
  color: var(--c-text2);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--r-sm);
  flex-shrink: 0;
}


/* ═══ PILLAR CARDS (Join page) ═══════════════════════════════════
   Same as .pillar-card — alias to match mockup class name
   ═══════════════════════════════════════════════════════════════ */

.pillar {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow var(--tr);
}
.pillar:hover { box-shadow: var(--sh-sm); }
.pillar h3 {
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}


/* ═══ STEPPER (Join page) ════════════════════════════════════════
   .stepper already defined in layout.css above.
   Adding .step-num as the horizontal-stepper circle style.
   ═══════════════════════════════════════════════════════════════ */

.stepper {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin: 1.5rem 0 2.5rem;
  position: relative;
  max-width: none;
}
.stepper::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--c-border-lt);
}
/* suppress the vertical connector from the old .step definition */
.stepper .step:not(:last-child)::before { display: none; }
.step {
  flex: 1;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: var(--w-bold);
  margin: 0 auto 0.75rem;
  font-family: var(--font-b);
}
.step h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.step p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.45;
  padding: 0 0.25rem;
  margin: 0;
}


/* ═══ COST NOTE (Join page) ══════════════════════════════════════ */

.cost-note {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: var(--c-muted);
  text-align: center;
  font-style: italic;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
  margin-top: 0.5rem;
  position: relative;
}


/* ═══ RELATED LINKS (Join page) ══════════════════════════════════
   Two-card related links, simpler than .related-row (3-col grid)
   ═══════════════════════════════════════════════════════════════ */

.related { margin: 2rem 0; }
.related .related-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--c-text);
}
.related .related-card h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.125rem;
}
.related .related-card p {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin: 0;
}
.related .related-card .arrow {
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  white-space: nowrap;
  text-decoration: none;
}


/* ═══ CONTACT CTA ADDITIONS (Join page) ══════════════════════════
   Adds the inner content wrapper and email display
   ═══════════════════════════════════════════════════════════════ */

.contact-cta {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--c-ivory);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.contact-cta .texture {
  opacity: 0.07;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}
.contact-cta-content { position: relative; z-index: 1; }
.contact-cta h3 {
  font-size: 1.75rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.5rem;
  color: var(--c-ivory);
}
.contact-cta p {
  font-size: 1rem;
  color: var(--c-hint);
  max-width: 480px;
  margin: 0 auto 1.25rem;
}
.contact-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-secondary);
  color: var(--c-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  text-decoration: none;
  transition: all var(--tr);
  font-family: var(--font-b);
}
.contact-cta .btn:hover {
  background: var(--c-secondary-light);
  color: var(--c-charcoal);
}
.email-display {
  display: block;
  font-size: 0.875rem;
  color: var(--c-hint);
  margin-top: 0.75rem;
}


/* ═══ SECTION TITLE (Leadership page) ═══════════════════════════
   Section heading with top border separator
   ═══════════════════════════════════════════════════════════════ */

.section-title {
  font-size: 1.875rem;
  font-weight: var(--w-semibold);
  margin: 2.5rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border-lt);
}


/* ═══ LEADER HERO (Leadership page) ══════════════════════════════
   Lieutenant and Prior hero cards
   ═══════════════════════════════════════════════════════════════ */

.leader-hero {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.leader-hero .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder styling — only applies until a real image is wired in. */
.leader-photo.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  background: var(--c-bg3);
}
.leader-body { position: relative; z-index: 1; }
.leader-body h2 {
  font-size: 1.75rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.125rem;
}
.leader-title {
  font-size: 1rem;
  font-weight: var(--w-semibold);
  color: var(--c-text2);
  margin-bottom: 0.125rem;
}
.leader-rank {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}
.leader-body p {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
}
.leader-prior { background: var(--c-bg3); }


/* ═══ OFFICER SUB-LABELS (Leadership page) ═══════════════════════
   .off-title and .off-rank used inside .officer cards
   ═══════════════════════════════════════════════════════════════ */

.off-title {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 0.125rem;
}
.off-rank {
  font-size: 0.75rem;
  color: var(--c-hint);
  font-weight: var(--w-semibold);
}


/* ═══ SECTION LIST (Leadership page) ════════════════════════════
   Auto-fill grid of section cards within each state group
   ═══════════════════════════════════════════════════════════════ */

.section-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.625rem;
}
.section-name {
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.125rem;
}
.section-pres {
  font-size: 0.8125rem;
  color: var(--c-text2);
}
.section-prior {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: 0.125rem;
}


/* ═══ CONTACT BAND (Leadership page) ════════════════════════════
   Shaded box with texture, centered heading + CTA
   ═══════════════════════════════════════════════════════════════ */

.contact-band {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.contact-band .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.contact-band-content { position: relative; z-index: 1; }
.contact-band h3 {
  font-size: 1.5rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.375rem;
}
.contact-band p {
  font-size: 1rem;
  color: var(--c-text2);
  margin-bottom: 1rem;
}


/* ═══ RESPONSIVE ADDITIONS ═══════════════════════════════════════ */

@media (max-width: 768px) {
  .content { padding: 0 1.25rem 2rem; }
  .tl-item { min-width: 90px; flex: 0 0 auto; }
  .tl-item::after { display: none; }
  .data-callout { flex-direction: column; gap: 0.75rem; padding: 1.5rem; }
  .data-number { font-size: 2.5rem; }
  .photo-break.img-placeholder { height: 220px; }
  .cta-pair { flex-direction: column; align-items: center; }
  .ov-stats { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem 0; }
  .charity, .charity.reverse { flex-direction: column; }
  .charity-img { width: 100%; aspect-ratio: 768/280; }   /* mobile spec aspect (wide banner) */
  .funding-legend { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .pillar-grid { grid-template-columns: 1fr; }
  .stepper { flex-direction: column; gap: 1.5rem; }
  .stepper::before { display: none; }
  .step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; }
  .step-num { flex-shrink: 0; margin: 0; }
  .step p { padding: 0; }
  .cost-box { grid-template-columns: 1fr; }
  .related .related-card { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .leader-hero { flex-direction: column; text-align: center; padding: 1.5rem; }
  .leader-photo { width: 100px; height: 100px; }
  .leader-body p { max-width: 100%; }
  .officer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-list { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   PHASE 3 — Good Friday, Pilgrimages, Investiture
   ═══════════════════════════════════════════════════════════════════ */


/* ─── Good Friday: Pontifical badge ─────────────────────────────── */
.pontifical {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--c-secondary-bg);
  border: 1px solid #E8DFC8;
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2rem;
}
.pontifical-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #E8DFC8;
}
.pontifical-icon svg { width: 24px; height: 24px; }
.pontifical-text {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.6;
}
.pontifical-text strong { color: var(--c-charcoal); }


/* ─── Good Friday: 5 category grid ─────────────────────────────── */
.uses {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 2.5rem;
}
.use {
  text-align: center;
  padding: 1.25rem 0.5rem;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  transition: box-shadow var(--tr);
}
.use:hover { box-shadow: var(--sh-sm); }
.use-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary-bg);
  margin: 0 auto 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.use-icon svg { width: 22px; height: 22px; }
.use h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.use p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.4;
  margin: 0;
}


/* ─── Good Friday: Photo + CTA card ─────────────────────────────── */
.photo-cta {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.photo-cta .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.photo-cta-img {
  flex: 0 0 280px;
  aspect-ratio: 16/11;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.photo-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder styling — only applies until a real image is wired in. */
.photo-cta-img.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  padding: 1rem;
  background: var(--c-bg3);
}
.photo-cta-body { position: relative; z-index: 1; }
.photo-cta-body h3 {
  font-size: 1.5rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.5rem;
}
.photo-cta-body p {
  font-size: 1rem;
  color: var(--c-text2);
  margin-bottom: 1rem;
}
.photo-cta-body .note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  font-style: italic;
  margin-top: 0.5rem;
}


/* ─── Good Friday: Lenten reflection block ──────────────────────── */
.lenten {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.lenten h3 {
  font-size: 1.375rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.375rem;
}
.lenten > p {
  font-size: 1rem;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.lenten-weeks {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.lenten-week {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: var(--w-semibold);
  color: var(--c-text2);
  border: 1px solid var(--c-border-lt);
}


/* ─── Good Friday: Resource download cards ─────────────────────── */
.resources {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.resource {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--tr-f);
}
.resource:hover { border-color: var(--c-border); }
.resource-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-icon svg { width: 20px; height: 20px; }
.resource-body h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.125rem;
}
.resource-body p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 0.375rem;
}
.dl-link {
  font-size: 0.8125rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.dl-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── Good Friday: Coordinator contact box ──────────────────────── */
.coordinator {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-align: center;
  margin: 1.5rem 0;
}
.coordinator h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.coordinator p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin: 0;
}


/* ─── Good Friday: cta-band overrides (rounded, inline) ─────────── */
.content .cta-band {
  border-radius: var(--r-lg);
  margin: 2.5rem 0;
  padding: 3.5rem 1.5rem;
}
.content .cta-band .texture {
  opacity: 0.07;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}


/* ═══════════════════════════════════════════════════════════════════
   PILGRIMAGES PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero overrides (breadcrumb, lead, texture) ────────────────── */
.hero .texture {
  opacity: 0.085;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}
.hero .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 240, 0.8);
  margin-bottom: 0.75rem;
}
.hero .breadcrumb a {
  color: rgba(255, 255, 240, 0.8);
  text-decoration: none;
}
.hero .breadcrumb a:hover { color: var(--c-ivory); }
/* Defensive text-shadow on hero text so it stays legible over any
   photo background, regardless of how bright the underlying image is.
   Layered shadows: a tight dark halo + a wider soft glow. */
.hero .breadcrumb,
.hero h1,
.hero .lead,
.hero .sub {
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 4px 16px rgba(0, 0, 0, 0.6);
}
.hero h1 {
  font-size: 3.25rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero .lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 240, 0.92);
  max-width: 600px;
  margin: 0 auto;
  font-weight: var(--w-light);
}


/* ─── Pilgrimages: status notification boxes ────────────────────── */
.status {
  /* override unused .status-pill remnants */
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin: 0.75rem 0;
  font-size: 1rem;
  font-weight: var(--w-regular);
}
.status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: var(--w-bold);
}
.status.cancelled { border-color: var(--c-border); background: var(--c-bg); }
.status.cancelled .status-icon { background: var(--c-bg3); color: var(--c-muted); }
.status.pending { border-color: var(--c-secondary); background: var(--c-secondary-bg); }
.status.pending .status-icon { background: var(--c-white); color: var(--c-secondary); }
.status h3 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.125rem;
}
.status p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  margin: 0;
}


/* ─── Pilgrimages: Pilgrim Shell card ───────────────────────────── */
.shell {
  display: flex;
  gap: 2rem;
  align-items: center;
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.shell .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.shell-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 1;
}
.shell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shell-body { position: relative; z-index: 1; }
.shell-body h3 {
  font-size: 1.5rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
}
.shell-body p {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}
.shell-body .note {
  font-size: 0.8125rem;
  color: var(--c-muted);
  font-style: italic;
}


/* ─── Pilgrimages: Expect numbered list ─────────────────────────── */
.expect-list { margin: 1.5rem 0 2rem; }
.expect-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border-lt);
  align-items: flex-start;
}
.expect-item:last-child { border-bottom: none; }
.expect-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: var(--w-bold);
  flex-shrink: 0;
  font-family: var(--font-b);
}
.expect-item h4 {
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.125rem;
}
.expect-item p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}


/* ─── Pilgrimages: photo grid, credit, related row (flex 2-card) ── */
.photo-credit {
  font-size: 0.8125rem;
  color: var(--c-hint);
  text-align: center;
  margin: 0 0 2rem;
}

/* Override the 3-col .related-row from components.css to flex
   so two .related-cards sit side-by-side at full width */
.content .related-row {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  grid-template-columns: none;
  margin: 1.5rem 0;
  padding-top: 0;
  border-top: none;
}
.content .related-row .related-card { flex: 1; }
.content .related-row .related-card .arrow {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
}


/* ═══════════════════════════════════════════════════════════════════
   INVESTITURE PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Event hero (charcoal with date box) ───────────────────────── */
.event-hero {
  background: var(--c-charcoal);
  padding: 3.5rem 1.5rem;
  color: var(--c-ivory);
  position: relative;
  overflow: hidden;
}
.event-hero .texture {
  opacity: 0.085;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}
.event-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.event-hero-text .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 240, 0.4);
  margin-bottom: 0.75rem;
}
.event-hero-text .breadcrumb a {
  color: rgba(255, 255, 240, 0.4);
  text-decoration: none;
}
.event-hero-text .breadcrumb a:hover { color: var(--c-ivory); }
.event-hero-text h1 {
  font-size: 2.75rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.375rem;
  color: var(--c-ivory);
}
.event-location {
  font-size: 1.25rem;
  color: var(--c-hint);
}
.date-box {
  background: rgba(255, 255, 240, 0.08);
  border: 1px solid rgba(255, 255, 240, 0.12);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  text-align: center;
  flex-shrink: 0;
  min-width: 140px;
}
.date-box .month {
  font-size: 0.75rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-secondary-light);
}
.date-box .days {
  font-family: var(--font-h);
  font-size: 2.75rem;
  font-weight: var(--w-bold);
  color: var(--c-ivory);
  line-height: 1.1;
}
.date-box .year {
  font-size: 1rem;
  color: var(--c-hint);
  margin-top: 0.25rem;
}


/* ─── Investiture: 3-col details grid ───────────────────────────── */
.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.detail {
  padding: 1.25rem;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  text-align: center;
}
.detail-icon { margin-bottom: 0.5rem; }
.detail-icon svg {
  width: 28px;
  height: 28px;
  margin: 0 auto;
}
.detail h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.detail p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  margin: 0;
}.logistic h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logistic h4 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.logistic p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}/* ─── Investiture: Future annual meetings ───────────────────────── */
.future {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.future-card {
  flex: 1;
  padding: 1.5rem;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  text-align: center;
}
.future-year {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: var(--w-bold);
  color: var(--c-charcoal);
}
.future-city {
  font-size: 1rem;
  font-weight: var(--w-semibold);
  color: var(--c-text2);
  margin-top: 0.25rem;
}
.future-date {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
}


/* ─── Investiture: 4-col photo row ──────────────────────────────── */
.photo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0;
}
.photo-row .photo-thumb {
  aspect-ratio: 3/2;
  border-radius: var(--r-md);
  font-size: 0.65rem;
  padding: 0.75rem;
}


/* ─── Investiture: Handoff card (gold-tinted) ───────────────────────
   Directs visitors to the Cleveland Section's authoritative event site.
   Replaces the in-page Weekend schedule + Logistics blocks now that
   logistics ownership lives off-site. */
.handoff-card {
  background: var(--c-secondary-bg);
  border: 1px solid #E8DFC8;
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  margin: 1.5rem 0 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.handoff-card .texture {
  opacity: 0.085;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.handoff-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}
.handoff-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-white);
  border: 1px solid #E8DFC8;
  border-radius: var(--r-full);
  padding: 0.375rem 0.875rem 0.375rem 0.625rem;
  margin-bottom: 1.25rem;
}
.handoff-cross {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.handoff-label {
  font-size: 0.75rem;
  font-weight: var(--w-semibold);
  color: var(--c-secondary-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.handoff-card h3 {
  font-size: 1.625rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.5rem;
  color: var(--c-charcoal);
}
.handoff-card p {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.btn-handoff {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  text-decoration: none;
  border: 2px solid var(--c-primary);
  transition: all var(--tr);
  font-family: var(--font-b);
}
.btn-handoff:hover {
  background: var(--c-primary-dark);
  border-color: var(--c-primary-dark);
  color: var(--c-white);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}
.handoff-contact {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-top: 1rem;
}
.handoff-contact a {
  color: var(--c-primary);
  font-weight: var(--w-semibold);
}


/* ─── Investiture: Register CTA (charcoal card) ─────────────────── */
.register {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--c-ivory);
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.register .texture {
  opacity: 0.07;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}
.register h3 {
  font-size: 1.75rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.5rem;
  position: relative;
  color: var(--c-ivory);
}
.register p {
  font-size: 1rem;
  color: var(--c-hint);
  max-width: 480px;
  margin: 0 auto 1.25rem;
  position: relative;
}
.register .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-secondary);
  color: var(--c-white);
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  text-decoration: none;
  transition: all var(--tr);
  font-family: var(--font-b);
  position: relative;
}
.register .btn:hover {
  background: var(--c-secondary-light);
  color: var(--c-charcoal);
}
.register .contact-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 240, 0.35);
  margin-top: 0.75rem;
  position: relative;
}


/* ─── Phase 3 responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .uses { grid-template-columns: repeat(2, 1fr); }
  .photo-cta { flex-direction: column; padding: 1.5rem; }
  .photo-cta-img { flex: none; width: 100%; aspect-ratio: 16/10; }
  .resources { grid-template-columns: 1fr; }
  .shell { flex-direction: column; text-align: center; padding: 1.5rem; }
  .shell-img { width: 120px; height: 120px; margin: 0 auto; }
  .content .related-row { flex-direction: column; }
  .event-hero { padding: 2.5rem 1.25rem; }
  .event-hero-inner { flex-direction: column-reverse; gap: 1.25rem; text-align: center; }
  .event-hero-text h1 { font-size: 2rem; }
  .details { grid-template-columns: 1fr; }  .future { flex-direction: column; }
  .photo-row { grid-template-columns: repeat(2, 1fr); }
  .handoff-card { padding: 1.75rem 1.25rem; }
  .handoff-card h3 { font-size: 1.375rem; }
  .btn-handoff { font-size: 0.9375rem; padding: 0.75rem 1.25rem; width: 100%; justify-content: center; }
  .hero h1 { font-size: 2.25rem; }
  .hero .lead { font-size: 1.0625rem; }
}
@media (max-width: 480px) {
  .uses { grid-template-columns: 1fr 1fr; }
}

/* ─── Investiture: phones use the wider mobile crops at full width ──
   IMG-080 spec is 1.47:1 desktop / 2.4:1 mobile. The <picture>
   <source media="(max-width:767px)"> elements load the 768×320 mobile
   crops below 768px, so the cells need to match that aspect — 2-col
   at 3/2 was squeezing the wide crops sideways. Single column at the
   mobile-source breakpoint gives each thumb its spec'd 2.4:1 shape. */
@media (max-width: 767px) {
  .photo-row { grid-template-columns: 1fr; gap: 0.625rem; }
  .photo-row .photo-thumb { aspect-ratio: 2.4; }
}


/* ═══════════════════════════════════════════════════════════════════
   PHASE 4 — Donate, News, Gallery, Contact
   ═══════════════════════════════════════════════════════════════════ */


/* ─── Donate: two-column layout ─────────────────────────────────── */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}


/* ─── Donate: Monthly/One-time toggle ───────────────────────────── */
.toggle {
  display: flex;
  background: var(--c-bg2);
  border-radius: var(--r-full);
  padding: 3px;
  margin-bottom: 1.5rem;
}
.toggle-btn {
  flex: 1;
  padding: 0.625rem;
  text-align: center;
  border-radius: var(--r-full);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-muted);
  cursor: pointer;
  transition: all var(--tr-f);
  border: none;
  background: none;
  font-family: var(--font-b);
}
.toggle-btn.active {
  background: var(--c-white);
  color: var(--c-charcoal);
  box-shadow: var(--sh-sm);
}


/* ─── Donate: Amount buttons ────────────────────────────────────── */
.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 1.5rem;
}
.amt {
  padding: 1rem 0.5rem;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--tr-f);
  background: var(--c-white);
}
.amt:hover { border-color: var(--c-primary); color: var(--c-primary); }
.amt.selected {
  border-color: var(--c-primary);
  background: var(--c-primary-bg);
  color: var(--c-primary);
}
.amt .val {
  font-family: var(--font-h);
  font-size: 1.625rem;
  font-weight: var(--w-bold);
  line-height: 1;
}
.amt .desc {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
  line-height: 1.3;
}
.amt.selected .desc { color: var(--c-primary-light); }


/* ─── Donate: Cause selector ────────────────────────────────────── */
.cause-label {
  font-size: 0.75rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 0.625rem;
}
.causes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.cause {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-md);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.9375rem;
  color: var(--c-text2);
  font-weight: var(--w-medium);
  transition: border-color var(--tr-f);
}
.cause:hover { border-color: var(--c-border); }
.cause.selected { border-color: var(--c-primary); background: var(--c-primary-bg); }
.cause-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
  transition: all var(--tr-f);
}
.cause.selected .cause-radio {
  border-color: var(--c-primary);
  background: var(--c-primary);
  box-shadow: inset 0 0 0 3px var(--c-white);
}


/* ─── Donate: Submit + secure note ──────────────────────────────── */
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--c-secondary);
  color: var(--c-white);
  border: none;
  border-radius: var(--r-md);
  font-size: 1.125rem;
  font-weight: var(--w-bold);
  cursor: pointer;
  transition: all var(--tr);
  font-family: var(--font-b);
  letter-spacing: 0.02em;
}
.submit-btn:hover {
  background: var(--c-secondary-dark);
  transform: translateY(-1px);
  box-shadow: var(--sh-md);
}
.secure {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--c-hint);
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}


/* ─── Donate: Sidebar story card ────────────────────────────────── */
.story-card {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.story-img {
  height: 180px;
  overflow: hidden;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder styling — only applies until a real image is wired in. */
.story-img.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  padding: 1rem;
  background: var(--c-bg3);
}
.story-body { padding: 1.25rem; }
.story-body h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.375rem;
}
.story-body p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}


/* ─── Donate: Trust badges (scoped to .trust container) ─────────── */
.trust {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.trust h4 {
  font-size: 0.6875rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
  text-align: center;
}
.trust .trust-badges {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: center;
}
.trust .trust-badge {
  width: 60px;
  height: 60px;
  border-radius: var(--r-md);
  background: var(--c-bg2);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.125rem;
}
.trust .trust-badge svg { width: 20px; height: 20px; }
.trust .trust-badge span {
  font-size: 0.5625rem;
  font-weight: var(--w-semibold);
  color: var(--c-muted);
  text-align: center;
  line-height: 1.2;
}


/* ─── Donate: Sidebar FAQ + Other ───────────────────────────────── */
.donate-layout .faq {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  background: transparent;
  display: block;
}
.donate-layout .faq h4 {
  font-size: 0.6875rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}
.donate-layout .faq-item {
  margin-bottom: 0.875rem;
  padding: 0;
  background: transparent;
}
.donate-layout .faq-item:last-child { margin-bottom: 0; }
.faq-q {
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.125rem;
}
.faq-a {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.55;
}

.other {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-align: center;
}
.other h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.375rem;
}
.other p {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}
.other .link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.other .link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════════
   NEWS PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ─── News: Featured issue ──────────────────────────────────────── */
.featured {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  margin: 0 0 2rem;
}
.featured-cover {
  width: 180px;
  height: 240px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
}
.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder styling — only applies until a real image is wired in. */
.featured-cover.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--c-muted);
  text-align: center;
  background: var(--c-bg3);
  border: 1px solid var(--c-border-lt);
}
.featured-body .tag {
  font-size: 0.6875rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-secondary-dark);
  margin-bottom: 0.375rem;
}
.featured-body h3 {
  font-size: 1.5rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.featured-body .meta {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}
.featured-body p {
  font-size: 1rem;
  color: var(--c-text2);
  line-height: 1.6;
  margin-bottom: 1rem;
}


/* ─── News: Tabs ────────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--c-border-lt);
  margin-bottom: 1.5rem;
  gap: 0;
}
.tab {
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--tr-f);
}
.tab:hover { color: var(--c-text2); }
.tab.active {
  color: var(--c-charcoal);
  border-bottom-color: var(--c-primary);
}


/* ─── News: Archive year + items ────────────────────────────────── */
.archive-year { margin-bottom: 1.5rem; }
.archive-year h3 {
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.625rem;
  padding-bottom: 0.375rem;
  border-bottom: 1px solid var(--c-border-lt);
}
.archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
.archive-item {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-md);
  padding: 0.875rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  transition: border-color var(--tr-f);
  text-decoration: none;
}
.archive-item:hover { border-color: var(--c-border); }
.archive-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.archive-icon svg { width: 18px; height: 18px; }
.archive-info h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
}
.archive-info p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin: 0;
}.historical-icon svg { width: 20px; height: 20px; }
.historical h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-text2);
  margin-bottom: 0.25rem;
}
.historical p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin: 0;
}


/* ─── News: Subscribe block ─────────────────────────────────────── */
.subscribe {
  background: var(--c-charcoal);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  text-align: center;
  color: var(--c-ivory);
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.subscribe .texture {
  opacity: 0.07;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}
.subscribe h3 {
  font-size: 1.75rem;
  font-weight: var(--w-medium);
  margin-bottom: 0.375rem;
  position: relative;
  color: var(--c-ivory);
}
.subscribe > p {
  font-size: 1rem;
  color: var(--c-hint);
  max-width: 440px;
  margin: 0 auto 1.25rem;
  position: relative;
}
.sub-form {
  display: flex;
  gap: 0.5rem;
  max-width: 420px;
  margin: 0 auto;
  position: relative;
}
.sub-input {
  flex: 1;
  height: 48px;
  border: none;
  border-radius: var(--r-md);
  padding: 0 1rem;
  font-size: 1rem;
  font-family: var(--font-b);
  background: rgba(255, 255, 240, 0.1);
  color: var(--c-ivory);
  outline: none;
}
.sub-input::placeholder { color: var(--c-hint); }
.sub-input:focus { background: rgba(255, 255, 240, 0.15); }
.sub-btn {
  background: var(--c-secondary);
  color: var(--c-white);
  padding: 0 1.5rem;
  border-radius: var(--r-md);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  border: none;
  height: 48px;
  cursor: pointer;
  transition: background var(--tr-f);
  font-family: var(--font-b);
}
.sub-btn:hover {
  background: var(--c-secondary-light);
  color: var(--c-charcoal);
}


/* ═══════════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* Scoped to .content to override the legacy .carousel above */
.content .carousel {
  margin: 0 0 2.5rem;
  position: relative;
  overflow: visible;
  background: none;
  aspect-ratio: auto;
  border-radius: 0;
}
.carousel-main {
  aspect-ratio: 2.2;   /* v3 spec — was 2.4 */
  border-radius: var(--r-lg);
  background: var(--c-bg3);
  position: relative;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 500ms ease;
  pointer-events: none;
  /* Override legacy .carousel-slide rule (~line 441) which has
     padding: 1rem and background: var(--c-bg3) — those caused a
     visible cream "border" around the slide image. */
  padding: 0;
  background: transparent;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide picture,
.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Respect prefers-reduced-motion: instant swap, no fade */
@media (prefers-reduced-motion: reduce) {
  .carousel-slide { transition: none; }
}
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.75));
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  z-index: 2;
}
.carousel-caption h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: var(--w-medium);
  color: var(--c-ivory);
  margin-bottom: 0.125rem;
}
.carousel-caption p {
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: var(--w-regular);
  color: rgba(255, 255, 240, 0.75);
  margin: 0;
  line-height: 1.4;
}
.content .carousel .carousel-dots {
  position: static;
  transform: none;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.content .carousel .carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--c-border-lt);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--tr-f);
}
.content .carousel .carousel-dot:hover { background: var(--c-border); }
.content .carousel .carousel-dot.active { background: var(--c-primary); }
.carousel-nav {
  position: absolute;
  top: calc(50% - 24px);   /* offset for dots row below carousel-main */
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--c-charcoal);
  cursor: pointer;
  transition: background var(--tr-f);
  border: none;
  z-index: 3;
  line-height: 1;
}
.carousel-nav:hover { background: var(--c-white); }
.carousel-nav.prev { left: 1rem; }
.carousel-nav.next { right: 1rem; }

/* ─── Gallery: Section headers (Recent / Archive) ───────────────── */
.section-h {
  font-family: var(--font-h);
  font-size: 1.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin: 1rem 0 0.375rem;
  letter-spacing: -0.005em;
}
.section-h:not(:first-of-type) {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border-lt);
}
.section-sub {
  font-size: 0.9375rem;
  color: var(--c-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
}

/* ─── Gallery: Recent Investitures (2-up event cards) ───────────── */
.recent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.event-card {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-white);
  transition: box-shadow var(--tr), transform var(--tr);
}
.event-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px);
}
.event-card > a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.event-card-img {
  aspect-ratio: 4 / 3;
  background: var(--c-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--c-muted);
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.event-card-img img {
  /* Absolute positioning ignores the .event-card-img padding so the
     photo fills the full 4:3 box edge-to-edge. The padding is kept on
     the parent so the placeholder text (used before Francis's photo
     lands) stays nicely inset. */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card-img .year-badge {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: rgba(26, 26, 26, 0.78);
  color: var(--c-ivory);
  font-family: var(--font-h);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  padding: 0.3125rem 0.75rem;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
  z-index: 2;
}
.event-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.event-card-body h3 {
  font-family: var(--font-b);
  font-size: 1.1875rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.3125rem;
  line-height: 1.3;
  color: var(--c-charcoal);
}
.event-card-body .location {
  font-size: 0.9375rem;
  color: var(--c-text2);
  margin-bottom: 0.625rem;
}
.event-card-body .link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.event-card-body .link svg { width: 15px; height: 15px; }
.event-card:hover .event-card-body .link { text-decoration: underline; }

/* ─── Gallery: Archive (compact horizontal list) ──────────────────
   Prefixed with gal- to avoid collision with the news page, which
   has its own .archive-list / .archive-year / .archive-item / etc.
   rules earlier in this file (~line 2860). */
.gal-archive-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border-lt);
  margin-top: 0.5rem;
}
.gal-archive-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-border-lt);
  text-decoration: none;
  color: inherit;
  transition: background var(--tr-f), padding var(--tr-f), margin var(--tr-f);
}
.gal-archive-row:hover {
  background: var(--c-bg2);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin: 0 -0.5rem;
}
.gal-archive-year {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: var(--w-semibold);
  color: var(--c-secondary-dark);
  width: 64px;
  flex-shrink: 0;
}
.gal-archive-event {
  flex: 1;
  font-size: 0.9375rem;
  color: var(--c-charcoal);
  font-weight: var(--w-medium);
}
.gal-archive-link {
  font-size: 0.8125rem;
  color: var(--c-primary);
  font-weight: var(--w-semibold);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.gal-archive-link svg { width: 14px; height: 14px; }

/* ─── Gallery: Mobile responsive ────────────────────────────────── */
@media (max-width: 767px) {
  .content .carousel .carousel-main { aspect-ratio: 16 / 10; }
  .carousel-caption { padding: 1rem 1.25rem; }
  .carousel-caption h3 { font-size: 1.1875rem; }
  .carousel-nav { width: 36px; height: 36px; font-size: 1.25rem; }
  .recent-grid { grid-template-columns: 1fr; gap: 1rem; }
  /* Stacked vertical layout on mobile: year → event → link.
     Each row's three pieces get their own visual line so long event
     names can wrap naturally and the "View album" link sits on its
     own line with a comfortable touch target, right-aligned. Padding
     bumped from 0.875rem to 1rem vertically for the larger tap zone. */
  .gal-archive-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 1rem 0.5rem;
  }
  .gal-archive-row:hover {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin: 0 -0.5rem;
  }
  .gal-archive-year {
    width: auto;
    font-size: 1.125rem;
    order: 1;
  }
  .gal-archive-event {
    width: 100%;
    font-size: 0.9375rem;
    line-height: 1.4;
    order: 2;
  }
  .gal-archive-link {
    align-self: flex-end;
    margin-top: 0.25rem;
    padding: 0.375rem 0;
    order: 3;
  }
}


/* ─── Gallery: Album sections + thumbs ──────────────────────────── */
.album-section { margin-bottom: 2rem; }
.album-section h3 {
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}.pilg-card-body h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.pilg-card-body p {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-bottom: 0.25rem;
}.pilg-card-body .link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.pilg-card-body .link:hover { text-decoration: underline; }.credit h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
}
.credit p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Contact: two-column layout ────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.form-section h2 {
  font-size: 1.5rem;
  font-weight: var(--w-medium);
  margin-bottom: 1rem;
}
.form-submit {
  width: 100%;
  padding: 0.875rem;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  cursor: pointer;
  transition: background var(--tr-f);
  font-family: var(--font-b);
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--c-primary-dark); }
.form-note {
  font-size: 0.875rem;
  color: var(--c-muted);
  margin-top: 0.625rem;
  text-align: center;
}


/* ─── Contact: Sidebar (roles + address + section-finder) ───────── */
.sidebar-section { margin-bottom: 1.5rem; }
.sidebar-section h3 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.75rem;
}
.role {
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-border-lt);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.role:last-child { border-bottom: none; }
.role-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.role-icon svg { width: 18px; height: 18px; }
.role-info h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.125rem;
}
.role-info p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin: 0;
}
.role-email {
  font-size: 0.875rem;
  color: var(--c-primary);
  font-weight: var(--w-medium);
  display: block;
  margin-top: 0.25rem;
  text-decoration: none;
}
.role-email:hover { text-decoration: underline; }

.address {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.address h3 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
}
.address p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.6;
  margin: 0;
}
.address .note {
  font-size: 0.875rem;
  color: var(--c-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

.section-finder {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  text-align: center;
}
.section-finder h3 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.375rem;
}
.section-finder p {
  font-size: 0.9375rem;
  color: var(--c-muted);
  margin-bottom: 0.75rem;
}


/* ─── Contact: FAQ cards ────────────────────────────────────────── */
.faq-section { margin: 2.5rem 0; }
.faq-section h2 {
  font-size: 1.5rem;
  font-weight: var(--w-medium);
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border-lt);
}
/* .faq-grid already exists in layout.css (2-col, gap var(--space-5))
   override gap to match mockup */
.faq-section .faq-grid { gap: 1rem; }
.faq-card {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  background: var(--c-white);
}
.faq-card h4 {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.375rem;
}
.faq-card p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}
.faq-link {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.faq-link:hover { text-decoration: underline; }


/* ─── Phase 4 responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
  .donate-layout { grid-template-columns: 1fr; padding: 1.5rem 1.25rem 2rem; gap: 2rem; }
  .amounts { grid-template-columns: repeat(2, 1fr); }
  .causes { grid-template-columns: 1fr; }
  .featured { flex-direction: column; }
  .featured-cover { width: 100%; height: 220px; }
  .archive-list { grid-template-columns: 1fr; }
  .sub-form { flex-direction: column; }
  .carousel-main { aspect-ratio: 16/10; }  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-section .form-row { grid-template-columns: 1fr; }
  .faq-section .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .amounts { grid-template-columns: 1fr 1fr; }
  .album-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════
   LEADERSHIP PAGE v3 — Tiered headshots + silhouette fallback
   (replaces older .leader-hero pattern; tier-specific sizes + accordion
    council grouping. Office-based filenames so 4-year rotations don't
    require code changes.)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Tier headers ───────────────────────────────────────────────── */
.tier-header {
  margin: 3rem 0 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--c-primary);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.tier-header:first-of-type { margin-top: 1rem; }
.tier-title {
  font-family: var(--font-h);
  font-size: 1.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin: 0;
}
.tier-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  font-style: italic;
  text-align: right;
  max-width: 380px;
  margin: 0;
}

/* ─── Tier 1: Lieutenant + Prior — 2-up hero cards ───────────────── */
.leader-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.leader-card {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.leader-card .texture {
  opacity: 0.055;
  background-image: var(--cross-tile-red);
  background-size: 600px 600px;
}
.leader-card .leader-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-bg3);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 3px solid var(--c-white);
  box-shadow: 0 2px 6px rgba(26,26,26,0.10);
}
.leader-card .leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.leader-card .leader-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.leader-card .leader-body h3 {
  font-size: 1.375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.125rem;
  line-height: 1.2;
}
.leader-card .leader-title {
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  color: var(--c-text2);
  margin-bottom: 0.125rem;
}
.leader-card .leader-rank {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 0.625rem;
}
.leader-card .leader-body p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin: 0;
}

/* ─── Tier 2/3 officer grid + card baseline ──────────────────────── */
/* Note: an older .officer-grid / .officer / .officer-avatar block exists
   earlier in this file (~line 110) for a simpler initials-based layout.
   These rules override it for the Leadership page's tiered treatment. */
.officer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.officer {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  background: var(--c-white);
  transition: box-shadow var(--tr);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.officer:hover { box-shadow: var(--sh-sm); }

.officer-avatar {
  border-radius: 50%;
  background: var(--c-bg3);
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--c-white);
  box-shadow: 0 1px 3px rgba(26,26,26,0.08);
  color: var(--c-muted);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.officer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Silhouette fallback — shown when img onerror fires ─────────── */
/* The <span class="silhouette-fallback"> starts with inline
   style="display:none". On error, JS flips it to display:flex and
   hides the broken <img>. */
.silhouette-fallback {
  width: 70%;
  height: 70%;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
}
.silhouette-fallback svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Tier 2: Lieutenancy Officers — 128px (80% of Tier 1) */
.tier-lieutenancy .officer-avatar { width: 128px; height: 128px; }
.tier-lieutenancy .officer { min-height: 240px; }

/* Tier 3: Council Members — 96px (60% of Tier 1) */
.tier-council .officer-avatar { width: 96px; height: 96px; }
.tier-council .officer { min-height: 200px; }

.officer .officer-info {
  display: contents; /* h4/.off-title/.off-rank flow as direct children */
}
.officer h4 {
  font-family: var(--font-b);
  font-size: 0.9375rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.25rem;
  line-height: 1.3;
  min-height: 2.4em;
}
.officer .off-title {
  font-size: 0.8125rem;
  color: var(--c-text2);
  margin-bottom: 0.125rem;
  font-weight: var(--w-medium);
}
.officer .off-rank {
  font-size: 0.6875rem;
  color: var(--c-muted);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: auto;
}

/* ─── Council subgroup accordions ────────────────────────────────── */
/* Desktop: always open, summary styled as a subgroup heading.
   Mobile: real collapsible behavior via the responsive block below. */
.accordion { margin-bottom: 0.75rem; }
.accordion summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-h);
  font-size: 1.125rem;
  font-weight: var(--w-medium);
  font-style: italic;
  color: var(--c-text2);
  margin: 1.5rem 0 0.75rem;
  padding: 0.25rem 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  border-bottom: 1px solid var(--c-border-lt);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: ''; flex: 1; }
.accordion-count {
  font-family: var(--font-b);
  font-size: 0.6875rem;
  font-style: normal;
  color: var(--c-muted);
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--c-bg2);
  padding: 0.125rem 0.5rem;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.accordion-chevron {
  display: none;
  flex-shrink: 0;
  color: var(--c-muted);
  transition: transform var(--tr-f);
  margin-left: 0.25rem;
}
.accordion[open] .accordion-chevron { transform: rotate(180deg); }

/* ─── State accordions (Sections list) ───────────────────────────── */
/* Same desktop-always-open / mobile-collapsible behavior as .accordion,
   but with the state-list header styling (sans-serif, plain weight,
   sits above the .section-list grid). */
.state-accordion { margin-bottom: 1.75rem; }
.state-accordion summary {
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  padding: 0.375rem 0;
  margin-bottom: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--c-border-lt);
}
.state-accordion summary::-webkit-details-marker { display: none; }
.state-accordion summary::after { content: ''; flex: 1; }

/* ─── Tablet: 3-col officer grid ─────────────────────────────────── */
@media (max-width: 1024px) {
  .officer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── Mobile (<768px): single-column heroes + compact council list ── */
@media (max-width: 767px) {
  .tier-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.375rem;
  }
  .tier-desc { text-align: left; }
  .tier-title { font-size: 1.5rem; }

  .leader-pair { grid-template-columns: 1fr; gap: 1rem; }
  .leader-card {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  .leader-card .leader-photo {
    margin: 0 auto;
    width: 140px;
    height: 140px;
  }

  .officer-grid { grid-template-columns: repeat(2, 1fr); }

  /* Accordions (council subgroups + state sections) become real
     collapsible UI on mobile */
  .accordion-chevron { display: inline-block; }
  .accordion summary,
  .state-accordion summary {
    padding: 0.75rem 0.875rem;
    background: var(--c-bg2);
    border-radius: var(--r-md);
    border-bottom: 1px solid var(--c-border-lt);
    margin: 1rem 0 0.75rem;
  }
  .accordion[open] summary,
  .state-accordion[open] summary {
    margin-bottom: 0.75rem;
    background: var(--c-primary-bg);
  }

  /* Council members compact list — avatar + name/title side-by-side */
  .accordion .officer-grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .accordion .officer {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0.75rem 0.875rem;
    min-height: auto;
    gap: 0.875rem;
    border-radius: var(--r-md);
  }
  .accordion .officer-avatar {
    width: 56px;
    height: 56px;
    margin: 0;
    flex-shrink: 0;
  }
  .accordion .officer .officer-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 0.0625rem;
    text-align: left;
  }
  .accordion .officer h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.0625rem;
    min-height: 0;
    line-height: 1.25;
    text-align: left;
  }
  .accordion .officer .off-title {
    font-size: 0.8125rem;
    color: var(--c-text2);
    text-align: left;
    margin-bottom: 0;
  }
  .accordion .officer .off-rank { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════
   SECTIONS LANDING + DETAIL PAGES (/sections/ and /sections/[slug]/)
   ═══════════════════════════════════════════════════════════════════
   Reuses .state-badge (defined earlier in this file). All new classes
   are prefixed `sec-` to avoid collisions with Leadership page's
   .section-card / .section-name / .section-pres / .section-prior. */

/* ─── State group (landing page) ─────────────────────────────────── */
.state-group { margin-bottom: 2.5rem; }
.state-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--c-primary);
}
.state-header h2 {
  font-family: var(--font-h);
  font-size: 1.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin: 0;
  flex: 1;
}
.state-count {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: var(--w-semibold);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Section card grid (landing page) ───────────────────────────── */
.sec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.sec-card {
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  background: var(--c-white);
  padding: 1.25rem 1.375rem;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--tr-f), box-shadow var(--tr-f), transform var(--tr-f);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}
.sec-card:hover {
  border-color: var(--c-primary-light);
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}
.sec-card:hover .sec-arrow {
  transform: translateX(3px);
  color: var(--c-primary);
}
.sec-card-name {
  font-family: var(--font-b);
  font-size: 1.0625rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.sec-arrow {
  color: var(--c-muted);
  transition: transform var(--tr-f), color var(--tr-f);
  flex-shrink: 0;
}
.sec-arrow svg { width: 18px; height: 18px; display: block; }
.sec-card-pres {
  font-size: 0.875rem;
  color: var(--c-text2);
  line-height: 1.5;
}
.sec-card-prior {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px dashed var(--c-border-lt);
}

/* ─── Intro panel (gold-tinted info box) ─────────────────────────── */
.intro-panel {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.intro-panel-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: var(--c-white);
  border: 1px solid var(--c-border-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-panel-icon svg { width: 20px; height: 20px; color: var(--c-secondary-dark); }
.intro-panel-text { flex: 1; }
.intro-panel-text strong {
  display: block;
  font-family: var(--font-b);
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.intro-panel-text p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.5;
  margin: 0;
}

/* ─── Section hero (detail pages, charcoal) ──────────────────────── */
.sec-hero {
  background: var(--c-charcoal);
  color: var(--c-ivory);
  padding: 3rem 1.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sec-hero .texture {
  opacity: 0.07;
  background-image: var(--cross-tile-ivory);
  background-size: 600px 600px;
}
.sec-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.sec-hero .breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255, 255, 240, 0.5);
  margin-bottom: 1rem;
}
.sec-hero .breadcrumb a {
  color: rgba(255, 255, 240, 0.5);
  text-decoration: none;
}
.sec-hero .breadcrumb a:hover { color: var(--c-ivory); }
.sec-state-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: var(--w-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-secondary-light);
  margin-bottom: 0.75rem;
}
.sec-state-tag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--c-secondary-light);
  font-family: var(--font-h);
  font-size: 0.8125rem;
  font-weight: var(--w-semibold);
  color: var(--c-secondary-light);
}
.sec-hero h1 {
  font-size: 3rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
  color: var(--c-ivory);
}
.sec-hero .diocese {
  font-size: 1.125rem;
  color: rgba(255, 255, 240, 0.75);
  font-style: italic;
}

/* ─── Detail body container ──────────────────────────────────────── */
.sec-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}
.sec-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--c-muted);
  text-decoration: none;
  font-weight: var(--w-medium);
  margin-bottom: 1.5rem;
}
.sec-back-link:hover { color: var(--c-primary); }
.sec-back-link svg { width: 14px; height: 14px; }

/* ─── President card (single + co variants) ──────────────────────── */
.sec-pres-card {
  background: var(--c-bg2);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.sec-pres-card-single { display: grid; grid-template-columns: 280px 1fr; }
.sec-pres-card-co { padding: 2rem; }
.sec-pres-photo-wrap {
  position: relative;
  z-index: 1;
  background: var(--c-bg3);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sec-pres-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.sec-pres-body { position: relative; z-index: 1; padding: 2rem; }
.sec-pres-label {
  font-size: 0.6875rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted);
  margin-bottom: 0.625rem;
}
.sec-pres-body h2 {
  font-size: 1.875rem;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
  font-family: var(--font-h);
  line-height: 1.15;
}
.sec-pres-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.sec-pres-contacts a {
  color: var(--c-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: var(--w-medium);
  word-break: break-word;
}
.sec-pres-contacts a:hover { text-decoration: underline; }
.sec-pres-contacts svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--c-muted);
}

/* ─── Co-president pair layout ───────────────────────────────────── */
.sec-copres-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}
.sec-copres-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sec-copres-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--c-bg3);
  overflow: hidden;
  border: 3px solid var(--c-white);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.sec-copres-photo img { width: 100%; height: 100%; object-fit: cover; }
.sec-copres-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  line-height: 1.2;
  margin-bottom: 0.375rem;
}
.sec-copres-email { font-size: 0.875rem; word-break: break-word; }
.sec-copres-email a {
  color: var(--c-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: var(--w-medium);
}
.sec-copres-email a:hover { text-decoration: underline; }
.sec-copres-email svg {
  width: 14px;
  height: 14px;
  color: var(--c-muted);
  flex-shrink: 0;
}
.sec-copres-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.sec-copres-header .sec-pres-label { margin-bottom: 0.25rem; }
.sec-copres-header h2 {
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: var(--w-medium);
  color: var(--c-text2);
  font-style: italic;
  margin: 0;
}

/* ─── Prior block (bottom of president card) ─────────────────────── */
.sec-pres-prior {
  padding-top: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  font-size: 0.9375rem;
  color: var(--c-text2);
  text-align: center;
  position: relative;
  z-index: 1;
}
.sec-prior-label {
  display: block;
  font-weight: var(--w-bold);
  color: var(--c-muted);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}

/* ─── Coming Soon panel (22 sections without populated content) ──── */
.sec-coming-soon {
  border: 2px dashed var(--c-border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--c-bg);
  margin-bottom: 2rem;
}
.sec-coming-soon-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--c-bg2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
}
.sec-coming-soon-icon svg { width: 28px; height: 28px; }
.sec-coming-soon h3 {
  font-family: var(--font-h);
  font-size: 1.375rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.5rem;
}
.sec-coming-soon p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─── Newsletter-style content blocks (Cleveland only) ───────────── */
.sec-block { margin-bottom: 3rem; }
.sec-heading {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--c-primary);
}
.sec-heading h2 {
  font-size: 1.75rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin: 0;
  flex-shrink: 0;
}
.sec-heading-count {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: var(--w-semibold);
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--c-bg2);
  padding: 0.25rem 0.625rem;
  border-radius: var(--r-full);
  align-self: center;
}

/* Event list — newsletter style (distinct from home page .event-card) */
.sec-event-list { display: flex; flex-direction: column; gap: 1rem; }
.sec-event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  border: 1px solid var(--c-border-lt);
  border-radius: var(--r-lg);
  background: var(--c-white);
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr-f);
}
.sec-event-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}
.sec-event-date {
  background: var(--c-primary-bg);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--c-border-lt);
}
.sec-event-date.past { background: var(--c-bg2); }
.sec-event-date .month {
  font-size: 0.6875rem;
  font-weight: var(--w-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: 0.125rem;
}
.sec-event-date.past .month { color: var(--c-muted); }
.sec-event-date .day {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  line-height: 1;
}
.sec-event-date .year {
  font-size: 0.75rem;
  color: var(--c-muted);
  margin-top: 0.25rem;
}
.sec-event-body { padding: 1.25rem 1.5rem; }
.sec-event-body h3 {
  font-family: var(--font-b);
  font-size: 1.125rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.sec-event-meta {
  font-size: 0.8125rem;
  color: var(--c-muted);
  margin-bottom: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.sec-event-meta-dot { color: var(--c-hint); }
.sec-event-body p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
}
.sec-event-body .event-cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.sec-event-body .event-cta:hover { text-decoration: underline; }

/* News (newsletter style — image + text) */
.sec-news-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.sec-news-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.sec-news-img {
  aspect-ratio: 4 / 3;
  background: var(--c-bg3);
  border-radius: var(--r-md);
  overflow: hidden;
}
.sec-news-img img { width: 100%; height: 100%; object-fit: cover; }
.sec-news-body h3 {
  font-family: var(--font-b);
  font-size: 1.125rem;
  font-weight: var(--w-semibold);
  color: var(--c-charcoal);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}
.sec-news-meta {
  font-size: 0.75rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--w-semibold);
  margin-bottom: 0.5rem;
}
.sec-news-body p {
  font-size: 0.9375rem;
  color: var(--c-text2);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}
.sec-news-body .read-more {
  font-size: 0.875rem;
  font-weight: var(--w-semibold);
  color: var(--c-primary);
  text-decoration: none;
}
.sec-news-body .read-more:hover { text-decoration: underline; }

/* ─── Sections mobile (<768px) ───────────────────────────────────── */
@media (max-width: 768px) {
  .sec-hero { padding: 2.5rem 1.25rem 2rem; }
  .sec-hero h1 { font-size: 2rem; }
  .sec-content { padding: 1.5rem 1.25rem 2rem; }
  .sec-grid { grid-template-columns: 1fr; }
  .intro-panel { flex-direction: column; padding: 1.25rem; gap: 0.875rem; }
  .sec-pres-card-single { grid-template-columns: 1fr; }
  .sec-pres-photo-wrap { min-height: 280px; }
  .sec-pres-body { padding: 1.5rem; }
  .sec-copres-pair { grid-template-columns: 1fr; gap: 1.5rem; }
  .sec-copres-photo { width: 140px; height: 140px; }
  .sec-event-card { grid-template-columns: 80px 1fr; gap: 0; }
  .sec-event-date { padding: 0.875rem 0.5rem; }
  .sec-event-date .day { font-size: 1.75rem; }
  .sec-event-body { padding: 0.875rem 1rem; }
  .sec-news-card { grid-template-columns: 1fr; }
  .sec-news-img { max-width: none; aspect-ratio: 16 / 9; }
}
