/* CSF v2 — Modern Editorial Design System */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #0a0f1a;
  --navy: #0c1b33;
  --navy-mid: #152a4a;
  --navy-soft: #1e3a5f;
  --gold: #d4a853;
  --gold-bright: #e8c06a;
  --gold-dim: #9a7b3a;
  --copper: #c17f4a;
  --surface: #f4f2ed;
  --surface-2: #eae6de;
  --white: #ffffff;
  --text: #1a2332;
  --muted: #5e6b7d;
  --line: rgba(12, 27, 51, 0.1);
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-xl: 24px;
  --radius-pill: 999px;
  --shadow: 0 4px 24px rgba(10, 15, 26, 0.06);
  --shadow-lg: 0 24px 64px rgba(10, 15, 26, 0.14);
  --shadow-gold: 0 8px 32px rgba(212, 168, 83, 0.28);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease), opacity 0.2s; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.6rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-pill); border: none; cursor: pointer; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--ink); box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212, 168, 83, 0.4); color: var(--ink); }
.btn-ghost {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1px solid rgba(255,255,255,0.22); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.16); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dim); background: rgba(212,168,83,0.06); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ─── Header v2 ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0; transition: all 0.4s var(--ease);
}
.site-header .header-shell {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  transition: all 0.4s var(--ease);
}
body.home-page .site-header:not(.scrolled) .header-shell {
  background: rgba(10, 15, 26, 0.35);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}
body.home-page .site-header:not(.scrolled) .brand-name { color: var(--white); }
body.home-page .site-header:not(.scrolled) .brand-tag { color: rgba(255,255,255,0.55); }
body.home-page .site-header:not(.scrolled) .nav-desktop a { color: rgba(255,255,255,0.85); }
body.home-page .site-header:not(.scrolled) .nav-desktop a:hover,
body.home-page .site-header:not(.scrolled) .nav-desktop a.active { color: var(--gold-bright); background: rgba(255,255,255,0.08); }
body.home-page .site-header:not(.scrolled) .menu-toggle span { background: var(--white); }

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15)); }
.brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.2; }
.brand-tag { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold-dim); font-weight: 600; }

.nav-desktop { display: flex; align-items: center; gap: 0.15rem; }
.nav-desktop a {
  padding: 0.5rem 0.9rem; font-size: 0.85rem; font-weight: 500;
  color: var(--muted); border-radius: var(--radius-pill); transition: all 0.2s;
}
.nav-desktop a:hover, .nav-desktop a.active { color: var(--navy); background: rgba(12,27,51,0.06); }
.nav-desktop a.active { font-weight: 600; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,15,26,0.97); backdrop-filter: blur(24px);
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  flex-direction: column; gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-display); font-size: 1.75rem; font-weight: 600;
  color: var(--white); padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--gold-bright); }

/* ─── Hero Premium ─── */
.hero-v2 {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; overflow: hidden; background: var(--ink);
}
.hero-premium { min-height: 100vh; padding-bottom: 1rem; }

/* Background photo slideshow */
.hero-photo-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-slide {
  position: absolute; inset: -10%; width: 120%; height: 120%;
  object-fit: cover; opacity: 0;
  animation: hero-bg-fade 18s infinite;
  transform: scale(1.05);
}
.hero-bg-slide--1 { animation-delay: 0s; }
.hero-bg-slide--2 { animation-delay: 6s; }
.hero-bg-slide--3 { animation-delay: 12s; }
@keyframes hero-bg-fade {
  0%, 30% { opacity: 0.42; transform: scale(1.06); }
  33%, 100% { opacity: 0; transform: scale(1.12); }
}
.hero-photo-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(10,15,26,0.94) 0%, rgba(10,15,26,0.82) 42%, rgba(10,15,26,0.55) 68%, rgba(10,15,26,0.75) 100%),
    linear-gradient(to top, rgba(10,15,26,0.9) 0%, transparent 35%);
}
.hero-photo-bg .hero-mesh {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 20% 55%, rgba(212,168,83,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 25%, rgba(30,58,95,0.4) 0%, transparent 50%);
}

.hero-v2-inner {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2.5rem; align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 1.5rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1rem 0.4rem 0.5rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill); margin-bottom: 1.75rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold-bright);
}
.hero-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-bright); box-shadow: 0 0 12px var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(0.85)} }

.hero-v2 h1 {
  font-family: var(--font-display); font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-v2 h1 .line-gold {
  display: block;
  background: linear-gradient(135deg, var(--gold-bright), var(--copper));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-style: italic;
}
.hero-sub {
  font-size: 1.125rem; color: rgba(255,255,255,0.65); max-width: 30rem;
  line-height: 1.75; margin-bottom: 2.25rem; font-weight: 300;
}
.hero-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem;
}
.hero-chip {
  padding: 0.4rem 0.9rem; font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}
.hero-chip:hover {
  color: var(--gold-bright); border-color: rgba(212,168,83,0.4);
  background: rgba(212,168,83,0.1);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-btn-photos { font-size: 0.88rem; }

/* Photo collage */
.hero-collage {
  position: relative; width: 100%; max-width: 440px; margin-inline: auto;
  min-height: 400px;
}
.hero-collage-main {
  position: relative; margin: 0; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 2px solid rgba(255,255,255,0.12);
  transform: rotate(-1deg);
  animation: float-collage 7s ease-in-out infinite;
}
.hero-collage-main img {
  width: 100%; height: 300px; object-fit: cover; display: block;
}
.hero-collage-main figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(10,15,26,0.92), transparent);
  font-size: 0.82rem; font-weight: 600; color: var(--white);
  display: flex; align-items: center; gap: 0.5rem;
}
.hero-collage-tag {
  padding: 0.2rem 0.55rem; background: var(--gold); color: var(--ink);
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; border-radius: var(--radius-pill);
}
.hero-collage-sub {
  position: absolute; margin: 0; border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.15);
  z-index: 2;
}
.hero-collage-sub img { width: 130px; height: 100px; object-fit: cover; display: block; }
.hero-collage-sub--1 { top: -12px; right: -16px; transform: rotate(4deg); animation: float-sub-1 6s ease-in-out infinite; }
.hero-collage-sub--2 { bottom: 48px; left: -24px; transform: rotate(-5deg); animation: float-sub-2 8s ease-in-out infinite; }
@keyframes float-collage { 0%,100%{transform:rotate(-1deg) translateY(0)} 50%{transform:rotate(-1deg) translateY(-8px)} }
@keyframes float-sub-1 { 0%,100%{transform:rotate(4deg) translateY(0)} 50%{transform:rotate(4deg) translateY(-6px)} }
@keyframes float-sub-2 { 0%,100%{transform:rotate(-5deg) translateY(0)} 50%{transform:rotate(-5deg) translateY(6px)} }

.hero-collage-link {
  position: absolute; bottom: 0; right: 0; z-index: 4;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.55rem 1rem; background: var(--gold); color: var(--ink);
  font-size: 0.78rem; font-weight: 700; border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold); transition: transform 0.25s;
}
.hero-collage-link:hover { transform: scale(1.05); color: var(--ink); }
.hero-collage-link svg { width: 14px; height: 14px; }

.hero-seal {
  position: absolute; top: 50%; right: -20px; transform: translateY(-50%);
  z-index: 5; width: 88px; height: 88px;
  background: var(--white); border-radius: 50%;
  padding: 6px; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  border: 3px solid var(--gold);
  animation: float-logo 6s ease-in-out infinite;
}
.hero-seal img { width: 100%; height: 100%; object-fit: contain; }
@keyframes float-logo { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 10px))} }

.hero-live-badge {
  position: absolute; top: -8px; left: 12px; z-index: 6;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; background: rgba(10,15,26,0.85);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill); font-size: 0.72rem; font-weight: 600;
  color: var(--white);
}
.hero-live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4ade80;
  box-shadow: 0 0 8px #4ade80; animation: pulse-dot 2s ease infinite;
}

/* Glass stats bar */
.hero-stats-glass {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
  padding-bottom: 3.5rem;
}
.hero-glass-card {
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.hero-glass-card:hover {
  border-color: rgba(212,168,83,0.35);
  background: rgba(255,255,255,0.09);
}
.hero-glass-card strong {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700; color: var(--gold-bright);
  line-height: 1.1; margin-bottom: 0.25rem;
}
.hero-glass-card span {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45); font-weight: 600;
}

/* Legacy hero stats */
.hero-stats-row { display: none; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: var(--gold-bright); }
.hero-stat span { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease infinite;
}
@keyframes scroll-line { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ─── Marquee ─── */
.marquee-section {
  background: var(--gold); padding: 0.85rem 0; overflow: hidden;
  border-block: 1px solid rgba(0,0,0,0.08);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  flex-shrink: 0; padding: 0 2.5rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.marquee-track span::after { content: '◆'; margin-left: 2.5rem; opacity: 0.4; font-size: 0.6rem; vertical-align: middle; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ─── Section utilities ─── */
section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--navy); line-height: 1.15; letter-spacing: -0.02em;
}
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 36rem; margin-top: 1rem; line-height: 1.7; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }

.bg-surface { background: var(--surface); }
.bg-dark { background: var(--navy); color: var(--white); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-lead { color: rgba(255,255,255,0.6); }
.bg-dark .section-eyebrow { color: var(--gold-bright); }

/* ─── Bento grid ─── */
.bento {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem;
}
.bento-item {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: 2rem; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 220px; transition: transform 0.4s var(--ease), box-shadow 0.4s;
  border: 1px solid var(--line);
}
.bento-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.bento-item.span-7 { grid-column: span 7; }
.bento-item.span-5 { grid-column: span 5; }
.bento-item.span-4 { grid-column: span 4; }
.bento-item.span-8 { grid-column: span 8; }
.bento-item.span-6 { grid-column: span 6; }
.bento-item.span-12 { grid-column: span 12; }

.bento-item.light { background: var(--white); }
.bento-item.dark {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(255,255,255,0.08); color: var(--white);
}
.bento-item.gold {
  background: linear-gradient(145deg, #c9a04a 0%, var(--gold-dim) 100%);
  border-color: transparent; color: var(--ink);
}
.bento-item.surface { background: var(--surface-2); }

.bento-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  opacity: 0.07; line-height: 1;
}
.bento-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 1.35rem;
  background: rgba(12,27,51,0.06);
}
.bento-item.dark .bento-icon { background: rgba(255,255,255,0.1); }
.bento-item.gold .bento-icon { background: rgba(0,0,0,0.1); }
.bento-item h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.5rem; line-height: 1.2;
}
.bento-item p { font-size: 0.9rem; opacity: 0.75; line-height: 1.6; margin-bottom: 1.25rem; }
.bento-link {
  font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.35rem;
  opacity: 0.9; transition: gap 0.2s;
}
.bento-link:hover { gap: 0.6rem; opacity: 1; }
.bento-item.dark .bento-link { color: var(--gold-bright); }
.bento-item.gold .bento-link { color: var(--ink); }

/* ─── Split feature ─── */
.split-feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.split-quote {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600; font-style: italic; line-height: 1.35; color: var(--white);
}
.split-quote cite {
  display: block; margin-top: 1.5rem; font-style: normal;
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.45); font-weight: 500;
}
.split-visual {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy));
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
.split-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(212,168,83,0.25), transparent 60%);
}

/* ─── Impact numbers ─── */
.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.impact-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid var(--line); transition: all 0.3s var(--ease);
}
.impact-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.impact-card .num {
  font-family: var(--font-display); font-size: 2.75rem; font-weight: 700;
  color: var(--navy); line-height: 1; margin-bottom: 0.5rem;
}
.impact-card .num sup { font-size: 1.25rem; color: var(--gold); }
.impact-card p { font-size: 0.82rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── Blog v2 ─── */
.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem;
}
.blog-card-v2 {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); background: var(--white);
  transition: all 0.35s var(--ease); display: flex; flex-direction: column;
}
.blog-card-v2:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-v2.featured { grid-row: span 2; }
.blog-card-v2 .thumb {
  position: relative; overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16 / 10;
  min-height: 200px;
  width: 100%;
}
.blog-card-v2.featured .thumb { aspect-ratio: 4 / 3; min-height: 280px; flex: 1; }
.blog-card-v2 .thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.blog-card-v2:hover .thumb-img { transform: scale(1.05); }
.blog-card-v2 .thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,26,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.blog-card-v2 .thumb-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  padding: 0.3rem 0.75rem; background: var(--gold); color: var(--ink);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: var(--radius-pill);
}
.blog-list-stack .blog-card-v2 .thumb { min-height: 140px; }
.blog-card-v2 .body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-v2 .meta { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.6rem; }
.blog-card-v2 h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.3; margin-bottom: 0.6rem;
}
.blog-card-v2.featured h3 { font-size: 1.6rem; }
.blog-card-v2 p { font-size: 0.88rem; color: var(--muted); flex: 1; line-height: 1.6; }
.blog-card-v2 .read-more {
  margin-top: 1rem; font-size: 0.82rem; font-weight: 600; color: var(--gold-dim);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.blog-list-stack { display: flex; flex-direction: column; gap: 1rem; }
.blog-list-stack .blog-card-v2 { flex-direction: row; align-items: stretch; }
.blog-list-stack .blog-card-v2 .thumb {
  width: 200px; min-width: 200px; flex-shrink: 0;
  min-height: 100%; aspect-ratio: unset; height: auto;
}
.blog-list-stack .blog-card-v2 .body { padding: 1.25rem; }
.blog-list-stack .blog-card-v2 h3 { font-size: 1rem; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

/* ─── CTA v2 ─── */
.cta-v2 {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem);
  background: var(--ink);
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.cta-v2-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.2), transparent 70%);
  top: -200px; right: -100px; pointer-events: none;
}
.cta-v2 h2 {
  position: relative; font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 700;
  color: var(--white); margin-bottom: 0.75rem;
}
.cta-v2 p { position: relative; color: rgba(255,255,255,0.6); max-width: 32rem; font-size: 1rem; }
.cta-v2 .btn { position: relative; }

/* ─── Page hero (inner) ─── */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem); padding-bottom: 3rem;
  background: var(--ink); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(212,168,83,0.12), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700; color: var(--white); margin-bottom: 0.75rem; letter-spacing: -0.02em;
}
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 36rem; }
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }
.breadcrumb a { color: var(--gold-bright); }
.breadcrumb span { opacity: 0.5; }

/* ─── Content layouts ─── */
.content-grid { display: grid; grid-template-columns: 1.65fr 1fr; gap: 3rem; padding-block: 4rem; }
.content-main h2 {
  font-family: var(--font-display); font-size: 1.65rem; font-weight: 700;
  color: var(--navy); margin: 2.25rem 0 0.875rem;
}
.content-main h2:first-child { margin-top: 0; }
.content-main p, .content-main li { color: var(--muted); margin-bottom: 1rem; line-height: 1.75; }
.content-main ul { padding-left: 1.25rem; margin-bottom: 1.5rem; }

.sidebar-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 1.75rem; margin-bottom: 1.25rem;
}
.sidebar-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}
.sidebar-card p, .sidebar-card li { font-size: 0.9rem; color: var(--muted); }
.sidebar-card ul { list-style: none; padding: 0; }
.sidebar-card li { padding: 0.5rem 0; border-bottom: 1px solid var(--line); }
.sidebar-card li:last-child { border-bottom: none; }

/* ─── Donate ─── */
.donate-layout { display: grid; grid-template-columns: 1.35fr 1fr; gap: 2rem; padding-block: 4rem; }
.donate-panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 2.25rem; box-shadow: var(--shadow);
}
.donate-tabs {
  display: flex; gap: 0.35rem; margin-bottom: 2rem;
  background: var(--surface); padding: 0.3rem; border-radius: var(--radius-pill);
}
.donate-tab {
  flex: 1; padding: 0.7rem 1rem; border: none; background: transparent;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 600;
  color: var(--muted); border-radius: var(--radius-pill); cursor: pointer; transition: 0.2s;
}
.donate-tab.active { background: var(--white); color: var(--navy); box-shadow: var(--shadow); }
.amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; margin-bottom: 1.25rem; }
.amount-btn {
  padding: 1rem; border: 1.5px solid var(--line); background: var(--white);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 1rem;
  font-weight: 600; color: var(--navy); cursor: pointer; transition: 0.2s;
}
.amount-btn:hover, .amount-btn.selected { border-color: var(--gold); background: rgba(212,168,83,0.08); color: var(--gold-dim); }
.custom-amount { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.custom-amount span { font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.custom-amount input {
  flex: 1; padding: 0.875rem 1rem; border: 1.5px solid var(--line);
  border-radius: var(--radius); font-size: 1.1rem; font-family: var(--font-body); font-weight: 600;
}
.custom-amount input:focus { outline: none; border-color: var(--gold); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--line);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group { display: flex; align-items: flex-start; gap: 0.65rem; margin-bottom: 1.25rem; }
.checkbox-group input { margin-top: 0.2rem; accent-color: var(--gold); }
.checkbox-group label { font-size: 0.85rem; color: var(--muted); }
.impact-tiers { display: flex; flex-direction: column; gap: 0.75rem; }
.impact-tier {
  padding: 1.1rem 1.25rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  cursor: pointer; transition: 0.2s;
}
.impact-tier:hover, .impact-tier.selected { border-color: var(--gold); background: rgba(212,168,83,0.06); }
.impact-tier strong { display: block; font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 0.2rem; }
.impact-tier span { font-size: 0.82rem; color: var(--muted); }
.payment-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 1.25rem; }
.payment-method {
  padding: 0.9rem; border: 1.5px solid var(--line); border-radius: var(--radius);
  text-align: center; cursor: pointer; font-size: 0.82rem; font-weight: 600; transition: 0.2s;
}
.payment-method:hover, .payment-method.selected { border-color: var(--gold); background: rgba(212,168,83,0.06); }
.dedication-box { background: var(--surface); border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1.25rem; }
.donate-summary {
  background: var(--navy); color: var(--white); border-radius: var(--radius-xl);
  padding: 2rem; position: sticky; top: calc(var(--header-h) + 1.5rem);
}
.donate-summary h3 {
  font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.summary-row { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.88rem; opacity: 0.8; }
.summary-total {
  display: flex; justify-content: space-between; padding-top: 1rem; margin-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.15); font-size: 1.2rem; font-weight: 700;
}
.tax-notice {
  margin-top: 1.25rem; padding: 1rem; background: rgba(255,255,255,0.07);
  border-radius: var(--radius); font-size: 0.78rem; opacity: 0.75; line-height: 1.55;
}

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; padding-block: 4rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .icon {
  width: 48px; height: 48px; background: var(--surface); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
  border: 1px solid var(--line);
}
.contact-info-item h4 { font-weight: 600; color: var(--navy); margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ─── Team ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.team-card {
  text-align: center; padding: 2rem 1.5rem; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-xl); transition: 0.3s;
}
.team-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; color: var(--gold-bright); border: 3px solid var(--gold); font-weight: 700;
}
.team-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 0.2rem; }
.team-card .role { font-size: 0.8rem; color: var(--gold-dim); font-weight: 600; margin-bottom: 0.6rem; }
.team-card p { font-size: 0.88rem; color: var(--muted); }

/* ─── Cards (programs etc) ─── */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 2rem; transition: 0.35s var(--ease);
}
.card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  background: var(--surface); margin-bottom: 1.1rem; font-size: 1.3rem;
}
.card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.9rem; }
.card-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; font-weight: 600; font-size: 0.85rem; color: var(--gold-dim); }
.card-link:hover { color: var(--navy); gap: 0.55rem; }

/* ─── Blog filters & article ─── */
.blog-filters { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.45rem 1.1rem; border: 1px solid var(--line); background: var(--white);
  border-radius: var(--radius-pill); font-size: 0.82rem; font-weight: 600;
  color: var(--muted); cursor: pointer; transition: 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.article-header { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 2rem; background: var(--surface); }
.article-hero-img {
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 1.5rem;
  max-height: 420px; box-shadow: var(--shadow-lg);
}
.article-hero-img img { width: 100%; height: 420px; object-fit: cover; }
.article-header .tag {
  display: inline-block; padding: 0.3rem 0.8rem; background: var(--gold); color: var(--ink);
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  border-radius: var(--radius-pill); margin-bottom: 1rem;
}
.article-header h1 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700; color: var(--navy); margin-bottom: 1rem; max-width: 48rem;
}
.article-meta { display: flex; gap: 1.25rem; font-size: 0.88rem; color: var(--muted); }
.article-body { max-width: 42rem; margin: 0 auto; padding-block: 3rem; }
.article-body h2 { font-family: var(--font-display); font-size: 1.45rem; color: var(--navy); margin: 2rem 0 0.875rem; }
.article-body p { color: var(--muted); margin-bottom: 1.15rem; font-size: 1.02rem; line-height: 1.8; }
.article-body blockquote {
  border-left: 3px solid var(--gold); padding: 1rem 1.5rem; margin: 1.75rem 0;
  background: var(--surface); font-family: var(--font-display); font-style: italic;
  font-size: 1.1rem; color: var(--navy);
}

/* ─── Data table ─── */
.data-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.92rem; }
.data-table th, .data-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--line); }
.data-table th { background: var(--surface); font-weight: 600; color: var(--navy); }
.data-table tr:hover td { background: rgba(212,168,83,0.04); }

/* ─── Footer v3 — Premium ─── */
.site-footer {
  position: relative;
  background: var(--ink);
  color: rgba(255,255,255,0.55);
  margin-top: 0;
}
.site-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), var(--gold), transparent);
}

/* Pre-footer CTA band */
.footer-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3050 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}
.footer-cta-band::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,83,0.15), transparent 70%);
  pointer-events: none;
}
.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.footer-cta-eyebrow {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 0.5rem;
}
.footer-cta-copy h2 {
  font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700; color: var(--white); margin-bottom: 0.5rem;
}
.footer-cta-copy p { color: rgba(255,255,255,0.6); max-width: 28rem; font-size: 0.95rem; }
.footer-cta-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Trust badges strip */
.footer-trust {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
}
.footer-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.footer-trust-item {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 0.75rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s;
}
.footer-trust-item:hover { border-color: rgba(212,168,83,0.3); }
.footer-trust-icon { font-size: 1.35rem; line-height: 1; opacity: 0.9; }
.footer-trust-item strong {
  display: block; font-size: 0.88rem; font-weight: 700; color: var(--white);
}
.footer-trust-item span { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.04em; }

/* Main footer grid */
.footer-main { padding: 3.5rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-link { display: inline-block; margin-bottom: 1.25rem; }
.footer-logo-link img {
  width: 72px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
  transition: transform 0.3s var(--ease);
}
.footer-logo-link:hover img { transform: scale(1.05); }
.footer-mission { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; max-width: 22rem; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-badge {
  padding: 0.35rem 0.8rem; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--gold-bright);
  background: rgba(212,168,83,0.1); border: 1px solid rgba(212,168,83,0.22);
  border-radius: var(--radius-pill);
}
.footer-col h4 {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--white); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem; border-bottom: 2px solid rgba(212,168,83,0.35);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.5); font-size: 0.88rem;
  transition: color 0.2s, padding-left 0.2s; display: inline-block;
}
.footer-col a:hover { color: var(--gold-bright); padding-left: 4px; }
.footer-contact-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 1rem; font-size: 0.88rem; line-height: 1.55;
}
.footer-contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 0.1rem; opacity: 0.7; }
.footer-contact-list a { color: var(--gold-bright); }
.footer-contact-list a:hover { color: var(--white); }

/* Newsletter */
.footer-newsletter {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-newsletter h4 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.35rem;
}
.footer-newsletter p { font-size: 0.88rem; max-width: 26rem; }
.footer-newsletter-form {
  display: flex; gap: 0.5rem; flex: 1; max-width: 440px; min-width: 260px;
}
.footer-newsletter-form input {
  flex: 1; padding: 0.8rem 1.1rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-pill); color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.2s;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-form input:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.footer-newsletter-form .btn { flex-shrink: 0; padding: 0.8rem 1.5rem; }

/* Bottom bar */
.footer-bottom-bar {
  padding: 1.5rem 0 2rem;
  background: rgba(0,0,0,0.25);
}
.footer-bottom-inner { text-align: center; }
.footer-copyright {
  font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 0.75rem;
}
.footer-legal {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 1rem;
}
.footer-legal a {
  font-size: 0.82rem; font-weight: 600; color: var(--gold-bright);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }
.footer-disclaimer {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  max-width: 36rem; margin: 0 auto; line-height: 1.55;
}

/* Back to top */
.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-gold);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.35s var(--ease);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(212,168,83,0.45); }
.back-to-top svg { width: 20px; height: 20px; color: var(--ink); }

/* Legacy footer class compat */
.footer-top { display: none; }
.footer-bottom { display: none; }
.footer-ein { display: none; }

/* ─── Modal ─── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10,15,26,0.75); backdrop-filter: blur(6px);
  z-index: 2000; align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem;
  max-width: 440px; width: 100%; text-align: center; box-shadow: var(--shadow-lg);
}
.modal-icon {
  width: 60px; height: 60px; background: rgba(45,106,79,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; margin: 0 auto 1.1rem;
}
.modal h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 0.6rem; }
.modal p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.92rem; }

/* ─── Activity Gallery ─── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 220px 220px;
  gap: 0.75rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.gallery-mosaic-item {
  position: relative; border: none; padding: 0; cursor: pointer; overflow: hidden;
  background: var(--navy); min-height: 100%;
}
.gallery-mosaic-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-mosaic-item:hover img { transform: scale(1.06); }
.gallery-mosaic-item--1 { grid-column: span 5; grid-row: span 2; }
.gallery-mosaic-item--2 { grid-column: span 3; }
.gallery-mosaic-item--3 { grid-column: span 4; }
.gallery-mosaic-item--4 { grid-column: span 3; }
.gallery-mosaic-item--5 { grid-column: span 4; }
.gallery-mosaic-label {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,26,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem; text-align: left; color: var(--white);
}
.gallery-mosaic-label span {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold-bright); margin-bottom: 0.3rem;
}
.gallery-mosaic-label strong { font-family: var(--font-display); font-size: 1rem; font-weight: 600; line-height: 1.3; }

.gallery-filters-wrap {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-card { border-radius: var(--radius-xl); overflow: hidden; }
.gallery-card--large { grid-column: span 2; grid-row: span 2; }
.gallery-card-btn {
  position: relative; display: block; width: 100%; border: none; padding: 0;
  cursor: pointer; background: var(--navy); aspect-ratio: 4/3;
}
.gallery-card--large .gallery-card-btn { aspect-ratio: auto; height: 100%; min-height: 420px; }
.gallery-card-btn img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-card-btn:hover img { transform: scale(1.05); }
.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem; text-align: left; color: var(--white);
  opacity: 0; transition: opacity 0.35s var(--ease);
}
.gallery-card-btn:hover .gallery-card-overlay,
.gallery-card-btn:focus .gallery-card-overlay { opacity: 1; }
.gallery-card-tag {
  display: inline-block; padding: 0.25rem 0.65rem;
  background: var(--gold); color: var(--ink);
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; border-radius: var(--radius-pill); margin-bottom: 0.6rem; width: fit-content;
}
.gallery-card-overlay h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 0.4rem; line-height: 1.25;
}
.gallery-card--large .gallery-card-overlay h3 { font-size: 1.5rem; }
.gallery-card-overlay p { font-size: 0.82rem; opacity: 0.8; line-height: 1.5; margin-bottom: 0.75rem; }
.gallery-card-zoom {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-bright);
}
.gallery-card-zoom svg { width: 16px; height: 16px; }

.gallery-impact-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.gallery-impact-item {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); background: var(--white);
  transition: box-shadow 0.3s;
}
.gallery-impact-item:hover { box-shadow: var(--shadow-lg); }
.gallery-impact-item img { width: 100%; height: 180px; object-fit: cover; }
.gallery-impact-item div { padding: 1.25rem 1.5rem 1.5rem; }
.gallery-impact-item h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 0.4rem;
}
.gallery-impact-item p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }

/* Lightbox */
.gallery-lightbox {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(10,15,26,0.94); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-inner {
  max-width: 960px; width: 100%; max-height: 90vh; overflow-y: auto;
  border-radius: var(--radius-xl); background: var(--white);
  box-shadow: var(--shadow-lg);
}
.gallery-lightbox-inner img {
  width: 100%; max-height: 60vh; object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.gallery-lightbox-caption { padding: 1.5rem 2rem 2rem; }
.gallery-lightbox-caption h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--navy); margin: 0.75rem 0 0.5rem;
}
.gallery-lightbox-caption p { color: var(--muted); line-height: 1.65; font-size: 0.95rem; }
.gallery-lightbox-meta { margin-top: 0.75rem; font-size: 0.82rem; color: var(--gold-dim); font-weight: 600; }
.gallery-lightbox-close {
  position: fixed; top: 1.25rem; right: 1.25rem;
  width: 44px; height: 44px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: var(--white);
  font-size: 1.5rem; cursor: pointer; z-index: 3001; transition: background 0.2s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.gallery-lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border: none; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white);
  font-size: 1.25rem; cursor: pointer; z-index: 3001; transition: background 0.2s;
}
.gallery-lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.gallery-lightbox-prev { left: 1.25rem; }
.gallery-lightbox-next { right: 1.25rem; }

/* Home gallery strip */
.gallery-home-section .gallery-grid { margin-bottom: 0; }

/* Program page photos */
.program-photo {
  margin: 0 0 2rem; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.program-photo img { width: 100%; height: 280px; object-fit: cover; }
.program-photo figcaption {
  padding: 0.75rem 1.25rem; font-size: 0.82rem; color: var(--muted);
  background: var(--surface); font-style: italic;
}
.card--photo { padding: 0; overflow: hidden; }
.card--photo .card-photo { width: 100%; height: 160px; object-fit: cover; }
.card--photo h3, .card--photo p { padding: 0 1.5rem; }
.card--photo h3 { padding-top: 1.25rem; }
.card--photo p { padding-bottom: 1.5rem; }

/* ─── Reveal animations ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }

/* Legacy compat */
.bg-cream { background: var(--surface); }
.section-header { text-align: center; max-width: 40rem; margin: 0 auto 3rem; }
.section-label, .section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: 0.75rem; display: block; }
.section-header h2, .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--navy); }
.section-header p { color: var(--muted); font-size: 1.05rem; margin-top: 0.75rem; }
.testimonial blockquote { font-family: var(--font-display); font-size: 1.5rem; font-style: italic; color: var(--navy); text-align: center; max-width: 40rem; margin: 0 auto 1.25rem; }
.testimonial cite { display: block; text-align: center; font-size: 0.88rem; color: var(--muted); font-weight: 600; }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-v2-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-chips { justify-content: center; }
  .hero-collage { order: -1; margin-bottom: 1rem; }
  .hero-stats-glass { grid-template-columns: repeat(2, 1fr); }
  .hero-seal { right: 0; }
  .bento-item[class*="span-"] { grid-column: span 6; }
  .split-feature, .blog-featured, .content-grid, .donate-layout, .contact-grid { grid-template-columns: 1fr; }
  .blog-card-v2.featured { grid-row: span 1; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; }
  .footer-newsletter { flex-direction: column; text-align: center; }
  .footer-newsletter-form { max-width: 100%; width: 100%; }
  .cta-v2 { grid-template-columns: 1fr; text-align: center; }
  .card-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-card--large { grid-column: span 2; grid-row: span 1; min-height: auto; }
  .gallery-card--large .gallery-card-btn { min-height: 280px; }
  .gallery-impact-strip { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-rows: 180px 180px 180px; }
  .gallery-mosaic-item--1 { grid-column: span 12; grid-row: span 1; }
  .gallery-mosaic-item--2, .gallery-mosaic-item--3,
  .gallery-mosaic-item--4, .gallery-mosaic-item--5 { grid-column: span 6; }
}

@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .brand-name, .brand-tag { display: none; }
  .bento-item[class*="span-"] { grid-column: span 12; }
  .impact-grid, .card-grid, .blog-grid, .team-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .payment-methods, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-trust-grid { grid-template-columns: 1fr; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form .btn { width: 100%; }
  .blog-list-stack .blog-card-v2 { flex-direction: column; }
  .blog-list-stack .blog-card-v2 .thumb { width: 100%; min-height: 120px; }
  .hero-stats-glass { grid-template-columns: 1fr 1fr; }
  .hero-collage-sub--1 { right: 0; }
  .hero-collage-sub--2 { left: 0; }
  .hero-collage-sub img { width: 110px; height: 85px; }
  .hero-btn-photos { width: 100%; }
  section { padding-block: 3.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card--large { grid-column: span 1; }
  .gallery-mosaic { grid-template-rows: repeat(5, 160px); }
  .gallery-mosaic-item[class*="--"] { grid-column: span 12; grid-row: span 1; }
}
