/* ═══════════════════════════════════════════════════════════════════
   DeKalb Public Services Corporation — Main Stylesheet
   Fonts: Playfair Display (headings) · DM Sans (body)
   Palette: Deep navy · Warm amber · Off-white — NO green
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #18181b;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

/* ── Design Tokens ────────────────────────────── */
:root {
  --navy:       #0d1b35;
  --navy-md:    #1a3459;
  --navy-lt:    #254a7a;
  --amber:      #c8820a;
  --amber-lt:   #e09510;
  --amber-pale: #fff8ed;
  --warm-white: #faf8f5;
  --warm-gray:  #ede9e3;
  --text:       #18181b;
  --text-md:    #3f3f46;
  --muted:      #6e6e78;
  --border:     #e2ddd7;
  --radius:     10px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 6px rgba(13,27,53,.07);
  --shadow:     0 4px 22px rgba(13,27,53,.10);
  --shadow-lg:  0 10px 44px rgba(13,27,53,.14);
  --max-w:      1180px;
}

/* ══════════════════════════════════════════════════
   PHOTO PLACEHOLDERS
   ══════════════════════════════════════════════════ */
.photo-ph {
  background: #ccc8c2;
  position: relative;
  overflow: hidden;
}
.photo-ph::after {
  content: attr(data-label);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6b6760;
  background: rgba(255,255,255,.55);
  padding: .45rem 1rem;
  border-radius: 4px;
  border: 1.5px dashed rgba(107,103,96,.45);
  white-space: nowrap;
  pointer-events: none;
}

/* Logo image wrapper — white circle so blue logo is visible on dark navy */
.logo-img-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
  box-shadow: 0 0 0 2px rgba(255,255,255,.15);
  overflow: hidden;
}
.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  display: block;
}
/* Footer logo placeholder — shows styled box until real logo loads */
.footer-logo-ph {
  position: relative;
  width: 56px;
  height: 56px;
  background: rgba(200,130,10,.1);
  border: 1.5px dashed rgba(200,130,10,.45);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.footer-logo-ph .footer-logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 6px;
}
.footer-logo-ph-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(200,130,10,.65);
  text-align: center;
  line-height: 1.4;
  pointer-events: none;
}
/* When real logo loads, hide placeholder treatment */
.footer-logo-ph--loaded { background: transparent; border-color: transparent; }
.footer-logo-ph--loaded .footer-logo-ph-label { display: none; }

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Logo slot — dark-background version (navbar, footer) */
.logo-slot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1.5px dashed rgba(255,255,255,.22);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slot-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.38);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  user-select: none;
}
.logo-slot--sm {
  width: 44px;
  height: 44px;
}

/* ══════════════════════════════════════════════════
   IDENTITY BAR
   ══════════════════════════════════════════════════ */
.identity-bar {
  background: var(--navy);
  border-bottom: 2px solid var(--amber);
  padding: .38rem 1.5rem;
}
.identity-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.identity-badge {
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .16rem .62rem;
  border-radius: 3px;
  white-space: nowrap;
}
.identity-ein {
  font-family: 'DM Sans', sans-serif;
  font-size: .74rem;
  font-weight: 500;
  color: rgba(255,255,255,.48);
  letter-spacing: .04em;
}

/* ══════════════════════════════════════════════════
   SITE HEADER
   ══════════════════════════════════════════════════ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 24px rgba(0,0,0,.38);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 76px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-text-block { display: flex; flex-direction: column; gap: .07rem; }
.logo-org-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .98rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.logo-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  color: var(--amber-lt);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Desktop Nav */
.site-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: .1rem; }
.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .82rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  background: none;
  border: none;
  border-radius: 7px;
  transition: color .14s, background .14s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover,
.nav-item:focus-within > .nav-link { color: #fff; background: rgba(255,255,255,.1); }

.chevron {
  width: 10px; height: 6px;
  flex-shrink: 0;
  transition: transform .2s;
  opacity: .6;
}
.nav-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

/* ── Dropdown + hover bridge ──────────────────── */
/*
   The ::before pseudo-element on each .dropdown extends
   upward to cover the gap between the nav button and the
   panel, so diagonal mouse movement doesn't close it.
*/
.dropdown {
  display: none;
  position: absolute;
  top: 100%;          /* flush to bottom of nav item */
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,.07);
  min-width: 260px;
  padding: .5rem .5rem .6rem;
  z-index: 300;
  animation: ddIn .15s ease;
}
.dropdown-wide { min-width: 310px; }
/* CSS :hover is the primary open mechanism — as long as the cursor is
   anywhere inside the .has-dropdown li (including the dropdown child),
   the panel stays visible. JS .open class adds aria-expanded state. */
.has-dropdown:hover > .dropdown,
.dropdown.open { display: block; }

/* Invisible hover bridge: extends 20px above the panel so diagonal
   mouse movement from the button down to the panel never clips out */
.dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -16px;
  right: -16px;
  height: 24px;
  background: transparent;
}

@keyframes ddIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: .78rem;
  padding: .62rem .88rem;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: background .11s;
}
.dropdown-link:hover { background: var(--warm-white); }
.dd-icon { display: none; } /* emojis removed — text-only dropdown links */
.dropdown-link strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  font-weight: 700;
  line-height: 1.25;
}
.dropdown-link small {
  display: block;
  font-size: .77rem;
  color: var(--muted);
  margin-top: .08rem;
  font-weight: 400;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.btn-donate {
  background: var(--amber);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: .845rem;
  padding: .52rem 1.2rem;
  border-radius: 24px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .14s, box-shadow .14s;
  box-shadow: 0 2px 10px rgba(200,130,10,.35);
  letter-spacing: .01em;
}
.btn-donate:hover { background: var(--amber-lt); box-shadow: 0 4px 16px rgba(200,130,10,.45); }
.btn-donate-full { display: block; width: 100%; text-align: center; border-radius: 10px; padding: .82rem; font-size: .95rem; }
.btn-portal {
  background: transparent;
  color: rgba(255,255,255,.82);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  padding: .42rem .95rem;
  border-radius: 20px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.28);
  letter-spacing: .01em;
  transition: background .14s, border-color .14s, color .14s;
}
.btn-portal:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); color: #fff; }
.btn-admin, .btn-logout {
  font-size: .78rem; font-weight: 600; padding: .38rem .8rem;
  border-radius: 20px; text-decoration: none; transition: background .14s;
}
.btn-admin  { background: rgba(255,255,255,.12); color: #fff; }
.btn-logout { background: rgba(255,255,255,.07); color: rgba(255,255,255,.6); }
.btn-admin:hover  { background: rgba(255,255,255,.22); color: #fff; }
.btn-logout:hover { background: rgba(255,255,255,.14); color: #fff; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border: none; border-radius: 8px;
  padding: 8px; flex-shrink: 0; margin-left: auto;
}
.hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: all .24s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.55); z-index: 400;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }

/* Mobile Drawer */
.mobile-nav {
  position: fixed; top: 0; right: -100%;
  width: min(360px, 92vw); height: 100dvh;
  background: #fff; z-index: 500;
  display: flex; flex-direction: column;
  transition: right .28s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-header {
  background: var(--navy);
  padding: 1.25rem 1.25rem 1rem;
  position: relative;
}
.mobile-logo-name {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem; font-weight: 700; color: #fff;
  padding-right: 2.5rem; line-height: 1.3;
}
.mobile-tagline {
  display: block; font-size: .66rem; color: var(--amber-lt);
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  margin-top: .3rem;
}
.mobile-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 1.3rem; width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-list { flex: 1; padding: .5rem 0; }
.mobile-nav-list li { border-bottom: 1px solid var(--border); }
.mobile-nav-list > li > a,
.mobile-group-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: .88rem 1.25rem;
  font-family: 'DM Sans', sans-serif; font-size: .93rem; font-weight: 600;
  color: var(--text); text-decoration: none;
  width: 100%; text-align: left; background: none; border: none;
}
.mobile-nav-list > li > a:hover,
.mobile-group-toggle:hover { background: var(--warm-white); }
.mobile-arrow { color: var(--muted); font-size: 1rem; transition: transform .2s; }
.mobile-group.active .mobile-arrow { transform: rotate(90deg); }
.mobile-sub { display: none; background: var(--warm-white); border-top: 1px solid var(--border); }
.mobile-group.active .mobile-sub { display: block; }
.mobile-sub li { border-bottom: 1px solid var(--border); }
.mobile-sub li:last-child { border-bottom: none; }
.mobile-sub a {
  display: block; padding: .7rem 1.25rem .7rem 2rem;
  font-family: 'DM Sans', sans-serif; font-size: .875rem;
  color: var(--muted); font-weight: 500; text-decoration: none;
}
.mobile-sub a:hover { color: var(--navy); background: #e8e3dc; }
.mobile-nav-footer { padding: 1.25rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: .85rem; }
.mobile-disclaimer { font-size: .7rem; color: var(--muted); line-height: 1.55; text-align: center; }

/* ══════════════════════════════════════════════════
   SHARED SECTION LAYOUT
   ══════════════════════════════════════════════════ */
.section-wrap { padding: 5.5rem 1.5rem; }
.section-wrap--sm { padding: 4rem 1.5rem; }
.section-wrap--dark { background: var(--navy); color: #fff; }
.section-wrap--warm { background: var(--warm-white); }
.section-wrap--amber { background: var(--amber-pale); }
.inner { max-width: var(--max-w); margin: 0 auto; }

.eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .6rem;
}
.eyebrow--lt { color: var(--amber-lt); }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.55rem);
  font-weight: 700; line-height: 1.18;
  margin-bottom: .8rem;
}
.section-heading--center { text-align: center; }
.section-sub {
  font-size: 1.02rem; color: var(--muted);
  max-width: 640px; line-height: 1.72;
}
.section-sub--center { text-align: center; margin: 0 auto; }
.section-sub--lt { color: rgba(255,255,255,.6); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.75rem; border-radius: 30px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: .92rem;
  border: 2px solid transparent;
  transition: all .2s; text-decoration: none;
  letter-spacing: .01em;
}
.btn-amber {
  background: var(--amber); color: #fff;
  box-shadow: 0 3px 12px rgba(200,130,10,.32);
}
.btn-amber:hover { background: var(--amber-lt); box-shadow: 0 5px 18px rgba(200,130,10,.42); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-navy { background: var(--navy); color: #fff; box-shadow: 0 3px 12px rgba(13,27,53,.22); }
.btn-navy:hover { background: var(--navy-md); transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════
   SECTION 1: HERO
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg.photo-ph { background: #8a9aae; } /* blue-gray for a people/community feel */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(13,27,53,.88) 0%,
    rgba(13,27,53,.72) 55%,
    rgba(13,27,53,.45) 100%
  );
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem 5.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 680px; }
.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 1.35rem;
  letter-spacing: -.015em;
}
.hero-heading em { font-style: italic; color: var(--amber-lt); }
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  line-height: 1.74;
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-disclaimer {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  font-style: italic;
  max-width: 580px;
}

/* ══════════════════════════════════════════════════
   SECTION 2: ABOUT
   ══════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.about-left { display: flex; flex-direction: column; gap: 1.5rem; }
.about-photo.photo-ph {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
}
.about-body {
  font-size: 1.02rem;
  color: var(--text-md);
  line-height: 1.78;
}
.about-body + .about-body { margin-top: -.5rem; }
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-stat-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-stat-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem; font-weight: 700;
  color: var(--navy-lt); display: block;
  margin-bottom: .3rem;
}
.about-stat-label {
  font-size: .75rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: .07em; line-height: 1.4;
}

/* ══════════════════════════════════════════════════
   SECTION 3: OUR STORY
   ══════════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}
.story-photo.photo-ph {
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.story-right { display: flex; flex-direction: column; gap: 1.75rem; }
.story-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2.2vw, 1.38rem);
  font-weight: 600;
  font-style: italic;
  color: var(--text);
  line-height: 1.72;
  position: relative;
  padding-left: 1.75rem;
}
.story-quote::before {
  content: '\201C';
  position: absolute;
  left: 0; top: -.25rem;
  font-size: 3.5rem;
  font-style: normal;
  color: var(--amber);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}
.story-attribution {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.story-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
}
.story-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}
.story-divider {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════
   SECTION 4: PROGRAMS (What We Offer)
   ══════════════════════════════════════════════════ */
.programs-accent.photo-ph {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
}
.programs-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdc6be; }
.program-icon { display: none; } /* deprecated — use .program-icon-svg */
.program-icon-svg {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--amber-pale);
  border-radius: 10px;
  margin-bottom: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.program-icon-svg svg { width: 22px; height: 22px; stroke: var(--navy); }
.program-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .55rem; line-height: 1.25;
}
.program-desc {
  font-size: .9rem; color: var(--text-md);
  line-height: 1.68; flex: 1;
}
.program-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1.2rem; font-size: .84rem; font-weight: 700;
  color: var(--amber); text-decoration: none; transition: gap .14s;
}
.program-link:hover { gap: .5rem; }

/* ══════════════════════════════════════════════════
   SECTION 5: IMPACT
   ══════════════════════════════════════════════════ */
.impact-inner-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: center;
}
.impact-left {}
.impact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}
.impact-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: background .18s;
}
.impact-card:hover { background: rgba(255,255,255,.11); }
.impact-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 800;
  color: var(--amber-lt); display: block;
  margin-bottom: .35rem;
}
.impact-label {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(255,255,255,.55); line-height: 1.4;
}
.impact-note {
  font-size: .86rem;
  color: rgba(255,255,255,.38);
  font-style: italic;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.impact-photo.photo-ph {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  opacity: .85;
}

/* ══════════════════════════════════════════════════
   SECTION 6: GET INVOLVED
   ══════════════════════════════════════════════════ */
.involve-section {
  position: relative;
  overflow: hidden;
}
.involve-bg.photo-ph {
  position: absolute;
  inset: 0;
  background: #b8a898;
  z-index: 0;
  border-radius: 0;
}
.involve-overlay {
  position: absolute; inset: 0;
  background: rgba(255,248,237,.94);
  z-index: 1;
}
.involve-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 1.5rem;
}
.involve-intro { text-align: center; margin-bottom: 3rem; }
.involve-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.involve-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2.1rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.involve-icon { font-size: 1.9rem; margin-bottom: .9rem; display: block; }
.involve-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--navy); margin-bottom: .6rem;
}
.involve-desc {
  font-size: .96rem; color: var(--text-md);
  line-height: 1.72; flex: 1; margin-bottom: 1.75rem;
}

/* ══════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.68);
  padding: 4.5rem 1.5rem 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand .footer-logo-row {
  display: flex; align-items: center;
  gap: .75rem; margin-bottom: 1rem;
}
.footer-org-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700;
  color: #fff; line-height: 1.3;
}
.footer-blurb { font-size: .845rem; line-height: 1.72; margin-bottom: .9rem; }
.footer-ein-line { font-size: .76rem; color: rgba(255,255,255,.35); font-weight: 500; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.38); margin-bottom: .95rem;
}
.footer-col ul li { margin-bottom: .48rem; }
.footer-col ul li a { font-size: .865rem; color: rgba(255,255,255,.62); transition: color .14s; }
.footer-col ul li a:hover { color: #fff; }
.footer-address { font-size: .865rem; line-height: 1.82; }
.footer-address strong { display: block; font-weight: 700; color: rgba(255,255,255,.82); margin-bottom: .25rem; }
.footer-contact-btn {
  display: inline-flex; margin-top: 1.1rem;
  font-size: .8rem; font-weight: 700; padding: .45rem 1rem;
  border-radius: 20px; background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.15);
  text-decoration: none; transition: background .14s, color .14s;
}
.footer-contact-btn:hover { background: rgba(255,255,255,.18); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.25rem 0;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.footer-disclaimer { font-size: .74rem; color: rgba(255,255,255,.32); font-style: italic; }
.footer-copy       { font-size: .74rem; color: rgba(255,255,255,.22); }

/* ══════════════════════════════════════════════════
   INNER PAGE STYLES (Contact, Auth, Admin, Error)
   ══════════════════════════════════════════════════ */
.page-hero { background: var(--navy); color: #fff; padding: 3.5rem 1.5rem; text-align: center; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 540px; margin: 0 auto; }

.contact-section { padding: 4.5rem 0; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3.5rem; align-items: start;
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
}
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 1.5rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.info-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .1rem; }
/* SVG icon replacement for info sidebar */
.info-icon-svg {
  width: 36px; height: 36px;
  background: var(--amber-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .05rem;
}
.info-icon-svg svg { width: 17px; height: 17px; stroke: var(--navy); }
.info-item strong { display: block; font-weight: 700; margin-bottom: .2rem; font-size: .88rem; color: var(--navy); }
.info-item p, .info-item p a { color: var(--muted); font-size: .875rem; line-height: 1.55; }
.info-item p a:hover { color: var(--navy); }

/* Book appointment block in sidebar */
.contact-appt-block {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
.contact-appt-note {
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: .85rem;
  line-height: 1.5;
}

/* Team contact section */
.team-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.team-contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.tcc-header {
  background: var(--navy);
  padding: 1.15rem 1.25rem 1.1rem;
  border-bottom: 3px solid var(--amber);
}
.tcc-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem; font-weight: 700;
  color: #fff; margin-bottom: .2rem;
}
.tcc-role {
  font-size: .78rem; color: rgba(255,255,255,.6);
  font-weight: 500; line-height: 1.4;
}
.tcc-details {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.tcc-detail-row {
  display: flex; align-items: center;
  gap: .55rem; text-decoration: none;
  color: var(--text-md); font-size: .84rem;
  transition: color .13s;
}
a.tcc-detail-row:hover { color: var(--amber); }
.tcc-detail-row svg { width: 14px; height: 14px; stroke: var(--navy); flex-shrink: 0; }
a.tcc-detail-row:hover svg { stroke: var(--amber); }
.tcc-placeholder { color: var(--muted); font-style: italic; cursor: default; }
.tcc-placeholder svg { stroke: var(--muted); }

@media (max-width: 1024px) {
  .team-contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .team-contact-grid { grid-template-columns: 1fr; }
}

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .84rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: .68rem .92rem;
  font-size: .95rem; width: 100%;
  transition: border-color .18s, box-shadow .18s;
  font-family: 'DM Sans', sans-serif;
  background: #fff; color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(200,130,10,.12);
}

.alert { padding: .88rem 1.1rem; border-radius: var(--radius); font-size: .92rem; margin-bottom: .5rem; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.auth-section {
  min-height: calc(100vh - 130px); display: flex;
  align-items: center; justify-content: center;
  padding: 3rem 1.5rem; background: var(--warm-white);
}
.auth-box {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 2.75rem;
  width: 100%; max-width: 440px; border: 1px solid var(--border);
}
.auth-header { text-align: center; margin-bottom: 2rem; }
.auth-header h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 700; }
.auth-header p { color: var(--muted); font-size: .9rem; margin-top: .3rem; }
.auth-switch { text-align: center; margin-top: 1.25rem; font-size: .87rem; color: var(--muted); }
.auth-switch a { color: var(--amber); font-weight: 700; }

.admin-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 120px); }
.admin-sidebar { background: var(--navy); color: #fff; padding: 2rem 1rem; }
.admin-sidebar h3 { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.32); margin-bottom: 1rem; padding: 0 .75rem; font-family: 'DM Sans', sans-serif; }
.admin-sidebar ul li a { display: block; padding: .58rem .75rem; border-radius: 7px; color: rgba(255,255,255,.68); font-size: .87rem; margin-bottom: .2rem; transition: background .14s; font-family: 'DM Sans', sans-serif; }
.admin-sidebar ul li a:hover,
.admin-sidebar ul li a.active { background: rgba(255,255,255,.1); color: #fff; }
.admin-main { background: var(--warm-white); padding: 2rem; overflow: auto; }
.admin-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.admin-header h1 { font-family: 'Playfair Display', serif; font-size: 1.55rem; }
.admin-user { font-size: .82rem; color: var(--muted); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin-bottom: 2rem; }
.stat-card { background: #fff; border-radius: var(--radius); padding: 1.25rem 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.stat-card.highlight { border-color: var(--amber); }
.stat-card-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--navy); }
.stat-card.highlight .stat-card-num { color: var(--amber); }
.stat-card-label { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.admin-section { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--border); margin-bottom: 2rem; padding: 1.5rem; }
.admin-section h2 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1.25rem; }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.admin-table th { background: var(--warm-white); padding: .65rem 1rem; text-align: left; font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr.row-new td { background: #fffbeb; }
.msg-cell { max-width: 200px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.status-select { border: 1px solid var(--border); border-radius: 5px; padding: .25rem .5rem; font-size: .78rem; cursor: pointer; }
.status-select.status-new         { color: #92400e; background: #fef3c7; }
.status-select.status-in-progress { color: #1e40af; background: #dbeafe; }
.status-select.status-resolved    { color: #065f46; background: #d1fae5; }
.role-badge { display: inline-block; padding: .18rem .6rem; border-radius: 20px; font-size: .74rem; font-weight: 700; }
.role-badge.role-admin { background: #ede9fe; color: #5b21b6; }
.role-badge.role-user  { background: var(--warm-white); color: var(--muted); }
.btn-sm { padding: .25rem .7rem; border-radius: 5px; font-size: .78rem; border: none; font-weight: 600; }
.btn-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.btn-danger:hover { background: #fee2e2; }
.empty-state { color: var(--muted); font-size: .88rem; padding: 1rem 0; }

/* Admin — R2 asset upload panel */
.asset-upload-wrap { background: var(--warm-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.25rem; }
.asset-upload-row  { display: flex; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }
.asset-field       { display: flex; flex-direction: column; gap: .35rem; }
.asset-field--grow { flex: 1; min-width: 220px; }
.asset-field--btn  { flex-shrink: 0; }
.asset-label       { font-size: .75rem; font-weight: 700; color: var(--text-md); letter-spacing: .02em; }
.asset-file-input  { font-size: .83rem; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius); padding: .38rem .6rem; background: #fff; cursor: pointer; }
.asset-file-input:hover { border-color: var(--amber); }
.asset-result      { margin-top: 1rem; font-size: .84rem; }
.asset-ok          { background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius); padding: .75rem 1rem; color: #166534; line-height: 1.6; }
.asset-ok code     { background: rgba(0,0,0,.06); padding: .1em .35em; border-radius: 3px; }
.asset-err         { background: #fef2f2; border: 1px solid #fecaca; border-radius: var(--radius); padding: .75rem 1rem; color: #991b1b; }
.asset-note        { font-size: .78rem; color: var(--muted); margin-top: .75rem; line-height: 1.6; }
.asset-note code   { background: var(--warm-gray); padding: .1em .35em; border-radius: 3px; font-size: .9em; }

/* ══════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════ */

/* Page hero — replaces full-screen hero for inner pages */
.page-hero {
  background: var(--navy);
  padding: 4rem 1.5rem 4.5rem;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero-eyebrow {
  display: block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .6rem;
}
.page-hero-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff; font-weight: 800; line-height: 1.15;
  margin-bottom: .85rem;
}
.page-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 560px; line-height: 1.72;
}

/* Vision grid — 3 equal cards */
.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.vision-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.65rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.vision-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.vision-card-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.vision-card-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.vision-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: .55rem; line-height: 1.25;
}
.vision-card p { font-size: .92rem; color: var(--text-md); line-height: 1.68; }

/* Team grid — 3 across on desktop, 6 people = 2 clean rows */
.team-section-header { text-align: center; margin-bottom: 3rem; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-photo {
  width: 100%; aspect-ratio: 1;
  background: var(--warm-gray);
}
.team-card-body { padding: 1.2rem 1.25rem 1.4rem; }
.team-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .97rem; font-weight: 700;
  color: var(--navy); margin-bottom: .22rem;
}
.team-role {
  font-size: .8rem; color: var(--muted);
  font-weight: 500; line-height: 1.4;
}
.team-role-amber { color: var(--amber); font-weight: 600; }

/* Community Access Network — dark feature section */
.can-section {
  background: var(--navy);
  padding: 6rem 1.5rem;
}
/* .inner wraps .can-inner for consistent max-width + side padding */
.can-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
.can-left { /* left copy column — no extra styles needed */ }
.can-points {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  align-self: center;
}
.can-eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber);
  background: rgba(200,130,10,.12);
  border: 1px solid rgba(200,130,10,.3);
  padding: .22rem .75rem; border-radius: 20px;
  margin-bottom: .85rem;
}
.can-heading {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  color: #fff; font-weight: 700; line-height: 1.18;
  margin-bottom: 1.25rem;
}
.can-body {
  font-size: .97rem; color: rgba(255,255,255,.68);
  line-height: 1.78;
}
.can-body + .can-body { margin-top: .9rem; }
/* .can-points layout (flex column) added here; box styles above in .can-inner block */
.can-points { display: flex; flex-direction: column; gap: 1.25rem; }
.can-point {
  display: flex; align-items: flex-start;
  gap: .85rem;
}
.can-point-dot {
  width: 28px; height: 28px;
  background: rgba(200,130,10,.15);
  border: 1.5px solid rgba(200,130,10,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: .1rem;
}
.can-point-dot svg { width: 13px; height: 13px; stroke: var(--amber); }
.can-point-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700;
  color: rgba(255,255,255,.88); margin-bottom: .15rem;
}
.can-point-text span {
  font-size: .85rem; color: rgba(255,255,255,.52); line-height: 1.55;
}

/* ══════════════════════════════════════════════════
   TRANSPARENCY / FINANCIALS PAGE
   ══════════════════════════════════════════════════ */

/* Year group — each year is its own labeled section */
.doc-year-group {
  margin-bottom: 3.5rem;
}
.doc-year-group:last-child { margin-bottom: 0; }

.doc-year-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: .85rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}

/* Document card grid — 3 across desktop, 1 on mobile */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Document card — vertical layout: banner on top, icon+text below */
.doc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.doc-card--pending { opacity: .78; }
.doc-card--pending:hover { transform: none; box-shadow: var(--shadow-sm); }

/* Year banner — navy strip across the full card top */
.doc-card-banner {
  background: var(--navy);
  padding: .85rem 1.4rem .75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
  border-bottom: 3px solid var(--amber);
}
.doc-card--pending .doc-card-banner {
  background: var(--navy-md);
  border-bottom-color: var(--warm-gray);
}

/* Content row: icon left, text right */
.doc-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.4rem 1.5rem;
  flex: 1;
}

.doc-card-icon {
  width: 40px;
  height: 40px;
  background: var(--amber-pale);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.doc-card-icon svg { width: 19px; height: 19px; stroke: var(--navy); }
.doc-card--pending .doc-card-icon { background: var(--warm-gray); }
.doc-card--pending .doc-card-icon svg { stroke: var(--muted); }

.doc-card-body { flex: 1; }
.doc-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .28rem;
  line-height: 1.3;
}
.doc-card-desc {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: .8rem;
}
.doc-card-link {
  font-size: .84rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  display: inline-block;
}
.doc-card-link:hover { text-decoration: underline; }
.doc-card-soon {
  font-size: .82rem;
  font-weight: 500;
  color: var(--amber);
  font-style: italic;
}

@media (max-width: 900px) {
  .doc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .doc-grid { grid-template-columns: 1fr; }
}

/* ── Policies section intro ───────────────────────────── */
.doc-policies-hd {
  margin-bottom: 2.5rem;
}
.doc-policies-sub {
  font-size: .95rem;
  color: var(--text-md);
  max-width: 580px;
  line-height: 1.65;
  margin-top: .5rem;
}

/* ── Group header — single full-width navy label above policy grid */
.doc-group-header {
  background: var(--navy);
  border-bottom: 3px solid var(--amber);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: .9rem 1.4rem .8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

/* ── 2-column grid — used for policy cards */
.doc-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1.25rem;
  gap: 1.25rem;
}
@media (max-width: 560px) {
  .doc-grid--2col { grid-template-columns: 1fr; }
}

/* CAN closing block — full-width strip below the two-col grid */
.can-closing {
  margin-top: 4rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.can-closing-inner {
  max-width: 760px;
}
.can-closing-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.can-closing-body p {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.78;
}
.can-closing-body p + p { margin-top: .9rem; }

/* Reports grid — two equal cards */
.reports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.report-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.report-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.report-card-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.report-card-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.report-card-title {
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .55rem; line-height: 1.25;
}
.report-card-desc {
  font-size: .92rem; color: var(--text-md);
  line-height: 1.68; flex: 1; margin-bottom: 1.4rem;
}
.report-card-link {
  font-size: .88rem; font-weight: 700;
  color: var(--amber); text-decoration: none;
  transition: gap .13s; display: inline-block;
  margin-top: auto;
}
.report-card-link:hover { text-decoration: underline; }

/* Responsive — About page */
@media (max-width: 1024px) {
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .can-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .can-points  { max-width: 520px; }
}
@media (max-width: 768px) {
  .vision-grid   { grid-template-columns: 1fr; gap: 1rem; }
  .reports-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .team-grid   { grid-template-columns: 1fr; gap: 1rem; }
  .can-section { padding: 4rem 1.25rem; }
}

/* ══════════════════════════════════════════════════
   PROGRAM PAGES — shared components
   ══════════════════════════════════════════════════ */

/* Page hero with two buttons */
.page-hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 1.85rem;
}

/* Two-column what-we-do layout */
.prog-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 2.75rem;
}
.prog-two-col-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.85rem 2.1rem;
  box-shadow: var(--shadow-sm);
}

/* Split-panel variant — left cream / right warm-gray / dividing line */
.prog-two-col--split {
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.prog-two-col--split .prog-two-col-card {
  background: var(--warm-white);
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 2.5rem 2.25rem;
}
.prog-two-col--split .prog-two-col-card + .prog-two-col-card {
  background: var(--warm-gray);
  border-left: 1px solid var(--border);
}
.prog-col-heading {
  font-size: 1.18rem; font-weight: 700;
  color: var(--navy); margin-bottom: .65rem; line-height: 1.25;
}
.prog-col-body { font-size: .95rem; color: var(--text-md); line-height: 1.75; }
.prog-col-soon {
  display: inline-block; margin-top: .9rem;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); background: var(--warm-gray);
  padding: .22rem .7rem; border-radius: 20px;
}

/* ── What We Do — contained section with nested nav card ── */
.wwd-section {
  padding: 2.5rem 1.5rem 3rem;
}
/* Outer container: light bg, rounded border */
.wwd-outer {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem 2.25rem;
}
/* Two-col grid: left content / right nested card, bottom-aligned */
.wwd-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 2.5rem;
  align-items: end;
}
.wwd-left {
  display: flex;
  flex-direction: column;
}
.wwd-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.wwd-body {
  font-size: .97rem;
  color: var(--text-md);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}
.wwd-soon {
  display: block;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Nested card: slightly darker, sits bottom-right */
.wwd-nested-card {
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem 1.5rem;
}
/* Pill label inside nested card */
.wwd-nav-pill {
  display: inline-block;
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .28rem .95rem;
  margin-bottom: .85rem;
  white-space: nowrap;
}
.wwd-nav-body {
  font-size: .88rem;
  color: var(--text-md);
  line-height: 1.72;
}
/* Responsive */
@media (max-width: 760px) {
  .wwd-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .wwd-outer { padding: 1.75rem 1.5rem; }
}

/* Language card grid */
.lang-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.lang-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
  transition: transform .18s, box-shadow .18s;
}
.lang-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.lang-card--soon {
  border-left-color: #ccc8c2;
  background: var(--warm-white);
}
.lang-card--soon:hover { transform: none; box-shadow: none; }
.lang-soon-badge {
  position: absolute; top: .9rem; right: .9rem;
  font-size: .64rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-pale);
  border: 1px solid rgba(200,130,10,.25);
  padding: .18rem .6rem; border-radius: 20px;
}
.lang-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy); margin-bottom: .28rem; line-height: 1.2;
}
.lang-card--soon .lang-card-name { color: var(--text-md); }
.lang-card-script {
  font-size: 1rem; color: var(--muted);
  font-weight: 400; margin-bottom: .55rem; line-height: 1.3;
}
.lang-card-note { font-size: .8rem; color: var(--muted); line-height: 1.5; }

/* Program service cards — 3-col grid */
.prog-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.prog-service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.prog-service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cdc6be; }
.prog-svc-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem; flex-shrink: 0;
}
.prog-svc-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.prog-svc-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: .5rem; line-height: 1.25;
}
.prog-svc-body { font-size: .9rem; color: var(--text-md); line-height: 1.7; flex: 1; }

/* Stats bar */
.stats-section {
  background: var(--navy);
  padding: 4.5rem 1.5rem;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-divider {
  border: none;
  border-left: 1px solid rgba(255,255,255,.1);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800; color: var(--amber);
  line-height: 1; margin-bottom: .4rem; display: block;
}
.stat-label {
  font-size: .92rem; color: rgba(255,255,255,.72);
  font-weight: 500; display: block;
}
.stat-note {
  font-size: .74rem; color: rgba(255,255,255,.35);
  font-style: italic; margin-top: .3rem; display: block;
}

/* Program lead card */
.prog-lead-wrap {
  max-width: 760px;
  margin: 2.5rem auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.prog-lead-initials {
  width: 120px; height: 120px; min-width: 120px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 3px solid var(--amber);
}
.prog-lead-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.12rem; font-weight: 700;
  color: var(--navy); margin-bottom: .18rem;
}
.prog-lead-role {
  font-size: .83rem; color: var(--amber);
  font-weight: 600; margin-bottom: .85rem;
}
.prog-lead-body { font-size: .94rem; color: var(--text-md); line-height: 1.74; }
.prog-lead-note {
  font-size: .82rem; color: var(--muted);
  font-style: italic; margin-top: .65rem;
}

/* Employment support section */
.empl-support-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem 0;
}
.empl-support-label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .55rem;
}
.empl-support-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  color: var(--navy); line-height: 1.22;
  margin-bottom: .9rem;
}
.empl-support-body {
  font-size: .95rem; color: var(--text-md); line-height: 1.76;
}
.empl-bullet-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.empl-bullet-list li {
  display: flex; align-items: center; gap: .9rem;
  font-size: 1rem; color: var(--text); font-weight: 500;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  padding: .9rem 1.2rem;
}
.empl-bullet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}

/* Responsive — program pages */
@media (max-width: 900px) {
  .prog-two-col            { grid-template-columns: 1fr; }
  .prog-two-col--split     { border-radius: var(--radius-lg); }
  .prog-two-col--split .prog-two-col-card + .prog-two-col-card {
    border-left: none;
    border-top: 1px solid var(--border);
    background: var(--warm-gray);
  }
  .prog-service-grid       { grid-template-columns: 1fr 1fr; }
  .lang-grid               { grid-template-columns: 1fr 1fr; }
  .stats-inner             { grid-template-columns: 1fr; gap: 2.5rem; }
  .prog-lead-wrap          { flex-direction: column; align-items: center; gap: 1.25rem; text-align: center; }
  .empl-support-wrap       { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .prog-service-grid { grid-template-columns: 1fr; }
  .lang-grid         { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   LEARNU WORKSHOPS PAGE
   ══════════════════════════════════════════════════ */

/* Shared label across all LearnU sections */
.lu-label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .6rem;
}

/* ── Section 1: Intro Header ───────────────────── */
.lu-intro { padding: 5rem 1.5rem 5.5rem; }
.lu-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: start;
}
.lu-intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-top: .4rem;
}
.lu-intro-heading em { font-style: italic; color: var(--amber); }
.lu-intro-body {
  font-size: .97rem;
  color: var(--text-md);
  line-height: 1.8;
  margin-bottom: .9rem;
}
.lu-pills {
  display: flex; flex-wrap: wrap;
  gap: .45rem; margin-top: 1.5rem;
}
.lu-pill {
  background: var(--navy);
  color: #fff;
  border-radius: 100px;
  font-size: .72rem; font-weight: 600;
  padding: .3rem .9rem;
  white-space: nowrap;
}

/* ── Section 2: eCourses Callout (dark navy) ─── */
.lu-ecourses {
  background: var(--navy);
  padding: 5.5rem 1.5rem;
}
.lu-ecourses-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.lu-ecourses .lu-label { color: var(--amber); }
.lu-ecourses-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: .9rem;
}
.lu-ecourses-body {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* CSS-only laptop mockup */
.lu-laptop-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.lu-laptop {
  width: 100%; max-width: 370px;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.6));
}
.lu-laptop-lid {
  background: linear-gradient(160deg, #cdd2dd, #b8beca);
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  border: 2px solid #a4a9b5;
  border-bottom: none;
}
.lu-laptop-browser {
  background: #1c2436;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.lu-laptop-dots {
  display: flex;
  gap: 4px;
  padding: 7px 9px 5px;
}
.lu-laptop-dot {
  width: 7px; height: 7px;
  border-radius: 50%; flex-shrink: 0;
}
.lu-laptop-dot:nth-child(1) { background: #ff5f57; }
.lu-laptop-dot:nth-child(2) { background: #febc2e; }
.lu-laptop-dot:nth-child(3) { background: #28c840; }
.lu-laptop-url-bar {
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  margin: 0 9px 8px;
  padding: 3px 10px;
  font-size: 7px;
  color: rgba(255,255,255,.42);
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  letter-spacing: .02em;
}
.lu-laptop-screen {
  background: #080f1e;
  padding: 11px 9px 14px;
}
.lu-ec-header-label {
  font-size: 7px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  padding: 0 2px;
  display: block;
}
.lu-ec-card {
  background: #10213a;
  border-radius: 6px;
  padding: 9px 10px 8px;
  margin-bottom: 7px;
}
.lu-ec-card-cat {
  display: block;
  font-size: 5.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 4px;
}
.lu-ec-card-title {
  font-size: 8px; font-weight: 600;
  color: #fff; line-height: 1.4;
  margin-bottom: 7px;
}
.lu-ec-progress-track {
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px; margin-bottom: 4px;
}
.lu-ec-progress-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 2px;
}
.lu-ec-meta {
  font-size: 6px;
  color: rgba(255,255,255,.35);
}
.lu-ec-card--soon {
  background: transparent;
  border: 1px dashed rgba(255,255,255,.18);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
}
.lu-ec-card--soon .lu-ec-card-title {
  color: rgba(255,255,255,.32);
  font-size: 7px;
  margin-bottom: 0;
  text-align: center;
}
/* Laptop hinge and base */
.lu-laptop-hinge {
  height: 4px;
  background: #9aa0ae;
  border-left: 2px solid #a4a9b5;
  border-right: 2px solid #a4a9b5;
}
.lu-laptop-base {
  background: linear-gradient(to bottom, #c8cdd8, #b4b9c4);
  border-radius: 0 0 8px 8px;
  border: 2px solid #a4a9b5;
  border-top: none;
  height: 18px;
  position: relative;
}
.lu-laptop-base-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 6px;
  background: rgba(0,0,0,.1);
  border-radius: 0 0 4px 4px;
}
.lu-laptop-foot {
  height: 4px;
  background: #9aa0ae;
  border-radius: 0 0 3px 3px;
  margin: 0 18px;
}

/* ── Section 3B: Host a Workshop (dark navy) ─── */
.lu-host {
  background: var(--navy);
  padding: 5.5rem 1.5rem;
}
.lu-host-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.lu-host-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin-bottom: .9rem;
}
.lu-host-body {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  line-height: 1.78; margin-bottom: 2rem;
}

/* Workshop request card mockup */
.lu-host-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lu-host-card {
  width: 100%; max-width: 380px;
  background: #131d30;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  overflow: hidden;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.55));
}
.lu-host-card-header {
  background: #1c2740;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lu-host-card-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--amber);
}
.lu-host-card-dots {
  display: flex; gap: 5px;
}
.lu-host-card-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.lu-host-fields {
  padding: 1.35rem 1.2rem 1.1rem;
  display: flex; flex-direction: column; gap: .9rem;
}
.lu-host-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.lu-host-field {}
.lu-host-field-label {
  font-size: .63rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .3rem;
}
.lu-host-field-input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: .5rem .7rem;
  font-size: .82rem; color: rgba(255,255,255,.8);
  line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lu-host-field-select { cursor: default; }
.lu-host-submit {
  background: var(--amber);
  color: #fff;
  border-radius: 7px;
  padding: .65rem 1rem;
  font-size: .85rem; font-weight: 700;
  text-align: center;
  margin-top: .25rem;
  letter-spacing: .01em;
}
.lu-host-card-footer {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: .7rem 1.2rem;
  font-size: .73rem; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: .45rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .lu-host-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .lu-host-card { max-width: 100%; }
}

/* ── Section 3: Where we show up (full rebuild) ─ */
.lu-where {
  border-top: 1px solid var(--border);
  padding: 5rem 1.5rem 5.5rem;
}
.lu-where-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.lu-where-intro {
  font-size: .97rem;
  color: var(--text-md);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 3rem;
}
/* Venue card grid */
.lu-venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.lu-venue-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.lu-venue-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #cdc6be;
}
.lu-venue-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lu-venue-icon svg {
  width: 20px; height: 20px;
  stroke: var(--navy); fill: none;
  stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
}
.lu-venue-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}
/* Navy callout bar */
.lu-where-callout {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin-bottom: 1.75rem;
}
.lu-where-callout-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.55;
  margin: 0;
  text-align: center;
}
.lu-where-cta {
  display: block;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  letter-spacing: .01em;
}
.lu-where-cta:hover { text-decoration: underline; }
/* Responsive */
@media (max-width: 1100px) {
  .lu-venue-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .lu-venue-grid { grid-template-columns: repeat(2, 1fr); }
  .lu-where-callout { padding: 1.75rem 1.5rem; }
}
@media (max-width: 480px) {
  .lu-venue-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Section 4: Workshop Topics ─────────────────── */
.lu-topics { padding: 5rem 1.5rem 5.5rem; }
.lu-topics-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.lu-topics-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy); line-height: 1.2;
}
.lu-topics-desc {
  font-size: .88rem; color: var(--muted);
  max-width: 300px; text-align: right; line-height: 1.6;
}
.lu-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.lu-topic-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.35rem 1.4rem;
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.lu-topic-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #cdc6be;
}
.lu-topic-icon {
  font-size: 1.5rem; line-height: 1;
  display: block; margin-bottom: .8rem;
}
.lu-topic-title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .45rem; line-height: 1.3;
}
.lu-topic-body {
  font-size: .84rem; color: var(--text-md);
  line-height: 1.68; flex: 1; margin-bottom: .85rem;
}
.lu-topic-tag {
  display: inline-block;
  font-size: .64rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: .22rem .7rem; border-radius: 100px;
  width: fit-content; margin-top: auto;
}
.lu-topic-tag--ecourse { background: #eef2ff; color: #4338ca; }
.lu-topic-tag--dev     { background: var(--amber-pale); color: var(--amber); }
.lu-topic-tag--workshop { background: var(--warm-gray); color: var(--muted); }
/* Dark "more on the way" card */
.lu-topic-card--dark {
  background: var(--navy);
  border-color: var(--navy);
}
.lu-topic-card--dark:hover { border-color: var(--navy-md); }
.lu-topic-card--dark .lu-topic-title { color: rgba(255,255,255,.9); }
.lu-topic-card--dark .lu-topic-body  { color: rgba(255,255,255,.52); }
.lu-suggest-link {
  font-size: .82rem; font-weight: 600;
  color: var(--amber); text-decoration: none;
  margin-top: auto; display: inline-block;
}
.lu-suggest-link:hover { text-decoration: underline; }

/* ── Section 5: How It Works ─────────────────────── */
.lu-hiw {
  background: var(--warm-gray);
  padding: 5.5rem 1.5rem;
}
.lu-hiw-grid {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
  align-items: start;
}
.lu-hiw-sticky {
  position: sticky;
  top: 2.5rem;
}
.lu-hiw-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--navy); line-height: 1.22;
}
.lu-hiw-steps {
  border-left: 2px solid var(--border);
  padding-left: 0;
  display: flex; flex-direction: column; gap: 0;
}
.lu-hiw-step {
  position: relative;
  padding: 0 0 2.75rem 2.25rem;
}
.lu-hiw-step:last-child { padding-bottom: 0; }
.lu-hiw-step-num {
  position: absolute;
  left: -1.25rem; top: 0;
  width: 38px; height: 38px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: .8rem; font-weight: 800;
  font-family: 'Playfair Display', serif;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--warm-gray);
  flex-shrink: 0;
}
.lu-hiw-step-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: .45rem; line-height: 1.3;
}
.lu-hiw-step-body {
  font-size: .92rem; color: var(--text-md); line-height: 1.72;
}

/* ── Section 6: CTA Footer ───────────────────────── */
.lu-cta { padding: 6rem 1.5rem; text-align: center; }
.lu-cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: .85rem; line-height: 1.22;
}
.lu-cta-sub {
  font-size: 1rem; color: var(--text-md);
  max-width: 560px; margin: 0 auto 2.25rem; line-height: 1.72;
}
.lu-cta-btns {
  display: flex; gap: .9rem;
  justify-content: center; flex-wrap: wrap;
}

/* ── LearnU Responsive ───────────────────────────── */
@media (max-width: 1100px) {
  .lu-topic-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .lu-intro-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .lu-ecourses-grid { grid-template-columns: 1fr; gap: 3rem; }
  .lu-hiw-grid      { grid-template-columns: 1fr; gap: 2.5rem; }
  .lu-hiw-sticky    { position: static; }
  .lu-topic-grid    { grid-template-columns: repeat(2, 1fr); }
  .lu-topics-desc   { text-align: left; max-width: none; }
}
@media (max-width: 560px) {
  .lu-topic-grid  { grid-template-columns: 1fr; }
  .lu-cta-btns    { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .programs-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .story-grid          { grid-template-columns: 320px 1fr; gap: 3.5rem; }
  .impact-inner-grid   { grid-template-columns: 1fr; }
  .impact-photo        { height: 280px; }
}
@media (max-width: 1024px) {
  .site-nav            { display: none; }
  .header-actions      { display: none; }
  .hamburger           { display: flex; }
  .logo-org-name       { font-size: .88rem; }
  .logo-tagline        { display: none; }
}
@media (max-width: 900px) {
  .about-grid          { grid-template-columns: 1fr; gap: 3rem; }
  .story-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-photo         { height: 300px; }
  .involve-grid        { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .admin-layout        { grid-template-columns: 1fr; }
  .admin-sidebar       { display: none; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .programs-grid       { grid-template-columns: 1fr; }
  .about-stats-grid    { grid-template-columns: 1fr 1fr; }
  .impact-cards-grid   { grid-template-columns: 1fr 1fr; }
  .footer-grid         { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom       { flex-direction: column; text-align: center; }
  .form-row            { grid-template-columns: 1fr; }
  .section-wrap        { padding: 3.75rem 1.25rem; }
  .hero-inner          { padding: 4.5rem 1.25rem 4rem; }
}


/* ══════════════════════════════════════════════════
   YOUTH CLUBS — landing + club pages
   ══════════════════════════════════════════════════ */

/* Per-club accent color tokens */
.yc-boys  { --yc-accent: #1a7a7a; --yc-accent-pale: #e3f4f4; --yc-accent-dark: #125858; }
.yc-girls { --yc-accent: #6236a0; --yc-accent-pale: #f0ebf9; --yc-accent-dark: #4b2a85; }

/* ── Landing page ──────────────────────────────── */
.yc-landing-hero {
  background: var(--navy);
  padding: 5.5rem 1.5rem 5rem;
  text-align: center;
}
.yc-landing-eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .65rem;
}
.yc-landing-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.12; margin-bottom: 1rem;
}
.yc-landing-tagline {
  font-size: 1.05rem; color: rgba(255,255,255,.62);
  font-style: italic;
  max-width: 560px; margin: 0 auto 1.75rem;
  line-height: 1.72;
}
.yc-landing-meta {
  display: flex; align-items: center; justify-content: center;
  gap: .7rem; flex-wrap: wrap;
  font-size: .83rem; color: rgba(255,255,255,.45);
}
.yc-landing-meta-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}

.yc-choice-section { padding: 4rem 1.5rem; }
.yc-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: var(--max-w); margin: 0 auto;
}
.yc-choice-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.yc-choice-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.yc-choice-photo { height: 240px; width: 100%; }
.yc-choice-photo.photo-ph { border-radius: 0; }
.yc-choice-body {
  padding: 1.85rem 1.7rem 1.75rem;
  flex: 1; display: flex; flex-direction: column;
}
.yc-choice-card--boys .yc-choice-body { background: #e3f4f4; }
.yc-choice-card--girls .yc-choice-body { background: #f0ebf9; }
.yc-choice-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  line-height: 1.15; margin-bottom: .25rem;
}
.yc-choice-card--boys .yc-choice-label { color: #125858; }
.yc-choice-card--girls .yc-choice-label { color: #4b2a85; }
.yc-choice-age {
  font-size: .78rem; font-weight: 600;
  color: var(--muted); letter-spacing: .04em;
  margin-bottom: .75rem;
}
.yc-choice-desc {
  font-size: .92rem; color: var(--text-md);
  line-height: 1.7; flex: 1;
  margin-bottom: 1.25rem;
}
.yc-choice-btn {
  display: inline-block;
  font-size: .88rem; font-weight: 700;
  padding: .6rem 1.35rem;
  border-radius: 8px;
  color: #fff; text-decoration: none;
  width: fit-content;
  transition: filter .18s;
}
.yc-choice-btn:hover { filter: brightness(1.1); }
.yc-choice-card--boys .yc-choice-btn { background: #1a7a7a; }
.yc-choice-card--girls .yc-choice-btn { background: #6236a0; }

.yc-landing-intro {
  padding: 4rem 1.5rem;
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.yc-landing-intro-inner { max-width: 720px; margin: 0 auto; }
.yc-landing-intro-body {
  font-size: 1.01rem; color: var(--text-md);
  line-height: 1.82; margin-bottom: 1.1rem;
}

/* ── Club page shared ──────────────────────────── */
.yc-hero { background: var(--navy); padding: 5.5rem 1.5rem 5rem; }
.yc-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.yc-hero-eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .6rem;
}
.yc-hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: #fff;
  line-height: 1.12; margin-bottom: .9rem;
}
.yc-hero-tagline {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  line-height: 1.72; max-width: 540px; margin-bottom: 1.25rem;
}
.yc-hero-meta {
  display: flex; align-items: center; gap: .7rem;
  flex-wrap: wrap; margin-bottom: 2.25rem;
}
.yc-hero-meta-item { font-size: .83rem; color: rgba(255,255,255,.5); }
.yc-hero-meta-sep  { color: var(--amber); font-size: .7rem; }
.yc-hero-btn {
  display: inline-block;
  background: var(--yc-accent);
  color: #fff; font-weight: 700; font-size: .96rem;
  padding: .8rem 1.85rem; border-radius: 9px;
  text-decoration: none; transition: filter .18s;
}
.yc-hero-btn:hover { filter: brightness(1.1); }

/* Section labels / headings */
.yc-eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--yc-accent); margin-bottom: .5rem;
}
.yc-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: .9rem;
}
.yc-body {
  font-size: .97rem; color: var(--text-md);
  line-height: 1.8; margin-bottom: .85rem;
}

/* Schedule 5-block grid */
.yc-schedule-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 2.5rem;
}
.yc-schedule-block {
  background: #fff;
  padding: 1.5rem 1.2rem 1.65rem;
  display: flex; flex-direction: column; gap: .35rem;
  transition: background .15s;
}
.yc-schedule-block:hover { background: var(--warm-white); }
.yc-schedule-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--yc-accent-pale);
  font-size: .7rem; font-weight: 800; color: var(--yc-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .35rem; flex-shrink: 0;
}
.yc-schedule-time {
  font-size: .66rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--amber); background: var(--amber-pale);
  display: inline-block;
  padding: .15rem .5rem; border-radius: 4px; width: fit-content;
}
.yc-schedule-title {
  font-size: .97rem; font-weight: 700;
  color: var(--navy); line-height: 1.25; margin-top: .22rem;
}
.yc-schedule-body {
  font-size: .82rem; color: var(--text-md); line-height: 1.65;
}

/* Earn-It system */
.yc-earn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 2rem;
}
.yc-earn-card {
  background: var(--yc-accent-pale);
  border: 1px solid rgba(0,0,0,.06);
  border-top: 3px solid var(--yc-accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}
.yc-earn-title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .4rem; line-height: 1.2;
}
.yc-earn-body {
  font-size: .86rem; color: var(--text-md); line-height: 1.65;
}

/* Four Quarters 2×2 grid */
.yc-quarters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.yc-quarter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.yc-quarter-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  margin-bottom: .85rem;
}
.yc-quarter-label {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--yc-accent); line-height: 1;
}
.yc-quarter-badge {
  font-size: .64rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); background: var(--warm-gray);
  padding: .22rem .7rem; border-radius: 20px; white-space: nowrap;
}
.yc-quarter-name {
  font-size: 1.08rem; font-weight: 700;
  color: var(--navy); margin-bottom: .75rem; line-height: 1.2;
}
.yc-quarter-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .5rem; flex: 1;
}
.yc-quarter-points li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .88rem; color: var(--text-md); line-height: 1.55;
}
.yc-quarter-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--yc-accent); flex-shrink: 0; margin-top: .46rem;
}
.yc-quarter-trip {
  display: flex; align-items: center; gap: .65rem;
  margin-top: 1.1rem; padding-top: .9rem;
  border-top: 1px solid var(--border);
  font-size: .82rem; font-weight: 600; color: var(--yc-accent);
}
.yc-quarter-trip-icon {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--yc-accent-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.yc-quarter-trip-icon svg {
  width: 15px; height: 15px;
  stroke: var(--yc-accent); fill: none;
  stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round;
}

/* Trips 4-col grid */
.yc-trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 2.5rem;
}
.yc-trip-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .45rem;
  transition: transform .2s, box-shadow .2s;
}
.yc-trip-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.yc-trip-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--yc-accent-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .35rem;
}
.yc-trip-icon svg {
  width: 22px; height: 22px;
  stroke: var(--yc-accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.yc-trip-quarter {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--amber);
}
.yc-trip-name {
  font-size: 1.02rem; font-weight: 700;
  color: var(--navy); line-height: 1.25;
}
.yc-trip-body {
  font-size: .86rem; color: var(--text-md);
  line-height: 1.65; flex: 1;
}
.yc-trip-note {
  font-size: .73rem; color: var(--muted);
  font-style: italic; margin-top: .2rem;
}

/* Family section */
.yc-family-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.yc-family-points {
  list-style: none; padding: 0; margin: 1.25rem 0 0;
  display: flex; flex-direction: column; gap: .85rem;
}
.yc-family-points li {
  display: flex; align-items: flex-start; gap: .8rem;
  font-size: .95rem; color: var(--text-md); line-height: 1.65;
}
.yc-family-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--yc-accent); flex-shrink: 0; margin-top: .44rem;
}
.yc-family-photo.photo-ph { width: 100%; height: 340px; border-radius: var(--radius-lg); }

/* Counselor — dark navy */
.yc-counselor { background: var(--navy); padding: 5rem 1.5rem; }
.yc-counselor-inner { max-width: 780px; margin: 0 auto; }
.yc-counselor .yc-eyebrow { color: var(--amber); }
.yc-counselor .yc-section-heading { color: #fff; }
.yc-counselor .yc-body { color: rgba(255,255,255,.68); margin-bottom: 1rem; }

/* Enroll CTA */
.yc-enroll {
  background: var(--yc-accent-pale);
  padding: 5.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,.06);
}
.yc-enroll-inner { max-width: 620px; margin: 0 auto; }
.yc-enroll-free {
  display: inline-block;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--yc-accent); background: rgba(0,0,0,.06);
  padding: .28rem .9rem; border-radius: 20px; margin-bottom: 1.1rem;
}
.yc-enroll-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.22; margin-bottom: .75rem;
}
.yc-enroll-body {
  font-size: .97rem; color: var(--text-md);
  line-height: 1.78; margin-bottom: 2rem;
}
.yc-enroll-btn {
  display: inline-block;
  background: var(--yc-accent); color: #fff;
  padding: .9rem 2.25rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: filter .18s; margin-bottom: 1.35rem;
  display: block; width: fit-content; margin-left: auto; margin-right: auto;
}
.yc-enroll-btn:hover { filter: brightness(1.1); }
.yc-enroll-note {
  font-size: .83rem; color: var(--muted); line-height: 1.65;
}
.yc-enroll-note a { color: var(--yc-accent); }

/* Bottom nav strip */
.yc-other-club {
  background: var(--warm-gray);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: .88rem;
}
.yc-other-club a { color: var(--navy); text-decoration: none; font-weight: 600; }
.yc-other-club a:hover { color: var(--amber); }
.yc-other-club span { color: var(--muted); margin: 0 .5rem; }

/* Club detail grid (boys-girls combined page) */
.yc-club-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.yc-club-detail-grid--reverse { direction: ltr; }
.yc-club-detail-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--warm-gray);
  min-height: 260px;
}
@media (max-width: 860px) {
  .yc-club-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .yc-club-detail-grid--reverse > *:first-child { order: 2; }
  .yc-club-detail-grid--reverse > *:last-child  { order: 1; }
}

/* Responsive */
@media (max-width: 1050px) {
  .yc-trip-grid { grid-template-columns: 1fr 1fr; }
  .yc-earn-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .yc-choice-grid   { grid-template-columns: 1fr; }
  .yc-quarters-grid { grid-template-columns: 1fr; }
  .yc-family-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .yc-schedule-row  { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .yc-schedule-row  { grid-template-columns: 1fr 1fr; }
  .yc-trip-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .yc-schedule-row  { grid-template-columns: 1fr; }
  .yc-earn-grid     { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════
   FOOD PANTRY PAGE
   ══════════════════════════════════════════════════ */

/* What We Provide — photo + text two-col */
.fp-provide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.fp-photo.photo-ph {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
}
.fp-provide-eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .55rem;
}
.fp-provide-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.22; margin-bottom: 1.1rem;
}
.fp-provide-body {
  font-size: .97rem; color: var(--text-md);
  line-height: 1.8; margin-bottom: .85rem;
}

/* Schedule card */
.fp-schedule-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.fp-schedule-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
}
.fp-schedule-eyebrow {
  display: block;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .45rem;
}
.fp-schedule-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--navy); line-height: 1.1;
  margin-bottom: .3rem;
}
.fp-schedule-time {
  font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: .75rem;
}
.fp-schedule-location {
  font-size: .88rem; color: var(--text-md);
  line-height: 1.6;
}
.fp-schedule-note {
  margin-top: .9rem;
  font-size: .82rem; color: var(--muted);
  line-height: 1.6; font-style: italic;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}

/* Access section — two-col text + accent card */
.fp-access-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.fp-access-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
.fp-access-body {
  font-size: .97rem; color: var(--text-md);
  line-height: 1.8; margin-bottom: .85rem;
}
.fp-access-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  color: #fff;
}
.fp-access-card-eyebrow {
  display: block;
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .65rem;
}
.fp-access-card-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; line-height: 1.3;
  margin-bottom: .85rem;
}
.fp-access-points {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .7rem;
}
.fp-access-points li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .9rem; color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.fp-access-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
  margin-top: .45rem;
}

/* Outreach section — icon cards row */
.fp-outreach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.fp-outreach-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.fp-outreach-icon {
  width: 44px; height: 44px;
  background: var(--amber-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.fp-outreach-icon svg {
  width: 22px; height: 22px;
  stroke: var(--navy); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.fp-outreach-title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: .4rem;
  line-height: 1.25;
}
.fp-outreach-body {
  font-size: .88rem; color: var(--text-md);
  line-height: 1.7;
}

/* Partners section */
.fp-partners-section {
  background: var(--navy);
  padding: 4.5rem 1.5rem;
}
.fp-partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.fp-partners-eyebrow {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .6rem;
}
.fp-partners-sub {
  font-size: .95rem; color: rgba(255,255,255,.55);
  margin-bottom: 2.5rem; line-height: 1.6;
}
.fp-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.fp-partner-card {
  background: rgba(255,255,255,.04);
  padding: 2rem 1.75rem;
  transition: background .18s;
}
.fp-partner-card:hover { background: rgba(255,255,255,.08); }
.fp-partner-card--open {
  background: transparent;
  border: none;
}
.fp-partner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--amber);
  line-height: 1.2; margin-bottom: .6rem;
}
.fp-partner-desc {
  font-size: .88rem; color: rgba(255,255,255,.62);
  line-height: 1.72;
}
@media (max-width: 760px) {
  .fp-partners-grid { grid-template-columns: 1fr; }
}

/* Updates CTA strip — centered */
.fp-updates-strip {
  background: var(--amber-pale);
  border-top: 1px solid rgba(200,130,10,.15);
  border-bottom: 1px solid rgba(200,130,10,.15);
  padding: 4rem 1.5rem;
  text-align: center;
}
.fp-updates-inner {
  max-width: 640px; margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.fp-updates-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: .4rem; line-height: 1.25;
}
.fp-updates-text p {
  font-size: .93rem; color: var(--text-md);
  line-height: 1.6;
}
.fp-updates-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
}

/* Contact info strip */
.fp-contact-strip {
  background: var(--navy);
  padding: 3rem 1.5rem;
}
.fp-contact-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.fp-contact-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .93rem; color: rgba(255,255,255,.8);
}
.fp-contact-item a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 500;
}
.fp-contact-item a:hover { color: var(--amber); }
.fp-contact-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fp-contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--amber); fill: none;
  stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 900px) {
  .fp-provide-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .fp-access-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .fp-schedule-wrap { grid-template-columns: 1fr; }
  .fp-outreach-grid { grid-template-columns: 1fr 1fr; }
  .fp-updates-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .fp-outreach-grid { grid-template-columns: 1fr; }
  .fp-contact-inner { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
  .fp-updates-actions { flex-direction: column; }
}


/* ══════════════════════════════════════════════════
   CHILDREN'S PROGRAMS PAGE  (ll- = Little Lions)
   ══════════════════════════════════════════════════ */

/* ── Shared typography helpers ─────────────────── */
.ll-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}
.ll-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .6rem;
}
.ll-section-sub {
  color: var(--text-md);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.ll-body {
  color: var(--text-md);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 620px;
}

/* ── Intro section ─────────────────────────────── */
.ll-intro-section {
  padding: 4rem 0 4.5rem;
}
.ll-program-label {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.ll-intro-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.ll-intro-body {
  color: var(--text-md);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 2.25rem;
}

/* Details strip */
.ll-details-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--warm-gray);
  border-radius: var(--radius-lg);
  margin-bottom: 2.25rem;
}
.ll-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}
.ll-detail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--amber);
  margin-top: .15rem;
}
.ll-detail-icon svg { width: 100%; height: 100%; }
.ll-detail-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  line-height: 1;
  margin-bottom: .2rem;
}
.ll-detail-value {
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ── Who it's for ──────────────────────────────── */
.ll-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.ll-who-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.ll-who-icon {
  width: 36px;
  height: 36px;
  color: var(--amber);
  margin-bottom: 1rem;
}
.ll-who-icon svg { width: 100%; height: 100%; }
.ll-who-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.ll-who-body {
  font-size: .95rem;
  color: var(--text-md);
  line-height: 1.65;
}

/* ── What kids learn ───────────────────────────── */
.ll-learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.ll-learn-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.ll-learn-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--amber);
}
.ll-learn-icon-wrap svg { width: 24px; height: 24px; }
.ll-learn-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.ll-learn-body {
  font-size: .95rem;
  color: var(--text-md);
  line-height: 1.65;
}

/* ── Every Saturday schedule ───────────────────── */
.ll-schedule {
  margin-top: 2rem;
  position: relative;
}
.ll-schedule::before {
  content: '';
  position: absolute;
  left: 5.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.ll-sched-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0 1.75rem;
  padding: 0 0 2rem 0;
  position: relative;
}
.ll-sched-item::before {
  content: '';
  position: absolute;
  left: calc(5.5rem - 5px);
  top: .35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
  z-index: 1;
}
.ll-sched-item:last-child { padding-bottom: 0; }
.ll-sched-time {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.4;
  text-align: right;
  padding-top: .2rem;
  white-space: nowrap;
}
.ll-sched-content {
  padding-left: .25rem;
}
.ll-sched-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.ll-sched-body {
  font-size: .95rem;
  color: var(--text-md);
  line-height: 1.65;
}

/* ── Four quarters ─────────────────────────────── */
.ll-quarters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.ll-quarter-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.ll-quarter-card--final {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), var(--shadow-sm);
}
.ll-quarter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.ll-quarter-num {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--amber);
  background: var(--amber-pale);
  padding: .25rem .65rem;
  border-radius: 999px;
}
.ll-quarter-weeks {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}
.ll-quarter-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .65rem;
  line-height: 1.25;
}
.ll-quarter-body {
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}
.ll-quarter-event {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: auto;
  padding-top: .85rem;
  border-top: 1px solid var(--border);
}
.ll-quarter-event svg { flex-shrink: 0; }
.ll-quarter-event--grad {
  color: var(--amber);
  border-color: var(--amber);
}

/* ── Special days ──────────────────────────────── */
.ll-special-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.ll-special-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.ll-special-card--grad {
  background: var(--navy);
  border-color: var(--navy);
}
.ll-special-card--grad .ll-special-icon { color: var(--amber); }
.ll-special-card--grad .ll-special-title { color: #fff; }
.ll-special-card--grad .ll-special-body  { color: rgba(255,255,255,.75); }
.ll-special-icon {
  width: 36px;
  height: 36px;
  color: var(--amber);
  margin-bottom: 1rem;
}
.ll-special-icon svg { width: 100%; height: 100%; }
.ll-special-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .65rem;
}
.ll-special-body {
  font-size: .95rem;
  color: var(--text-md);
  line-height: 1.7;
}

/* ── Staff / who runs it ───────────────────────── */
.ll-staff-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: center;
}
.ll-staff-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--warm-gray);
  min-height: 260px;
}

/* ── Practical info ─────────────────────────────── */
.ll-practical-section {
  padding: 4rem 0;
  background: var(--warm-gray);
}
.ll-practical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin-top: 2rem;
}
.ll-practical-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.ll-practical-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .98rem;
  color: var(--text-md);
  line-height: 1.55;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}
.ll-practical-item::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: .05rem;
}
.ll-practical-item--check::before {
  background: #d4f0d4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23287a28' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-position: center;
}
.ll-practical-item--note::before {
  background: #fef3c7;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3v4M6 9v.5' stroke='%23b45309' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-position: center;
}
.ll-practical-item--reg::before {
  background: var(--amber-pale);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2' y='1.5' width='8' height='9' rx='1' stroke='%23c8820a' stroke-width='1.5'/%3E%3Cline x1='4' y1='4.5' x2='8' y2='4.5' stroke='%23c8820a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='4' y1='6.5' x2='8' y2='6.5' stroke='%23c8820a' stroke-width='1.2' stroke-linecap='round'/%3E%3Cline x1='4' y1='8.5' x2='6' y2='8.5' stroke='%23c8820a' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 11px 11px;
  background-position: center;
}

/* ── Enroll CTA ─────────────────────────────────── */
.ll-enroll-section {
  padding: 5rem 0;
  background: var(--amber-pale);
}
.ll-enroll-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: .5rem 0 1rem;
}
.ll-enroll-body {
  color: var(--text-md);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}
.ll-enroll-contact {
  margin-top: 1.25rem;
  font-size: .92rem;
  color: var(--muted);
}
.ll-enroll-contact a { color: var(--navy); font-weight: 600; }
.ll-enroll-contact a:hover { color: var(--amber); }

/* ── Future programs placeholder ─────────────────── */
.cp-coming-soon {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.cp-coming-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--warm-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
}
.cp-coming-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--muted);
}
.cp-coming-icon svg { width: 100%; height: 100%; }
.cp-coming-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: .3rem;
}
.cp-coming-body {
  font-size: .95rem;
  color: var(--text-md);
  line-height: 1.6;
}
.cp-coming-body a { color: var(--navy); font-weight: 600; text-decoration: none; }
.cp-coming-body a:hover { color: var(--amber); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1100px) {
  .ll-who-grid    { grid-template-columns: 1fr 1fr; }
  .ll-learn-grid  { grid-template-columns: 1fr 1fr; }
  .ll-quarters-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .ll-special-grid { grid-template-columns: 1fr 1fr; }
  .ll-staff-wrap   { grid-template-columns: 1fr; gap: 2rem; }
  .ll-practical-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .ll-details-strip { flex-direction: column; gap: 1rem; }
  .ll-schedule::before { left: 0; }
  .ll-sched-item { grid-template-columns: 1fr; gap: .25rem; }
  .ll-sched-item::before { display: none; }
  .ll-sched-time { text-align: left; font-size: .75rem; padding-top: 0; }
}
@media (max-width: 600px) {
  .ll-who-grid      { grid-template-columns: 1fr; }
  .ll-learn-grid    { grid-template-columns: 1fr; }
  .ll-quarters-grid { grid-template-columns: 1fr; }
  .ll-special-grid  { grid-template-columns: 1fr; }
  .cp-coming-inner  { flex-direction: column; align-items: flex-start; gap: 1rem; }
}


/* ══════════════════════════════════════════════════
   ADULT PROGRAMMING PAGE  (ap-)
   ══════════════════════════════════════════════════ */

.ap-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .6rem;
}

/* ── Intro ─────────────────────────────────────── */
.ap-intro-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.ap-intro-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: .9rem;
}
.ap-intro-body {
  font-size: 1.05rem;
  color: var(--text-md);
  line-height: 1.75;
  max-width: 600px;
}
.ap-intro-body + .ap-intro-body { margin-top: .85rem; }
.ap-intro-programs {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding-top: .25rem;
}
.ap-program-pill {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.ap-program-pill:hover {
  border-color: var(--amber);
  box-shadow: var(--shadow-sm);
}
.ap-program-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ap-program-pill-arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: .85rem;
}

/* ── Program sections ──────────────────────────── */
.ap-program-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.ap-program-section--alt { background: var(--warm-gray); }

.ap-program-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.ap-program-grid--reverse { }

.ap-program-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--warm-gray);
  min-height: 280px;
}
.ap-program-section--alt .ap-program-photo {
  background: #e2ddd7;
}

.ap-program-badge {
  display: inline-block;
  background: var(--amber-pale);
  color: var(--amber);
  border: 1px solid var(--amber);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.ap-program-badge--navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.ap-program-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.ap-program-body {
  font-size: 1.05rem;
  color: var(--text-md);
  line-height: 1.75;
  max-width: 560px;
}
.ap-program-body + .ap-program-body { margin-top: .85rem; }

/* Detail strip (Mom's Circle) */
.ap-detail-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--warm-gray);
  border-radius: var(--radius-lg);
}
.ap-program-section--alt .ap-detail-strip {
  background: #fff;
}
.ap-detail-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.ap-detail-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--amber);
  margin-top: .15rem;
}
.ap-detail-icon svg { width: 100%; height: 100%; }
.ap-detail-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted);
  line-height: 1;
  margin-bottom: .2rem;
}
.ap-detail-value {
  font-size: .96rem;
  font-weight: 600;
  color: var(--navy);
}

/* No-reg note */
.ap-program-cta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.ap-no-reg {
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
}

/* Forming card (English Classes) */
.ap-forming-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  background: var(--amber-pale);
  border: 1px solid var(--amber);
  border-radius: var(--radius-lg);
}
.ap-forming-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--amber);
  margin-top: .1rem;
}
.ap-forming-icon svg { width: 100%; height: 100%; }
.ap-forming-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--amber);
  margin-bottom: .3rem;
}
.ap-forming-body {
  font-size: .95rem;
  color: var(--text-md);
  line-height: 1.6;
}

/* ── Coming Soon section ────────────────────────── */
.ap-coming-section {
  padding: 4.5rem 0;
  background: var(--navy);
}
.ap-coming-section .ap-eyebrow { color: rgba(255,255,255,.5); }
.ap-coming-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.ap-coming-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: .85rem;
  margin-top: .4rem;
}
.ap-coming-body {
  font-size: 1.02rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 1.75rem;
}
.ap-coming-tags {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-end;
}
.ap-coming-tag {
  display: inline-block;
  padding: .4rem 1rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 960px) {
  .ap-intro-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .ap-intro-programs { flex-direction: row; flex-wrap: wrap; }
  .ap-program-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .ap-program-grid--reverse > *:first-child { order: 2; }
  .ap-program-grid--reverse > *:last-child  { order: 1; }
  .ap-coming-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .ap-coming-tags   { flex-direction: row; flex-wrap: wrap; align-items: flex-start; }
}
@media (max-width: 560px) {
  .ap-detail-strip  { flex-direction: column; gap: .85rem; }
  .ap-program-cta   { flex-direction: column; align-items: flex-start; gap: .75rem; }
}


/* ══════════════════════════════════════════════════════════
   eCOURSES — CATALOG PAGE  (.ec-)
   ══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.ec-hero {
  background: var(--navy);
  padding: 5rem 0 4rem;
}
.ec-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ec-hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 1rem;
}
.ec-hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: .85rem;
}
.ec-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 500px;
}

/* ── Catalog section ─────────────────────────────────── */
.ec-catalog {
  background: var(--warm-white);
  padding: 3.5rem 0 5rem;
}
.ec-catalog .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Filter tabs ─────────────────────────────────────── */
.ec-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.ec-filter-btn {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-md);
  transition: border-color .15s, background .15s, color .15s;
}
.ec-filter-btn:hover {
  border-color: var(--navy-md);
  color: var(--navy);
}
.ec-filter-btn--active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ── Grid ────────────────────────────────────────────── */
.ec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* ── Card ────────────────────────────────────────────── */
.ec-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.ec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Thumbnail */
.ec-card-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  position: relative;
  text-decoration: none;
}
.ec-card-thumb--amber {
  background: linear-gradient(135deg, #c8820a 0%, #e09510 100%);
}
.ec-card-thumb--navy {
  background: linear-gradient(135deg, #0d1b35 0%, #1a3459 100%);
}
.ec-thumb-icon {
  width: 56px;
  height: 56px;
  opacity: .9;
}
.ec-thumb-icon svg {
  width: 100%;
  height: 100%;
}
.ec-thumb-tag {
  position: absolute;
  top: .85rem;
  right: .85rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.25);
  padding: .25rem .65rem;
  border-radius: 999px;
}

/* Card body */
.ec-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ec-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .85rem;
  flex-wrap: wrap;
}
.ec-meta-dot { color: var(--border); }

.ec-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .6rem;
}
.ec-card-title a { color: var(--text); }
.ec-card-title a:hover { color: var(--amber); }

.ec-card-desc {
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

/* Sponsor tags */
.ec-sponsors {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.ec-sponsor-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  background: var(--warm-gray);
  padding: .2rem .6rem;
  border-radius: 999px;
}

/* Progress bar */
.ec-progress-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.ec-progress-track {
  flex: 1;
  height: 5px;
  background: var(--warm-gray);
  border-radius: 999px;
  overflow: hidden;
}
.ec-progress-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 999px;
  transition: width .4s ease;
}
.ec-progress-label {
  font-size: .75rem;
  color: var(--muted);
  white-space: nowrap;
}

/* CTA button */
.ec-start-btn {
  display: inline-block;
  padding: .65rem 1.25rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  transition: background .15s;
}
.ec-start-btn:hover { background: var(--navy-md); }

/* Responsive */
@media (max-width: 680px) {
  .ec-grid { grid-template-columns: 1fr; }
  .ec-hero  { padding: 3.5rem 0 3rem; }
}


/* ══════════════════════════════════════════════════════════
   eCOURSE DETAIL PAGE  (.ecd-)
   ══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */
.ecd-hero {
  padding: 3rem 0 3.5rem;
}
.ecd-hero--amber {
  background: linear-gradient(135deg, #b87209 0%, #c8820a 40%, #e09510 100%);
}
.ecd-hero--navy {
  background: linear-gradient(135deg, #0a1528 0%, #0d1b35 50%, #1a3459 100%);
}
.ecd-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Back link */
.ecd-back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  transition: color .15s;
}
.ecd-back-link:hover { color: #fff; }
.ecd-back-link svg { width: 16px; height: 16px; }

/* Hero content layout */
.ecd-hero-content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.ecd-hero-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.ecd-hero-icon svg {
  width: 100%;
  height: 100%;
}
.ecd-hero-text { flex: 1; }

.ecd-hero-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.15);
  padding: .25rem .7rem;
  border-radius: 999px;
  margin-bottom: .85rem;
}
.ecd-hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.ecd-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 1.4rem;
}

/* Hero meta row */
.ecd-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.ecd-hero-meta span {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.ecd-hero-meta svg { width: 15px; height: 15px; }

/* ── Meta bar (sponsors + progress) ─────────────────── */
.ecd-meta-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.ecd-meta-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ecd-sponsors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.ecd-sponsors-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  margin-right: .25rem;
}
.ecd-sponsor-chip {
  font-size: .75rem;
  font-weight: 600;
  color: var(--text-md);
  background: var(--warm-gray);
  padding: .25rem .75rem;
  border-radius: 999px;
}

.ecd-progress-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.ecd-progress-track {
  width: 140px;
  height: 5px;
  background: var(--warm-gray);
  border-radius: 999px;
  overflow: hidden;
}
.ecd-progress-fill {
  height: 100%;
  background: var(--amber);
  border-radius: 999px;
}
.ecd-progress-label {
  font-size: .78rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Lessons section ─────────────────────────────────── */
.ecd-lessons-section {
  background: var(--warm-white);
  padding: 4rem 0;
}
.ecd-lessons-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ecd-lessons-header {
  margin-bottom: 2.25rem;
}
.ecd-lessons-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .4rem;
}
.ecd-lessons-sub {
  font-size: .9rem;
  color: var(--muted);
}

/* Lesson list */
.ecd-lesson-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.ecd-lesson-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  transition: box-shadow .15s;
}
.ecd-lesson-item--first {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}
.ecd-lesson-item:hover { box-shadow: var(--shadow); }

.ecd-lesson-num {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  min-width: 28px;
}
.ecd-lesson-item--first .ecd-lesson-num { color: var(--amber); }

.ecd-lesson-info { flex: 1; min-width: 0; }
.ecd-lesson-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .25rem;
}
.ecd-lesson-duration {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .8rem;
  color: var(--muted);
}
.ecd-lesson-duration svg { width: 13px; height: 13px; }

.ecd-lesson-status { flex-shrink: 0; }

.ecd-lesson-start-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-size: .85rem;
  font-weight: 600;
  transition: background .15s;
}
.ecd-lesson-start-btn:hover { background: var(--navy-md); }
.ecd-lesson-start-btn svg { width: 14px; height: 14px; }

.ecd-lesson-locked {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm-gray);
  color: var(--muted);
}
.ecd-lesson-locked svg { width: 16px; height: 16px; }

/* ── Free callout bar ────────────────────────────────── */
.ecd-free-bar {
  background: var(--amber-pale);
  border-top: 1px solid var(--border);
  padding: 2.25rem 0;
}
.ecd-free-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ecd-free-text {
  font-size: .95rem;
  color: var(--text-md);
  max-width: 540px;
  line-height: 1.6;
}
.ecd-portal-btn {
  display: inline-block;
  padding: .65rem 1.4rem;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}
.ecd-portal-btn:hover { background: var(--amber-lt); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 680px) {
  .ecd-hero-content  { flex-direction: column; gap: 1.5rem; }
  .ecd-hero-icon     { width: 56px; height: 56px; }
  .ecd-meta-bar-inner { flex-direction: column; align-items: flex-start; }
  .ecd-free-bar-inner { flex-direction: column; align-items: flex-start; }
  .ecd-progress-track { width: 100px; }
}


/* ══════════════════════════════════════════════════════════
   VOLUNTEER PAGE  (.vol-)
   ══════════════════════════════════════════════════════════ */

/* ── Shared utilities ────────────────────────────────── */
.vol-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .85rem;
}
.vol-eyebrow--light { color: rgba(255,255,255,.6); }

/* ── Hero ─────────────────────────────────────────────── */
.vol-hero {
  background: var(--navy);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
.vol-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(200,130,10,.12) 0%, transparent 70%);
  pointer-events: none;
}
.vol-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.vol-hero-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 1.1rem;
}
.vol-hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.12;
  max-width: 640px;
  margin-bottom: 1.1rem;
}
.vol-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.btn-vol-primary {
  display: inline-block;
  padding: .85rem 1.85rem;
  background: var(--amber);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: background .15s, transform .15s;
}
.btn-vol-primary:hover {
  background: var(--amber-lt);
  transform: translateY(-1px);
}

/* Stat chips */
.vol-hero-stats {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1;
}
.vol-stat-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .85rem 1.4rem;
  text-align: center;
  backdrop-filter: blur(4px);
}
.vol-stat-num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: .2rem;
}
.vol-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ── Roles section ─────────────────────────────────── */
.vol-roles-section {
  background: var(--warm-white);
  padding: 5rem 0;
}
.vol-roles-section .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.vol-section-header {
  max-width: 600px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.vol-section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.25rem);
  color: var(--navy);
  margin-bottom: .6rem;
}
.vol-section-sub {
  font-size: 1rem;
  color: var(--text-md);
  line-height: 1.65;
}

/* Role cards grid */
.vol-roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
.vol-role-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  transition: box-shadow .2s, transform .2s;
}
.vol-role-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Role icon */
.vol-role-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
  padding: .6rem;
}
.vol-role-icon svg { width: 100%; height: 100%; }

.vol-role-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.vol-role-desc {
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.65;
  flex: 1;
}

/* Tag pills */
.vol-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .25rem;
}
.vol-role-tags li {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  background: var(--warm-gray);
  padding: .22rem .65rem;
  border-radius: 999px;
}

/* ── Why volunteer section ─────────────────────────── */
.vol-why-section {
  background: var(--navy);
  padding: 5.5rem 0;
  overflow: hidden;
}
.vol-why-section .inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.vol-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.vol-why-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.vol-why-body {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Check points */
.vol-why-points {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.vol-why-point {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  font-size: .92rem;
  color: rgba(255,255,255,.75);
  line-height: 1.55;
}
.vol-why-point-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(200,130,10,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-lt);
  padding: 4px;
  margin-top: 1px;
}
.vol-why-point-icon svg { width: 100%; height: 100%; }

/* Quote card + blobs */
.vol-why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.vol-why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  z-index: 1;
  max-width: 380px;
}
.vol-why-card-icon {
  width: 38px;
  height: 38px;
  color: var(--amber);
  margin-bottom: 1rem;
}
.vol-why-card-icon svg { width: 100%; height: 100%; }
.vol-why-card-quote {
  font-size: .97rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.vol-why-card-attr {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* Decorative blobs */
.vol-why-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.vol-why-blob--1 {
  width: 240px;
  height: 240px;
  background: rgba(200,130,10,.12);
  top: -40px;
  right: -40px;
}
.vol-why-blob--2 {
  width: 180px;
  height: 180px;
  background: rgba(26,52,89,.4);
  bottom: -30px;
  left: -20px;
}

/* ── CTA Section ──────────────────────────────────── */
.vol-cta-section {
  background: var(--amber-pale);
  border-top: 1px solid var(--border);
  padding: 5rem 0;
}
.vol-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.vol-cta-text { max-width: 520px; }
.vol-cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--navy);
  margin-bottom: .6rem;
}
.vol-cta-sub {
  font-size: .97rem;
  color: var(--text-md);
  line-height: 1.65;
}
.vol-cta-actions {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: flex-start;
  flex-shrink: 0;
}
.btn-vol-cta {
  display: inline-block;
  padding: .9rem 2rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.btn-vol-cta:hover {
  background: var(--navy-md);
  transform: translateY(-1px);
}
.btn-vol-cta-ghost {
  display: inline-block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
  transition: color .15s;
}
.btn-vol-cta-ghost:hover { color: var(--amber); }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1000px) {
  .vol-hero-stats { display: none; }
  .vol-why-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .vol-why-visual { justify-content: flex-start; }
}
@media (max-width: 680px) {
  .vol-hero        { padding: 4rem 0 3.5rem; }
  .vol-roles-grid  { grid-template-columns: 1fr; }
  .vol-cta-inner   { flex-direction: column; align-items: flex-start; }
  .vol-cta-actions { width: 100%; }
  .btn-vol-cta     { width: 100%; text-align: center; }
}


/* ══════════════════════════════════════════════════════════
   FOOTER — CAMP REGISTRATION BUTTON VARIANT
   ══════════════════════════════════════════════════════════ */
.footer-camp-btn {
  margin-top: .55rem;
  color: #c8922a;
  border-color: rgba(200,146,42,.35);
  background: rgba(200,146,42,.08);
}
.footer-camp-btn:hover {
  color: #e0a830;
  background: rgba(200,146,42,.18);
  border-color: rgba(200,146,42,.55);
}


/* ══════════════════════════════════════════════════════════
   CAMP REGISTRATION PAGE  (.cr-)
   ══════════════════════════════════════════════════════════ */

/* ── Section wrapper ──────────────────────────────────── */
.cr-section {
  background: var(--warm-white);
  padding: 4rem 1.5rem 5rem;
  min-height: 60vh;
}
.cr-container {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Success card ─────────────────────────────────────── */
.cr-success {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  transition: opacity .4s;
}
.cr-success-icon {
  width: 56px;
  height: 56px;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.cr-success-icon svg { width: 100%; height: 100%; }
.cr-success-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .6rem;
}
.cr-success-body {
  font-size: .97rem;
  color: var(--text-md);
  line-height: 1.65;
  max-width: 400px;
}

/* ── Form card ────────────────────────────────────────── */
.cr-card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.25rem;
}

/* ── Form sections ────────────────────────────────────── */
.cr-form-section {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--warm-gray);
}
.cr-form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}
.cr-section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .35rem;
}
.cr-section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

/* ── Fields ──────────────────────────────────────────── */
.cr-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1.1rem;
}
.cr-field:last-child { margin-bottom: 0; }

.cr-field label {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
}
.cr-required { color: var(--amber); }
.cr-optional { font-weight: 400; color: var(--muted); font-size: .78rem; }

.cr-field input,
.cr-field select,
.cr-field textarea {
  width: 100%;
  padding: .6rem .85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
  -webkit-appearance: none;
}
.cr-field input:focus,
.cr-field select:focus,
.cr-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,27,53,.08);
  background: #fff;
}
.cr-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6e78' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
.cr-field textarea { resize: vertical; min-height: 72px; }

/* Two-column row */
.cr-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.cr-field--narrow { max-width: 120px; }

/* Inline label+select row */
.cr-field--inline {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.cr-field--inline label { margin-bottom: 0; }
.cr-field--inline select { width: auto; min-width: 80px; }

/* ── Child blocks ─────────────────────────────────────── */
.cr-child-block {
  margin-top: 1.4rem;
  padding: 1.25rem 1.25rem 1rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cr-child-header {
  margin-bottom: 1rem;
}
.cr-child-num {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy-md);
}

/* ── Submit button ────────────────────────────────────── */
.cr-submit-btn {
  display: block;
  width: 100%;
  padding: .9rem 1rem;
  background: #c8922a;
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin-top: .5rem;
}
.cr-submit-btn:hover:not(:disabled) {
  background: #d9a030;
  transform: translateY(-1px);
}
.cr-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

/* ── Admin strip ──────────────────────────────────────── */
.cr-admin-strip {
  background: var(--warm-gray);
  border-top: 1px solid var(--border);
  padding: .85rem 1.5rem;
  display: flex;
  justify-content: flex-end;
}
.cr-view-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--navy);
  color: #f5f0e8;
  border: 1px solid #c8922a;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .14s;
}
.cr-view-btn:hover { background: var(--navy-md); }

/* ══════════════════════════════════════════════════════════
   MODALS — shared overlay
   ══════════════════════════════════════════════════════════ */
.cr-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,53,.6);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.cr-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.cr-modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

/* Password modal */
.cr-pw-modal {
  max-width: 360px;
}
.cr-pw-error {
  font-size: .82rem;
  color: #c0392b;
  min-height: 1.2em;
  margin: .4rem 0 .75rem;
}
.cr-modal-actions {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}
.cr-modal-enter {
  flex: 1;
  padding: .6rem 1rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .14s;
}
.cr-modal-enter:hover { background: var(--navy-md); }
.cr-modal-cancel {
  padding: .6rem 1rem;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  cursor: pointer;
  transition: color .14s, border-color .14s;
}
.cr-modal-cancel:hover { color: var(--text); border-color: var(--text-md); }

/* Shake animation */
@keyframes cr-shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.cr-shake { animation: cr-shake .45s ease; }

/* ── Submissions modal ────────────────────────────────── */
.cr-subs-modal {
  max-width: 960px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.cr-subs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cr-subs-header .cr-modal-title { margin-bottom: 0; }
.cr-subs-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.cr-csv-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  padding: .45rem 1rem;
  background: #c8922a;
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .14s;
}
.cr-csv-btn:hover { background: #d9a030; }
.cr-subs-close {
  font-size: 1.4rem;
  line-height: 1;
  padding: .3rem .7rem;
  border-radius: var(--radius);
}

/* Table */
.cr-table-wrap {
  overflow: auto;
  flex: 1;
  padding: 1rem 1.75rem 1.75rem;
}
.cr-table-loading,
.cr-table-empty {
  text-align: center;
  color: var(--muted);
  padding: 2.5rem 0;
  font-size: .93rem;
}
.cr-subs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .83rem;
  white-space: nowrap;
}
.cr-subs-table th {
  text-align: left;
  padding: .6rem .85rem;
  background: var(--warm-white);
  color: var(--navy);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
}
.cr-subs-table td {
  padding: .65rem .85rem;
  border-bottom: 1px solid var(--warm-gray);
  color: var(--text-md);
  vertical-align: top;
}
.cr-subs-table tr:hover td { background: var(--warm-white); }
.cr-children-cell {
  white-space: normal;
  min-width: 160px;
}
.cr-children-cell span {
  display: block;
  font-size: .8rem;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 640px) {
  .cr-card    { padding: 1.75rem 1.25rem; }
  .cr-form-row { grid-template-columns: 1fr; }
  .cr-field--narrow { max-width: 100%; }
  .cr-field--inline { flex-direction: column; align-items: flex-start; }
  .cr-field--inline select { width: 100%; }
  .cr-subs-modal { max-height: 95vh; border-radius: var(--radius); }
  .cr-subs-header { flex-wrap: wrap; gap: .75rem; }
}


/* ══════════════════════════════════════════════════════════
   REFERRAL PILLS (admin table)
   ══════════════════════════════════════════════════════════ */
.cr-ref-pill {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: .2rem .65rem;
  border-radius: 999px;
  white-space: nowrap;
}
.cr-ref-pill--green {
  background: #d1fae5;
  color: #065f46;
}
.cr-ref-pill--blue {
  background: #dbeafe;
  color: #1e40af;
}
.cr-ref-direct {
  font-size: .8rem;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════
   PARTNER REFERRAL LINKS PANEL (inside submissions modal)
   ══════════════════════════════════════════════════════════ */
.cr-ref-panel {
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cr-ref-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: 100%;
  padding: .85rem 1.75rem;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: background .12s;
}
.cr-ref-toggle:hover { background: var(--warm-white); }
.cr-ref-toggle svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .2s;
  color: var(--muted);
}
.cr-ref-toggle--open svg { transform: rotate(180deg); }

.cr-ref-content {
  padding: .5rem 1.75rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.cr-ref-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cr-ref-name {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  min-width: 160px;
  flex-shrink: 0;
}
.cr-ref-url {
  font-family: 'DM Mono', 'Fira Code', monospace;
  font-size: .78rem;
  color: var(--muted);
  background: var(--warm-gray);
  padding: .2rem .55rem;
  border-radius: 4px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cr-copy-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .85rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .14s;
}
.cr-copy-btn:hover { background: var(--navy-md); }
.cr-copy-btn--copied {
  background: #065f46;
}

@media (max-width: 600px) {
  .cr-ref-row     { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .cr-ref-url     { width: 100%; }
  .cr-copy-btn    { width: 100%; text-align: center; }
}


/* ══════════════════════════════════════════════════════════
   FOOD PANTRY — PARTNER LOGO PLACEHOLDER
   ══════════════════════════════════════════════════════════ */
.fp-partner-logo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 120px;
  background: rgba(255,255,255,.08);
  border: 1px dashed rgba(255,255,255,.2);
  border-radius: var(--radius);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}

/* Real partner logo inside a food-pantry card (replaces .fp-partner-logo-ph) */
.fp-partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  width: 140px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: .6rem .85rem;
  margin-bottom: 1rem;
}
.fp-partner-logo-img {
  max-height: 44px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}


/* ══════════════════════════════════════════════════════════
   LEARNU WORKSHOP REQUEST PAGE  (.lur-)
   ══════════════════════════════════════════════════════════ */

.lur-page {
  background: var(--navy);
  min-height: calc(100vh - 120px);
  padding: 5.5rem 0 6rem;
}
.lur-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: flex-start;
}

/* Left text */
.lur-eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: 1rem;
}
.lur-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.lur-body {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}
.lur-checklist {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.lur-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.lur-checklist svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--amber);
  margin-top: 2px;
}

/* Form card */
.lur-card-wrap { position: relative; }
.lur-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lur-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lur-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--amber-lt);
}
.lur-card-dots {
  display: flex;
  gap: .35rem;
}
.lur-card-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}

/* Form inside card */
.lur-card form {
  padding: 1.5rem 1.5rem .25rem;
}
.lur-field {
  margin-bottom: 1rem;
}
.lur-field-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: .35rem;
}
.lur-req { color: var(--amber-lt); }

.lur-input {
  width: 100%;
  padding: .6rem .85rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: #fff;
  transition: border-color .15s, background .15s;
  appearance: none;
  -webkit-appearance: none;
}
.lur-input::placeholder { color: rgba(255,255,255,.3); }
.lur-input:focus {
  outline: none;
  border-color: rgba(200,130,10,.6);
  background: rgba(255,255,255,.1);
}
.lur-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}
.lur-select option { background: var(--navy); color: #fff; }

.lur-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
}

.lur-submit {
  display: block;
  width: 100%;
  padding: .8rem 1rem;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
  margin: .5rem 0 0;
}
.lur-submit:hover:not(:disabled) {
  background: var(--amber-lt);
  transform: translateY(-1px);
}
.lur-submit:disabled { opacity: .6; cursor: not-allowed; }

.lur-card-footer {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: .5rem;
}

/* Success state */
.lur-success {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  transition: opacity .4s;
}
.lur-success-icon {
  width: 50px;
  height: 50px;
  color: var(--amber);
  margin-bottom: 1.1rem;
}
.lur-success-icon svg { width: 100%; height: 100%; }
.lur-success-text {
  font-size: .97rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 860px) {
  .lur-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .lur-body   { max-width: 100%; }
}
@media (max-width: 560px) {
  .lur-field-row { grid-template-columns: 1fr; }
  .lur-page      { padding: 4rem 0 5rem; }
}

/* ── Textarea variant ──────────────────────────────────── */
.lur-textarea {
  height: auto;
  resize: vertical;
  min-height: 84px;
}

/* ── Progressive multi-step form ──────────────────────── */
.lur-step {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.1rem;
  margin-top: 1.1rem;
}
.lur-step:first-child { border-top: none; padding-top: 0; margin-top: 0; }

.lur-step-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-height: 26px;
}

/* Numbered circle */
.lur-step-num-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(200,130,10,.15);
  border: 1.5px solid rgba(200,130,10,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}
.lur-step-num {
  font-family: 'DM Sans', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.lur-step-check {
  display: none;
  width: 11px;
  height: 11px;
  stroke: var(--amber);
}

/* Done state: swap number → checkmark */
.lur-step--done .lur-step-num { display: none; }
.lur-step--done .lur-step-check { display: block; }
.lur-step--done .lur-step-num-wrap {
  background: rgba(200,130,10,.28);
  border-color: var(--amber);
}

.lur-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.82);
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: color .2s;
}
.lur-step--done .lur-step-title { color: rgba(255,255,255,.38); font-weight: 500; }

/* Summary text shown when step is done */
.lur-step-summary {
  font-size: .78rem;
  color: rgba(200,130,10,.8);
  font-style: italic;
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
  opacity: 0;
  transition: opacity .25s;
}
.lur-step--done .lur-step-summary { opacity: 1; }

/* Collapsible body — closed by default, open via class */
.lur-step-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s ease, opacity .3s ease;
}
.lur-step--open .lur-step-body {
  max-height: 900px;
  opacity: 1;
  padding-top: 1rem;
}
.lur-step--done .lur-step-body { max-height: 0; opacity: 0; }

/* Continue button (not submit) */
.lur-continue-btn {
  display: block;
  width: 100%;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: .85rem 1.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  margin-top: 1rem;
  transition: background .18s, transform .12s;
}
.lur-continue-btn:hover { background: var(--amber-lt); transform: translateY(-1px); }
.lur-continue-btn:active { transform: translateY(0); }

/* Optional label on step 3 */
.lur-optional {
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,.35);
  font-size: .77rem;
}

/* ── What to Expect cards ──────────────────────────────── */
.lur-expect-hd { text-align: center; margin-bottom: 2.5rem; }

.lur-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lur-expect-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .18s, box-shadow .18s;
}
.lur-expect-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.lur-expect-icon {
  width: 52px;
  height: 52px;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}
.lur-expect-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.lur-expect-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: .45rem;
}
.lur-expect-body { font-size: .88rem; color: var(--text-md); line-height: 1.6; }

@media (max-width: 700px) {
  .lur-expect-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ── Topics We Cover ───────────────────────────────────── */
.lur-topics-inner { text-align: center; }
.lur-topics-sub {
  font-size: .95rem;
  color: var(--text-md);
  max-width: 520px;
  margin: .6rem auto 2rem;
  line-height: 1.65;
}
.lur-topics-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
}
.lur-chip {
  display: inline-block;
  padding: .55rem 1.15rem;
  border-radius: 100px;
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
}


/* ══════════════════════════════════════════════════════════
   VOLUNTEER APPLY PAGE  (.va-)
   ══════════════════════════════════════════════════════════ */

.va-section {
  background: var(--warm-white);
  padding: 4rem 1.5rem 5.5rem;
}
.va-container {
  max-width: 720px;
  margin: 0 auto;
}

/* Success */
.va-success {
  display: none;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  transition: opacity .4s;
}
.va-success-icon {
  width: 56px;
  height: 56px;
  color: var(--amber);
  margin-bottom: 1.25rem;
}
.va-success-icon svg { width: 100%; height: 100%; }
.va-success-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .6rem;
}
.va-success-body {
  font-size: .97rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 420px;
}

/* Form card — dark navy */
.va-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Form section blocks */
.va-section-block {
  padding: 2rem 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.va-section-block--last { border-bottom: none; }

.va-section-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber-lt);
  margin-bottom: .6rem;
}
.va-section-hint {
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 1.1rem;
}

/* Fields */
.va-field { margin-bottom: 1rem; }
.va-field:last-child { margin-bottom: 0; }
.va-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  margin-bottom: .35rem;
}
.va-req { color: var(--amber-lt); }

.va-input {
  width: 100%;
  padding: .6rem .85rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem;
  color: #fff;
  transition: border-color .15s, background .15s;
}
.va-input::placeholder { color: rgba(255,255,255,.28); }
.va-input:focus {
  outline: none;
  border-color: rgba(200,130,10,.55);
  background: rgba(255,255,255,.1);
}
.va-textarea { resize: vertical; min-height: 110px; }

.va-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Checkboxes */
.va-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem .5rem;
}
.va-check-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
}
.va-check-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  line-height: 1.4;
  user-select: none;
}
.va-check-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.va-check-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  transition: background .12s, border-color .12s;
  position: relative;
}
.va-check-item input[type="checkbox"]:checked + .va-check-box {
  background: var(--amber);
  border-color: var(--amber);
}
.va-check-item input[type="checkbox"]:checked + .va-check-box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid var(--navy);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.va-check-item:hover .va-check-box { border-color: rgba(255,255,255,.5); }

/* Submit area */
.va-submit-btn {
  display: block;
  width: calc(100% - 4.5rem);
  margin: 0 2.25rem 0;
  padding: .9rem 1rem;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.va-submit-btn:hover:not(:disabled) {
  background: var(--amber-lt);
  transform: translateY(-1px);
}
.va-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.va-footnote {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  padding: .85rem 2.25rem 2rem;
}

/* Responsive */
@media (max-width: 640px) {
  .va-section-block  { padding: 1.75rem 1.25rem; }
  .va-form-row       { grid-template-columns: 1fr; }
  .va-check-grid     { grid-template-columns: 1fr; }
  .va-submit-btn     { width: calc(100% - 2.5rem); margin: 0 1.25rem; }
  .va-footnote       { padding: .85rem 1.25rem 1.75rem; }
}


/* ══════════════════════════════════════════════════════════
   COMMUNITY PARTNERS — homepage row  (.home-partners-)
   ══════════════════════════════════════════════════════════ */

.home-partners-hd {
  text-align: center;
  margin-bottom: 2.5rem;
}
.home-partners-sub {
  font-size: .9rem;
  color: var(--text-md);
  margin-top: .4rem;
  line-height: 1.6;
}

.home-partners-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.home-partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
}

/* White padded pill that frames any logo color on any background */
.home-partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .9rem 1.5rem;
  height: 72px;
  min-width: 140px;
  max-width: 220px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .18s, transform .15s;
}
.home-partner-item:hover .home-partner-logo-wrap {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.home-partner-img {
  max-height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}

.home-partner-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--amber);
  text-align: center;
}

/* Initials monogram — shown when no logo image is available yet */
.home-partner-logo-ph-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .04em;
  user-select: none;
}


/* ══════════════════════════════════════════════════════════
   FOOTER PARTNER LOGOS STRIP  (.footer-partners-)
   ══════════════════════════════════════════════════════════ */

.footer-partners-strip {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 1.5rem;
}
.footer-partners-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-partners-label {
  font-family: 'DM Sans', sans-serif;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.26);
  flex-shrink: 0;
}
.footer-partners-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
/* Partner logo card — cream background with amber border so logos read on dark footer */
.footer-partner-logo-pill {
  background: #f5f0e8;
  border: 1.5px solid var(--amber);
  border-radius: 10px;
  padding: .85rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 120px;
  transition: border-color .18s, box-shadow .18s;
}
.footer-partner-logo-pill:hover {
  border-color: var(--amber-lt);
  box-shadow: 0 0 0 3px rgba(200,130,10,.18);
}

.footer-partner-logo {
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
