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

:root {
  --purple: #7B5EA7;
  --purple-light: #C9B8E8;
  --purple-pale: #F0EBF9;
  --purple-dark: #3D2A6B;
  --gold: #E8A830;
  --gold-light: #F5D080;
  --gold-pale: #FDF6E3;
  --cream: #FDFAF5;
  --text: #1A1A2E;
  --text-mid: #5A4F6E;
  --text-light: #9B8FB0;
  --white: #FFFFFF;

  /* revamp: deepest surface tone — a step darker/moodier than --purple-dark,
     used for full-bleed "premium tech" sections so the site has real
     light -> pale -> mid -> deep tonal rhythm instead of two steps */
  --ink: #120E1C;
  --ink-soft: rgba(255,255,255,0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* casual copy-protection on real photos — deters right-click-save and
   drag-out-of-browser. This can't stop screenshots or screen recording
   (no website can; that happens at the OS level, outside any page's
   control) or a determined person using devtools — it just removes the
   one-click ways to grab a full-res copy. */
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

/* a soft, fixed backdrop of color behind every page — so scrolling past
   the header on inner pages doesn't drop into flat off-white, without
   having to redesign each section individually */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 40% at 8% 8%, rgba(123,94,167,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 45% at 95% 18%, rgba(232,168,48,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 45% at 12% 92%, rgba(232,168,48,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 92% 88%, rgba(123,94,167,0.06) 0%, transparent 70%);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(253, 250, 245, 0.82);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(123, 94, 167, 0.12);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* ─── LOGO GLOW HALO — a blurred radial gradient sitting behind the logo
   mark (purple → gold), replacing the old box-shadow glow rings. Sized in
   %, so the same rule scales from the small nav mark to the large hero
   mark; only the blur radius is bumped for the bigger size. ─── */
.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-mark::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 165%; height: 165%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.30) 0%, rgba(232,168,48,0.14) 42%, transparent 72%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

.logo-mark--lg::before {
  filter: blur(14px);
}

.logo-mark img {
  position: relative;
  z-index: 1;
}

.nav-logo img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--purple-pale);
  overflow: hidden;
}

.nav-logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--purple-dark);
  letter-spacing: 0.02em;
}

.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--purple));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); }

.nav-links a:hover { color: var(--purple); }
.nav-links a.active { color: var(--purple); font-weight: 500; }

.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: var(--purple-dark) !important;
  transform: translateY(-1px);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 48px 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(123, 94, 167, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(232, 168, 48, 0.11) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 20%, rgba(201, 184, 232, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 70% 10%, rgba(232, 168, 48, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: bgShift 12s ease-in-out infinite alternate;
}

@keyframes bgShift {
  0%   { opacity: 1; filter: hue-rotate(0deg); }
  100% { opacity: 0.85; filter: hue-rotate(10deg); }
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,94,167,0.07) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation: float3d-1 10s ease-in-out infinite;
  filter: blur(40px);
}

.shape-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(232,168,48,0.09) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation: float3d-2 13s ease-in-out infinite;
  filter: blur(50px);
}

.shape-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,184,232,0.2) 0%, transparent 70%);
  top: 20%; right: 10%;
  animation: float3d-3 8s ease-in-out infinite;
  filter: blur(20px);
}

@keyframes float3d-1 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  33%      { transform: translate(20px,-30px) rotate(120deg); }
  66%      { transform: translate(-15px,20px) rotate(240deg); }
}
@keyframes float3d-2 {
  0%,100% { transform: translate(0,0) rotate(0deg); }
  50%      { transform: translate(-25px,20px) rotate(180deg); }
}
@keyframes float3d-3 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes float3d-5 {
  0%,100% { transform: scale(1) translateY(0); }
  50%      { transform: scale(1.1) translateY(-8px); }
}

/* ─── HERO SPARKLES — small 4-point glitter stars rising and twinkling
   across the full width of the hero, tying into "elevate your voice /
   rewrite your story" without needing a literal book/magic prop. Pure
   CSS, each one a hand-placed <span class="sparkle"> in the HTML with
   inline left/size/timing. ─── */
.hero-sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* a real sparkle/glitter shape (4-point star via clip-path), not a dot
   with a tail — crisp edges, no blur/fuzz. Rises from the bottom of the
   hero straight up, gently swaying and twinkling (slight rotate+scale)
   as it fades in and out. */
.sparkle {
  position: absolute;
  bottom: -25px;
  width: 9px; height: 9px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  animation: sparkleRise linear infinite;
  opacity: 0;
  --sway: 6px;
}

.sparkle--purple { background: var(--purple); }

@keyframes sparkleRise {
  0%   { transform: translate(0, 0) scale(0.5) rotate(0deg); opacity: 0; }
  15%  { opacity: 0.9; }
  50%  { transform: translate(calc(var(--sway) * 0.5), -190px) scale(1.15) rotate(25deg); }
  85%  { opacity: 0.55; }
  100% { transform: translate(var(--sway), -380px) scale(0.85) rotate(45deg); opacity: 0; }
}

/* burst state — triggered while the cursor hovers "voice." or "story.".
   Same motion, just brighter with a light catching glint, and (via JS)
   more of them, rising faster. */
.hero-sparkles.burst .sparkle { filter: brightness(1.55) drop-shadow(0 0 3px rgba(232,168,48,0.5)); }

@media (prefers-reduced-motion: reduce) {
  .sparkle { display: none; }
}

/* soft ambient dark that spreads behind the hero (under the sparkles,
   above the background glow) while "voice."/"story." is hovered — makes
   the brightened sparkles read as catching light against a dimmer room,
   subtle rather than a full spotlight effect. */
.hero-dim-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 13, 32, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.hero-dim-overlay.active { opacity: 0.24; }

@media (prefers-reduced-motion: reduce) {
  .hero-dim-overlay { display: none; }
}

/* a warm glow anchored to the bottom of the hero — not coming from any
   individual sparkle, just ambient light that seems to spill up from
   below, like the glow around an open book, gently breathing */
.hero-bottom-glow {
  position: absolute;
  left: 0; right: 0; bottom: -8%;
  height: 380px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 100% at 50% 100%, rgba(232,168,48,0.18) 0%, rgba(123,94,167,0.1) 45%, transparent 75%);
  animation: bottomGlowFloat 6s ease-in-out infinite;
}

@keyframes bottomGlowFloat {
  0%, 100% { opacity: 0.7; transform: translateY(0); }
  50%      { opacity: 1; transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bottom-glow { animation: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 94, 167, 0.09);
  border: 1px solid rgba(123, 94, 167, 0.22);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.7); }
}

.hero-logo-wrap {
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-logo {
  width: 88px; height: 88px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(123,94,167,0.22);
}

.hero-org-name {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--purple);
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.15s both;
  opacity: 0.95;
}

.hero-org-name span { color: var(--gold); font-weight: 600; }

.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 7vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--purple-dark);
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-headline em { font-style: italic; color: var(--purple); }

.hero-headline-gold {
  cursor: default;
  /* no permanent gold — stays the same purple family as the rest of the
     headline (inherits from .hero-headline em below) until revealed */
}

.hero-headline { transition: filter 0.5s; }

/* whole phrase gets a soft ambient glow on hover */
.hero-headline:hover { filter: drop-shadow(0 0 24px rgba(123,94,167,0.2)); }

/* "voice." and "story." — two layers, both clipped to the letters:
   underneath, a permanent gold metallic gradient (so the word is always
   a real gold texture, never flat yellow); on top, a bright highlight
   band that sweeps across periodically, like light catching a glossy
   surface (Zora-style). Only while the cursor is on the word. */
.glow-word {
  display: inline-block;
  cursor: default;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}

.glow-word:hover {
  background:
    linear-gradient(100deg, transparent 42%, rgba(255,255,255,0.9) 50%, transparent 58%),
    linear-gradient(100deg, #8a5f14 0%, var(--gold) 25%, #f7d78a 50%, var(--gold) 75%, #8a5f14 100%);
  background-size: 220% 100%, 100% 100%;
  background-position: 220% 0, 0 0;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(232,168,48,0.5));
  animation: goldShine 2.4s ease-in-out infinite;
}

@keyframes goldShine {
  0%   { background-position: 220% 0, 0 0; }
  100% { background-position: -60% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .glow-word:hover { animation: none; background: none; color: var(--gold); }
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  margin: 22px auto 42px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.4s both;
}

.btn-primary {
  background: var(--purple);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(123,94,167,0.25);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(123,94,167,0.35);
}

.btn-secondary {
  color: var(--purple);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s, color 0.2s;
}

.btn-secondary:hover { gap: 10px; color: var(--purple-dark); }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-scroll-text {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-left: 0.12em;
  text-align: center;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(0.5); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION BASE ─── */
section { padding: 96px 48px; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--purple-dark);
  letter-spacing: -0.01em;
}

.section-title em { font-style: italic; color: var(--purple); }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--purple-dark);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(232,168,48,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 64px;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.stat-item:hover .stat-num {
  text-shadow: 0 12px 28px rgba(232,168,48,0.5);
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.stat-item:last-child::after { display: none; }

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-block;
  transition: transform 0.3s ease-out, text-shadow 0.3s;
}

.stat-item:hover .stat-num { transform: translateZ(36px); }

.stat-label {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* ─── THE PROBLEM (home) — why the org exists, sourced stats, sits between
   hero and our-impact stats-strip. Light section (purple-pale, matches
   .pillars) — deliberately NOT dark, so it doesn't stack two dark blocks
   with the stats-strip right below it and doesn't reintroduce the "ink"
   near-black tone the org didn't want anywhere on the site. ─── */
.problem {
  background: var(--purple-pale);
  padding: 104px 48px;
  position: relative;
  overflow: hidden;
}

.problem::before {
  content: '';
  position: absolute;
  top: -140px; left: -100px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.problem::after {
  content: '';
  position: absolute;
  bottom: -170px; right: -130px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,48,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.problem-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.problem-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}

.problem-header-note {
  background: var(--white);
  border: 1px solid rgba(232,168,48,0.25);
  border-radius: 20px;
  padding: 30px 32px;
  box-shadow: 0 12px 32px rgba(123,94,167,0.1);
}

.problem-sub {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.problem-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-pale);
  color: var(--gold);
  margin-bottom: 22px;
}

.problem-icon svg { width: 20px; height: 20px; }

.problem-card:nth-child(2) .problem-icon { background: var(--purple-pale); color: var(--purple); }

.problem-card {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 20px;
  padding: 38px 32px;
  display: block;
  text-decoration: none;
  transform-style: preserve-3d;
  perspective: 800px;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s, border-color 0.4s, background 0.4s;
}

.problem-card:hover {
  transform: perspective(800px) translateY(-10px) scale(1.025) rotateX(3deg);
  box-shadow: 0 8px 20px rgba(123,94,167,0.14), 0 30px 60px rgba(123,94,167,0.24), 0 0 0 1px rgba(232,168,48,0.18);
  border-color: rgba(232,168,48,0.4);
  background: rgba(255,255,255,0.92);
}

.problem-card-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  transition: gap 0.2s;
}

.problem-card:hover .problem-card-source { gap: 10px; }

.problem-num {
  font-family: 'Fraunces', serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), text-shadow 0.4s;
}

.problem-card:hover .problem-num {
  transform: translateY(-3px) scale(1.08);
  text-shadow: 0 10px 26px rgba(232,168,48,0.4);
}

.problem-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── INLINE PHOTO — a real photo dropped into an otherwise text-only
   section (mission/vision intros), instead of leaving them bare. ─── */
.inline-photo {
  margin-top: 28px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  max-width: 380px;
  box-shadow: 0 16px 40px rgba(61,42,107,0.14);
}

.inline-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── MISSION TEASER (home) ─── */
.mission-teaser {
  padding: 96px 48px;
}

.mission-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mission-teaser-body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.mission-teaser-body p strong {
  color: var(--purple-dark);
  font-weight: 500;
}

/* ─── PILLARS (home lightweight) ─── */
.pillars {
  background: var(--purple-pale);
  padding: 96px 48px;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars-header {
  margin-bottom: 56px;
}

.pillars-grid {
  display: flex;
  flex-direction: column;
}

.pillars-bento {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

.bento-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(123,94,167,0.12);
  box-shadow: 0 4px 24px rgba(123,94,167,0.07), 0 20px 56px rgba(123,94,167,0.08);
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 50px rgba(123,94,167,0.16), 0 24px 64px rgba(123,94,167,0.13);
}

.bento-card--featured { grid-row: span 2; }

.bento-card-media { position: relative; overflow: hidden; }
.bento-card--featured .bento-card-media { aspect-ratio: 4 / 5; flex: 1; }
.bento-card:not(.bento-card--featured) .bento-card-media { aspect-ratio: 16 / 9; }

.bento-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bento-card:hover .bento-card-media img { transform: scale(1.05); }

.bento-card-body { padding: 22px 24px 26px; }
.bento-card--featured .bento-card-body { padding: 28px 30px 32px; }

.bento-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.bento-card-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--purple-dark);
  line-height: 1.25;
  margin-bottom: 8px;
}

.bento-card--featured .bento-card-title { font-size: 28px; }
.bento-card:not(.bento-card--featured) .bento-card-title { font-size: 18px; }

.bento-card-excerpt { color: var(--text-mid); line-height: 1.7; }
.bento-card--featured .bento-card-excerpt { font-size: 15px; }
.bento-card:not(.bento-card--featured) .bento-card-excerpt { font-size: 13px; }

/* ─── STORY TIMELINE (about) — real milestones, gives About an actual
   narrative arc instead of another card grid repeating Home/Programs. ─── */
.timeline-section {
  background: var(--purple-pale);
  padding: 96px 48px;
}

.timeline-header { max-width: 640px; margin: 0 auto 64px; text-align: center; }
.timeline-header .section-label { justify-content: center; }
.timeline-header .section-label::before { display: none; }

.timeline { max-width: 640px; margin: 0 auto; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 21px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, var(--purple-light), var(--gold-light));
}

.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 48px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: 12px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--purple);
  transition: transform 0.3s, background 0.3s;
}

.timeline-item.reveal.visible .timeline-dot {
  background: var(--purple);
}

.timeline-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ─── MINI GALLERY — a few curated real photos, used sparingly on inner
   pages (not a big scrolling strip, just 3 real shots). ─── */
.mini-gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-gallery .gallery-photo {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 32px rgba(61,42,107,0.10);
}

/* ─── INNER PAGE HEADER ─── */
.page-header {
  padding: 160px 48px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  animation: headerAccentGrow 1.2s cubic-bezier(0.23,1,0.32,1) both;
}

@keyframes headerAccentGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 120px; opacity: 1; }
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(123, 94, 167, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 60%, rgba(232, 168, 48, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-header .section-label {
  justify-content: center;
}

.page-header .section-label::before { display: none; }

.page-header .section-label::before { display: none; }

.page-header-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--purple-dark);
  margin-bottom: 20px;
}

.page-header-title em { font-style: italic; color: var(--purple); }

.page-header-sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── MISSION SECTION (about) ─── */
#mission {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}

.mission-body p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.mission-body p strong {
  color: var(--purple-dark);
  font-weight: 500;
}

.mission-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}

.mv-card {
  border-radius: 28px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mv-card::before {
  content: '\201C';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-size: 200px;
  line-height: 1;
  font-weight: 600;
  pointer-events: none;
}

.mv-card-purple::before { color: rgba(123,94,167,0.1); }
.mv-card-gold::before { color: rgba(232,168,48,0.14); }

.mv-card:hover {
  transform: perspective(800px) translateY(-6px) rotateX(2deg);
}

.mv-card-purple {
  background: var(--purple-pale);
  border: 1px solid rgba(123,94,167,0.22);
  box-shadow:
    0 0 0 1px rgba(123,94,167,0.08),
    0 4px 24px rgba(123,94,167,0.12),
    0 16px 48px rgba(123,94,167,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.mv-card-purple:hover {
  box-shadow:
    0 0 0 1px rgba(123,94,167,0.12),
    0 0 40px rgba(123,94,167,0.18),
    0 8px 32px rgba(123,94,167,0.18),
    0 24px 60px rgba(123,94,167,0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.mv-card-gold {
  background: var(--gold-pale);
  border: 1px solid rgba(232,168,48,0.28);
  box-shadow:
    0 0 0 1px rgba(232,168,48,0.08),
    0 4px 24px rgba(232,168,48,0.12),
    0 16px 48px rgba(232,168,48,0.1),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.mv-card-gold:hover {
  box-shadow:
    0 0 0 1px rgba(232,168,48,0.14),
    0 0 40px rgba(232,168,48,0.18),
    0 8px 32px rgba(232,168,48,0.18),
    0 24px 60px rgba(232,168,48,0.14),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(123,94,167,0.04);
  pointer-events: none;
}

.mv-card-type {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.mv-card-purple .mv-card-type { color: var(--purple); }
.mv-card-gold .mv-card-type   { color: var(--gold); }

.mv-card-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 400;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

.mv-card-purple .mv-card-text { color: var(--purple-dark); }
.mv-card-gold .mv-card-text   { color: var(--text-mid); }

/* ─── APPROACH ─── */
.approach {
  background: var(--purple-pale);
  clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%);
  padding: 128px 48px;
  margin: -32px 0;
}

.approach-inner { max-width: 1100px; margin: 0 auto; }

.approach-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── EVENTS / PHOTO GALLERY ─── */
.events-inner { max-width: 1100px; margin: 0 auto; }

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.event-feature {
  background: var(--purple-dark);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.06),
    0 8px 24px rgba(61,42,107,0.18),
    0 30px 60px rgba(61,42,107,0.12);
}

a.event-feature:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 0 60px rgba(123,94,167,0.2), 0 30px 70px rgba(123,94,167,0.18) !important;
}

.event-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.2s;
}

a.event-feature:hover .event-link-arrow { gap: 9px; }

.event-feature .event-title { transition: color 0.3s; }

/* eyebrow chip used on Pillars/Get Involved — a category label, no
   numbering (index counts read as ranking, which isn't the point here) */
.event-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.event-eyebrow::before {
  content: '';
  width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* alternating warm/cool tint so three stacked cards don't read as one
   uniform block */
.event-feature--tint-gold { background: linear-gradient(160deg, var(--white) 60%, var(--gold-pale) 130%); }
.event-feature--tint-purple { background: linear-gradient(160deg, var(--white) 60%, var(--purple-pale) 130%); }

.event-feature::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(232,168,48,0.05);
  pointer-events: none;
}

/* ─── EVENT FEATURE — LIGHT variant, a soft-glow card instead of a solid
   dark block (used on Programs/Recognition so the site doesn't read as
   "purple block after purple block"). ─── */
.event-feature--light {
  background: var(--white);
  border: 1px solid rgba(123,94,167,0.12);
  box-shadow: 0 4px 24px rgba(123,94,167,0.07), 0 20px 56px rgba(123,94,167,0.08);
  transition: box-shadow 0.4s;
}

.event-feature--light:hover {
  box-shadow: 0 0 50px rgba(123,94,167,0.16), 0 24px 64px rgba(123,94,167,0.13);
}

.event-feature--light::before { background: rgba(123,94,167,0.05); }

.event-feature--light .event-tag {
  background: var(--purple-pale);
  border: 1px solid rgba(123,94,167,0.22);
  color: var(--purple);
}

.event-feature--light .event-title { color: var(--purple-dark); }
.event-feature--light .event-desc { color: var(--text-mid); }
.event-feature--light .event-meta-item { color: var(--text-light); }

.event-feature--light .event-photo-landscape,
.event-feature--light .event-photo-portrait {
  background: var(--purple-pale);
  border: 1px solid rgba(123,94,167,0.1);
}

/* alternate photo/text sides for rhythm across stacked feature cards */
.event-feature--reverse > div:first-child { order: 2; }
.event-feature--reverse > .event-photo-wrap { order: 1; }

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,168,48,0.15);
  border: 1px solid rgba(232,168,48,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.event-title {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.event-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 28px;
}

.event-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.48);
}

.event-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.event-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-photo-landscape {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 16 / 9;
}

.event-photo-portrait {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 9 / 16;
  max-height: 380px;
}

.event-photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 260px;
}

.event-photo-pair .event-photo-portrait {
  aspect-ratio: unset;
  max-height: none;
  height: 100%;
}

.event-photo-landscape img,
.event-photo-portrait img,
.event-photo-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}

.event-photo-landscape:hover img,
.event-photo-portrait:hover img,
.event-photo-square:hover img { transform: scale(1.04); }

/* ─── GET INVOLVED ─── */
.involved-inner { max-width: 1100px; margin: 0 auto; }

.involved-intro {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.involved-intro p {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--purple-dark);
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

/* ─── ZORA CTA ─── */
.zora-cta {
  background: var(--purple-dark);
  padding: 88px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zora-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(232,168,48,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.zora-shape-1 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,48,0.06) 0%, transparent 70%);
  top: -100px; left: -60px;
  animation: float3d-3 10s ease-in-out infinite;
  filter: blur(30px);
}

.zora-shape-2 {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,184,232,0.08) 0%, transparent 70%);
  bottom: -60px; right: -40px;
  animation: float3d-5 8s ease-in-out infinite;
  filter: blur(20px);
}

.zora-cta-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.zora-cta-label::before, .zora-cta-label::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.zora-logo-img {
  width: 200px;
  max-width: 85vw;
  height: auto;
  object-fit: contain;
  margin: 0 auto 32px;
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(1.15) drop-shadow(0 6px 24px rgba(232,168,48,0.3));
}

.zora-cta-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.zora-cta-title em { font-style: italic; color: var(--gold-light); }

.zora-cta-sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--purple-dark);
  padding: 14px 36px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(232,168,48,0.3);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232,168,48,0.4);
}

/* ─── FAQ ─── */
.faq-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.faq-aside { position: sticky; top: 110px; }

.faq-aside-note {
  margin-top: 20px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-aside-note a { color: var(--purple); font-weight: 500; }

.faq-list { max-width: none; margin: 0; }

.faq-item {
  border-bottom: 1px solid rgba(123,94,167,0.15);
  border-radius: 16px;
  transition: background 0.3s, border-color 0.3s;
}

.faq-item:hover { background: rgba(123,94,167,0.05); }

.faq-item.open {
  background: var(--purple-pale);
  border-bottom-color: transparent;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 18px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--purple-dark);
  transition: color 0.3s;
}

.faq-item.open .faq-question { color: var(--purple); }

.faq-question-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), background 0.3s, color 0.3s;
}

.faq-item.open .faq-question-icon {
  transform: rotate(135deg);
  background: var(--gold);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-answer p {
  padding: 0 56px 24px 18px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.8;
}

.faq-answer a { color: var(--purple); font-weight: 500; }

.faq-item.open .faq-answer { max-height: 400px; opacity: 1; }

/* ─── CONTACT — split layout: photo + note on the left, form on the right ─── */
.contact-split {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}

.contact-split .contact-form { margin-top: 0; }

/* ─── CONTACT ─── */
.contact-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-label { justify-content: center; }
.contact-inner .section-label::before { display: none; }

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px auto 0;
  font-size: 14px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.contact-email-link:hover { color: var(--purple-dark); }

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(123,94,167,0.2);
  background: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,94,167,0.1);
}

.contact-input::placeholder { color: var(--text-light); }
textarea.contact-input { height: 120px; resize: none; }

.contact-submit {
  background: var(--purple);
  color: var(--white);
  border: none;
  padding: 14px 44px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  align-self: center;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(123,94,167,0.25);
}

.contact-submit:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123,94,167,0.35);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1), filter 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; }
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════
   REVAMP TOOLKIT — shared across every page
   ══════════════════════════════════════════════════════════ */

/* ─── MOBILE NAV ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--purple-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── KINETIC WORD REVEAL (hero headline) ─── */
.kinetic .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: wordUp 0.7s cubic-bezier(0.23,1,0.32,1) both;
}

@keyframes wordUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── GALLERY PHOTO (plain, unfiltered) ─── */
.gallery-photo {
  position: relative;
  overflow: hidden;
  display: block;
}

.gallery-photo img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── STORIES TEASER (home) ─── */
.stories-teaser { background: var(--cream); }
.stories-inner { max-width: 1100px; margin: 0 auto; }

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.story-card {
  text-decoration: none;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(123,94,167,0.12);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s;
  will-change: transform;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(123,94,167,0.16);
}

.story-card-media {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}

.story-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.story-card:hover .story-card-media img { transform: scale(1.06); }

.story-card-body { padding: 26px 26px 30px; }

.story-card-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.story-card-title {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--purple-dark);
  line-height: 1.35;
  margin-bottom: 10px;
}

.story-card-excerpt {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-card-arrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--purple);
}

/* ─── STORY CARD — LARGE variant, reused for Pillars/Approach/Get-Involved/
   Programs: same photo-top-then-text shape, just bigger text so nothing is
   small body copy crammed onto a photo. ─── */
.story-card--lg .story-card-media { aspect-ratio: 3 / 2; }
.story-card--lg .story-card-body { padding: 30px 28px 34px; }
.story-card--lg .story-card-title { font-size: 21px; margin-bottom: 12px; }
.story-card--lg .story-card-excerpt { font-size: 15px; line-height: 1.8; }

/* ─── STORY CARD — IMMERSIVE variant: the photo fills the whole card and
   the text sits over it on a dark gradient scrim, instead of a small
   cropped photo strip sitting above a plain white text block. Used on
   Pillars and Get Involved so the real photos carry more weight. ─── */
.story-card--immersive {
  position: relative;
  aspect-ratio: 3 / 4;
}

.story-card--immersive .story-card-media {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}

.story-card--immersive .story-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,14,36,0) 32%, rgba(20,14,36,0.6) 68%, rgba(20,14,36,0.92) 100%);
  transition: background 0.4s;
}

.story-card--immersive:hover .story-card-media::after {
  background: linear-gradient(180deg, rgba(20,14,36,0) 20%, rgba(20,14,36,0.68) 60%, rgba(20,14,36,0.94) 100%);
}

.story-card--immersive .story-card-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 30px 28px 32px;
}

.story-card--immersive .story-card-title { color: var(--white); }
.story-card--immersive .story-card-excerpt { color: rgba(255,255,255,0.86); }
.story-card--immersive .story-card-arrow { color: var(--gold-light); }

/* ─── STORY CARD — LOCKED (coming soon) state ─── */
.story-card.is-locked { cursor: default; }
.story-card.is-locked:hover { transform: none; box-shadow: none; }

.story-card.is-locked .story-card-media img {
  filter: blur(3px) saturate(0.7) brightness(0.88);
  transform: scale(1.06);
}

.story-card.is-locked:hover .story-card-media img { transform: scale(1.06); }

.story-card-lock-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(18,14,28,0.68);
  color: var(--gold-light);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.story-card.is-locked .story-card-arrow { opacity: 0.55; }

.stories-coming-soon-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(123, 94, 167, 0.09);
  border: 1px solid rgba(123, 94, 167, 0.22);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 500;
  color: var(--purple);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stories-coming-soon-banner .hero-badge-dot { flex-shrink: 0; }

/* ─── GLOBAL REACH — the real Google Maps embed, not a recreation of it.
   Small preview on the page; clicking (or starting to drag) opens the
   full, fully-interactive map centered on a shaded backdrop. ─── */
.globe-section { padding: 40px 48px 112px; }

.globe-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.globe-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 460px;
}

.globe-panel {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.globe-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

/* Google's My Maps embed always ships its own header bar (map title +
   "View larger map" link, which opens a new google.com/maps tab) baked
   into the iframe itself — there's no embed parameter to turn it off.
   We crop it by overscaling the iframe and pulling it up with a negative
   margin, then letting the wrapper's overflow:hidden clip that header
   off above the visible frame. Since it's physically outside the
   clipped, hit-tested box, it's never reachable — but everything below
   it (drag, zoom, pin hover tooltips) stays fully interactive. */
.globe-embed-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(123,94,167,0.16);
  box-shadow: 0 20px 60px rgba(123,94,167,0.14);
}

.globe-embed-inner iframe {
  display: block;
  width: 100%;
  height: calc(100% + 74px);
  margin-top: -74px;
  border: 0;
}

/* ─── AS SEEN ON (home) — press + award logos, grayscale until hover so it
   reads as a quiet credibility strip rather than a loud claim. Links out
   to the Recognition page for the actual story behind each one. ─── */
.as-seen-on {
  background: var(--cream);
  padding: 72px 48px 96px;
  text-align: center;
}

.as-seen-on-inner { max-width: 1040px; margin: 0 auto; }

.as-seen-on .section-label { justify-content: center; }
.as-seen-on .section-label::before { display: none; }

.as-seen-on-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  row-gap: 32px;
  margin-top: 40px;
}

.as-seen-on-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.as-seen-on-break {
  flex-basis: 100%;
  height: 0;
}

.as-seen-on-logos img {
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}

.as-seen-on-logos a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* small logo badge embedded naturally into an .event-feature card (used on
   the Recognition page instead of repeating the As Seen On strip there) */
.event-logo-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.event-logo-badge {
  background: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  height: 30px;
}

.event-logo-badge img {
  max-height: 16px;
  max-width: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* logo badge(s) sitting on top of a story-card's photo, used on Recognition */
.story-card-media .event-logo-badges {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  margin-top: 0;
}

/* ─── PHOTO BAND — a real, full-width photo moment placed directly above
   the footer (Home only), instead of hidden as a faded footer background. ─── */
.photo-band {
  position: relative;
  height: 460px;
  overflow: hidden;
  padding: 0;
}

.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(97,74,145,0.68) 0%, rgba(78,58,123,0.74) 50%, rgba(61,42,107,0.86) 100%);
}

/* ─── FOOTER (sitewide, one component for every page) ─── */
footer.site-footer {
  background: var(--purple-dark);
  padding: 80px 48px 32px;
  display: block;
  position: relative;
  overflow: hidden;
}

footer.site-footer .footer-grid,
footer.site-footer .footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-email {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.footer-email:hover { color: var(--white); }

.footer-blurb {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-top: 18px;
  max-width: 280px;
}

.footer-heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--purple-dark);
  transform: translateY(-2px);
}

.footer-socials svg { width: 16px; height: 16px; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-bottom-logo img { width: 24px; height: 24px; border-radius: 50%; opacity: 0.9; }
.footer-bottom-logo span { color: var(--gold); }

.footer-bottom-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.03em;
}

/* ─── HERO GRID TEXTURE — faint graph-paper grid, fading toward the edges.
   Reads as "technical" without motion or noise. ─── */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,94,167,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,94,167,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 65% 55% at 50% 32%, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 65% 55% at 50% 32%, black 30%, transparent 75%);
  pointer-events: none;
}

/* ─── CURSOR GLOW — a soft purple orb that follows the pointer, sitting
   behind all content. Positioned via JS (transform: translate), not CSS. ─── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123,94,167,0.20) 0%, rgba(123,94,167,0.09) 35%, transparent 68%);
  pointer-events: none;
  /* negative z-index puts it behind all normal in-flow content automatically
     (step 2 of the stacking order, before step 3's static content) without
     needing to touch position/z-index on every other element on the page */
  z-index: -1;
  will-change: transform;
  transition: transform 0.1s ease, opacity 0.3s ease;
  opacity: 0;
}

.cursor-glow.active { opacity: 1; }

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-shape, .kinetic .word,
  .hero-scroll-line, .hero-badge-dot,
  .stat-num, .story-card, .mv-card {
    animation: none !important;
    transition: none !important;
  }
  .kinetic .word { opacity: 1; transform: none; }
  .cursor-glow { display: none !important; }
}

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

/* nav collapses to the hamburger menu earlier than the content grids do.
   8 links (incl. Founder) + logo + CTA need real room to fit in one row
   without wrapping — a wrapped row overlaps the hero content below and
   makes links look like they've vanished. 1040px leaves margin to spare. */
@media (max-width: 1040px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 48px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.23,1,0.32,1);
    box-shadow: -20px 0 60px rgba(0,0,0,0.12);
  }

  .nav-links.open { transform: translateX(0); }

  .nav-links a { font-size: 16px; }
  .nav-links .nav-cta { padding: 12px 26px; }
}

@media (max-width: 900px) {
  .mission-header,
  .mission-teaser-inner,
  .mission-cards-row,
  .pillars-bento,
  .approach-grid,
  .stories-grid,
  .involved-grid,
  .event-feature,
  .contact-row,
  .contact-split,
  .faq-split,
  .footer-grid,
  .problem-header,
  .contact-steps,
  .globe-section-inner,
  .mini-gallery {
    grid-template-columns: 1fr !important;
  }

  .bento-card--featured { grid-row: auto !important; }
  .bento-card--featured .bento-card-media { aspect-ratio: 16 / 9 !important; }

  .stats-strip { flex-direction: column; gap: 32px; padding: 48px 32px; }
  .stat-item { padding: 0; }
  .stat-item::after { display: none; }

  .footer-grid { gap: 40px; }
}

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  section, .mission-teaser, .pillars, .approach { padding: 64px 20px !important; }
  .hero { padding: 120px 20px 90px; }
  .page-header { padding: 130px 20px 56px; }

  footer.site-footer { padding-left: 20px; padding-right: 20px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
