/* ==========================================================================
   Samaj Shakti Society — Front-end stylesheet
   Palette: deep navy blue + saffron, on a clean off-white ground
   ========================================================================== */

:root {
  --navy-900: #061B3E;
  --navy-800: #0A2A5E;
  --navy-700: #123C7C;
  --navy-500: #2C5CA8;
  --navy-050: #EEF3FB;

  --saffron: #F58220;
  --saffron-dark: #D96A0C;
  --saffron-light: #FFB059;
  --saffron-050: #FFF3E6;

  --green: #1E8A5A;
  --green-050: #E9F6F0;

  --ink: #14213D;
  --body: #4B5B75;
  --muted: #7A8AA3;
  --line: #E3E9F3;
  --bg: #F6F8FC;
  --white: #FFFFFF;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 34px;

  --shadow-xs: 0 1px 2px rgba(10, 42, 94, .06);
  --shadow-sm: 0 4px 16px rgba(10, 42, 94, .07);
  --shadow: 0 14px 40px rgba(10, 42, 94, .10);
  --shadow-lg: 0 28px 70px rgba(10, 42, 94, .16);

  --head: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --nav-h: 78px;
}

/* ------------------------------ Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--navy-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--saffron); }

h1, h2, h3, h4, h5 {
  font-family: var(--head);
  color: var(--ink);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.08rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .4em; }

.ico { flex: none; }

/* ------------------------------ Layout --------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.section--alt { background: var(--bg); }
.section--navy { background: var(--navy-900); color: #C9D6EA; }
.section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ------------------------------ Headings ------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  background: var(--saffron-050);
  border: 1px solid #FFE0BE;
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 18px;
}

.section--navy .eyebrow {
  color: var(--saffron-light);
  background: rgba(245, 130, 32, .13);
  border-color: rgba(245, 130, 32, .32);
}

.sec-head { max-width: 720px; margin-bottom: 46px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.04rem; margin-bottom: 0; }
.section--navy .sec-head p { color: #A9BBD6; }

.lead { font-size: 1.09rem; color: var(--body); }

.underline-accent {
  display: block;
  width: 62px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  margin-top: 18px;
}
.sec-head.center .underline-accent { margin-inline: auto; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  text-align: center;
  line-height: 1.2;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  box-shadow: 0 10px 26px rgba(245, 130, 32, .34);
}
.btn-primary:hover { color: #fff; box-shadow: 0 16px 34px rgba(245, 130, 32, .44); }

.btn-navy {
  background: var(--navy-800);
  color: #fff;
  box-shadow: 0 10px 26px rgba(10, 42, 94, .26);
}
.btn-navy:hover { background: var(--navy-700); color: #fff; }

.btn-outline {
  border-color: var(--line);
  color: var(--navy-800);
  background: #fff;
}
.btn-outline:hover { border-color: var(--saffron); color: var(--saffron-dark); }

.btn-ghost-light {
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: #fff; color: var(--navy-800); border-color: #fff; }

.btn-sm { padding: 10px 20px; font-size: .84rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ------------------------------ Top bar -------------------------------- */
.topbar {
  background: var(--navy-900);
  color: #A9BBD6;
  font-size: .84rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  min-height: 42px;
}
.topbar a { color: #C9D6EA; }
.topbar a:hover { color: var(--saffron-light); }
.topbar-list { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .socials { display: flex; gap: 6px; }
.topbar .socials a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
  transition: background .2s ease, transform .2s ease;
}
.topbar .socials a:hover { background: var(--saffron); transform: translateY(-2px); }

/* ------------------------------ Header --------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--nav-h);
}

.brand { display: flex; align-items: center; gap: 13px; flex: none; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-xs); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--head);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -.015em;
}
.brand-sub {
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--saffron-dark);
  font-weight: 700;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links .mobile-cta { display: none; }
.nav-links a {
  display: block;
  padding: 10px 11px;
  font-size: .89rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
}
.nav-links a:hover { color: var(--saffron-dark); background: var(--saffron-050); }
.nav-links a.active { color: var(--saffron-dark); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 3px;
  width: 22px;
  margin: 4px auto 0;
  border-radius: 3px;
  background: var(--saffron);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy-800);
  place-items: center;
  cursor: pointer;
}

/* ------------------------------ Hero ----------------------------------- */
.hero { position: relative; min-height: min(88vh, 760px); display: grid; isolation: isolate; }

.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }

.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6, 27, 62, .93) 0%, rgba(6, 27, 62, .78) 42%, rgba(6, 27, 62, .35) 100%);
}

.hero-inner { padding-block: clamp(70px, 11vw, 130px); max-width: 720px; }
.hero-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 20px;
}
.hero-caption::before { content: ""; width: 34px; height: 2px; background: var(--saffron); }

.hero h1 { color: #fff; margin-bottom: .45em; text-shadow: 0 2px 30px rgba(0, 0, 0, .25); }
.hero p { color: #D3DEEE; font-size: clamp(1rem, 1.6vw, 1.16rem); max-width: 580px; margin-bottom: 32px; }

.hero-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 32px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero-dots button {
  width: 34px; height: 5px;
  border: 0; border-radius: 4px;
  background: rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: background .3s ease, width .3s ease;
}
.hero-dots button.active { background: var(--saffron); width: 52px; }

/* ------------------------------ Page banner ---------------------------- */
.page-banner {
  position: relative;
  padding-block: clamp(64px, 9vw, 116px);
  background: var(--navy-900);
  overflow: hidden;
  text-align: center;
}
.page-banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .28;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 27, 62, .82), rgba(6, 27, 62, .94));
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.crumbs { color: #A9BBD6; font-size: .9rem; }
.crumbs a { color: var(--saffron-light); }
.crumbs span { opacity: .55; margin-inline: 8px; }

/* ------------------------------ Cards ---------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: #D6E1F2; }

.card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-050); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.07); }

.card-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255, 255, 255, .95);
  color: var(--navy-800);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-xs);
}

.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: 10px; }
.card-body h3 a { color: var(--ink); }
.card-body h3 a:hover { color: var(--saffron-dark); }
.card-body p { font-size: .95rem; margin-bottom: 18px; }
.card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  font-size: .88rem;
  color: var(--saffron-dark);
}
.card-link .ico { transition: transform .25s ease; }
.card-link:hover .ico { transform: translateX(4px); }

.meta-line {
  display: flex; flex-wrap: wrap; gap: 6px 16px;
  font-size: .82rem; color: var(--muted);
  margin-bottom: 12px;
}
.meta-line span { display: inline-flex; align-items: center; gap: 6px; }

/* Icon feature card */
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.feature::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--saffron-050);
  transition: transform .4s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature:hover::before { transform: scale(1.5); }
.feature > * { position: relative; z-index: 1; }
.feature-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(10, 42, 94, .26);
}
.feature:nth-child(even) .feature-icon { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); box-shadow: 0 10px 24px rgba(245, 130, 32, .3); }
.feature h3 { margin-bottom: 8px; }
.feature p { font-size: .95rem; margin-bottom: 0; }

/* ------------------------------ Stats ---------------------------------- */
.stats-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.stats-band::before,
.stats-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, .28), transparent 68%);
}
.stats-band::before { width: 420px; height: 420px; top: -180px; right: -100px; }
.stats-band::after { width: 340px; height: 340px; bottom: -180px; left: -80px; }
.stats-band .container { position: relative; z-index: 2; }

.stat { text-align: center; color: #fff; padding: 10px; }
.stat-icon {
  width: 54px; height: 54px;
  margin: 0 auto 14px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  color: var(--saffron-light);
}
.stat-num {
  font-family: var(--head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat-label { font-size: .89rem; color: #A9BBD6; margin-top: 8px; }

/* ------------------------------ About block ---------------------------- */
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-media .img-sm {
  position: absolute;
  right: -14px; bottom: -34px;
  width: 46%;
  border: 7px solid #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  left: -16px; top: 28px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 18px 40px rgba(245, 130, 32, .38);
  max-width: 190px;
}
.about-badge strong { display: block; font-family: var(--head); font-size: 1.9rem; line-height: 1; }
.about-badge span { font-size: .78rem; opacity: .95; }

.tick-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; margin: 0; font-size: .97rem; }
.tick-list .ico {
  color: var(--green);
  background: var(--green-050);
  border-radius: 50%;
  padding: 4px;
  width: 26px; height: 26px;
  margin-top: 2px;
}

/* Mission / vision / value tiles */
.mv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--saffron);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
}
.mv-card h3 { display: flex; align-items: center; gap: 10px; }
.mv-card h3 .ico { color: var(--saffron-dark); }
.mv-card p { margin-bottom: 0; font-size: .96rem; }

/* ------------------------------ Testimonials --------------------------- */
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.quote-card .quote-mark { color: var(--saffron); opacity: .35; margin-bottom: 12px; }
.quote-card p { font-size: .98rem; font-style: italic; color: var(--ink); }
.quote-who { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding-top: 18px; border-top: 1px dashed var(--line); }
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-500));
  color: #fff;
  font-weight: 700;
  font-family: var(--head);
  font-size: 1.15rem;
  object-fit: cover;
  flex: none;
}
.quote-who strong { display: block; color: var(--ink); font-size: .96rem; }
.quote-who span { font-size: .82rem; color: var(--muted); }

.stars { display: inline-flex; gap: 2px; color: var(--line); }
.stars .on { color: #F5B120; }
.stars svg { fill: currentColor; stroke: none; }

/* ------------------------------ CTA band ------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--navy-700) 100%);
  padding: clamp(38px, 6vw, 64px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
  gap: 30px;
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  right: -120px; top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, .35), transparent 70%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p { color: #C9D6EA; margin-bottom: 0; }
.cta-band .btn-row { justify-content: flex-end; }

/* ------------------------------ Gallery -------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-bar button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .87rem;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
}
.filter-bar button:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.filter-bar button.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  background: var(--navy-050);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  color: #fff;
  font-size: .89rem;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(6, 27, 62, .88));
  transform: translateY(6px);
  opacity: 0;
  transition: all .3s ease;
}
.gallery-item:hover figcaption { transform: none; opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 27, 62, .93);
  display: none;
  place-items: center;
  padding: 24px;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: var(--radius); object-fit: contain; }
.lightbox button {
  position: absolute;
  top: 22px; right: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
}

/* ------------------------------ Team ----------------------------------- */
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo { aspect-ratio: 1 / 1; background: var(--navy-050); position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo .initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--head);
  font-size: 3rem;
  color: var(--navy-500);
  background: linear-gradient(135deg, var(--navy-050), #fff);
}
.team-card .info { padding: 22px 18px; }
.team-card h3 { margin-bottom: 3px; font-size: 1.12rem; }
.team-card .role { font-size: .84rem; color: var(--saffron-dark); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.team-card .bio { font-size: .89rem; margin-top: 12px; margin-bottom: 0; }

/* ------------------------------ Forms ---------------------------------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
}

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 700; color: var(--ink); }
.field label .req { color: #D64545; }
.field small { font-size: .78rem; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--saffron);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, .13);
}
.field input[type="file"] { padding: 10px; background: var(--bg); }

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: .89rem;
  transition: all .2s ease;
}
.radio-row input { accent-color: var(--saffron); }
.radio-row label:has(input:checked) { border-color: var(--saffron); background: var(--saffron-050); color: var(--saffron-dark); }

.alert {
  border-radius: 14px;
  padding: 15px 20px;
  font-size: .93rem;
  font-weight: 600;
  margin-bottom: 22px;
  border: 1px solid transparent;
}
.alert-success { background: var(--green-050); color: #146B47; border-color: #BFE5D4; }
.alert-error { background: #FDECEC; color: #B33636; border-color: #F6CFCF; }
.alert-info { background: var(--navy-050); color: var(--navy-800); border-color: #D3E0F4; }

/* ------------------------------ Info list ------------------------------ */
.info-list { display: grid; gap: 16px; }
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.info-item .ic {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--saffron-050);
  color: var(--saffron-dark);
}
.info-item strong { display: block; color: var(--ink); font-size: .95rem; margin-bottom: 3px; }
.info-item span, .info-item a { font-size: .93rem; color: var(--body); }

/* ------------------------------ Bank / donate -------------------------- */
.bank-box {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #C9D6EA;
  border-radius: var(--radius-lg);
  padding: 30px;
}
.bank-box h3 { color: #fff; }
.bank-row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(255, 255, 255, .16); font-size: .93rem; }
.bank-row:last-child { border-bottom: 0; }
.bank-row strong { color: #fff; text-align: right; word-break: break-word; }

.amount-row { display: flex; flex-wrap: wrap; gap: 10px; }
.amount-row label {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 20px;
  font-weight: 700;
  cursor: pointer;
  font-size: .95rem;
  transition: all .2s ease;
}
.amount-row input { display: none; }
.amount-row label:has(input:checked) { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

/* ------------------------------ Downloads ------------------------------ */
.dl-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.dl-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.dl-icon {
  width: 52px; height: 52px; flex: none;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--navy-050);
  color: var(--navy-700);
}
.dl-item .txt { flex: 1; min-width: 0; }
.dl-item strong { display: block; color: var(--ink); }
.dl-item p { font-size: .88rem; margin: 4px 0 0; }

/* ------------------------------ Timeline ------------------------------- */
.timeline { position: relative; padding-left: 34px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--saffron), var(--navy-500));
}
.timeline-item { position: relative; margin-bottom: 30px; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px; top: 6px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--saffron);
}
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { font-size: .94rem; margin-bottom: 0; }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--navy-900); color: #A9BBD6; padding-top: 68px; }
.site-footer h4 {
  color: #fff;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 34px; height: 3px;
  border-radius: 3px;
  background: var(--saffron);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 52px; }
.site-footer a { color: #A9BBD6; font-size: .93rem; }
.site-footer a:hover { color: var(--saffron-light); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-links li { margin: 0; }
.footer-links a { display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: "›"; color: var(--saffron); font-size: 1.1rem; line-height: 1; }

.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.footer-brand img { width: 58px; height: 58px; border-radius: 50%; background: #fff; padding: 2px; }
.footer-brand .brand-name { color: #fff; }
.site-footer p { font-size: .93rem; }

.socials-lg { display: flex; gap: 10px; margin-top: 20px; }
.socials-lg a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: all .25s ease;
}
.socials-lg a:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; transform: translateY(-3px); }

.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-family: var(--sans);
  font-size: .9rem;
}
.newsletter input::placeholder { color: #8298B8; }
.newsletter input:focus { outline: none; border-color: var(--saffron); }
.newsletter button {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  background: var(--saffron);
  color: #fff;
  font-weight: 700;
  font-family: var(--sans);
  cursor: pointer;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--saffron-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  font-size: .87rem;
}

/* ------------------------------ Floating actions ----------------------- */
.float-actions { position: fixed; right: 18px; bottom: 18px; z-index: 800; display: grid; gap: 10px; }
.float-actions a, .float-actions button {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 0;
  cursor: pointer;
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.float-actions a:hover, .float-actions button:hover { transform: translateY(-3px); color: #fff; }
.fa-whatsapp { background: #25D366; }
.fa-donate { background: linear-gradient(135deg, var(--saffron), var(--saffron-dark)); }
.fa-top { background: var(--navy-800); opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .25s ease; }
.fa-top.show { opacity: 1; pointer-events: auto; }

/* ------------------------------ Utilities ------------------------------ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 26px; }
.pill {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--navy-050);
  color: var(--navy-700);
}
.pill-warn { background: var(--saffron-050); color: var(--saffron-dark); }
.pill-ok { background: var(--green-050); color: var(--green); }

.empty-state {
  text-align: center;
  padding: 60px 24px;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: #fff;
}

.article-body { font-size: 1.02rem; }
.article-body h2, .article-body h3 { margin-top: 1.4em; }
.article-body img { border-radius: var(--radius); margin-block: 1.4em; }

.side-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-bottom: 24px;
}
.side-box h4 { font-family: var(--sans); font-size: 1rem; letter-spacing: .02em; margin-bottom: 16px; }

.mini-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.mini-list li { margin: 0; display: flex; gap: 13px; align-items: flex-start; }
.mini-list img { width: 68px; height: 56px; object-fit: cover; border-radius: 10px; flex: none; }
.mini-list strong { font-size: .92rem; display: block; line-height: 1.4; }
.mini-list span { font-size: .78rem; color: var(--muted); }

/* Scroll reveal — only hidden when JavaScript is available, so the content
   is always readable if a script fails to load. */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg img { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------ Responsive ----------------------------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .btn-row { justify-content: center; }
}

@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .nav-cta .btn { display: none; }

  /* backdrop-filter would make the header a containing block for the
     fixed drawer, so it is dropped at mobile sizes. */
  .site-header { backdrop-filter: none; background: #fff; z-index: 1000; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(330px, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 92px 22px 30px;
    box-shadow: -18px 0 60px rgba(6, 27, 62, .18);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .34s cubic-bezier(.4, 0, .2, 1), visibility .34s;
    overflow-y: auto;
    z-index: 5;
  }
  .nav-links.open { transform: none; visibility: visible; }
  .nav-links a { padding: 13px 14px; font-size: .98rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a.active::after { display: none; }
  .nav-links .mobile-cta { display: block; margin-top: 18px; }
  .nav-links .mobile-cta .btn { width: 100%; justify-content: center; }

  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(6, 27, 62, .5);
    backdrop-filter: blur(2px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    z-index: 4;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }

  .about-media .img-sm { position: static; width: 100%; margin-top: 16px; border-width: 0; }
  .about-badge { left: 12px; top: 12px; }
}

@media (max-width: 760px) {
  body { font-size: 15.5px; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar-list { justify-content: center; }
  .brand img { width: 46px; height: 46px; }
  .brand-name { font-size: 1.05rem; }
  .brand-sub { font-size: .6rem; letter-spacing: .12em; }
  .hero { min-height: auto; }
  .hero-inner { padding-block: 84px 96px; }
  .grid { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .bank-row { flex-direction: column; gap: 2px; }
  .bank-row strong { text-align: left; }
  .float-actions { right: 12px; bottom: 12px; }
  .float-actions a, .float-actions button { width: 46px; height: 46px; }
  .timeline { padding-left: 28px; }
}

@media (max-width: 420px) {
  .container { padding-inline: 16px; }
  .btn { padding: 12px 22px; font-size: .88rem; }
  .btn-row { gap: 10px; }
  .btn-row .btn { flex: 1 1 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item { aspect-ratio: 1 / 1; }
}

@media print {
  .site-header, .topbar, .site-footer, .float-actions, .btn { display: none !important; }
}
