/* ============================================================
   LARRY POSEY FOUNDATION — Design System
   Royal purple + antique gold + cool white. Editorial, dignified.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand purples (from logo) */
  --plum-950: #160E22;
  --plum-900: #1E1430;
  --plum-850: #271A40;
  --plum-800: #33204F;
  --purple-700: #4A2A7C;
  --purple-600: #5B2E91;
  --purple-500: #6E3CAE;
  --purple-400: #8A5FC4;
  --purple-300: #B49BDA;
  --purple-200: #D7C9EE;
  --purple-100: #ECE4F7;
  --purple-50:  #F6F2FC;

  /* Antique gold — accent only, never a full background */
  --gold-700: #9C7A1E;
  --gold-600: #BD922C;
  --gold-500: #CDA23B;
  --gold-400: #DFBC63;
  --gold-200: #F0E0AE;

  /* Neutrals (cool, never beige) */
  --ink: #1C1626;
  --ink-soft: #4A4358;
  --ink-mute: #6B6478;
  --paper: #FFFFFF;
  --paper-2: #F7F4FC;   /* cool lilac-white */
  --line: #E8E2F1;
  --line-strong: #D8D0E6;

  /* Semantic */
  --primary: var(--purple-600);
  --primary-ink: #FFFFFF;
  --accent: var(--gold-600);
  --bg: var(--paper);
  --fg: var(--ink);

  /* Type */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans: 'Public Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Radius / shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(28,22,38,.06), 0 2px 6px rgba(28,22,38,.05);
  --shadow-md: 0 8px 24px rgba(40,26,64,.10), 0 2px 8px rgba(40,26,64,.06);
  --shadow-lg: 0 24px 60px rgba(40,26,64,.18), 0 8px 24px rgba(40,26,64,.10);
  --shadow-gold: 0 10px 30px rgba(189,146,44,.28);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.5rem);
  --nav-h: 106px;

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--purple-400); outline-offset: 2px; border-radius: 4px; }
::selection { background: var(--purple-200); color: var(--plum-900); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
.h-xl { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 600; }
.h-lg { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.h-md { font-size: clamp(1.55rem, 3vw, 2.2rem); }
.h-sm { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.serif-italic { font-style: italic; font-variation-settings: 'opsz' 40; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-sans); font-weight: 600;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--purple-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-600); display: inline-block; }
.eyebrow.on-dark { color: var(--gold-400); }
.eyebrow.center { justify-content: center; }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-soft); line-height: 1.7; }
.muted { color: var(--ink-mute); }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.stack > * + * { margin-top: 1.1rem; }
.grid { display: grid; gap: 1.5rem; }
.section-head { max-width: 720px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head.center { margin-inline: auto; }

.bg-soft { background: var(--paper-2); }
.bg-tint { background: linear-gradient(180deg, var(--purple-50), #fff); }
.bg-dark { background: radial-gradient(120% 120% at 80% -10%, var(--plum-800) 0%, var(--plum-950) 60%); color: #EDE7F6; }
.bg-dark h1, .bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .muted { color: #B9AECB; }
.bg-dark .lead { color: #C9BFDD; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .98rem; line-height: 1;
  padding: .95rem 1.6rem; border-radius: 100px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--purple-600); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--purple-700); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--gold-600); color: var(--plum-950); box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-500); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--purple-400); color: var(--purple-700); transform: translateY(-2px); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,.32); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.textlink { display: inline-flex; align-items: center; gap: .4rem; font-weight: 600; color: var(--purple-700); position: relative; }
.textlink::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 100%; background: var(--gold-600); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.textlink:hover::after { transform: scaleX(1); }
.textlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }
.bg-dark .textlink { color: var(--gold-400); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.nav-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav.scrolled { background: rgba(255,255,255,.86); backdrop-filter: saturate(150%) blur(14px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); height: 88px; }
.nav.scrolled .brand img { height: 74px; }
.brand { display: flex; align-items: center; gap: .9rem; color: #fff; transition: color .35s; }
.brand img { height: 90px; width: auto; }
.brand-text { line-height: 1.12; }
.brand-text strong { display: block; font-family: var(--font-sans); font-weight: 700; font-size: 1.3rem; letter-spacing: .17em; text-transform: uppercase; color: #fff; }
.brand-text small { display: block; font-family: var(--font-sans); font-weight: 500; font-size: .78rem; letter-spacing: .03em; color: rgba(255,255,255,.72); margin-top: 3px; }
.nav.scrolled .brand-text strong { color: var(--ink); }
.nav.scrolled .brand-text small { color: var(--ink-mute); }
@media (max-width: 1120px){ .brand-text strong { font-size: 1.12rem; letter-spacing: .12em; } .brand img { height: 80px; } }
@media (max-width: 480px){ .brand-text strong { font-size: 1rem; } .brand-text small { font-size: .7rem; } .brand img { height: 66px; } }

.nav-links { display: flex; align-items: center; gap: .35rem; list-style: none; }
.nav-links a { font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.92); padding: .5rem .8rem; border-radius: 8px; transition: color .25s, background .25s; }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.14); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--purple-700); background: var(--purple-50); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }

.nav-toggle { display: none; width: 46px; height: 46px; border: none; background: rgba(255,255,255,.14); border-radius: 10px; position: relative; }
.nav.scrolled .nav-toggle { background: var(--purple-50); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 20px; height: 2px; background: #fff; transform: translate(-50%,-50%); transition: .3s var(--ease); }
.nav.scrolled .nav-toggle span, .nav.scrolled .nav-toggle span::before, .nav.scrolled .nav-toggle span::after { background: var(--ink); }
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after { transform: translate(-50%,5px); }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translate(-50%,-1px) rotate(45deg); background: var(--ink); }
body.menu-open .nav-toggle span::after { transform: translate(-50%,-1px) rotate(-45deg); background: var(--ink); }

@media (max-width: 940px) {
  .nav-toggle { display: block; }
  .nav-links, .nav .nav-cta .btn-ghost { display: none; }
  .mobile-menu .nav-links { display: flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: #fff; padding: 1.5rem var(--gutter) 2.5rem; transform: translateY(-12px);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease);
  overflow-y: auto;
}
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu .nav-links { flex-direction: column; align-items: stretch; gap: .2rem; }
.mobile-menu .nav-links a { color: var(--ink); font-size: 1.15rem; padding: .9rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
.mobile-menu .nav-links a.active { color: var(--purple-700); background: transparent; }
.mobile-menu .btn { margin-top: 1.4rem; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(640px, 92vh, 920px); display: flex; align-items: center; overflow: hidden; color: #fff; padding-top: var(--nav-h); }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(110% 120% at 78% 0%, var(--purple-700) 0%, var(--plum-900) 48%, var(--plum-950) 100%); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; opacity: .5; mask-image: linear-gradient(180deg, transparent, #000 30%); }
.hero-glow { display: none; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--gold-400); }
.hero .lead { color: #D4C9E6; max-width: 52ch; margin-top: 1.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta { display: flex; gap: 2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta .num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: #fff; line-height: 1; }
.hero-meta .lbl { font-size: .82rem; color: #B9AECB; margin-top: .35rem; }

.hero-figure { position: relative; }
.hero-portrait { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.12); aspect-ratio: 4/5; background: var(--plum-800); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }
.hero-logo-card { position: absolute; left: -28px; bottom: -26px; background: #fff; border-radius: var(--r-md); padding: .9rem 1.1rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .75rem; max-width: 250px; }
.hero-logo-card img { height: 58px; width: auto; }
.hero-logo-card span { font-size: .8rem; color: var(--ink-soft); font-weight: 500; line-height: 1.35; }

@media (max-width: 860px){
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 1.75rem); padding-bottom: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-grid { grid-template-columns: 1fr; gap: clamp(2.25rem, 9vw, 3rem); }
  .hero .lead { max-width: none; }
  .hero-figure { width: 100%; max-width: 400px; margin-inline: auto; }
  .hero-portrait { aspect-ratio: 4/3; }
  .hero-logo-card { position: static; left: auto; bottom: auto; margin: -1.5rem 1rem 0 auto; max-width: 250px; }
}
@media (max-width: 420px){
  .hero-meta { gap: 1.25rem 1.75rem; }
  .hero-logo-card { margin-right: 0; }
}

/* page hero (interior) */
.page-hero { position: relative; padding: calc(var(--nav-h) + clamp(3rem,6vw,5rem)) 0 clamp(3rem,6vw,4.5rem); color: #fff; overflow: hidden; }
.page-hero .hero-bg { background: radial-gradient(120% 130% at 85% -20%, var(--purple-700), var(--plum-900) 55%, var(--plum-950)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero .lead { color: #CDC2E0; max-width: 58ch; margin-top: 1.1rem; }
.crumbs { font-size: .82rem; color: #B3A7C9; margin-bottom: 1.1rem; letter-spacing: .02em; }
.crumbs a:hover { color: var(--gold-400); }

/* ---------- Cards ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.card-icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--purple-50); color: var(--purple-600); margin-bottom: 1.1rem; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* Program cards w/ media */
.prog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.prog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prog-media { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--purple-100); }
.prog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.prog-card:hover .prog-media img { transform: scale(1.05); }
.prog-tag { position: absolute; top: 1rem; left: 1rem; background: rgba(22,14,34,.74); backdrop-filter: blur(6px); color: #fff; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .75rem; border-radius: 100px; }
.prog-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.prog-body h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.prog-body p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.prog-body .textlink { margin-top: 1.1rem; }

/* Grid helpers */
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.2rem .5rem; }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1; background: linear-gradient(180deg,#fff, #D7C9EE); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { margin-top: .55rem; font-size: .85rem; color: #B9AECB; letter-spacing: .03em; }
@media (max-width: 640px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; aspect-ratio: 5/4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* image frame accent */
.framed { position: relative; }
.framed::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.25); border-radius: inherit; z-index: 2; pointer-events: none; }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3 300px; column-gap: 1.1rem; }
.gallery-item { position: relative; break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--r-md); overflow: hidden; cursor: zoom-in; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.gallery-item img { width: 100%; display: block; transition: transform .55s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap { position: absolute; inset: auto 0 0 0; padding: 1.6rem .95rem .85rem; background: linear-gradient(transparent, rgba(22,14,34,.86)); color: #fff; font-size: .85rem; font-weight: 500; line-height: 1.4; opacity: 0; transform: translateY(10px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.gallery-item:hover .gallery-cap { opacity: 1; transform: none; }
@media (max-width:600px){ .gallery-cap { opacity: 1; transform: none; } }

/* Video cards */
.video-card { display: block; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.video-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.video-poster { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--plum-800); }
.video-poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.video-card:hover .video-poster img { transform: scale(1.06); }
.video-poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,14,34,.05), rgba(22,14,34,.45)); }
.video-play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; z-index: 2; transition: transform .3s var(--ease), background .3s; }
.video-play svg { width: 26px; height: 26px; color: var(--purple-700); margin-left: 3px; }
.video-card:hover .video-play { transform: scale(1.08); background: #fff; }
.video-body { padding: 1.1rem 1.2rem 1.3rem; }
.video-body h3 { font-size: 1.08rem; line-height: 1.25; }
.video-meta { display: flex; align-items: center; gap: 1.1rem; margin-top: .6rem; font-size: .85rem; color: var(--ink-mute); }
.video-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.video-meta svg { width: 16px; height: 16px; color: var(--purple-500); }

/* Inline video embeds (Facebook) */
.video-block { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.video-block:hover { box-shadow: var(--shadow-md); }
.video-embed { position: relative; aspect-ratio: 16/9; background: #0c0712; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #0c0712; }
.video-link { display: inline-flex; align-items: center; gap: .4rem; margin-top: .6rem; font-weight: 600; font-size: .85rem; color: var(--purple-700); }
.video-link svg { width: 15px; height: 15px; }
.video-link:hover { color: var(--gold-700); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(12,7,18,.93); display: grid; place-items: center; padding: clamp(1rem,5vw,4rem); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); }
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox figure { margin: 0; max-width: 100%; text-align: center; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lightbox figcaption { color: #D4C9E6; margin-top: 1rem; font-size: .95rem; }
.lightbox-close { position: absolute; top: 1.1rem; right: 1.1rem; width: 46px; height: 46px; border: none; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .25s; }
.lightbox-close:hover { background: rgba(255,255,255,.24); }

/* Board members */
.board-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.4rem; }
@media (max-width: 980px){ .board-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px){ .board-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px){ .board-grid { grid-template-columns: 1fr; max-width: 300px; margin-inline: auto; } }
.board-card { text-align: center; }
.board-photo { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top center; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.board-avatar { width: 100%; aspect-ratio: 1/1; border-radius: var(--r-lg); display: grid; place-items: center; background: linear-gradient(160deg, var(--purple-100), var(--purple-50)); color: var(--purple-400); box-shadow: var(--shadow-sm); border: 1px dashed var(--purple-200); }
.board-avatar svg { width: 46px; height: 46px; }
.board-card h3 { margin-top: 1.1rem; font-size: 1.2rem; }
.board-role { display: block; color: var(--purple-600); font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .25rem; }

/* Memorial card */
.memorial { display: grid; grid-template-columns: auto 1fr; gap: 1.6rem; align-items: center; }
.memorial img { width: 150px; height: 150px; object-fit: cover; border-radius: 50%; border: 3px solid var(--gold-500); box-shadow: var(--shadow-md); }
@media (max-width:560px){ .memorial { grid-template-columns: 1fr; text-align: center; justify-items: center; } }

/* ---------- Lists ---------- */
.ticklist { list-style: none; display: grid; gap: .85rem; }
.ticklist li { display: flex; gap: .75rem; align-items: flex-start; color: var(--ink-soft); }
.ticklist svg { flex: none; width: 22px; height: 22px; color: var(--gold-600); margin-top: 2px; }
.bg-dark .ticklist li { color: #CDC2E0; }

/* ---------- Pills / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .55rem; }
.chip { font-size: .82rem; font-weight: 500; padding: .45rem .9rem; border-radius: 100px; background: var(--purple-50); color: var(--purple-700); border: 1px solid var(--purple-100); }

/* ---------- Event items ---------- */
.event { display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.7rem; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.event:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.event-date { text-align: center; background: var(--plum-900); color: #fff; border-radius: var(--r-md); padding: .85rem 1rem; min-width: 86px; }
.event-date .m { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; }
.event-date .d { font-family: var(--font-display); font-size: 2rem; font-weight: 600; line-height: 1; }
.event-info h3 { font-size: 1.25rem; }
.event-info .meta { display: flex; flex-wrap: wrap; gap: .4rem 1.1rem; margin-top: .45rem; font-size: .9rem; color: var(--ink-mute); }
.event-info .meta span { display: inline-flex; gap: .35rem; align-items: center; }
.event-info .meta svg { width: 15px; height: 15px; color: var(--purple-500); }
@media (max-width: 720px){ .event { grid-template-columns: auto 1fr; } .event .btn { grid-column: 1 / -1; } }
/* Date tile for events with no confirmed date yet */
.event-date.is-tba { background: var(--purple-700); }
.event-date .d.d-sm { font-size: 1.1rem; padding: .35rem 0; }
.event-info h3 .event-chip { vertical-align: middle; margin-left: .4rem; }
.events-empty { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.events-empty p { margin: 0; color: var(--ink-soft); }

/* ---------- Highlight panel ---------- */
.panel { border-radius: var(--r-xl); padding: clamp(2rem, 5vw, 4rem); position: relative; overflow: hidden; }
.panel-dark { background: radial-gradient(120% 140% at 90% 0%, var(--purple-700), var(--plum-900) 60%, var(--plum-950)); color: #fff; }
.panel-dark h2 { color: #fff; }

/* ---------- Scripture / quote ---------- */
.quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.3; color: var(--ink); }
.bg-dark .quote, .panel-dark .quote { color: #fff; }
.quote-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0; color: var(--gold-500); display: block; height: 2rem; }
.cite { margin-top: 1.4rem; font-family: var(--font-sans); font-style: normal; font-weight: 600; font-size: .95rem; color: var(--purple-600); }
.panel-dark .cite { color: var(--gold-400); }

/* ---------- Info / detail box (zoom call etc.) ---------- */
.info-box { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem 1.7rem; }
.info-row { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px dashed var(--line-strong); }
.info-row:last-child { border-bottom: none; }
.info-row .k { color: var(--ink-mute); font-size: .92rem; }
.info-row .v { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: #fff;
  transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--purple-500); box-shadow: 0 0 0 4px var(--purple-100); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--ink-mute); }
.form-success { display: none; background: var(--purple-50); border: 1px solid var(--purple-200); color: var(--purple-700); border-radius: var(--r-md); padding: 1rem 1.2rem; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.footer { background: var(--plum-950); color: #B9AECB; padding: clamp(3rem,6vw,4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.2rem; }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; font-weight: 600; }
.footer ul { list-style: none; display: grid; gap: .6rem; }
.footer a:hover { color: var(--gold-400); }
.footer .brand { color: #fff; margin-bottom: 1.1rem; gap: 1rem; }
.footer .brand img { height: 104px; width: auto; }
.footer .brand-text strong { color: #fff; font-size: 1.3rem; letter-spacing: .09em; }
.footer .brand-text small { color: #B9AECB; font-size: .85rem; }
.footer-about p { font-size: .92rem; max-width: 36ch; }
.trust-badge { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.3rem; padding: .55rem 1rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 100px; font-size: .82rem; color: #CFC6DE; }
.trust-badge .stars { color: var(--gold-400); letter-spacing: .06em; }
.contact-list { list-style: none; display: grid; gap: .75rem; }
.contact-list li { display: flex; align-items: flex-start; gap: .6rem; line-height: 1.4; }
.contact-list svg { width: 17px; height: 17px; color: var(--gold-500); flex: none; margin-top: 2px; }
.footer-bottom { margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .82rem; }
.footer-bottom .teaser { color: var(--gold-400); }
.social { display: flex; gap: .6rem; }
.social a { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.07); transition: background .25s, transform .25s; }
.social a:hover { background: var(--purple-600); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; color: #fff; }
@media (max-width: 820px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Misc ---------- */
.divider-deco { display: flex; align-items: center; justify-content: center; gap: .8rem; color: var(--gold-600); }
.divider-deco::before, .divider-deco::after { content: ""; height: 1px; width: 60px; background: var(--line-strong); }
.tag-row { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; }
.badge-open { display: inline-flex; align-items: center; gap: .4rem; font-size: .8rem; font-weight: 600; color: #1B7A3D; background: #E7F6EC; padding: .35rem .7rem; border-radius: 100px; }
.badge-open::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #2BA84A; box-shadow: 0 0 0 3px rgba(43,168,74,.2); }
.kicker-num { font-family: var(--font-display); font-size: 1rem; color: var(--gold-600); font-weight: 600; }
.skip-link { position: absolute; left: -999px; top: 0; background: #fff; color: var(--purple-700); padding: .7rem 1.2rem; z-index: 200; border-radius: 0 0 8px 0; font-weight: 600; }
.skip-link:focus { left: 0; }
