:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --card:#0e1a2f;
  --text:#eaf0ff;
  --muted:#b9c4e3;
  --primary:#3b82f6;
  --primary-2:#22c55e;
  --border:rgba(255,255,255,.10);
  --shadow:0 16px 50px rgba(0,0,0,.35);
  --radius:16px;
  --container:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:radial-gradient(1200px 800px at 20% -10%, rgba(59,130,246,.35), transparent 55%),
             radial-gradient(900px 700px at 85% 10%, rgba(34,197,94,.25), transparent 55%),
             var(--bg);
  line-height:1.55;
}

img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{left:12px}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{display:flex; align-items:center; gap:12px; min-width:260px}
.brand-logo{
  width:44px;height:44px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg, rgba(59,130,246,.95), rgba(34,197,94,.75));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow:hidden;
}
.logo-image{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
}
.brand-mark{
  width:44px;height:44px;
  border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(59,130,246,.95), rgba(34,197,94,.75));
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font-weight:800;
}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted)}

.site-nav{display:flex; gap:18px; align-items:center}
.site-nav a{
  font-weight:600;
  color:rgba(234,240,255,.92);
  padding:10px 10px;
  border-radius:12px;
}
.site-nav a:hover{background:rgba(255,255,255,.06)}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  border-radius:14px;
  padding:10px 10px;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:22px;
  height:2px;
  background:rgba(234,240,255,.92);
  margin:4px 0;
}

.hero{position:relative}
.hero-slider{position:relative; overflow:hidden; min-height:70vh; border-bottom:1px solid var(--border)}
.hero-slide{
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position:center;
  opacity:0;
  transform:scale(1.02);
  transition: opacity .55s ease, transform .7s ease;
}
.hero-slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(11,18,32,.84) 0%, rgba(11,18,32,.55) 45%, rgba(11,18,32,.25) 100%);
}
.hero-slide.is-active{opacity:1; transform:scale(1)}

.hero-content{position:relative; padding:72px 0 92px; max-width:780px}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:rgba(234,240,255,.95);
  font-weight:700;
}

h1,h2,h3{line-height:1.15; margin:14px 0 10px}
h1{font-size:clamp(32px, 4vw, 52px)}
h2{font-size:clamp(26px, 3.2vw, 40px)}
h3{font-size:20px}
.lead{color:rgba(234,240,255,.86); font-size:18px; max-width:62ch}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 16px;
  font-weight:800;
  letter-spacing:.2px;
  border:1px solid var(--border);
  cursor:pointer;
}
.btn-primary{background:linear-gradient(135deg, rgba(59,130,246,.95), rgba(34,197,94,.75)); border-color:rgba(255,255,255,.14)}
.btn-primary:hover{filter:brightness(1.06)}
.btn-ghost{background:rgba(255,255,255,.04)}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

.icon-btn{
  width:44px;height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:rgba(234,240,255,.95);
  cursor:pointer;
  font-size:22px;
}
.icon-btn:hover{background:rgba(255,255,255,.09)}

.hero-controls{
  position:absolute;
  left:0; right:0;
  bottom:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  pointer-events:none;
}
.hero-controls > *{pointer-events:auto}

.dots{display:flex; gap:10px; align-items:center}
.dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  background:transparent;
  cursor:pointer;
}
.dot.is-active{background:rgba(255,255,255,.92)}

.section{padding:64px 0}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00))}
.section-header{margin-bottom:24px}
.section-header p{color:var(--muted); max-width:80ch}

.video-message{margin:32px 0}
.video-container{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(14,26,47,.72);
  box-shadow: var(--shadow);
}
.video-container video{
  width:100%;
  height:auto;
  display:block;
  border-radius:var(--radius);
}
.video-caption{
  margin-top:12px;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

.grid-3{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:16px}
.card{
  background:rgba(14,26,47,.72);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card p{color:rgba(234,240,255,.84)}

.programs{display:flex; flex-direction:column; gap:16px}
.program{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:16px;
  align-items:stretch;
  background:rgba(14,26,47,.55);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.program-media img{width:100%; height:100%; object-fit:cover}
.program-body{padding:18px}

.text-link{color:rgba(234,240,255,.92); font-weight:800; text-decoration:underline; text-underline-offset:4px}
.text-link:hover{color:#fff}

.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin:8px 0 10px}
.pill{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:rgba(234,240,255,.9);
  font-weight:700;
  font-size:13px;
}

.gallery{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:14px}
.gallery-item{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(14,26,47,.55);
  box-shadow: var(--shadow);
}
.gallery-item img{width:100%; height:210px; object-fit:cover}
.gallery-item figcaption{padding:12px 12px; color:rgba(234,240,255,.9); font-weight:700}

.donate-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:16px}
.kv{margin:12px 0 14px}
.kv-row{display:flex; justify-content:space-between; gap:12px; padding:10px 0; border-bottom:1px dashed rgba(255,255,255,.12)}
.kv-row:last-child{border-bottom:0}
.kv-key{color:var(--muted); font-weight:700}
.kv-val{font-weight:900; letter-spacing:.2px}
.muted{color:var(--muted); margin:10px 0 0}

.contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.map-embed{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
}
.map-embed iframe{width:100%; height:260px; border:0}

.site-footer{border-top:1px solid var(--border); padding:26px 0; background:rgba(11,18,32,.55)}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:16px}
.footer-brand{font-weight:900}
.footer-muted{color:var(--muted); font-size:13px; margin-top:4px; max-width:62ch}
.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:rgba(234,240,255,.9); padding:10px 10px; border-radius:12px}
.footer-links a:hover{background:rgba(255,255,255,.06)}

@media (max-width: 920px){
  .grid-3{grid-template-columns:1fr}
  .program{grid-template-columns:1fr}
  .program-media img{height:220px}
  .gallery{grid-template-columns:repeat(2, minmax(0, 1fr))}
  .donate-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .brand{min-width:auto}
  .site-nav{
    position:fixed;
    top:70px;
    right:16px;
    left:16px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius:18px;
    border:1px solid var(--border);
    background:rgba(11,18,32,.92);
    backdrop-filter: blur(10px);
  }
  .site-nav.is-open{display:flex}
  .site-nav a{padding:12px 12px}
  .nav-toggle{display:inline-flex}
  .hero-content{padding:64px 0 96px}
  .gallery{grid-template-columns:1fr}
}
