/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Public+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --cream:        #F5F0E8;
  --cream-dark:   #EAE4D8;
  --cream-border: #D8D0C4;
  --navy:         #0B1F3A;
  --navy-mid:     #163354;
  --navy-light:   #1E4A7A;
  --gold:         #E89438;
  --gold-light:   #F2B36E;
  --gold-pale:    #FBEBD9;
  --text:         #1C1C2E;
  --text-body:    #2E3A4A;
  --text-muted:   #6B7A8D;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;

  --shadow-card: 0 2px 12px rgba(11,31,58,0.08), 0 1px 3px rgba(11,31,58,0.06);
  --shadow-lift: 0 8px 32px rgba(11,31,58,0.14), 0 2px 8px rgba(11,31,58,0.08);

  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography helpers ── */
.serif { font-family: var(--font-display); }
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 8px;
  margin-bottom: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,148,56,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-h);
  border-bottom: 3px solid var(--gold);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0; right: 0;
  height: 3px;
  background: var(--navy-light);
  opacity: 0.3;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-org-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: var(--gold-light);
}
.nav-cta {
  margin-left: 12px;
  padding: 8px 18px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* Mobile drawer */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  padding: 10px 14px;
  color: rgba(245,240,232,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.nav-mobile .mobile-cta {
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

/* ══════════════════════════════════════
   PAGE HERO (used on inner pages)
══════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 56px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .section-label { color: var(--gold-light); }
.page-hero .section-label::before { background: var(--gold-light); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p.lead {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.75);
  max-width: 600px;
  margin: 0;
}
.page-hero .gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin-top: 24px;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   HOME — HERO
══════════════════════════════════════ */
.home-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 90px;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 70% 50%, rgba(30,74,122,0.5) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C8963E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.home-hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.home-hero .hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold);
}
.home-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 8px;
}
.home-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.home-hero .hero-sub {
  font-size: 1.15rem;
  color: rgba(245,240,232,0.7);
  margin: 20px 0 36px;
  max-width: 540px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* decorative side element */
.home-hero .hero-badge {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,148,56,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
  z-index: 1;
}
.home-hero .hero-badge::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1.5px solid rgba(232,148,56,0.15);
}
.home-hero .hero-badge .badge-stat {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.home-hero .hero-badge .badge-label {
  font-size: 0.7rem;
  color: rgba(245,240,232,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Home: Mission strip ── */
.mission-strip {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}
.mission-strip-inner {
  display: flex;
  align-items: stretch;
}
.mission-item {
  flex: 1;
  padding: 32px 32px;
  border-right: 1px solid rgba(11,31,58,0.15);
}
.mission-item:last-child { border-right: none; }
.mission-item h4 {
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.mission-item p {
  color: var(--navy-mid);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Home: About preview ── */
.home-about {
  padding: 96px 0;
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text-block h2 { margin-bottom: 20px; }
.about-text-block p { color: var(--text-muted); font-size: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.about-stat {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}
.about-stat .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  display: block;
}
.about-stat .stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
}

/* ── Home: Featured sections ── */
.home-features {
  padding: 0 0 96px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.feature-card-header {
  background: var(--navy);
  padding: 24px 24px 20px;
}
.feature-card-header .section-label { color: var(--gold-light); margin-bottom: 8px; }
.feature-card-header .section-label::before { background: var(--gold-light); }
.feature-card-header h3 {
  color: var(--white);
  font-size: 1.25rem;
}
.feature-card-body {
  padding: 24px;
}
.feature-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.feature-card-body .card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.feature-card-body .card-link:hover { color: var(--gold); }

/* ── Home: CTA banner ── */
.home-cta {
  background: var(--navy-mid);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-cta::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,148,56,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.home-cta .cta-inner { position: relative; }
.home-cta h2 { color: var(--white); margin-bottom: 14px; }
.home-cta p { color: rgba(245,240,232,0.7); font-size: 1.05rem; margin-bottom: 32px; }
.home-cta .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-section {
  padding: 80px 0;
}
.about-section + .about-section {
  border-top: 1px solid var(--cream-border);
}
.about-section--alt { background: var(--white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.value-card .value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 12px;
}
.value-card h4 { margin-bottom: 8px; font-size: 1rem; }
.value-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.about-two-col {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  align-items: start;
}
.about-aside {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  color: var(--white);
}
.about-aside h4 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about-aside p {
  color: rgba(245,240,232,0.8);
  font-size: 0.92rem;
  font-style: italic;
  font-family: var(--font-display);
  line-height: 1.55;
  margin: 0;
}

/* ══════════════════════════════════════
   BOARD PAGE
══════════════════════════════════════ */
.board-section {
  padding: 72px 0;
}
.officers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.officer-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.18s;
}
.officer-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.officer-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.officer-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.officer-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.officer-photo-placeholder .initials {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232,148,56,0.15);
  border: 1.5px solid rgba(232,148,56,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
}
.officer-photo-placeholder .photo-hint {
  font-size: 0.65rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.officer-info {
  padding: 20px 22px 22px;
}
.officer-title-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.officer-info h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.officer-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.officer-info .officer-bio {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
  margin: 0 0 8px;
}
.officer-card.is-chair .officer-photo {
  border-bottom: 3px solid var(--gold);
}
.officer-card.is-chair .officer-title-tag { color: var(--gold); font-size: 0.72rem; }

/* ══════════════════════════════════════
   CALENDAR PAGE
══════════════════════════════════════ */
.calendar-section {
  padding: 72px 0 96px;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.event-card {
  display: grid;
  grid-template-columns: min-content 1fr auto;
  gap: 24px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: box-shadow 0.18s;
}
.event-card:hover { box-shadow: var(--shadow-card); }
.event-date-box {
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  flex-shrink: 0;
  min-width: 110px;
}
.event-date-box .event-day-name {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.event-date-box .event-date-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}
.event-content h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.event-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-meta svg { width: 12px; height: 12px; opacity: 0.7; }
.event-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}
.event-type-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.badge--meeting  { background: rgba(11,31,58,0.08);  color: var(--navy); }
.badge--public   { background: rgba(232,148,56,0.12); color: #9A5A16; }
.badge--training { background: rgba(30,74,122,0.1);  color: var(--navy-light); }
.badge--deadline { background: rgba(180,40,40,0.1);  color: #8B2020; }
.badge--conference { background: rgba(60,140,80,0.1); color: #2A6640; }

/* ══════════════════════════════════════
   PRESS PAGE
══════════════════════════════════════ */
.press-section {
  padding: 72px 0;
}
.press-grid {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}
.press-card {
  background: var(--white);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  transition: background 0.15s;
}
.press-card:hover { background: var(--cream); }
.press-outlet-info { padding-top: 4px; }
.press-outlet {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.press-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.press-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.press-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.press-read-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.15s;
}
.press-read-link:hover { color: var(--gold); }

/* Gallery */
.gallery-section {
  padding: 0 0 80px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 40px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--navy-mid);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item .gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  transition: opacity 0.2s;
}
.gallery-item:hover .gallery-placeholder { opacity: 0.8; }
.gallery-item .gallery-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.3;
  color: var(--white);
}
.gallery-item .gallery-placeholder span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gallery-item.gallery-wide { grid-column: span 2; }
.gallery-item.gallery-tall { grid-row: span 2; }

/* ══════════════════════════════════════
   START A CHAPTER
══════════════════════════════════════ */
.chapter-section {
  padding: 80px 0;
}
.chapter-section + .chapter-section { border-top: 1px solid var(--cream-border); }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 40px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.step-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0;
  background: var(--white);
  align-items: stretch;
}
.step-num-col {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.step-content {
  padding: 22px 28px;
}
.step-content h3 { font-size: 1rem; margin-bottom: 6px; }
.step-content p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* Requirements box */
.requirements-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 48px;
}
.requirements-box h3 { color: var(--gold-light); margin-bottom: 20px; font-size: 1.1rem; }
.requirements-list { list-style: none; }
.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(245,240,232,0.85);
  font-size: 0.92rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.requirements-list li:last-child { border-bottom: none; }
.requirements-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.chapter-contact-box {
  background: var(--gold-pale);
  border: 1px solid rgba(232,148,56,0.3);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 32px;
}
.chapter-contact-box h4 { color: var(--navy); margin-bottom: 10px; }
.chapter-contact-box p { font-size: 0.92rem; color: var(--text-body); margin-bottom: 16px; }

/* ══════════════════════════════════════
   EDUCATION PAGE
══════════════════════════════════════ */
.education-section {
  padding: 80px 0;
}
.education-section + .education-section { border-top: 1px solid var(--cream-border); }
.category-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
}
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.guide-item {
  background: var(--white);
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: background 0.15s;
}
.guide-item:hover { background: var(--white); }
.guide-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.guide-text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }
.guide-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  opacity: 0.7;
}

/* ══════════════════════════════════════
   NEWSPAPER / UPDATES PAGE
══════════════════════════════════════ */
.newspaper-section {
  padding: 72px 0 96px;
}
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--cream-border);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 48px;
}
.article-card {
  background: var(--white);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  transition: background 0.15s;
}
.article-card:hover { background: var(--cream); cursor: pointer; }
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.article-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(232,148,56,0.12);
  padding: 3px 10px;
  border-radius: 100px;
}
.article-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.article-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.article-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.article-byline {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
  padding-top: 6px;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  padding: 80px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 20px; font-size: 1.25rem; }
.contact-info p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Contact form */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.contact-form-card h3 { margin-bottom: 28px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  background: var(--cream);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
  appearance: none;
}
.form-control:focus {
  border-color: var(--navy);
  background: var(--white);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.92rem; }
.form-control--error {
  border-color: #c0504d !important;
  background: #fff8f8;
}
.form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: #c0504d;
  margin-top: 5px;
  font-weight: 500;
}
.form-error-msg.is-visible { display: block; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  border-top: 3px solid var(--gold);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-brand .footer-org-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
  max-width: 260px;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  margin: 0;
}
.footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}
.footer-bottom .footer-links a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
  transition: color 0.15s;
}
.footer-bottom .footer-links a:hover { color: rgba(245,240,232,0.7); }

/* ── Divider ── */
.section-divider {
  height: 1px;
  background: var(--cream-border);
  margin: 0;
  border: none;
}

/* ── Prose text ── */
.prose {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
}
.prose p { margin-bottom: 1.2rem; }
.prose p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .home-hero .hero-badge { display: none; }
  .home-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
  .officers-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { grid-template-columns: 64px 1fr; }
  .event-type-badge { display: none; }
  .press-card { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .mission-strip-inner { flex-direction: column; }
  .mission-item { border-right: none; border-bottom: 1px solid rgba(11,31,58,0.15); }
  .mission-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 18px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .officers-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-wide { grid-column: span 1; }
  .article-card { grid-template-columns: 1fr; }
  .article-byline { display: none; }
  .contact-form-card { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .requirements-box, .chapter-contact-box { padding: 24px 20px; }
  .home-hero { padding: 72px 0 64px; }
  .hero-actions { flex-direction: column; }
  .home-cta .cta-actions { flex-direction: column; align-items: center; }
}
