:root {
  --navy: #0A1F44;
  --navy-deep: #051230;
  --navy-soft: #102C5C;
  --navy-panel: #0D2650;
  --gold: #C9A227;
  --gold-light: #E3C567;
  --gold-dark: #9C7C1D;
  --champagne: #E8D9B5;
  --cream: #F3E7C9;
  --charcoal: #1B1B1B;
  --ink: rgba(227,197,103,0.85);
  --ink-soft: rgba(227,197,103,0.62);
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}
@media (hover: hover) and (pointer: fine) { body { cursor: none; } }
main { display: block; }
img, video { max-width: 100%; }
a { color: inherit; }

/* CUSTOM CURSOR — smooth trailing dot + magnetic ring that scales/glows on interactive hover */
.cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.25s ease, height 0.25s ease, background 0.25s ease;
}
.cursor-ring {
  position: fixed; width: 38px; height: 38px;
  border: 1px solid var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), width 0.3s ease, height 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
  opacity: 0.55;
}
.cursor-ring::before {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px solid rgba(201,162,39,0.35);
  animation: cursorPulse 2.4s ease-in-out infinite;
}
@keyframes cursorPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 0; }
}
.cursor.is-active { transform: translate(-50%, -50%) scale(0.4); }
.cursor-ring.is-hover { width: 64px; height: 64px; opacity: 1; border-color: var(--gold-light); background: rgba(201,162,39,0.08); }
.cursor-ring.is-active { transform: translate(-50%, -50%) scale(0.8); }

.cursor-ripple {
  position: fixed; width: 10px; height: 10px; border-radius: 50%;
  border: 1px solid rgba(227,197,103,0.8);
  pointer-events: none; z-index: 9996;
  transform: translate(-50%, -50%);
  animation: rippleExpand 900ms ease-out forwards;
}
@keyframes rippleExpand {
  0% { width: 10px; height: 10px; opacity: 0.65; border-width: 1.5px; }
  100% { width: 64px; height: 64px; opacity: 0; border-width: 0.5px; }
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(5,18,48,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.18);
  transition: background 0.3s;
}
.logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; letter-spacing: 0.5px;
  color: var(--gold); text-decoration: none;
}
.logo span { color: var(--gold); font-weight: 400; font-size: 1em; }
.logo-combo { display: inline-flex; align-items: center; gap: 0.6rem; }
.logo-combo img { height: 40px; width: auto; display: block; }
.footer-brand .logo-combo img { height: 48px; }
.nav-links { display: flex; gap: 2.2rem; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.78rem; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold-light) !important;
  padding: 0.55rem 1.4rem; font-weight: 700 !important;
  transition: background 0.25s, color 0.25s, transform 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold); color: var(--navy-deep) !important; transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 1.5px; background: var(--gold); transition: all 0.3s; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 10rem 4rem 6rem;
  position: relative; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,18,48,0.55) 0%, rgba(5,18,48,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 750px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.35);
  padding: 0.4rem 1.1rem; font-size: 0.68rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light); font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-tag::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08; letter-spacing: 0.5px;
  color: var(--cream);
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title .accent { color: var(--gold-light); }
.hero-sub {
  font-size: 1.08rem; line-height: 1.75; font-weight: 400;
  color: var(--ink); margin: 1.75rem 0 2.5rem;
  max-width: 540px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }
.btn-primary {
  background: var(--gold); color: var(--navy-deep);
  padding: 0.95rem 2.3rem; font-weight: 700; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid var(--gold); cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201,162,39,0.25); }
.btn-outline {
  background: transparent; color: var(--cream);
  padding: 0.95rem 2.3rem; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 2px; text-transform: uppercase;
  border: 1px solid rgba(247,244,238,0.35); cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); }

.hero-stats { position: absolute; right: 4rem; bottom: 5rem; z-index: 2; display: flex; gap: 3rem; animation: fadeUp 0.8s 0.6s ease both; }
.stat { text-align: right; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--gold-light); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.3rem; }

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

/* SECTION GLOBALS */
section { padding: 6rem 4rem; }
.section-tag {
  font-size: 0.68rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.15; letter-spacing: 0.2px; margin-bottom: 1.5rem;
}
.section-lede { font-size: 0.98rem; line-height: 1.8; color: var(--ink-soft); max-width: 640px; margin-bottom: 2rem; }

/* PILLARS */
.pillars { background: var(--navy-soft); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; background: rgba(201,162,39,0.12); }
.pillar {
  background: var(--navy-soft); padding: 2.75rem 1.75rem;
  position: relative; overflow: hidden; transition: background 0.3s;
  display: flex; flex-direction: column; gap: 0.9rem;
  border-top: 2px solid transparent;
}
.pillar:hover { background: var(--navy-deep); border-top-color: var(--gold); }
.pillar-icon { font-size: 2.2rem; }
.pillar-num { font-family: var(--font-display); font-size: 3.5rem; color: rgba(201,162,39,0.12); line-height: 1; position: absolute; top: 1rem; right: 1.4rem; }
.pillar-title { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--cream); }
.pillar-desc { font-size: 0.86rem; line-height: 1.7; color: var(--ink-soft); }

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; height: 480px; }
.about-card { position: absolute; background: var(--navy-panel); border: 1px solid rgba(201,162,39,0.18); padding: 2rem; }
.about-card:nth-child(1) { inset: 0 4rem 4rem 0; }
.about-card:nth-child(2) { bottom: 0; right: 0; width: 55%; height: 55%; background: var(--gold); border: none; display: flex; flex-direction: column; justify-content: center; }
.about-card:nth-child(2) * { color: var(--navy-deep); }
.about-card:nth-child(3) { top: -1.25rem; right: -1.25rem; width: 116px; background: var(--navy-deep); border: 1px solid var(--gold); text-align: center; padding: 0.9rem; box-shadow: 0 8px 24px rgba(5,18,48,0.4); }
.about-bignum { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--gold-light); line-height: 1; }
.about-biglabel { font-size: 0.58rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-soft); }
.about-title { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--navy-deep); line-height: 1.15; }
.about-subtitle { font-size: 0.78rem; color: rgba(5,18,48,0.65); margin-top: 0.5rem; letter-spacing: 1px; }
.about-text { font-size: 0.94rem; line-height: 1.85; color: var(--ink); margin-bottom: 1.4rem; }
.about-quote { border-left: 2px solid var(--gold); padding-left: 1.5rem; font-style: italic; font-family: var(--font-display); color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin: 2rem 0; }

/* PROGRAMS */
.programs { background: var(--navy-soft); }
.programs-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5px; margin-top: 3rem; background: rgba(201,162,39,0.1); }
.program-card { background: var(--navy-soft); padding: 2.5rem; position: relative; transition: background 0.3s; border-left: 2px solid transparent; }
.program-card:hover { background: var(--navy-deep); border-left-color: var(--gold); }
.program-icon { font-size: 2.2rem; margin-bottom: 1.25rem; }
.program-title { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; margin-bottom: 1rem; color: var(--cream); }
.program-text { font-size: 0.86rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.4rem; }
.program-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25); color: var(--gold-light); font-size: 0.68rem; letter-spacing: 1.2px; padding: 0.25rem 0.7rem; text-transform: uppercase; font-weight: 600; }

/* IMPACT */
.impact { background: var(--gold); color: var(--navy-deep); }
.impact .section-tag, .impact .section-title { color: var(--navy-deep); }
.impact .section-tag::before { background: var(--navy-deep); }
.impact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; background: rgba(5,18,48,0.15); }
.impact-item { background: var(--gold); padding: 2.25rem 1rem; text-align: center; overflow: hidden; }
.impact-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 6vw, 3rem); color: var(--navy-deep); line-height: 1; }
.impact-label { font-size: 0.75rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(5,18,48,0.65); margin-top: 0.5rem; font-weight: 600; }

/* ART DECO MOTIF — nested-arch/fan pattern, gold on transparent, used sparingly as
   ornamental section dividers and a faint background texture for a "classy" accent
   rather than a loud repeating wallpaper. */
:root {
  --motif-svg: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20100%2060'%3E%3Cg%20fill='none'%20stroke='%23C9A227'%20stroke-width='1.5'%20stroke-linecap='round'%3E%3Cpath%20d='M0,60%20Q50,6%20100,60'/%3E%3Cpath%20d='M8,60%20Q50,13%2092,60'/%3E%3Cpath%20d='M16,60%20Q50,20%2084,60'/%3E%3Cpath%20d='M24,60%20Q50,27%2076,60'/%3E%3Cpath%20d='M32,60%20Q50,34%2068,60'/%3E%3C/g%3E%3C/svg%3E");
}
.motif-divider {
  height: 11px;
  background-image: var(--motif-svg);
  background-repeat: repeat-x;
  background-size: 22px 11px;
  background-position: center;
}
.motif-bg { position: relative; }
.motif-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--motif-svg);
  background-repeat: repeat;
  background-size: 28px 17px;
  opacity: 0.05;
  pointer-events: none;
}
.motif-bg > * { position: relative; z-index: 1; }
.hero-media-empty { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-soft) 100%); position: absolute; inset: 0; }
.hero-media-empty::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--motif-svg);
  background-repeat: repeat;
  background-size: 32px 19px;
  opacity: 0.08;
}

/* TESTIMONIALS */
.testimonials { background: var(--navy-soft); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--navy-panel); border: 1px solid rgba(201,162,39,0.15); padding: 2.25rem; display: flex; flex-direction: column; gap: 1.5rem; position: relative; }
.testimonial-quote { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--cream); }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-avatar-fallback { display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--navy-deep); font-family: var(--font-display); font-weight: 700; }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--cream); }
.testimonial-role { font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.5px; margin-top: 0.15rem; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.blog-card { background: var(--navy-panel); border: 1px solid rgba(201,162,39,0.12); overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.3s, border-color 0.3s; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(201,162,39,0.4); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--navy-soft); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.blog-card-meta { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 700; }
.blog-card-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--cream); line-height: 1.3; }
.blog-card-excerpt { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.7; }
.blog-card-readmore { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; color: var(--gold-light); margin-top: 0.3rem; }
.blog-card:hover .blog-card-readmore { color: var(--gold); }
.blog-empty { color: var(--ink-soft); padding: 3rem 0; text-align: center; }
.section-more { text-align: center; margin-top: 2.5rem; }

.blog-post { max-width: 760px; margin: 0 auto; }
.blog-post-meta { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 1rem; }
.blog-post-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; margin-bottom: 1.5rem; }
.blog-post-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 2rem; }
.blog-post-body { font-size: 1rem; line-height: 1.9; color: var(--ink); }
.blog-post-body p { margin-bottom: 1.2rem; }
.blog-post-body h2, .blog-post-body h3 { font-family: var(--font-display); color: var(--cream); margin: 2rem 0 1rem; }
.blog-post-body img { margin: 1.5rem 0; }
.blog-post-author { display: flex; align-items: center; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(201,162,39,0.15); font-size: 0.85rem; color: var(--ink-soft); }

.pagination { display: flex; gap: 0.6rem; justify-content: center; margin-top: 3rem; }
.pagination a, .pagination span { padding: 0.6rem 1rem; border: 1px solid rgba(201,162,39,0.2); font-size: 0.8rem; text-decoration: none; color: var(--ink-soft); }
.pagination a:hover { border-color: var(--gold); color: var(--gold-light); }
.pagination .current { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }

/* GALLERY */
.gallery { background: var(--navy-soft); }
.gallery-filters { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-filters a { padding: 0.5rem 1.1rem; border: 1px solid rgba(201,162,39,0.25); font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; color: var(--ink-soft); transition: all 0.2s; }
.gallery-filters a:hover, .gallery-filters a.active { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; margin-top: 1rem; }
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; background: var(--navy-panel); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-placeholder { width: 100%; height: 100%; background: linear-gradient(160deg, var(--navy-soft) 0%, var(--navy-panel) 100%); }
.gallery-item-video::after { content: '▶'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 1.6rem; background: rgba(5,18,48,0.35); pointer-events: none; }
.gallery-share-btn {
  position: absolute; top: 0.5rem; right: 0.5rem; z-index: 2;
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(201,162,39,0.4);
  background: rgba(5,18,48,0.75); color: var(--gold-light); font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; transition: opacity 0.2s, background 0.2s;
}
.gallery-item:hover .gallery-share-btn { opacity: 1; }
.gallery-share-btn:hover { background: var(--gold); color: var(--navy-deep); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(5,18,48,0.82);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.4rem;
  opacity: 0; transition: opacity 0.3s; color: var(--cream); text-align: center; padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.gallery-overlay-sub { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); }

.lightbox { position: fixed; inset: 0; background: rgba(5,18,48,0.95); z-index: 500; display: none; align-items: center; justify-content: center; padding: 3rem; }
.lightbox.open { display: flex; }
.lightbox-content { max-width: 900px; max-height: 85vh; width: 100%; }
.lightbox-content img, .lightbox-content video { width: 100%; max-height: 70vh; object-fit: contain; }
.lightbox-content iframe { width: 100%; aspect-ratio: 16/9; border: none; }
.lightbox-caption { color: var(--ink-soft); font-size: 0.85rem; margin-top: 1rem; text-align: center; }
.lightbox-close { position: absolute; top: 2rem; right: 2.5rem; color: var(--gold); font-size: 2rem; cursor: pointer; background: none; border: none; }

/* CSR CONSULTING */
.csr-services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; margin-top: 3rem; background: rgba(201,162,39,0.1); }
.csr-service { background: var(--navy-soft); padding: 2.25rem; }
.csr-service-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--gold-light); }
.csr-service-text { font-size: 0.85rem; line-height: 1.8; color: var(--ink-soft); }
.csr-cta { background: var(--navy-deep); border: 1px solid rgba(201,162,39,0.2); padding: 3rem; margin-top: 3rem; text-align: center; }

/* DONATE */
.donate { background: var(--navy-deep); text-align: center; padding: 7rem 4rem; position: relative; overflow: hidden; }
.donate-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,162,39,0.14) 0%, transparent 70%); }
.donate-title { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.15; position: relative; z-index: 1; }
.donate-title .accent { color: var(--gold-light); }
.donate-sub { font-size: 1rem; color: var(--ink-soft); margin: 1.5rem auto 3rem; max-width: 500px; line-height: 1.7; position: relative; z-index: 1; }
.donate-amounts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; position: relative; z-index: 1; }
.amount-btn { background: transparent; border: 1px solid rgba(201,162,39,0.3); color: var(--cream); padding: 0.7rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: all 0.2s; }
.amount-btn:hover, .amount-btn.active { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.donate-input-wrap { display: flex; gap: 1rem; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }
.donate-input { background: var(--navy-soft); border: 1px solid rgba(201,162,39,0.3); color: var(--cream); padding: 1rem 1.5rem; font-size: 1rem; font-family: var(--font-body); width: 200px; outline: none; }
.donate-input:focus { border-color: var(--gold); }

/* CONTACT / FORMS */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; background: var(--navy-soft); }
.contact-form, .csr-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 600; }
.form-input, .form-textarea, .form-select {
  background: var(--navy-deep); border: 1px solid rgba(201,162,39,0.18);
  color: var(--cream); padding: 0.85rem 1.1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.2s; resize: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.78rem; color: var(--ink-soft); }
.form-success { background: rgba(201,162,39,0.1); border: 1px solid var(--gold); padding: 1.2rem 1.5rem; color: var(--gold-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-error { background: rgba(178,44,44,0.12); border: 1px solid #B22C2C; padding: 1.2rem 1.5rem; color: #E88; font-size: 0.9rem; margin-bottom: 1.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; padding-top: 1rem; }
.contact-info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-info-icon { width: 42px; height: 42px; background: rgba(201,162,39,0.1); border: 1px solid rgba(201,162,39,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-info-label { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-light); font-weight: 700; margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.88rem; color: var(--ink); line-height: 1.6; }

/* FOOTER */
footer { background: var(--navy-deep); border-top: 1px solid rgba(201,162,39,0.12); padding: 4rem 4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.6rem; display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.7; }
.footer-col-title { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { color: var(--ink-soft); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(201,162,39,0.12); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.76rem; color: var(--ink-soft); }
.footer-socials { display: flex; gap: 0.8rem; }
.social-btn { width: 34px; height: 34px; border: 1px solid rgba(201,162,39,0.2); display: flex; align-items: center; justify-content: center; color: var(--ink-soft); font-size: 0.85rem; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,39,0.06); }
.footer-credit { text-align: center; padding-top: 1.5rem; margin-top: 1.5rem; border-top: 1px solid rgba(201,162,39,0.08); }
.footer-credit p { font-size: 0.72rem; color: var(--ink-soft); }
.footer-credit a { color: var(--gold-light); text-decoration: none; }
.footer-credit a:hover { color: var(--gold); text-decoration: underline; }

.scroll-top-btn {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 400;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy-deep); border: none;
  font-size: 1.2rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(5,18,48,0.35);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.2s;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--gold-light); }
@media (max-width: 600px) { .scroll-top-btn { right: 1rem; bottom: 1rem; width: 40px; height: 40px; } }

/* MOBILE NAV */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: var(--navy-deep); padding: 6rem 2rem 2rem; flex-direction: column; gap: 1.75rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--cream); text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold-light); }

/* GENERIC PAGE HEADER (About/Programs/Donate/CSR static pages) */
.page-hero { padding: 10rem 4rem 4rem; text-align: center; }
.page-hero .section-title { margin: 0 auto 1rem; }
.page-hero .section-lede { margin: 0 auto; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
  /* A long org name at an admin-chosen text size must never force the nav wider than
     the viewport (which breaks the fixed nav and makes the hamburger unreachable) —
     truncate with an ellipsis instead of letting it overflow. Scoped to the nav only:
     the footer's copy of the same logo markup has no hamburger to protect and plenty
     of width once stacked to one column, so it should wrap/show in full instead. */
  nav { flex-wrap: nowrap; }
  #nav .logo.logo-combo {
    max-width: calc(100% - 60px);
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
    display: inline-flex;
  }
  #nav .logo.logo-combo > span { overflow: hidden; text-overflow: ellipsis; }
  section { padding: 5rem 2rem; }
  .hero { padding: 8rem 2rem 5rem; }
  .hero-stats { position: static; flex-direction: row; flex-wrap: wrap; margin-top: 3rem; gap: 1.5rem 2rem; max-width: 100%; }
  .stat { text-align: left; min-width: 0; }
  .stat-num { font-size: clamp(1.8rem, 6vw, 2.6rem); word-break: break-word; }
  .pillars-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { height: 350px; }
  .programs-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .csr-services { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-hero { padding: 8rem 2rem 3rem; }
}
@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
}
