/* crime control unit — full-page modern layout */
:root {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --ink: #0b1220;
  --muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --accent: #0369a1;
  --accent-light: #0ea5e9;
  --glow: rgba(14, 165, 233, 0.25);
  --nav-h: 72px;
  --shell: min(1200px, calc(100% - 3rem));
  --radius: 20px;
  --radius-sm: 14px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --shadow: 0 24px 64px rgba(15, 23, 42, 0.1);
  --shadow-soft: 0 8px 32px rgba(15, 23, 42, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  padding-top: var(--nav-h);
}

body.is-home {
  padding-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-light);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 10000;
  padding: 0.65rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
}

.skip-link:focus {
  left: 12px;
}

/* —— Header —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header--floating {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: none;
}

.site-header--floating.site-header--scrolled,
.site-header--solid {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.site-header--floating:not(.site-header--scrolled) .brand-name,
.site-header--floating:not(.site-header--scrolled) .nav-primary a {
  color: #f1f5f9;
}

.site-header--floating:not(.site-header--scrolled) .nav-primary a:hover,
.site-header--floating:not(.site-header--scrolled) .nav-primary a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.site-header--floating:not(.site-header--scrolled) .brand-img {
  border-color: rgba(255, 255, 255, 0.2);
}

.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.brand-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
}

.site-header--floating:not(.site-header--scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-primary a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-primary a:hover,
.nav-primary a.is-active {
  background: rgba(3, 105, 161, 0.1);
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
  color: #fff;
  box-shadow: 0 10px 28px var(--glow);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 14px 36px var(--glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: #cbd5e1;
  color: var(--ink);
}

.hero-full .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.hero-full .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

main {
  min-height: 100vh;
}

#page-root.page-stack {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* —— Home: full-viewport hero —— */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-full__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-full__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(5, 12, 24, 0.88) 0%,
    rgba(8, 47, 73, 0.72) 45%,
    rgba(14, 116, 144, 0.45) 100%
  );
}

.hero-full__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 85%);
  pointer-events: none;
}

.hero-full__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3.75rem) 0 4.75rem;
}

.hero-full__wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 0 clamp(0.5rem, 2.2vw, 1.4rem);
}

.hero-full__panel {
  padding: clamp(1.2rem, 2.2vw, 2rem) clamp(0.5rem, 1.2vw, 1rem);
  border-radius: var(--radius);
  background: rgba(5, 12, 24, 0.28);
  backdrop-filter: blur(2px);
}

.hero-full h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 4.8vw, 3.35rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: #fff;
}

.hero-full .lead {
  margin: 0 0 2rem;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.88);
  max-width: 38ch;
}

.hero-full .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-full__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  margin: clamp(0.25rem, 1vw, 0.75rem);
}

.hero-full__card img {
  width: 100%;
  height: min(420px, 48vh);
  object-fit: cover;
}

.hero-full__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 12, 24, 0.55), transparent 45%);
  pointer-events: none;
}

/* —— Home gallery —— */
.home-gallery-band {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.home-gallery__head {
  margin-bottom: 1.75rem;
  text-align: center;
}

.home-gallery__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.home-gallery__lead {
  margin: 0 auto;
  max-width: 52ch;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Home slideshow (auto gallery — similar feel to NGO hero rotators e.g. nityango.org) */
.home-slideshow {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.home-slideshow__viewport {
  position: relative;
  aspect-ratio: 16 / 8;
  min-height: 220px;
  background: #0b1220;
}

@media (max-width: 640px) {
  .home-slideshow__viewport {
    aspect-ratio: 4 / 3;
  }
}

.home-slideshow__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s;
}

.home-slideshow__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .home-slideshow__slide {
    transition: none;
  }
}

.home-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-slideshow__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.25rem 1.5rem 2.75rem;
  background: linear-gradient(to top, rgba(5, 12, 24, 0.88) 0%, transparent 100%);
  pointer-events: none;
}

.home-slideshow__cap-text {
  margin: 0;
  max-width: 40ch;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.home-slideshow__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: background 0.2s, transform 0.2s;
}

.home-slideshow__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.home-slideshow__prev {
  left: 12px;
}

.home-slideshow__next {
  right: 12px;
}

.home-slideshow__prev::after,
.home-slideshow__next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
}

.home-slideshow__prev::after {
  transform: rotate(135deg);
  margin-left: 4px;
}

.home-slideshow__next::after {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.home-slideshow__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
}

.home-slideshow__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.home-slideshow__dot:hover {
  background: rgba(255, 255, 255, 0.45);
}

.home-slideshow__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* —— Inner pages: full-bleed hero band —— */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: calc(3.5rem) 0 1.5rem;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1220 0%, #0c4a6e 42%, #0369a1 100%);
}

.page-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.page-hero .lead {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(226, 232, 240, 0.85);
  max-width: 48ch;
}

/* —— Content bands —— */
.band {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.band--alt {
  background: var(--surface-2);
}

.band--surface {
  background: var(--surface);
}

.about-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.about-modern figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-modern img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.prose-modern p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

.prose-modern p:last-child {
  margin-bottom: 0;
}

/* Members */
.member-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.member-card-modern {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.member-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.member-card-modern img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.member-card-modern h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.member-card-modern p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Events */
.event-grid-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.event-card-modern {
  display: grid;
  grid-template-columns: minmax(160px, 260px) 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  align-items: stretch;
}

.event-card-modern img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.event-card-modern__body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-meta-modern {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.event-card-modern h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.event-desc-modern {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Contact & forms */
.contact-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card-modern {
  background: var(--surface);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.card-modern h2 {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.card-modern p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-modern p strong {
  color: var(--ink);
}

.card-modern--center {
  text-align: center;
}

.qr-modern {
  border-radius: var(--radius-sm);
  margin: 0.5rem auto 0;
  box-shadow: var(--shadow-soft);
}

.donate-grid-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.donate-dl-modern {
  margin: 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.65rem 1rem;
  font-size: 0.95rem;
}

.donate-dl-modern dt {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.donate-dl-modern dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.field-modern {
  margin-bottom: 1rem;
}

.field-modern label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.field-modern input,
.field-modern textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field-modern input:focus,
.field-modern textarea:focus {
  outline: none;
  border-color: rgba(3, 105, 161, 0.45);
  box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.12);
}

.field-modern textarea {
  min-height: 120px;
  resize: vertical;
}

.form-narrow {
  max-width: 560px;
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #0b1220 0%, #05080f 100%);
  color: #94a3b8;
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  text-align: left;
  align-items: start;
}

.footer-col--brand {
  text-align: left;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.footer-tagline {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.45;
}

.footer-meta {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
}

.footer-addr {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #94a3b8;
}

.footer-addr a,
.footer-meta a {
  color: #cbd5e1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-addr a:hover,
.footer-meta a:hover {
  color: #fff;
}

.footer-col h3 {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
}

.footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: #cbd5e1;
}

.footer-contact-list li {
  margin-bottom: 0.5rem;
}

.footer-contact-list a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer-contact-list a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.95rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(3, 105, 161, 0.4);
  transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: #fff;
  filter: brightness(1.06);
  box-shadow: 0 6px 22px rgba(3, 105, 161, 0.5);
  transform: translateY(-1px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  grid-column: 1 / -1;
}

.error-banner {
  max-width: var(--shell);
  margin: 2rem auto;
  padding: 1.25rem;
  background: #fef2f2;
  color: #7f1d1d;
  border-radius: var(--radius-sm);
  border: 1px solid #fecaca;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col--brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-primary {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0.15rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
  }

  .site-header--floating:not(.site-header--scrolled) .nav-primary a {
    color: var(--ink);
  }

  .site-header--floating:not(.site-header--scrolled) .nav-primary a:hover,
  .site-header--floating:not(.site-header--scrolled) .nav-primary a.is-active {
    background: rgba(3, 105, 161, 0.1);
    color: var(--accent);
  }

  .site-header.is-open .nav-primary {
    display: flex;
  }

  .hero-full__wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 0.35rem;
  }

  .hero-full__panel {
    padding: 1rem 0.85rem;
  }

  .hero-full__card {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-full__card img {
    height: 260px;
  }

  .about-modern,
  .contact-grid-modern,
  .donate-grid-modern,
  .event-card-modern {
    grid-template-columns: 1fr;
  }

  .event-card-modern img {
    min-height: 200px;
  }
}

/* —— NGO website additions —— */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.site-header--floating:not(.site-header--scrolled) .lang-switch {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-switch__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
}

.site-header--floating:not(.site-header--scrolled) .lang-switch__btn {
  color: #f1f5f9;
}

.lang-switch__btn[aria-pressed="true"] {
  background: rgba(3, 105, 161, 0.12);
  color: var(--accent);
}

.site-header--floating:not(.site-header--scrolled) .lang-switch__btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.section-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-title-row h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.card-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}

.info-card-modern {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.info-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.info-card-modern img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.info-card-modern__body {
  padding: 1rem 1.1rem 1.15rem;
}

.info-card-modern__body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.info-card-modern__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pill-list-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list-modern li {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
}

.home-page-space {
  margin-bottom: 1.25rem;
}

.home-placeholder-media {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.home-placeholder-media img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.section-dummy-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin: 0 0 1rem;
}
