:root {
  --green-950: #07261c;
  --green-900: #0d3d2c;
  --green-800: #145a3c;
  --green-700: #1b6e49;
  --green-100: #e4f3eb;
  --green-50: #f3faf6;
  --terra: #e30613;
  --terra-dark: #b80510;
  --terra-soft: #fde8e8;
  --btn-red: #e30613;
  --btn-red-dark: #b80510;
  --gold: #d4a24a;
  --cream: #fbf6ef;
  --paper: #fffdf9;
  --ink: #1c1612;
  --muted: #5e534c;
  --line: #eadfd3;
  --surface: #fffdf9;
  --surface-muted: #f3faf6;
  --space-1: 0.35rem;
  --space-2: 0.7rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2.25rem;
  --space-6: 3.5rem;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius: var(--radius-md);
  --shadow-sm: 0 4px 14px rgba(28, 22, 18, 0.05);
  --shadow: 0 12px 36px rgba(28, 22, 18, 0.08);
  --shadow-lg: 0 20px 48px rgba(7, 38, 28, 0.12);
  --latin: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --bangla: "Noto Serif Bengali", "Hind Siliguri", ui-serif, Georgia, serif;
  --display: "Noto Serif Bengali", "Source Sans 3", "Hind Siliguri", ui-serif, Georgia, serif;
  --text-sm: 0.92rem;
  --text-md: 1.05rem;
  --text-lg: clamp(1.15rem, 2.2vw, 1.35rem);
  --text-display: clamp(1.75rem, 4vw, 2.55rem);
  --btn-radius: 14px;
  --field-radius: 14px;
  --focus-ring: 0 0 0 3px rgba(27, 110, 73, 0.2);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--latin), var(--bangla);
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

:lang(bn) { font-family: var(--latin), var(--bangla); }

.latin,
input[type="email"],
input[type="url"],
input[type="tel"],
.brand-text strong,
.chapter-en,
.event-day,
.btn-facebook-group,
.social-facebook,
.auth-aside-kicker,
.newsletter-form input[type="email"],
.chapter-en,
.auth-aside-kicker,
.stat b,
.news-date,
.news-cat,
.event-day,
.event-month,
.badge,
.map-pin-label {
  font-family: var(--latin), var(--bangla);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-800); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--terra); }
h1, h2, h3, h4 {
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 0.55em;
  color: var(--green-950);
  letter-spacing: 0;
  font-family: var(--display), var(--bangla);
}
h1 { font-size: var(--text-display); font-weight: 700; }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.28rem); font-weight: 600; }
p { margin: 0 0 1em; }

.container {
  width: min(1120px, calc(100% - 1.6rem));
  margin-inline: auto;
}
.stack { display: grid; gap: var(--space-3); }
.stack-lg { display: grid; gap: var(--space-4); }
.mt-1 { margin-top: var(--space-2); }
.mt-2 { margin-top: var(--space-3); }
.mt-3 { margin-top: var(--space-4); }
.mt-4 { margin-top: var(--space-5); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.svg-filter-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--green-900);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { top: 0.5rem; color: #fff; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: calc(0.7rem + env(safe-area-inset-top, 0px)) 0 0.35rem;
  pointer-events: none;
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    backdrop-filter 0.35s ease;
}
.site-header.is-scrolled {
  padding: env(safe-area-inset-top, 0px) 0 0;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  box-shadow:
    0 1px 0 rgba(234, 223, 211, 0.9),
    0 12px 32px rgba(7, 38, 28, 0.08);
}
.site-header.is-scrolled::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--terra) 0%, var(--gold) 42%, var(--green-700) 100%);
  opacity: 0.9;
  pointer-events: none;
}
.site-header .container,
.site-header .header-shell,
.site-header .header-bar,
.site-header .nav-toggle,
.site-header .site-nav,
.site-header a,
.site-header button {
  pointer-events: auto;
}
.site-header .container {
  transition: width 0.35s ease, max-width 0.35s ease, padding 0.35s ease;
}
.site-header.is-scrolled .container {
  width: 100%;
  max-width: none;
  padding-inline: clamp(0.85rem, 3vw, 1.75rem);
}
body {
  padding-top: 0;
}
body .flash-wrap {
  position: relative;
  z-index: 180;
  width: min(1120px, calc(100% - 2rem));
  margin: calc(5.4rem + env(safe-area-inset-top, 0px)) auto 0;
  padding-top: 0;
  pointer-events: none;
}
body .flash-wrap .flash {
  pointer-events: auto;
  box-shadow: var(--shadow);
}
body.is-home .flash-wrap {
  position: fixed;
  top: calc(5.15rem + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.is-home .hero-inner {
  /* header clear + comfortable laptop gap */
  padding-top: calc(7.85rem + env(safe-area-inset-top, 0px));
}
.header-shell {
  position: relative;
}
.header-bar,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  min-height: 4.4rem;
  padding: 0.45rem 0.85rem 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgba(7, 38, 28, 0.1);
  transition:
    border-radius 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease,
    min-height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .site-header,
  .header-bar,
  .header-inner,
  .brand-logo {
    transition: none !important;
  }
}
.site-header.is-scrolled .header-bar,
.site-header.is-scrolled .header-inner {
  border-radius: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  min-height: 4.15rem;
  padding: 0.35rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.brand:hover { color: inherit; opacity: 0.94; }
.brand-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
  object-position: left center;
  transition: height 0.35s ease, max-width 0.35s ease;
}
.site-header.is-scrolled .brand-logo {
  height: 44px;
  max-width: min(190px, 48vw);
}
.brand-logo-footer {
  height: 60px;
  max-width: 210px;
  background: #fff;
  border-radius: 15px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  object-fit: contain;
}
.brand-footer {
  display: inline-flex;
  margin-bottom: 0.85rem;
}
.site-footer .brand-footer {
  text-decoration: none;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text strong {
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--green-900);
}
.brand-text span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff8ef;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 230;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] {
  background: #fff;
  border-color: rgba(20, 90, 60, 0.28);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  display: none;
}

.nav-drawer-head {
  display: none;
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  background: rgba(255, 253, 249, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 18px;
  padding: 0.85rem 1rem 1.1rem;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 16px 40px rgba(7, 38, 28, 0.12);
  max-height: min(70vh, calc(100dvh - 5.5rem));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.site-nav.is-open { display: flex; }
.site-nav a {
  text-decoration: none;
  color: var(--ink);
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  font-family: var(--latin), var(--bangla);
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a.is-active,
.site-nav a:hover { background: var(--green-50); color: var(--green-800); }
.site-header.is-scrolled .site-nav a.is-active {
  background: rgba(20, 90, 60, 0.1);
  color: var(--green-900);
  font-weight: 600;
}
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary.is-active {
  background: var(--btn-red);
  color: #fff !important;
}
.site-nav a.btn-primary:hover {
  background: var(--btn-red-dark) !important;
  color: #fff !important;
}
.nav-cta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--line);
}
.header-icon-btn {
  width: 40px;
  min-width: 40px;
  padding: 0;
  border-radius: 12px;
  background: #f8e8c8;
  border: 0;
  color: var(--green-950);
}
.header-icon-btn:hover {
  background: #f3d9a8;
  color: var(--green-950);
}
.site-header .btn-primary,
.site-header .btn-accent,
.site-header .nav-cta .btn-primary,
.site-header .nav-cta .btn-accent {
  color: #fff !important;
  background: var(--btn-red);
}
.site-header .btn-primary:hover,
.site-header .btn-accent:hover,
.site-header .nav-cta .btn-primary:hover,
.site-header .nav-cta .btn-accent:hover,
.site-nav .btn-primary:hover,
.site-nav .btn-accent:hover {
  background: var(--btn-red-dark) !important;
  color: #fff !important;
  border-color: transparent;
}
.site-nav a.btn-primary:hover,
.site-nav a.btn-accent:hover {
  background: var(--btn-red-dark) !important;
  color: #fff !important;
}
.site-nav a.btn-accent:hover {
  background: var(--btn-red-dark) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--btn-radius);
  padding: 0.82rem 1.55rem;
  font-family: var(--latin), var(--bangla);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  min-height: 48px;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset, 0 6px 16px rgba(28, 22, 18, 0.08);
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}
.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16) inset, 0 12px 26px rgba(28, 22, 18, 0.14);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(28, 22, 18, 0.1);
}
.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 8px 20px rgba(28, 22, 18, 0.12);
}
.btn-primary,
.btn-accent {
  background: linear-gradient(180deg, #ef1a26 0%, var(--btn-red) 55%, var(--btn-red-dark) 100%);
  color: #fff;
  border: 1px solid rgba(140, 4, 10, 0.35);
}
.btn-primary:hover,
.btn-accent:hover {
  background: linear-gradient(180deg, #f02834 0%, var(--btn-red-dark) 100%);
  color: #fff;
  filter: brightness(1.03);
}
.btn-ghost {
  background: rgba(255, 253, 249, 0.72);
  color: var(--btn-red);
  border: 1.5px solid rgba(227, 6, 19, 0.42);
  box-shadow: 0 4px 14px rgba(227, 6, 19, 0.06);
}
.btn-ghost:hover {
  background: rgba(227, 6, 19, 0.08);
  color: var(--btn-red-dark);
  border-color: var(--btn-red);
}
.btn-light {
  background: #fff;
  color: var(--btn-red-dark);
  border: 1px solid rgba(234, 223, 211, 0.95);
  box-shadow: 0 6px 18px rgba(28, 22, 18, 0.08);
}
.btn-light:hover {
  background: #fff8f8;
  color: var(--btn-red-dark);
  border-color: rgba(227, 6, 19, 0.28);
}
.btn-danger {
  background: linear-gradient(180deg, #b33a3a, #9b2c2c);
  color: #fff;
  border: 1px solid rgba(90, 20, 20, 0.3);
}
.btn-sm {
  padding: 0.42rem 1rem;
  min-height: 38px;
  font-size: 0.94rem;
  border-radius: 11px;
  box-shadow: 0 3px 10px rgba(28, 22, 18, 0.06);
}
.btn-icon {
  flex-shrink: 0;
  display: block;
}

.kicker-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.kicker-icon svg {
  flex-shrink: 0;
  color: currentColor;
}

.media-frame {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(234, 223, 211, 0.95);
  box-shadow: 0 16px 40px rgba(7, 38, 28, 0.1);
  background: var(--green-50);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
}
.media-frame-sm img { aspect-ratio: 4 / 3; max-height: 220px; }
.media-frame-wide {
  margin-bottom: 1.2rem;
}
.media-frame-wide img { aspect-ratio: 16 / 9; max-height: 280px; }

.network-banner {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(20, 90, 60, 0.18);
  box-shadow: 0 20px 48px rgba(7, 38, 28, 0.14);
  min-height: 200px;
  background: #062419;
}
.network-banner img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  max-height: 340px;
  object-fit: cover;
  display: block;
}
.network-banner-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 1.3rem 1.25rem;
  background: linear-gradient(180deg, transparent, rgba(4, 22, 15, 0.88));
  color: #f7f1e8;
}
.network-banner-kicker {
  margin: 0 0 0.25rem;
  color: #f0c56d;
  font-weight: 700;
  font-size: 1.05rem;
}
.network-banner-copy p:last-child {
  margin: 0;
  color: #e8dfd2;
  max-width: 36rem;
}

.who-media-col {
  display: grid;
  gap: 1rem;
}

.section-media-head {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  justify-items: center;
  text-align: center;
}
.section-media-head .media-frame {
  width: min(100%, 420px);
}
.section-media-head .section-head {
  margin-bottom: 0;
  width: 100%;
}

.section-intro-media {
  margin-bottom: 1.2rem;
}

.why-layout {
  display: grid;
  gap: 1.4rem;
}
.why-side-media {
  order: -1;
}
.why-main .section-head { margin-bottom: 1.1rem; }

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #062419;
  color: #fbf6ef;
  padding: 0 0 3.5rem;
  min-height: min(82vh, 42rem);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  display: block;
  pointer-events: none;
  background: #062419;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-map,
.hero-fx,
.hero::before {
  display: none !important;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(6, 36, 25, 0.72) 0%,
      rgba(6, 36, 25, 0.78) 28%,
      rgba(6, 36, 25, 0.82) 50%,
      rgba(6, 36, 25, 0.78) 72%,
      rgba(6, 36, 25, 0.72) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 20, 14, 0.78) 0%,
      rgba(3, 20, 14, 0.62) 32%,
      rgba(3, 20, 14, 0.68) 68%,
      rgba(3, 20, 14, 0.85) 100%
    );
}
.hero .container { position: relative; z-index: 1; }
.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 42rem;
  margin-inline: auto;
  padding-top: 2.15rem;
  padding-bottom: 1.5rem;
  gap: 0;
}
.hero-lottie {
  display: none !important;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(240, 197, 109, 0.45);
  padding: 0.42rem 1rem 0.42rem 0.75rem;
  border-radius: 999px;
  font-family: var(--display), var(--bangla);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1.15rem;
  color: #fff8ec;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: hero-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}
.hero-kicker-icon {
  flex-shrink: 0;
  color: #f0c56d;
}
.hero h1 {
  color: #fff;
  font-family: var(--display), var(--bangla);
  font-size: clamp(2.05rem, 5.8vw, 3.4rem);
  font-weight: 700;
  max-width: 18ch;
  margin: 0 auto 0.45rem;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: hero-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
  letter-spacing: -0.01em;
  line-height: 1.22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.hero-title-bn {
  display: block;
}
.hero-title-en {
  display: block;
  font-family: var(--latin), system-ui, sans-serif;
  font-size: clamp(0.95rem, 2.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.35;
  color: #f0c56d;
  text-transform: none;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  max-width: 16em;
}
.hero-rule {
  width: 3.25rem;
  height: 2px;
  margin: 0.55rem auto 1rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #f0c56d, transparent);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  animation: hero-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards;
}
.hero .lede {
  max-width: 30rem;
  margin: 0 auto;
  color: rgba(255, 248, 238, 0.94);
  font-family: var(--bangla), var(--latin);
  font-size: clamp(1.04rem, 2vw, 1.16rem);
  font-weight: 500;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: hero-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.65rem;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: hero-rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}
.hero-actions .btn {
  min-width: 11.5rem;
  gap: 0.55rem;
  padding-inline: 1.45rem;
  border-radius: 15px;
  font-size: 1.04rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.hero-actions .btn-accent,
.hero-actions .btn-primary {
  background: linear-gradient(180deg, #ef1a26 0%, var(--btn-red) 55%, var(--btn-red-dark) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-actions .btn-accent:hover,
.hero-actions .btn-primary:hover {
  background: linear-gradient(180deg, #f02834 0%, var(--btn-red-dark) 100%);
  color: #fff;
}
.hero-actions .btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
.hero-actions .btn-light:hover {
  background: var(--btn-red);
  border-color: var(--btn-red);
  color: #fff;
}
.hero-actions .btn-icon {
  flex-shrink: 0;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-map-drift {
  from { transform: translate3d(-2.2%, -1.4%, 0) scale(1.05); }
  to { transform: translate3d(2.2%, 1.4%, 0) scale(1.12); }
}

@keyframes hero-nodes-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-map,
  .hero-fx,
  .hero::before,
  .hero-lottie,
  .hero-kicker,
  .hero h1,
  .hero-rule,
  .hero .lede,
  .hero-actions {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .hero-photo { opacity: 1; }
}

.section { padding: var(--space-6) 0; }
.section-tight { padding-top: 0; }
.section-alt {
  background:
    linear-gradient(180deg, rgba(243, 250, 246, 0.85), rgba(251, 246, 239, 0.4) 55%, var(--cream));
}
.section-values {
  background:
    linear-gradient(180deg, rgba(243, 250, 246, 0.7), transparent 40%),
    var(--cream);
}
.section-why {
  background:
    radial-gradient(circle at 12% 0%, rgba(32, 148, 139, 0.1), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(212, 162, 74, 0.12), transparent 30%),
    linear-gradient(180deg, #f4f7f5, var(--cream));
}
.section-news {
  background:
    radial-gradient(ellipse 70% 35% at 100% 8%, rgba(227, 6, 19, 0.06), transparent 48%),
    radial-gradient(ellipse 55% 30% at 0% 100%, rgba(20, 90, 60, 0.05), transparent 42%),
    linear-gradient(180deg, #f6f2ec 0%, #fffdf9 45%, #f3f6f4 100%);
  position: relative;
}
.section-after-hero {
  padding-top: var(--space-5);
}
.section-news.section-after-ticker {
  padding-top: 0;
}
.section-news.section-after-ticker > .container {
  padding-top: var(--space-5);
}
.section-news::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(rgba(28, 22, 18, 0.04) 1px, transparent 1.2px);
  background-size: 16px 16px;
}
.section-news > .container {
  position: relative;
  z-index: 1;
  padding-top: var(--space-5);
}
.section-news .section-head-center {
  margin-bottom: 1.75rem;
}
.section-news .section-head-center h2 {
  position: relative;
  padding-bottom: 0.65rem;
  color: var(--ink);
  line-height: 1.35;
}
.section-news .section-head-center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.4rem;
  height: 3px;
  margin-left: -1.7rem;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--green-700));
  border-radius: 2px;
}
.section-news .news-section-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 34rem;
}
.section-chapters {
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 162, 74, 0.1), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(20, 90, 60, 0.08), transparent 30%),
    #f7f3ec;
}
.section-chapters .section-head-center {
  margin-bottom: 1.65rem;
}
.section-chapters .section-head-center h2 {
  position: relative;
  padding-bottom: 0.7rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  color: var(--green-950);
  letter-spacing: -0.015em;
}
.section-chapters .section-head-center h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.6rem;
  height: 3px;
  margin-left: -1.8rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--green-700));
}
.section-chapters .section-head-center p {
  max-width: 34rem;
  margin-top: 0.55rem;
}
.section-chapters .btn-view-all {
  margin-top: 0.5rem;
  min-height: 46px;
  padding-inline: 1.45rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  gap: 0.35rem;
  background: linear-gradient(145deg, #f01824 0%, var(--terra) 48%, var(--terra-dark) 100%);
  border: 1px solid rgba(184, 5, 16, 0.35);
  color: #fff;
  box-shadow:
    0 12px 28px rgba(227, 6, 19, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.section-chapters .btn-view-all:hover {
  background: linear-gradient(145deg, #ff2a35 0%, #e30613 50%, #c40512 100%);
  border-color: rgba(184, 5, 16, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 16px 34px rgba(227, 6, 19, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.section-chapters .btn-view-all .btn-icon {
  transition: transform 0.2s ease;
}
.section-chapters .btn-view-all:hover .btn-icon {
  transform: translateX(2px);
}

.page-hero-chapters {
  min-height: clamp(11.5rem, 28vw, 15.5rem);
}
.page-hero-chapters::before {
  filter: saturate(0.95) brightness(0.72) contrast(1.05);
  background-position: center 42%;
}
.page-hero-chapters::after {
  background:
    linear-gradient(180deg, rgba(3, 16, 11, 0.58) 0%, rgba(3, 18, 12, 0.4) 48%, rgba(3, 14, 10, 0.72) 100%),
    radial-gradient(ellipse 65% 55% at 50% 52%, rgba(6, 36, 25, 0.18) 0%, rgba(3, 16, 11, 0.52) 100%);
}
.page-hero-chapters h1 {
  max-width: min(100%, 26rem);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.section-chapters-page {
  padding-top: var(--space-5);
}
.chapters-list-head {
  text-align: center;
  margin: 2.5rem 0 1.35rem;
}
.chapters-list-head .kicker {
  margin-bottom: 0.35rem;
}
.chapters-list-head h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
}
.chapters-list-head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3.2rem;
  height: 3px;
  margin-left: -1.6rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--green-700));
}


.chapter-explorer {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.chapter-map-panel {
  position: relative;
  display: flex;
  min-height: 300px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.chapter-flat-map {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  contain: paint;
  min-height: 300px;
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 1;
  box-shadow: 0 16px 40px rgba(7, 38, 28, 0.08);
}
.chapter-globe-map-panel {
  background:
    radial-gradient(ellipse 70% 55% at 50% 62%, rgba(18, 90, 92, 0.28), transparent 62%),
    linear-gradient(180deg, #0a3d42 0%, #05201f 55%, #031412 100%);
  border: 0;
  box-shadow: 0 24px 56px rgba(3, 20, 18, 0.35);
}
.chapter-globe-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.chapter-globe-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
  user-select: none;
}
.chapter-flat-bg {
  position: absolute;
  inset: 4% 2% 8%;
  z-index: 0;
  background-image: var(--flat-map);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0) saturate(100%) invert(67%) sepia(38%) saturate(612%) hue-rotate(166deg) brightness(1.05);
  opacity: 0.92;
  pointer-events: none;
}
.map-routes {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}
.map-routes path {
  fill: none;
  stroke: rgba(120, 220, 230, 0.22);
  stroke-width: 0.35;
  stroke-linecap: round;
  stroke-dasharray: 1.4 1.2;
}
.map-routes path.is-active {
  stroke: rgba(255, 90, 90, 0.8);
  stroke-width: 0.55;
}
.chapter-flat-pins,
.chapter-globe-pins {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.map-plane {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  color: #ff5a5a;
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.35));
  will-change: transform, opacity;
}
.map-plane.is-flying { opacity: 1; }
.map-plane-icon { display: block; position: relative; z-index: 1; }
.map-plane-trail {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.15rem;
  height: 2.4rem;
  margin: -0.2rem 0 0 -0.55rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 90, 90, 0), rgba(255, 90, 90, 0.5));
  transform: translateY(55%);
  opacity: 0.85;
}
.map-pin-drop {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -100%);
  transform-origin: center bottom;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  color: #e53935;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
  transition: transform 0.18s ease, filter 0.18s ease;
}
.map-pin-shape {
  position: relative;
  display: block;
  line-height: 0;
  width: 56px;
  height: 78px;
}
.map-pin-shape svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.map-pin-flag {
  position: absolute;
  left: 50%;
  top: 24px;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  background: #fff;
}
.map-pin-drop .map-pin-label {
  position: absolute;
  left: 50%;
  top: calc(100% + 0.25rem);
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-950);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.map-pin-drop:hover,
.map-pin-drop:focus-visible {
  transform: translate(-50%, -104%) scale(1.08);
  outline: none;
  z-index: 6;
}
.map-pin-drop:hover .map-pin-label,
.map-pin-drop:focus-visible .map-pin-label,
.map-pin-drop.is-active .map-pin-label { opacity: 1; }
.map-pin-drop.is-active {
  transform: translate(-50%, -108%) scale(1.12);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
  z-index: 5;
}
.map-pin-drop.is-hq .map-pin-shape::after {
  display: none;
}

.chapter-focus {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.chapter-focus.is-updating {
  transform: translateY(0);
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.1);
}
.chapter-focus.is-updating .chapter-focus-body,
.chapter-focus.is-updating .chapter-focus-flag {
  opacity: 0;
  transform: translateX(12px);
}
.chapter-focus-flag,
.chapter-focus-body {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.chapter-focus.is-sliding-in .chapter-focus-body,
.chapter-focus.is-sliding-in .chapter-focus-flag {
  animation: chapter-card-slide 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes chapter-card-slide {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
.chapter-focus-flag {
  position: relative;
  height: 42%;
  min-height: 160px;
  max-height: 220px;
  background: var(--green-50);
  overflow: hidden;
  flex-shrink: 0;
}
.chapter-focus-flag .flag-img,
.chapter-focus-flag img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flag-wave-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("../images/flag-wave-overlay.svg");
  background-repeat: repeat-x;
  background-size: 200% 100%;
  background-position: 0 50%;
  mix-blend-mode: soft-light;
  opacity: 0.7;
  animation: flag-wave-slide 3.4s linear infinite;
}
.chapter-focus.is-updating .flag-wave-layer {
  animation-play-state: paused;
}
@keyframes flag-wave-slide {
  from { background-position: 0% 50%; }
  to { background-position: -200% 50%; }
}
.chapter-focus-body {
  padding: 1.35rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.chapter-focus-body h3 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  color: var(--green-950);
}
.chapter-focus-body .chapter-en {
  margin: 0;
  color: var(--muted);
  font-family: var(--latin);
  font-size: 0.95rem;
}
.chapter-focus-desc {
  margin: 0.35rem 0 0.85rem;
  color: var(--muted);
  flex: 1;
}
.chapter-focus-body .btn {
  align-self: flex-start;
}
.chapter-focus-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: stretch;
  margin-top: auto;
  padding-top: 1.1rem;
}
.chapter-focus-actions .btn,
.chapter-focus-actions .btn-facebook-group,
.chapter-focus-actions [data-focus-facebook] .btn-facebook-group {
  margin-top: 0;
  width: 100%;
  justify-content: center;
}
.chapter-focus-actions [data-focus-facebook] {
  display: block;
  width: 100%;
  min-width: 0;
}
.chapter-focus-actions [data-focus-facebook]:empty {
  display: none;
}
.btn-facebook-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  min-height: 40px;
  max-width: 100%;
  box-sizing: border-box;
  border-radius: 6px;
  background: #1877f2;
  color: #fff !important;
  font-family: var(--latin);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-decoration: none !important;
  border: 1px solid #1877f2;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}
.btn-facebook-group span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.btn-facebook-group:hover {
  background: #166fe5;
  border-color: #166fe5;
  color: #fff !important;
  transform: none;
  box-shadow: none;
  filter: brightness(1.03);
}
.btn-facebook-group:active {
  background: #1464d8;
  border-color: #1464d8;
}
.btn-facebook-group svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.chapter-card-fb {
  margin: 0 1rem 1.05rem;
  justify-content: center;
  width: calc(100% - 2rem);
}
.chapter-fb-wrap { margin-top: 0.85rem; }
.chapter-fb-wrap .btn-facebook-group { width: 100%; justify-content: center; }
.badge.is-hidden,
.badge[hidden] { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .footer-texture::before { animation: none !important; }
  .chapter-focus-flag,
  .chapter-focus-body,
  .chapter-focus.is-sliding-in .chapter-focus-body,
  .chapter-focus.is-sliding-in .chapter-focus-flag {
    transition: none !important;
    animation: none !important;
  }
  .flag-wave-layer {
    animation: none !important;
    opacity: 0.35;
  }
}

@media (min-width: 860px) {
  .chapter-explorer {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 1.5rem;
    align-items: stretch;
  }
  .chapter-map-panel,
  .chapter-focus {
    min-height: 440px;
  }
  .chapter-flat-map {
    aspect-ratio: auto;
    min-height: 440px;
    height: 100%;
  }
  .chapter-globe-map-panel { min-height: 440px; }
  .chapter-focus-flag { height: 46%; min-height: 180px; max-height: 240px; }
  .map-pin-shape { width: 64px; height: 90px; }
  .map-pin-flag {
    top: 26px;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
  }
}

@media (max-width: 859px) {
  .chapter-flat-map {
    aspect-ratio: 4 / 3;
    min-height: 260px;
  }
  .chapter-flat-pins,
  .chapter-globe-pins {
    inset: 0 3% 0;
  }
  .map-pin-drop .map-pin-label {
    display: block;
    opacity: 0;
    white-space: normal;
    max-width: min(5.25rem, 28vw);
    text-align: center;
    line-height: 1.2;
    font-size: 0.64rem;
    padding: 0.14rem 0.35rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .map-pin-drop.is-active .map-pin-label,
  .map-pin-drop:focus-visible .map-pin-label {
    opacity: 1;
    font-size: 0.7rem;
    max-width: min(6rem, 32vw);
    font-weight: 700;
  }
  .map-pin-shape { width: 46px; height: 64px; }
  .map-pin-flag {
    top: 20px;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
  }
  .chapter-explorer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 1rem;
  }
  .chapter-map-panel,
  .chapter-focus {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .page-hero,
  .page-hero-news,
  .page-hero-about,
  .page-hero-chapters {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .page-hero > .container {
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }
  .page-hero h1 {
    margin-inline: auto;
    text-align: center;
  }
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.section-head-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
}
.section-head-center > div {
  max-width: 40rem;
  margin: 0 auto;
}
.section-head-center h2 {
  font-family: var(--display), var(--bangla);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.015em;
  color: var(--green-950);
  margin: 0 auto 0.4rem;
  line-height: 1.3;
}
.section-head-center .kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.section-head-center .link-more {
  margin-top: 0.15rem;
}
.section-head-center p {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 36rem;
}
.section-head p { margin: 0; color: var(--muted); max-width: 40rem; }
.kicker {
  color: var(--terra);
  font-family: var(--display), var(--bangla);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}
.link-more {
  font-weight: 600;
  text-decoration: none;
  color: var(--green-800);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s ease, gap 0.15s ease;
}
.link-more:hover {
  color: var(--terra);
  gap: 0.45rem;
}

.grid {
  display: grid;
  gap: var(--space-3);
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--surface);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card h3 { margin-bottom: 0.35rem; }
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}
.card-link:hover {
  border-color: rgba(20, 90, 60, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.card-meta { color: var(--muted); font-size: var(--text-sm); margin-bottom: 0.35rem; }
.info-panel {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: #f7f1e8;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow);
}
.info-panel h2,
.info-panel h3 { color: #fff; }
.info-panel p { color: #e8dfd2; }
.info-panel a { color: #f0c56d; }

.section-who {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 8% 20%, rgba(20, 90, 60, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 45% at 92% 80%, rgba(212, 162, 74, 0.12), transparent 50%),
    linear-gradient(180deg, #f3faf6 0%, #fbf6ef 48%, #fffdf9 100%);
}
.who-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(rgba(7, 38, 28, 0.045) 1px, transparent 1.2px);
  background-size: 20px 20px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
}
.who-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.who-copy .kicker {
  margin-bottom: 0.45rem;
}
.who-copy h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.35;
  max-width: 16ch;
  margin-bottom: 1rem;
  color: var(--green-950);
}
.who-prose {
  margin: 0 0 1.35rem;
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.85;
}
.who-prose p { margin-bottom: 0.85rem; }
.who-prose p:last-child { margin-bottom: 0; }
.who-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.65rem;
}
.who-points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  font-weight: 600;
  color: var(--green-900);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.85);
  border: 1px solid rgba(20, 90, 60, 0.1);
  box-shadow: 0 8px 20px rgba(7, 38, 28, 0.04);
}
.who-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(27, 110, 73, 0.14), rgba(212, 162, 74, 0.16));
  color: var(--green-800);
}
.who-point-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1b6e49, #d4a24a);
  box-shadow: 0 0 0 4px rgba(27, 110, 73, 0.12);
}
.who-aside {
  position: relative;
  display: grid;
  gap: 0;
}
.who-visual {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  box-shadow:
    0 24px 56px rgba(7, 38, 28, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset;
}
.who-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.who-aside:hover .who-visual img {
  transform: scale(1.06);
}
.who-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(7, 38, 28, 0.72) 100%),
    linear-gradient(90deg, rgba(7, 38, 28, 0.15), transparent 45%);
  pointer-events: none;
}
.who-float {
  position: relative;
  z-index: 2;
  margin: -4.5rem 1rem 0;
  padding: 1.25rem 1.3rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.14);
  animation: who-float-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.who-float-eyebrow {
  margin: 0 0 0.3rem;
  color: var(--terra);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--latin);
}
.who-float h3 {
  margin: 0 0 0.45rem;
  color: var(--green-950);
  font-size: 1.2rem;
  line-height: 1.35;
}
.who-float p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
@keyframes who-float-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 860px) {
  .who-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.75rem;
    align-items: center;
  }
  .who-visual {
    min-height: 420px;
  }
  .who-visual img {
    min-height: 420px;
  }
  .who-float {
    position: absolute;
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
    margin: 0;
    max-width: 20rem;
    padding: 1.35rem 1.4rem 1.45rem;
  }
  .who-copy h2 {
    max-width: 14ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-float { animation: none; }
  .who-aside:hover .who-visual img { transform: none; }
  .who-visual img { transition: none; }
}

.chapter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.chapter-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(28, 22, 18, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  height: 100%;
}
.chapter-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 90, 60, 0.32);
  box-shadow: 0 22px 48px rgba(7, 38, 28, 0.14);
  color: inherit;
  text-decoration: none;
}
.chapter-card-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
  min-height: 0;
}
.chapter-card-main:hover { color: inherit; text-decoration: none; }
.chapter-card.is-hq {
  border-color: rgba(234, 223, 211, 0.95);
  box-shadow: 0 14px 36px rgba(28, 22, 18, 0.07);
}
.chapter-flag {
  position: relative;
  width: 100%;
  height: 148px;
  display: block;
  overflow: hidden;
  background: var(--green-50);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex-shrink: 0;
}
.chapter-flag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 38, 28, 0.22));
  pointer-events: none;
  z-index: 1;
}
.chapter-flag .flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  display: block;
  transition: transform 0.35s ease;
}
.chapter-card:hover .chapter-flag .flag-img {
  transform: scale(1.04);
}
.flag-img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}
.flag-img-fallback {
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  width: 100%;
  height: 100%;
  min-height: 80px;
  background: var(--green-100);
}
.chapter-body {
  min-width: 0;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.chapter-body h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--green-950);
}
.chapter-en {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-family: var(--latin);
}
.chapter-desc {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: var(--text-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.chapter-body .badge {
  align-self: flex-start;
  margin: 0.15rem 0 0.35rem;
}
.chapter-cta {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 0.55rem;
  color: var(--green-800);
  font-weight: 700;
  font-size: 0.95rem;
  gap: 0.2rem;
  transition: gap 0.15s ease, color 0.15s ease;
}
.chapter-card:hover .chapter-cta {
  color: var(--terra);
  gap: 0.4rem;
}
.chapter-card .card-meta {
  display: none;
}
.chapter-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}
.chapter-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-950);
}
.chapter-strip-item .flag-img {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid rgba(7, 38, 28, 0.12);
  box-shadow: none;
  flex-shrink: 0;
}

.country-card {
  text-align: center;
  padding: 1.2rem 0.8rem 1.3rem;
}
.flag {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: var(--latin);
}
.badge {
  display: inline-block;
  background: var(--gold);
  color: var(--green-950);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}
.badge-soft { background: var(--green-100); color: var(--green-800); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.value-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 26px;
  padding: 1.55rem 1.4rem 1.5rem;
  box-shadow: 0 14px 36px rgba(28, 22, 18, 0.07);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.15rem;
  right: 1.15rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--green-700);
  opacity: 0.95;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(7, 38, 28, 0.14);
  border-color: rgba(20, 90, 60, 0.2);
}
.value-card h3 {
  margin-bottom: 0.45rem;
  color: var(--green-950);
  font-size: 1.12rem;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1.05rem;
  box-shadow: 0 8px 20px rgba(7, 38, 28, 0.08);
  transition: transform 0.25s ease;
}
.value-card:hover .value-icon {
  transform: scale(1.06);
}
.tone-green .value-icon { background: #e4f3eb; color: var(--green-800); }
.tone-terra .value-icon { background: #f8e4dc; color: var(--terra); }
.tone-gold .value-icon { background: #f8ecd4; color: #9a6f1d; }
.value-card.tone-green::before { background: var(--green-700); }
.value-card.tone-terra::before { background: var(--terra); }
.value-card.tone-gold::before { background: var(--gold); }
.about-value-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 55% at 100% 0%, rgba(20, 90, 60, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(212, 162, 74, 0.08), transparent 50%),
    linear-gradient(165deg, #ffffff 0%, #fbfaf6 100%);
  padding: 1.55rem 1.35rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(234, 223, 211, 0.95);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(28, 22, 18, 0.07);
}
.about-value-card:hover {
  border-color: rgba(20, 90, 60, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 48px rgba(7, 38, 28, 0.12);
}
.about-value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 0.95rem;
}
.about-value-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
  min-height: 1.4em;
}
.about-value-card p {
  font-size: 0.96rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.why-slider {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.why-viewport {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(7, 38, 28, 0.12);
  background: #fff;
  border: 1px solid rgba(234, 223, 211, 0.95);
}
.why-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.why-slide {
  flex: 0 0 100%;
  min-width: 100%;
}
.why-card {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.7rem 1.5rem 1.6rem;
  background-color: #fff;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.2) 55%, rgba(32, 148, 139, 0.08)),
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(20, 90, 60, 0.045) 28px),
    repeating-linear-gradient(90deg, transparent, transparent 27px, rgba(20, 90, 60, 0.045) 28px);
}
.why-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.why-quotemark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 0.7;
  color: #20948b;
  font-weight: 700;
}
.why-brand {
  text-align: right;
  line-height: 1.15;
}
.why-brand-logo {
  display: inline-block;
  height: 44px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  margin-left: auto;
}
.why-quote {
  margin: 0;
  color: var(--green-950);
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.7;
  max-width: 34rem;
}
.why-mark {
  background: #fff200;
  color: inherit;
  padding: 0.05em 0.18em;
  border-radius: 4px;
}
.why-meta {
  padding-top: 0.95rem;
  border-top: 2px solid #4aa3c7;
  max-width: 22rem;
}
.why-name {
  margin: 0;
  font-family: Georgia, "Times New Roman", var(--latin);
  font-weight: 700;
  color: var(--ink);
  font-size: 1.12rem;
}
.why-place {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", var(--latin);
  font-size: 0.95rem;
}
.why-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.why-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 90, 60, 0.22);
  background: #fff;
  color: var(--green-800);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.why-nav:hover {
  background: var(--green-50);
  border-color: var(--green-800);
  transform: translateY(-1px);
}
.why-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(20, 90, 60, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}
.why-dot.is-active {
  width: 28px;
  background: linear-gradient(90deg, #20948b, var(--green-700));
}

@media (min-width: 720px) {
  .why-card {
    min-height: 360px;
    padding: 2.1rem 2.2rem 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-track { transition: none; }
}

.news-grid,
.events-grid {
  display: grid;
  gap: 1rem;
}
.news-section-head {
  position: relative;
  z-index: 1;
  align-items: end;
}
.news-section-lead {
  margin: 0.35rem auto 0;
  color: var(--muted);
  max-width: 36rem;
}
.news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--terra);
  font-weight: 700;
}
.news-kicker svg { flex-shrink: 0; }
.news-all-link {
  align-self: center;
  color: var(--terra);
  font-weight: 700;
}
.news-all-link:hover { color: var(--terra-dark); }
.news-ticker {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: stretch;
  margin: 0;
  min-height: 2.85rem;
  background: #111;
  border: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.news-ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.05rem;
  background: linear-gradient(180deg, #f01822, #c40510);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--latin), var(--bangla);
  z-index: 3;
  box-shadow: 6px 0 14px rgba(0, 0, 0, 0.28);
  position: relative;
}
.news-ticker-label::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: #c40510;
  transform: rotate(45deg);
  z-index: -1;
}
.news-ticker-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
  animation: news-pulse 1.2s ease-in-out infinite;
}
.news-ticker-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #1a1a1a, #121212 40%, #1a1a1a);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.news-ticker-track {
  display: flex;
  width: max-content;
  animation: news-ticker-scroll 24s linear infinite;
}
.news-ticker:hover .news-ticker-track,
.news-ticker.is-paused .news-ticker-track {
  animation-play-state: paused;
}
.news-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.news-ticker-item {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0 0.35rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease, opacity 0.15s ease;
}
.news-ticker-item:hover {
  color: #ffd4d6;
  text-decoration: none;
  opacity: 0.92;
}
.news-ticker-dot {
  width: 5px;
  height: 5px;
  margin: 0 1.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
@keyframes news-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .news-ticker-track { animation: none; }
  .news-ticker-viewport { overflow-x: auto; }
  .news-ticker-track { width: auto; }
  .news-ticker-live { animation: none; }
}
@media (max-width: 719px) {
  .news-ticker-track {
    animation-duration: 42s;
  }
}
.news-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.15rem;
}
.news-showcase-page { margin-bottom: 1.5rem; }
.news-featured {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(28, 22, 18, 0.1);
  border-radius: 4px 4px 20px 20px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(28, 22, 18, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-top: 3px solid var(--terra);
}
.news-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(28, 22, 18, 0.14);
  color: inherit;
  text-decoration: none;
}
.news-featured-media {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #1a1210, #3a1a18 55%, #8a1a16);
  overflow: hidden;
}
.news-featured-media.has-image {
  background-image:
    linear-gradient(180deg, rgba(20, 10, 8, 0.15) 20%, rgba(20, 10, 8, 0.78)),
    var(--news-cover);
  background-size: cover;
  background-position: center;
}
.news-live-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 4px;
  background: var(--terra);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--latin);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}
.news-live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
  animation: news-pulse 1.6s ease-in-out infinite;
}
@keyframes news-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}
.news-featured-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: grid;
  gap: 0.6rem;
}
.news-featured-body h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2.5vw, 1.8rem);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 700;
}
.news-featured-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.news-side-list {
  display: grid;
  gap: 0.9rem;
}
.news-card,
.event-card {
  display: grid;
  text-decoration: none;
  color: inherit;
  background: #fff;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.news-card {
  border: 1px solid rgba(28, 22, 18, 0.1);
  border-radius: 4px 4px 16px 16px;
  box-shadow: 0 10px 28px rgba(28, 22, 18, 0.05);
  grid-template-rows: auto 1fr;
  border-left: 3px solid transparent;
  content-visibility: auto;
  contain-intrinsic-size: 240px;
}
.event-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(28, 22, 18, 0.06);
  grid-template-columns: auto 1fr;
  align-items: stretch;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28, 22, 18, 0.12);
  border-color: rgba(227, 6, 19, 0.25);
  color: inherit;
  text-decoration: none;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.1);
  border-color: rgba(20, 90, 60, 0.35);
  color: inherit;
  text-decoration: none;
}
.news-card:hover {
  border-left-color: var(--terra);
}
.news-card-compact {
  grid-template-columns: 118px 1fr;
  grid-template-rows: auto;
  align-items: stretch;
}
.news-card-compact .news-cover {
  min-height: 100%;
  height: 100%;
  border-radius: 0;
}
.news-card-compact .news-body {
  padding: 0.95rem 1rem 1.05rem;
  min-width: 0;
}
.news-card-compact h3 {
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-compact p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-body h3 {
  color: var(--ink);
  line-height: 1.45;
}
.news-body p:last-of-type {
  color: var(--muted);
  line-height: 1.7;
}
.news-cover {
  position: relative;
  min-height: 150px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(13, 61, 44, 0.95), rgba(196, 92, 58, 0.75)),
    var(--green-800);
  overflow: hidden;
}
.news-cover.has-image {
  background-image:
    linear-gradient(160deg, rgba(6, 36, 25, 0.12), rgba(6, 36, 25, 0.5)),
    var(--news-cover);
  background-size: cover;
  background-position: center;
}
.news-cover.has-image .news-icon { display: none; }
.news-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.news-body,
.event-body { padding: 1.1rem 1.15rem 1.25rem; }
.news-body h3,
.event-body h3 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  line-height: 1.45;
}
.news-body p:last-of-type,
.event-body p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.news-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.7rem;
  margin-bottom: 0.15rem;
}
.news-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  background: rgba(227, 6, 19, 0.1);
  color: var(--terra);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--latin);
}
.news-date {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
  font-family: var(--latin);
}
.news-read {
  display: inline-flex;
  margin-top: 0.55rem;
  color: var(--terra);
  font-weight: 700;
  font-size: 0.92rem;
}
.news-featured:hover .news-read,
.news-card:hover .news-read { color: var(--terra-dark); }
.news-grid-modern {
  gap: 1.15rem;
}
.page-hero-news > .container {
  max-width: 42rem;
}
.page-hero-news h1 {
  line-height: 1.28;
  margin: 0;
}
.news-ticker-page {
  margin-top: 0;
  position: relative;
  z-index: 5;
}
.section-news-page {
  padding-top: 0;
}
.section-news-page.section-after-ticker > .container,
.section-news-page > .container {
  padding-top: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}
.news-page-masthead {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid #1a1210;
}
.news-page-masthead .kicker {
  margin-bottom: 0.2rem;
  color: var(--terra);
  font-family: var(--latin);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
}
.news-page-masthead h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
}
.news-page-count {
  margin: 0;
  font-family: var(--latin);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  background: rgba(227, 6, 19, 0.08);
  color: var(--terra);
}
.news-card-rank {
  position: relative;
  grid-template-columns: 2.5rem minmax(72px, 96px) minmax(0, 1fr);
  align-items: stretch;
}
.news-rank {
  display: grid;
  place-items: center;
  font-family: var(--latin);
  font-weight: 800;
  font-size: 0.95rem;
  color: rgba(227, 6, 19, 0.55);
  background: #faf6f2;
  border-right: 1px solid rgba(28, 22, 18, 0.06);
}
.news-card-rank .news-cover {
  min-height: 100%;
  min-width: 0;
}
.news-card-rank .news-body {
  min-width: 0;
}
.news-page-more {
  margin-top: 2.25rem;
}
.news-page-more-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.news-page-more-head h2 {
  margin: 0;
  white-space: nowrap;
  color: var(--green-950);
  font-size: 1.35rem;
}
.news-page-rule {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--terra), rgba(227, 6, 19, 0.15), transparent);
}
.news-grid-dense {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
.news-card-photo {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(28, 22, 18, 0.1);
  border-radius: 4px 4px 16px 16px;
  border-left: 3px solid transparent;
  box-shadow: 0 10px 28px rgba(28, 22, 18, 0.05);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.news-card-photo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(28, 22, 18, 0.12);
  border-color: rgba(227, 6, 19, 0.25);
  border-left-color: var(--terra);
  color: inherit;
  text-decoration: none;
}
.news-card-photo .news-cover {
  min-height: 168px;
  aspect-ratio: 16 / 10;
}
.news-card-photo .news-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-photo .news-body h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-photo .news-body p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-page-more.is-archive {
  margin-top: 0;
}
.news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(28, 22, 18, 0.1);
}
.news-page-btn {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 1rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(28, 22, 18, 0.12);
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}
.news-page-btn:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.news-page-btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.news-page-nums {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.news-page-num {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 10px;
  font-family: var(--latin);
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(28, 22, 18, 0.1);
}
.news-page-num:hover {
  border-color: var(--terra);
  color: var(--terra);
}
.news-page-num.is-current {
  background: var(--terra);
  border-color: var(--terra);
  color: #fff;
}
@media (min-width: 640px) {
  .news-grid-dense {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .news-grid-dense {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
.news-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border: 1px dashed rgba(28, 22, 18, 0.15);
  border-radius: 18px;
}
.news-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #fde8e8;
  color: var(--terra);
}

@media (min-width: 860px) {
  .news-showcase-page {
    grid-template-columns: 1.35fr 0.9fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  .news-showcase-page .news-featured {
    grid-template-rows: 1.1fr auto;
    min-height: 100%;
  }
  .news-showcase-page .news-side-list {
    display: grid;
    gap: 0.85rem;
    align-content: stretch;
  }
}

@media (max-width: 859px) {
  .news-card-rank {
    grid-template-columns: 36px 88px 1fr;
  }
}

@media (max-width: 719px) {
  .news-card-rank {
    grid-template-columns: 1fr;
  }
  .news-rank {
    display: none;
  }
  .news-card-rank .news-cover {
    min-height: 150px;
  }
  .news-page-masthead {
    align-items: start;
    flex-direction: column;
  }
  .page-hero-news {
    padding: calc(5.45rem + env(safe-area-inset-top, 0px)) 0 1.95rem;
    min-height: clamp(10rem, 38vw, 12.75rem);
  }
  .page-hero-news h1 {
    font-size: clamp(1.48rem, 6.4vw, 1.9rem);
  }
}

.news-article { background: var(--cream); }
.news-article-hero {
  position: relative;
  padding: 6.6rem 0 2.4rem;
  min-height: clamp(16rem, 40vw, 22rem);
  background:
    radial-gradient(ellipse 70% 80% at 10% 0%, rgba(20, 90, 60, 0.18), transparent 50%),
    linear-gradient(160deg, #0d3d2c, #145a3c 60%, #0a2f22);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.news-article-hero.has-cover {
  min-height: clamp(18rem, 44vw, 26rem);
  background-image:
    linear-gradient(180deg, rgba(6, 36, 25, 0.35), rgba(6, 36, 25, 0.88)),
    var(--news-cover);
  background-size: cover;
  background-position: center;
}
.news-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}
.news-article-hero .kicker,
.news-article-hero .kicker a { color: #f0c56d; }
.news-article-hero .kicker a:hover { color: #fff; }
.news-article-hero .news-cat {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.news-article-hero .news-date { color: rgba(255, 255, 255, 0.82); }
.news-article-hero h1 {
  margin: 0.55rem 0 0;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.3;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}
.news-article-body {
  max-width: 46rem;
  margin-inline: auto;
}
.news-back { margin-top: 2rem; }

@media (min-width: 860px) {
  .news-showcase {
    grid-template-columns: 1.35fr 0.95fr;
    gap: 1.35rem;
    align-items: stretch;
  }
  .news-featured {
    grid-template-rows: 1.1fr auto;
    min-height: 100%;
  }
  .news-featured-media { min-height: 260px; }
  .news-side-list {
    grid-template-rows: repeat(auto-fit, minmax(0, 1fr));
  }
  .news-card-compact { min-height: 0; }
}

.event-date {
  width: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  background: linear-gradient(180deg, var(--green-800), var(--green-950));
  color: #fff;
  padding: 1rem 0.6rem;
}
.event-day {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--latin);
}
.event-month {
  font-size: 0.92rem;
  opacity: 0.9;
}

.faq-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
}
.faq-lead {
  margin: 0.45rem auto 0;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
}
.section-faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(20, 90, 60, 0.09), transparent 60%),
    radial-gradient(ellipse 40% 35% at 100% 100%, rgba(212, 162, 74, 0.08), transparent 55%),
    linear-gradient(180deg, #fffdf9 0%, #f3faf6 55%, #fbf6ef 100%);
}
.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(rgba(7, 38, 28, 0.045) 1px, transparent 1.2px);
  background-size: 18px 18px;
}
.faq {
  display: grid;
  gap: 0.85rem;
}
.faq details,
.faq-item {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 20px;
  padding: 0;
  margin: 0;
  box-shadow: 0 12px 30px rgba(28, 22, 18, 0.06);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.faq-item:hover {
  border-color: rgba(20, 90, 60, 0.2);
  box-shadow: 0 16px 36px rgba(7, 38, 28, 0.09);
}
.faq-item[open] {
  border-color: rgba(20, 90, 60, 0.3);
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.12);
  transform: translateY(-1px);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  font-weight: 600;
  color: var(--green-950);
  line-height: 1.45;
  font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-index {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--latin);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--green-800);
  background: #e4f3eb;
  box-shadow: 0 6px 14px rgba(7, 38, 28, 0.08);
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] .faq-index {
  background: linear-gradient(145deg, #0d3d2c, #1b6e49);
  color: #fff;
  box-shadow: 0 8px 18px rgba(7, 38, 28, 0.2);
}
.faq-q {
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}
.faq-chevron {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green-700);
  background: rgba(20, 90, 60, 0.08);
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  background: rgba(227, 6, 19, 0.1);
  color: var(--terra);
}
.faq-a {
  padding: 0 1.2rem 1.2rem 4.15rem;
}
.faq-a p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
  border-top: 1px solid rgba(234, 223, 211, 0.9);
  padding-top: 0.9rem;
}

.section-donate {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(20, 90, 60, 0.07), transparent 55%),
    linear-gradient(180deg, #fffdf9 0%, #f7f3ec 100%);
}
.donate-shell {
  display: grid;
  gap: 1.25rem;
  max-width: 820px;
  margin-inline: auto;
}
.donate-notice {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(234, 223, 211, 0.95);
  box-shadow: 0 14px 34px rgba(28, 22, 18, 0.06);
}
.donate-notice-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f8ecd4;
  color: #9a6f1d;
}
.donate-notice h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  color: var(--green-950);
}
.donate-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}
.donate-cta {
  min-height: 12.5rem;
}
.donate-cta .cta-photo {
  opacity: 0.5;
  filter: saturate(0.9) brightness(0.7);
}

.section-discover {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}
.discover-stack {
  display: grid;
  gap: 1.25rem;
}
.discover-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  min-height: 13.5rem;
  border-radius: 28px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 20px 48px rgba(7, 38, 28, 0.12);
  border: 1px solid rgba(234, 223, 211, 0.35);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.discover-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(7, 38, 28, 0.16);
  color: #fff;
  text-decoration: none;
}
.discover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--discover-image);
  background-size: cover;
  background-position: center;
  filter: saturate(0.88) brightness(0.72);
  transform: scale(1.02);
  transition: transform 0.35s ease;
}
.discover-panel:hover .discover-media {
  transform: scale(1.06);
}
.discover-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.discover-news::after {
  background:
    linear-gradient(105deg, rgba(40, 12, 10, 0.9) 0%, rgba(20, 8, 6, 0.55) 50%, rgba(20, 8, 6, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(20, 8, 6, 0.72));
}
.discover-events::after {
  background:
    linear-gradient(105deg, rgba(6, 36, 25, 0.9) 0%, rgba(7, 38, 28, 0.52) 50%, rgba(7, 38, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(3, 20, 14, 0.75));
}
.discover-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.45rem;
  padding: 1.7rem 1.55rem 1.6rem;
  max-width: 34rem;
}
.discover-panel .kicker {
  color: #f0c56d;
  margin: 0;
}
.discover-title {
  font-family: var(--display), var(--bangla);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
}
.discover-text {
  color: rgba(248, 239, 228, 0.92);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 28rem;
}
.discover-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.55rem;
  font-weight: 700;
  color: #fff;
  font-size: 1.02rem;
  gap: 0.25rem;
  transition: gap 0.15s ease;
}
.discover-panel:hover .discover-cta {
  gap: 0.45rem;
  color: #f0c56d;
}

.section-chapter-detail {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(20, 90, 60, 0.07), transparent 55%),
    linear-gradient(180deg, #fffdf9, var(--cream));
}
.chapter-detail {
  max-width: 42rem;
  margin-inline: auto;
  display: grid;
  gap: 1.75rem;
}
.chapter-detail-prose {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--muted);
}
.chapter-detail-prose p:last-child {
  margin-bottom: 0;
}
.chapter-join-panel {
  text-align: center;
  padding: 1.75rem 1.5rem 1.65rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(24, 119, 242, 0.12), transparent 40%),
    linear-gradient(180deg, #fff, #f7fafc);
  border: 1px solid rgba(24, 119, 242, 0.18);
  box-shadow: 0 18px 44px rgba(7, 38, 28, 0.08);
}
.chapter-join-panel .kicker {
  color: #1877f2;
  margin-bottom: 0.35rem;
}
.chapter-join-panel h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  color: var(--green-950);
}
.chapter-join-panel p {
  margin: 0 auto 1.15rem;
  color: var(--muted);
  max-width: 28rem;
  line-height: 1.7;
}
.chapter-join-panel .btn-facebook-group {
  min-width: 14rem;
  min-height: 46px;
  font-size: 1.02rem;
}
.chapter-detail-more h2 {
  margin-bottom: 0.65rem;
}
.chapter-detail-meta {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

@media (min-width: 860px) {
  .discover-stack {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
  .discover-panel {
    min-height: 16rem;
  }
  .discover-body {
    padding: 2rem 1.75rem 1.85rem;
  }
}

@media (max-width: 719px) {
  .discover-panel {
    min-height: 12.5rem;
    border-radius: 22px;
  }
  .discover-body {
    padding: 1.4rem 1.2rem 1.35rem;
  }
  .discover-title {
    font-size: clamp(1.3rem, 5.5vw, 1.55rem);
  }
  .discover-text {
    font-size: 0.96rem;
  }
  .chapter-join-panel {
    padding: 1.4rem 1.15rem 1.35rem;
    border-radius: 22px;
  }
}

.cta-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 18%, rgba(212, 162, 74, 0.16), transparent 30%),
    linear-gradient(165deg, #03140e 0%, #062419 40%, #0a3528 72%, #145a3c 100%);
  color: #fff;
  border-radius: 28px;
  padding: 2.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  border: 1px solid rgba(234, 223, 211, 0.14);
  box-shadow: 0 22px 50px rgba(7, 38, 28, 0.22);
  min-height: 13rem;
}
.cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--cta-image);
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  filter: saturate(0.86) brightness(0.78);
  pointer-events: none;
}
.cta-map {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-image: url("../images/hero-remittance-map.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0) invert(1) contrast(1.15);
  opacity: 0.22;
  pointer-events: none;
  animation: hero-map-drift 26s ease-in-out infinite alternate;
}
.cta-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(3, 20, 14, 0.72), rgba(7, 38, 28, 0.55) 45%, rgba(3, 20, 14, 0.7)),
    radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1.25px);
  background-size: auto, 20px 20px;
}
.cta-banner > .cta-copy,
.cta-banner > .btn {
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: #fff; margin: 0 0 0.35rem; }
.cta-banner p { margin: 0; color: #f3e8dc; max-width: 36rem; }

/* Photo overlay for green side panels */
.green-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.green-panel-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--panel-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.48;
  filter: saturate(0.88) brightness(0.62);
  pointer-events: none;
  transform: scale(1.02);
  transition: transform 0.4s ease;
}
.green-panel:hover .green-panel-photo {
  transform: scale(1.06);
}
.green-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(7, 38, 28, 0.9) 0%, rgba(13, 61, 44, 0.8) 48%, rgba(20, 90, 60, 0.72) 100%);
}
.green-panel > *:not(.green-panel-photo) {
  position: relative;
  z-index: 2;
}
.cta-copy {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #f0c56d;
  flex-shrink: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: calc(5.85rem + env(safe-area-inset-top, 0px)) 0 2.35rem;
  min-height: clamp(11.5rem, 28vw, 15.5rem);
  color: #f7f1e8;
  background: #062419;
  border-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--page-banner, url("../images/sections/network-spread.webp"));
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.88) brightness(0.72);
  opacity: 1;
  pointer-events: none;
  transform: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 18, 12, 0.62) 0%, rgba(3, 18, 12, 0.42) 45%, rgba(3, 18, 12, 0.72) 100%),
    radial-gradient(ellipse 70% 60% at 50% 55%, rgba(3, 18, 12, 0.15) 0%, rgba(3, 18, 12, 0.55) 100%);
  pointer-events: none;
}
.page-hero > .container {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  width: 100%;
  margin-inline: auto;
  padding-block: 0.15rem;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-family: var(--display), var(--bangla);
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 700;
  margin: 0 auto;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  max-width: min(100%, 22rem);
  text-align: center;
}
.page-hero .kicker,
.page-hero p,
.page-hero .muted {
  display: none;
}
.about-hero::after,
.contact-hero::after,
.page-hero-news::after {
  background:
    linear-gradient(180deg, rgba(3, 18, 12, 0.58) 0%, rgba(3, 18, 12, 0.38) 48%, rgba(3, 18, 12, 0.7) 100%),
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(3, 18, 12, 0.12) 0%, rgba(3, 18, 12, 0.5) 100%);
}
.page-hero-about {
  min-height: clamp(11.5rem, 28vw, 15.5rem);
}
.page-hero-about::before {
  filter: saturate(1) brightness(0.74) contrast(1.04);
  background-position: center 38%;
}
.page-hero-about::after {
  background:
    linear-gradient(180deg, rgba(3, 16, 11, 0.58) 0%, rgba(3, 18, 12, 0.4) 48%, rgba(3, 14, 10, 0.72) 100%),
    radial-gradient(ellipse 65% 55% at 50% 52%, rgba(6, 36, 25, 0.2) 0%, rgba(3, 16, 11, 0.55) 100%);
}
.page-hero-about h1 {
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.45);
}
.page-hero-news {
  background: #0c1814;
  padding: calc(5.85rem + env(safe-area-inset-top, 0px)) 0 2.35rem;
  min-height: clamp(11.5rem, 28vw, 15.5rem);
}
.page-hero-news::before {
  filter: saturate(0.85) brightness(0.7);
}
.chapter-grid-after-map {
  margin-top: 1.75rem;
}

.section-about-story {
  background:
    radial-gradient(ellipse 60% 50% at 0% 20%, rgba(20, 90, 60, 0.08), transparent 55%),
    linear-gradient(180deg, #fffdf9 0%, #f3faf6 100%);
}
.about-story {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.about-story-copy h2 {
  margin-bottom: 1rem;
  color: var(--green-950);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
}
.about-prose {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 40rem;
}
.about-prose p { margin-bottom: 1rem; }
.about-prose strong { color: var(--green-900); font-weight: 700; }
.about-facts {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.about-fact {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fffdf9);
  border: 1px solid rgba(234, 223, 211, 0.95);
  box-shadow: 0 12px 28px rgba(7, 38, 28, 0.055);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.about-fact:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 38, 28, 0.1);
}
.about-fact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(20, 90, 60, 0.1);
  color: var(--green-800);
  flex-shrink: 0;
}
.about-fact strong {
  display: block;
  color: var(--green-950);
  font-size: 1rem;
}
.about-fact span {
  color: var(--muted);
  font-size: 0.88rem;
}
.about-visual {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 24px 52px rgba(7, 38, 28, 0.16);
}
.about-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
.about-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 38, 28, 0.72));
  pointer-events: none;
}
.about-visual-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  padding: 0.85rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}
.about-visual-badge span {
  display: block;
  color: var(--terra);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  font-family: var(--latin);
  text-transform: uppercase;
}
.about-visual-badge strong {
  display: block;
  color: var(--green-950);
  font-size: 1.05rem;
  margin-top: 0.15rem;
}

.section-about-model {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(212, 162, 74, 0.12), transparent 50%),
    var(--cream);
}
.about-model-grid {
  display: grid;
  gap: 1rem;
}
.about-model-card {
  background: #fff;
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 22px;
  padding: 1.4rem 1.25rem 1.45rem;
  box-shadow: 0 12px 30px rgba(28, 22, 18, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-model-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.1);
}
.about-model-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: #e4f3eb;
  color: var(--green-800);
}
.about-model-icon.tone-gold {
  background: #f8ecd4;
  color: #9a6f1d;
}
.about-model-icon.tone-terra {
  background: #fde8e8;
  color: var(--terra);
}
.about-model-card h3 {
  margin: 0 0 0.4rem;
  color: var(--green-950);
}
.about-model-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-about-works {
  background:
    radial-gradient(ellipse 70% 45% at 10% 0%, rgba(227, 6, 19, 0.06), transparent 50%),
    linear-gradient(180deg, #f7f3ec 0%, #fffdf9 100%);
}
.about-works-grid {
  display: grid;
  gap: 1rem;
}
.about-work-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(20, 90, 60, 0.07), transparent 55%),
    linear-gradient(165deg, #ffffff 0%, #fffdf8 55%, #f7faf8 100%);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 24px;
  padding: 1.45rem 1.3rem 1.5rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(28, 22, 18, 0.07);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.28s ease;
}
.about-work-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green-700);
}
.about-work-card.tone-terra::before { background: linear-gradient(90deg, var(--terra), #f06a6a); }
.about-work-card.tone-gold::before { background: linear-gradient(90deg, var(--gold), #e8c56a); }
.about-work-card.tone-green::before { background: linear-gradient(90deg, var(--green-700), #2a9b6a); }
.about-work-card.tone-terra { border-top-color: transparent; }
.about-work-card.tone-gold { border-top-color: transparent; }
.about-work-card.tone-green { border-top-color: transparent; }
.about-work-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 22px 48px rgba(7, 38, 28, 0.14);
  border-color: rgba(20, 90, 60, 0.18);
}
.about-work-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.about-work-num {
  font-family: var(--latin);
  font-weight: 700;
  font-size: 0.88rem;
  color: rgba(7, 38, 28, 0.28);
  letter-spacing: 0.08em;
}
.about-work-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #e4f3eb;
  color: var(--green-800);
  box-shadow: 0 6px 16px rgba(7, 38, 28, 0.08);
  transition: transform 0.28s ease;
}
.about-work-card:hover .about-work-icon {
  transform: scale(1.06);
}
.about-work-card.tone-terra .about-work-icon {
  background: #fde8e8;
  color: var(--terra);
}
.about-work-card.tone-gold .about-work-icon {
  background: #f8ecd4;
  color: #9a6f1d;
}
.about-work-card h3 {
  margin: 0 0 0.5rem;
  color: var(--green-950);
  font-size: 1.12rem;
  line-height: 1.35;
}
.about-work-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
  flex: 1;
}

.about-mv-grid {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1.65rem;
  align-items: stretch;
}
.about-mv-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 1.7rem 1.45rem 1.75rem;
  box-shadow: 0 18px 44px rgba(7, 38, 28, 0.12);
  min-height: 100%;
  height: 100%;
  border: 1px solid rgba(234, 223, 211, 0.14);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
}
.about-mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(7, 38, 28, 0.16);
}
.about-mv-mission {
  background: linear-gradient(160deg, #0d3d2c, #145a3c 60%, #1b6e49);
  color: #f7f1e8;
}
.about-mv-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--mv-photo);
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) brightness(0.7);
  opacity: 0.52;
  pointer-events: none;
  transform: scale(1.03);
  transition: transform 0.45s ease;
}
.about-mv-card:hover .about-mv-photo {
  transform: scale(1.08);
}
.about-mv-mission::after,
.about-mv-vision.has-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.about-mv-mission::after {
  background:
    linear-gradient(155deg, rgba(7, 38, 28, 0.92) 0%, rgba(13, 61, 44, 0.78) 48%, rgba(20, 90, 60, 0.68) 100%);
}
.about-mv-vision.has-photo::after {
  background:
    linear-gradient(155deg, rgba(7, 38, 28, 0.9) 0%, rgba(10, 52, 38, 0.76) 52%, rgba(16, 78, 54, 0.66) 100%);
}
.about-mv-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.about-mv-label {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 197, 109, 0.95);
}
.about-mv-vision {
  background: #fff;
  border: 1px solid rgba(234, 223, 211, 0.95);
  color: var(--ink);
}
.about-mv-vision.has-photo {
  background: linear-gradient(160deg, #0d3d2c, #145a3c 60%, #1b6e49);
  border: 1px solid rgba(234, 223, 211, 0.14);
  color: #f7f1e8;
}
.about-mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}
.about-mv-mission .about-mv-icon,
.about-mv-vision.has-photo .about-mv-icon {
  background: rgba(255, 255, 255, 0.16);
  color: #f0c56d;
}
.about-mv-vision:not(.has-photo) .about-mv-icon {
  background: #f8ecd4;
  color: #9a6f1d;
}
.about-mv-card h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.2vw, 1.38rem);
  line-height: 1.35;
  color: #fff;
}
.about-mv-mission h3,
.about-mv-vision.has-photo h3 { color: #fff; }
.about-mv-body {
  flex: 1;
}
.about-mv-body p {
  margin: 0 0 0.65rem;
  line-height: 1.7;
  font-size: 0.98rem;
}
.about-mv-mission .about-mv-body p,
.about-mv-vision.has-photo .about-mv-body p { color: rgba(247, 241, 232, 0.94); }
.about-mv-vision:not(.has-photo) .about-mv-body p { color: var(--muted); }
.about-mv-body p:last-child { margin-bottom: 0; }
.about-values {
  margin-top: 1.5rem;
  gap: 1rem;
  align-items: stretch;
}
.about-section-lead {
  margin: 0.45rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}
.section-about-values {
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(20, 90, 60, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 100%, rgba(212, 162, 74, 0.1), transparent 50%),
    linear-gradient(180deg, #f3faf6 0%, #fffdf9 55%, var(--cream) 100%);
}
.section-about-values .about-mv-grid {
  margin-bottom: 0.25rem;
}
.about-person {
  border-radius: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.about-person:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 38, 28, 0.1);
}

@media (min-width: 720px) {
  .about-facts {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-model-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
  .about-works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
  .about-mv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
}

@media (min-width: 860px) {
  .about-story {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }
  .about-visual,
  .about-visual img {
    min-height: 420px;
  }
  .about-works-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 719px) {
  .about-visual,
  .about-visual img {
    min-height: 220px;
    border-radius: 20px;
  }
  .about-story-aside { order: -1; }
  .about-fact {
    padding: 0.75rem 0.85rem;
  }
}

.prose { max-width: 46rem; }
.prose p { font-size: 1.06rem; }

.person-card { text-align: center; }
.avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--green-700), var(--terra));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }

.form {
  display: grid;
  gap: 1.1rem;
}
.form label {
  font-family: var(--latin), var(--bangla);
  font-weight: 600;
  font-size: 0.96rem;
  display: block;
  margin-bottom: 0.42rem;
  color: var(--green-950);
  letter-spacing: 0.01em;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  font-family: var(--latin), var(--bangla);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.55;
  padding: 0.92rem 1.1rem;
  border: 1.5px solid rgba(226, 214, 200, 0.98);
  border-radius: 16px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  color: var(--ink);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 18px rgba(28, 22, 18, 0.035);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-800) 50%),
    linear-gradient(135deg, var(--green-800) 50%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  background-position:
    calc(100% - 1.15rem) calc(50% - 0.15rem),
    calc(100% - 0.75rem) calc(50% - 0.15rem),
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form textarea {
  min-height: 152px;
  resize: vertical;
  line-height: 1.7;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #9a8f86;
  font-weight: 400;
}
.form input:hover,
.form select:hover,
.form textarea:hover {
  border-color: rgba(20, 90, 60, 0.38);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--green-700);
  background: #fff;
  box-shadow: var(--focus-ring), 0 10px 26px rgba(7, 38, 28, 0.09);
}
.form input.is-invalid,
.form select.is-invalid,
.form textarea.is-invalid {
  border-color: #9b2c2c;
  box-shadow: 0 0 0 3px rgba(155, 44, 44, 0.14);
}
.form .btn,
.form button.btn {
  margin-top: 0.2rem;
  min-height: 3.05rem;
  border-radius: 15px;
  font-size: 1.04rem;
}
.form-panel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 28px;
  padding: 1.65rem 1.45rem 1.55rem;
  box-shadow: 0 20px 48px rgba(7, 38, 28, 0.08);
}
.form-panel::before,
.contact-form-card::before,
.membership-form-card::before,
.auth-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--green-700));
  pointer-events: none;
}
.form-panel > h2 {
  font-family: var(--display), var(--bangla);
  margin: 0 0 1.1rem;
  color: var(--green-950);
  line-height: 1.3;
}
.hint {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.55;
}
.field-error {
  color: #9b2c2c;
  font-size: 0.9rem;
  margin: 0.3rem 0 0;
  font-weight: 500;
}

.section-contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(20, 90, 60, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 100%, rgba(212, 162, 74, 0.1), transparent 50%),
    linear-gradient(180deg, #f3faf6 0%, #fffdf9 55%, #fbf6ef 100%);
}
.contact-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(7, 38, 28, 0.04) 1px, transparent 1.2px);
  background-size: 18px 18px;
}
.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.contact-aside-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 197, 109, 0.16), transparent 40%),
    linear-gradient(160deg, #0d3d2c, #145a3c 55%, #1b6e49);
  color: #f7f1e8;
  border-radius: 28px;
  padding: 1.75rem 1.45rem 1.6rem;
  box-shadow: 0 22px 48px rgba(7, 38, 28, 0.2);
  border: 1px solid rgba(234, 223, 211, 0.14);
}
.contact-aside-card .kicker { color: #f0c56d; }
.contact-aside-card h2 {
  color: #fff;
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.contact-aside-lead {
  margin: 0 0 1.35rem;
  color: #e8dfd2;
  line-height: 1.75;
}
.contact-channels {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: grid;
  gap: 0.7rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease, transform 0.15s ease;
}
.contact-channel:hover {
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  text-decoration: none;
  transform: translateY(-1px);
}
.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #f0c56d;
  flex-shrink: 0;
}
.contact-channel-icon.channel-fb {
  background: #1877f2;
  color: #fff;
  border-radius: 50%;
}
.contact-channel-icon.channel-map {
  background: rgba(227, 6, 19, 0.2);
  color: #ffb4b4;
}
.contact-channel-body {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.contact-channel-body strong {
  color: #fff;
  font-size: 0.98rem;
}
.contact-channel-body span {
  color: #e0d5c8;
  font-size: 0.9rem;
  word-break: break-word;
}
.contact-aside-note {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-aside-note-icon {
  color: #f0c56d;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-aside-note p {
  margin: 0;
  color: #e8dfd2;
  font-size: 0.9rem;
  line-height: 1.65;
}
.contact-form-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 28px;
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: 0 20px 48px rgba(7, 38, 28, 0.08);
}
.contact-form-head {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(234, 223, 211, 0.9);
}
.contact-form-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #e4f3eb;
  color: var(--green-800);
  flex-shrink: 0;
}
.contact-form-head h2 {
  margin: 0 0 0.25rem;
  color: var(--green-950);
  font-family: var(--display), var(--bangla);
  font-size: 1.4rem;
  line-height: 1.3;
}
.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.contact-form-grid {
  display: grid;
  gap: 1.05rem;
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 11rem;
  margin-top: 0.25rem;
}
.contact-form .btn { width: 100%; justify-content: center; }

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.75rem;
    align-items: stretch;
  }
  .contact-aside-card,
  .contact-form-card {
    height: 100%;
  }
  .contact-form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-form .btn {
    width: auto;
    min-width: 12rem;
  }
}

@media (max-width: 719px) {
  .contact-aside-card,
  .contact-form-card {
    border-radius: 22px;
    padding: 1.35rem 1.15rem 1.3rem;
  }
  .contact-form-head {
    flex-direction: column;
    gap: 0.7rem;
  }
}

.flash-wrap { padding-top: var(--space-3); display: grid; gap: var(--space-2); }
.flash {
  padding: 0.8rem 1.05rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}
.flash-success { background: #e3f6ea; color: #145a3c; }
.flash-error { background: #fde8e4; color: #9a3d24; }
.flash-info { background: #fff4d6; color: #6b4e12; }

.muted { color: var(--muted); }
.split {
  display: grid;
  gap: var(--space-4);
}
.section-volunteer {
  background:
    radial-gradient(ellipse 55% 40% at 0% 0%, rgba(20, 90, 60, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 100%, rgba(212, 162, 74, 0.1), transparent 50%),
    linear-gradient(180deg, #f4f7f5, var(--cream));
}
.volunteer-ways {
  gap: 0.95rem;
}
.volunteer-way-card {
  border-radius: 22px;
  padding: 1.25rem 1.2rem 1.3rem;
  box-shadow: 0 12px 30px rgba(28, 22, 18, 0.05);
  border-left: 3px solid var(--green-700);
}
.volunteer-way-card h3 {
  color: var(--green-950);
  margin-bottom: 0.35rem;
}
.volunteer-way-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.prose.card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: 0 18px 44px rgba(7, 38, 28, 0.08);
  background: linear-gradient(180deg, #fff, #fffdf9);
}
.prose.card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra), var(--gold), var(--green-700));
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4);
  display: grid;
  gap: var(--space-2);
}
.benefit-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.benefit-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--green-700);
  flex-shrink: 0;
}

.chapter-hero-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.15rem;
  margin-right: 0.55rem;
  vertical-align: -0.35rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.member-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}
.chapter-hero-flag .flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.aside-stack {
  display: grid;
  gap: var(--space-3);
}

.event-card.is-past .event-date {
  background: linear-gradient(180deg, #4a5c52, #2c3933);
}
.event-card.is-past {
  opacity: 0.92;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
  background: var(--green-100);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; }

.story-card { position: relative; }
.story-card::before {
  content: "“";
  font-size: 3rem;
  color: var(--terra);
  line-height: 1;
  display: block;
}

.list-card {
  display: grid;
  gap: 0.3rem;
}
.cover {
  height: 160px;
  border-radius: 14px;
  margin: -0.3rem -0.3rem 0.8rem;
  background:
    linear-gradient(135deg, rgba(13,61,44,0.65), rgba(196,92,58,0.45)),
    var(--green-800);
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(32, 148, 100, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(212, 162, 74, 0.12), transparent 50%),
    linear-gradient(165deg, #062a1d 0%, #04160f 48%, #03120c 100%);
  color: #efe6dc;
  padding: clamp(2.35rem, 4vw, 3.1rem) 0 1.45rem;
  margin-top: var(--space-5);
}
.footer-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(240, 197, 109, 0.55), rgba(72, 180, 130, 0.45), transparent);
  pointer-events: none;
}
.footer-texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04), transparent 35%),
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1.2px);
  background-size: auto, 18px 18px;
  opacity: 0.75;
}
.footer-texture::before {
  content: "";
  position: absolute;
  inset: -8% -4%;
  background-image: url("../images/sections/dotted-globe.webp");
  background-size: cover;
  background-position: center 70%;
  opacity: 0.09;
  filter: saturate(0.6) brightness(1.1);
  animation: hero-map-drift 40s ease-in-out infinite alternate;
}
.footer-texture::after {
  content: none;
}
.footer-inner {
  position: relative;
  z-index: 1;
}
.site-footer h2 {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  letter-spacing: 0.04em;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer h2::before {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 2px;
  background: #f0c56d;
  flex-shrink: 0;
}
.site-footer a { color: #d8efe4; text-decoration: none; transition: color 0.15s ease; }
.site-footer a:hover { color: #f0c56d; }
.footer-grid {
  display: grid;
  gap: clamp(1.45rem, 2.6vw, 2rem);
  align-items: start;
}
.footer-brand-col .brand-footer {
  margin-bottom: 0.8rem;
}
.footer-brand-col .brand-logo-footer {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 15px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  filter: none;
  height: 60px;
  max-width: 210px;
}
.footer-tagline {
  color: #f0c56d;
  font-family: var(--display), var(--bangla);
  font-weight: 600;
  font-size: 1.02rem;
  margin: 0 0 0.5rem;
  line-height: 1.45;
}
.footer-muted {
  color: rgba(239, 230, 220, 0.72);
  margin: 0 0 0.4rem;
  line-height: 1.55;
  font-size: 0.95rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.1rem;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0;
  color: rgba(216, 239, 228, 0.92);
  font-size: 0.96rem;
}
.footer-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(240, 197, 109, 0.55);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(239, 230, 220, 0.78);
  line-height: 1.5;
  margin: 0;
  font-size: 0.94rem;
}
.footer-contact-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f0c56d;
}
.footer-newsletter-col .footer-muted {
  margin-bottom: 0.85rem;
}
.footer-brand-col .social {
  margin-top: 0.7rem;
}
.footer-bottom {
  margin-top: clamp(1.45rem, 2.6vw, 1.9rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--text-sm);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.4rem 1rem;
}
.footer-bottom p { margin: 0; color: rgba(239, 230, 220, 0.7); }
.footer-bottom-note {
  color: #f0c56d !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.social { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.55rem; }
.social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.social a:hover {
  background: rgba(240, 197, 109, 0.22);
  border-color: rgba(240, 197, 109, 0.45);
  color: #fff;
  transform: translateY(-2px);
}
.social a.social-facebook {
  width: auto;
  height: auto;
  min-height: 40px;
  padding: 0.5rem 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1877f2;
  border: 1px solid #1877f2;
  border-radius: 6px;
  font-family: var(--latin);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  box-shadow: none;
}
.social a.social-facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
  color: #fff;
  transform: none;
}
.newsletter-form { display: grid; gap: 0.55rem; }
.newsletter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
  align-items: stretch;
  padding: 0.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.newsletter-form input {
  font-family: var(--bangla), var(--latin);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: #fff;
  min-width: 0;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(239, 230, 220, 0.5);
}
.newsletter-row .btn {
  border-radius: 12px;
  min-height: 44px;
  padding-inline: 1.15rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}
@media (max-width: 560px) {
  .newsletter-row {
    grid-template-columns: 1fr;
  }
  .newsletter-row .btn { width: 100%; }
}

.table-wrap { overflow-x: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
}
table.data th,
table.data td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data th { background: var(--green-50); }

.admin-body { background: #f4efe8; }
.admin-shell {
  display: grid;
  min-height: 100vh;
}
.admin-side {
  background: var(--green-950);
  color: #efe6dc;
  padding: 1.2rem;
}
.brand-admin {
  display: inline-flex;
  margin-bottom: 0.65rem;
  text-decoration: none;
}
.brand-logo-admin {
  height: 52px;
  max-width: 180px;
  background: #fffdf9;
  border-radius: 12px;
  padding: 0.35rem 0.5rem;
}
.admin-side-label {
  margin: 0 0 0.85rem;
  opacity: 0.8;
  font-size: 0.92rem;
}
.admin-side a {
  display: block;
  color: #efe6dc;
  text-decoration: none;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
}
.admin-side a.is-active,
.admin-side a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.admin-side .brand-admin:hover { background: transparent; opacity: 0.95; }
.admin-main { padding: 1.2rem; }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.stat {
  background: var(--paper);
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid var(--line);
}
.stat b { display: block; font-size: 1.6rem; color: var(--green-800); font-family: var(--latin); }

@media (prefers-reduced-motion: reduce) {
  .cta-map { animation: none !important; opacity: 0.34; }
}

.auth-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.brand-logo-auth {
  height: 64px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.auth-page {
  position: relative;
  padding: clamp(5.8rem, 10vw, 6.75rem) 0 clamp(2.5rem, 5vw, 4rem);
  background:
    radial-gradient(ellipse 70% 50% at 0% 0%, rgba(20, 90, 60, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(212, 162, 74, 0.12), transparent 50%),
    linear-gradient(180deg, #f4f7f5, var(--cream));
}
main > .section:first-child,
main > article.section:first-child {
  padding-top: calc(5.6rem + var(--space-5));
}
.auth-shell {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}
.auth-aside {
  display: none;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  background: #062419;
  box-shadow: 0 22px 48px rgba(7, 38, 28, 0.18);
}
.auth-aside-media {
  position: absolute;
  inset: 0;
  background-image: var(--auth-photo);
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) brightness(0.72);
}
.auth-aside::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(6, 36, 25, 0.72), rgba(10, 61, 44, 0.55) 45%, rgba(6, 36, 25, 0.82));
}
.auth-aside-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.55rem;
  height: 100%;
  min-height: 420px;
  padding: 2rem 1.75rem;
  color: #f7f1e8;
}
.auth-aside-kicker {
  margin: 0;
  color: #f0c56d;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}
.auth-aside-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.3;
}
.auth-aside-copy > p {
  margin: 0;
  color: rgba(247, 241, 232, 0.88);
  max-width: 28ch;
}
.auth-aside-points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.auth-aside-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.auth-aside-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0c56d;
  box-shadow: 0 0 0 3px rgba(240, 197, 109, 0.22);
  flex-shrink: 0;
}
.auth-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 1.9rem 1.6rem 1.75rem;
  border-radius: 28px;
  border: 1px solid rgba(234, 223, 211, 0.95);
  box-shadow: 0 22px 50px rgba(7, 38, 28, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fffdf9);
}
.auth-card h1 {
  margin: 0.15rem 0 0.45rem;
  font-family: var(--display), var(--bangla);
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  color: var(--green-950);
  line-height: 1.3;
}
.auth-eyebrow {
  margin: 0;
  color: var(--terra);
  font-family: var(--bangla), var(--latin);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.auth-lead {
  margin: 0 0 1.15rem;
  color: var(--muted);
}
.auth-alert {
  background: #fde8e4;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  margin: 0 0 0.85rem;
}
.auth-submit {
  width: 100%;
  margin-top: 0.25rem;
  min-height: 48px;
}
.auth-links {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.45rem;
  text-align: center;
}
.auth-links p { margin: 0; color: var(--muted); }
.auth-links a {
  color: var(--green-800);
  font-weight: 600;
  text-decoration: none;
}
.auth-links a:hover { color: var(--terra); }

.section-membership {
  background:
    radial-gradient(circle at 8% 0%, rgba(20, 90, 60, 0.07), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(212, 162, 74, 0.1), transparent 28%),
    var(--cream);
}
.membership-shell {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.membership-aside {
  display: grid;
  gap: 1.15rem;
}
.membership-aside-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 197, 109, 0.16), transparent 40%),
    linear-gradient(160deg, #0d3d2c, #145a3c 58%, #1b6e49);
  color: #f7f1e8;
  border-radius: 28px;
  padding: 1.7rem 1.45rem;
  box-shadow: 0 22px 48px rgba(7, 38, 28, 0.18);
  border: 1px solid rgba(234, 223, 211, 0.14);
}
.membership-aside-card .kicker { color: #f0c56d; }
.membership-aside-card h2 {
  color: #fff;
  margin: 0.2rem 0 1rem;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}
.membership-aside-card .benefit-list { color: #f7f1e8; margin-bottom: 0; }
.membership-aside-card .benefit-list li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  margin: 0;
  color: rgba(247, 241, 232, 0.95);
  box-shadow: none;
}
.membership-aside-card .benefit-list li::before {
  background: #f0c56d;
  margin-top: 0.45rem;
}
.membership-type-grid {
  display: grid;
  gap: 0.85rem;
}
.membership-type-card {
  background: linear-gradient(180deg, #ffffff, #fffdf9);
  border: 1px solid rgba(234, 223, 211, 0.95);
  border-radius: 22px;
  padding: 1.2rem 1.2rem 1.25rem;
  box-shadow: 0 12px 28px rgba(28, 22, 18, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.membership-type-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(7, 38, 28, 0.1);
  border-color: rgba(20, 90, 60, 0.28);
}
.membership-type-card h3 {
  margin: 0.35rem 0 0.4rem;
  color: var(--green-900);
}
.membership-type-card p {
  margin: 0;
  color: var(--muted);
}
.membership-type-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--green-100);
  color: var(--green-800);
}
.membership-type-card.is-honorary .membership-type-badge {
  background: #f8e8c8;
  color: #7a5310;
}
.membership-login-hint {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-weight: 500;
}
.membership-login-hint a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: none;
}
.membership-login-hint a:hover { color: var(--terra); }
.membership-form-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: 0 22px 50px rgba(7, 38, 28, 0.1);
  border: 1px solid rgba(234, 223, 211, 0.95);
  background: linear-gradient(180deg, #fff, #fffdf9);
}
.membership-form-head {
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.membership-form-head h2 {
  margin: 0 0 0.4rem;
  color: var(--green-950);
  font-family: var(--display), var(--bangla);
  line-height: 1.3;
}
.membership-form-head .hint { margin: 0; }
.form-grid-2 {
  display: grid;
  gap: var(--space-3);
}
.form-field { min-width: 0; }
.membership-pass-hint { margin: -0.25rem 0 0.35rem; }
.form-membership .auth-submit {
  width: 100%;
  min-height: 50px;
  margin-top: 0.35rem;
}
.form input[type="file"] {
  padding: 0.75rem 0.9rem;
  background:
    linear-gradient(180deg, #f7fbf8 0%, #eef7f2 100%);
  border-style: dashed;
  cursor: pointer;
}
.form input[type="file"]:hover {
  border-color: var(--green-700);
  background: #f3faf6;
}

@media (min-width: 860px) {
  .auth-shell {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.75rem;
    max-width: 980px;
    margin-inline: auto;
  }
  .auth-aside { display: block; }
  .auth-card {
    margin: 0;
    max-width: none;
    align-self: center;
  }
  .membership-shell {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 1.75rem;
  }
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .membership-type-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1.1fr 0.9fr; }
  .chapter-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.3rem 2rem; }
  .admin-shell { grid-template-columns: 240px 1fr; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .why-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 1.8rem;
  }
  .why-side-media { order: 0; position: sticky; top: 5.5rem; }
  .why-side-media img { aspect-ratio: 4 / 5; max-height: 520px; }
  .section-media-head {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
    align-items: center;
  }
  .section-media-head .media-frame { width: 200px; }
  .section-media-head .section-head { justify-content: space-between; }
  .network-banner img { min-height: 260px; max-height: 380px; }
  .network-banner-copy { padding: 1.8rem 1.6rem 1.5rem; }
}

@media (min-width: 980px) {
  .site-header { padding: 0.85rem 0 0.4rem; }
  .site-header.is-scrolled { padding: env(safe-area-inset-top, 0px) 0 0; }
  .is-home .hero-inner {
    padding-top: calc(8.35rem + env(safe-area-inset-top, 0px));
  }
  .nav-toggle { display: none; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1.25fr; }
  .header-bar,
  .header-inner {
    min-height: 4.65rem;
    padding: 0.5rem 1rem 0.5rem 1.15rem;
  }
  .site-header.is-scrolled .header-bar,
  .site-header.is-scrolled .header-inner {
    min-height: 4.25rem;
    padding: 0.4rem 0;
  }
  .brand-logo { height: 52px; max-width: 220px; }
  .site-nav {
    display: flex;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.1rem;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    overflow: visible;
    z-index: auto;
    transition: none;
  }
  .site-nav.is-open {
    transform: none;
  }
  .nav-backdrop {
    display: none !important;
  }
  .nav-drawer-head {
    display: none !important;
  }
  .nav-drawer-links {
    display: contents;
  }
  .site-nav > a,
  .site-nav .nav-drawer-links > a {
    font-size: 0.94rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
    min-height: 0;
  }
  .site-nav .nav-cta .btn {
    width: auto;
  }
  .site-header.is-scrolled .site-nav > a.is-active,
  .site-header.is-scrolled .site-nav .nav-drawer-links > a.is-active {
    background: rgba(20, 90, 60, 0.12);
    color: var(--green-950);
  }
  .site-header.is-scrolled .site-nav > a:hover,
  .site-header.is-scrolled .site-nav .nav-drawer-links > a:hover {
    background: rgba(20, 90, 60, 0.08);
  }
  .site-nav > a.is-active,
  .site-nav .nav-drawer-links > a.is-active {
    background: var(--green-100);
    color: var(--green-900);
    font-weight: 600;
  }
  .site-nav > a:hover,
  .site-nav .nav-drawer-links > a:hover {
    background: var(--green-50);
    color: var(--green-900);
  }
  .site-nav > a.btn:hover,
  .site-nav > a.btn-primary:hover,
  .site-nav .nav-cta .btn-primary:hover {
    background: var(--btn-red-dark) !important;
    color: #fff !important;
  }
  .site-nav .nav-cta .btn-ghost:hover {
    background: var(--green-50);
    color: var(--green-900);
  }
  .nav-cta {
    margin: 0 0 0 0.45rem;
    padding: 0 0 0 0.65rem;
    border: 0;
    border-left: 1px solid rgba(20, 90, 60, 0.18);
    margin-top: 0;
    padding-top: 0;
  }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .chapter-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .events-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 979px) {
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header {
    z-index: 400;
  }
  .header-shell {
    position: relative;
    z-index: 215;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 210;
    background: rgba(3, 18, 12, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    width: min(18.5rem, 88vw);
    max-width: 100%;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding:
      calc(1rem + env(safe-area-inset-top, 0px))
      calc(1rem + env(safe-area-inset-right, 0px))
      calc(1.25rem + env(safe-area-inset-bottom, 0px))
      1rem;
    border: 0;
    border-left: 1px solid rgba(234, 223, 211, 0.95);
    border-radius: 0;
    background:
      linear-gradient(180deg, #ffffff 0%, #fffdf9 48%, #f3faf6 100%);
    box-shadow: -18px 0 48px rgba(7, 38, 28, 0.18);
    z-index: 220;
    gap: 0.15rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.32s ease;
  }
  .site-nav.is-open {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-drawer-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    flex-shrink: 0;
    width: 100%;
    margin: 0 0 0.75rem;
    padding: 0.1rem 0 0.85rem;
    border-bottom: 1px solid rgba(234, 223, 211, 0.95);
  }
  .nav-drawer-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(234, 223, 211, 0.95);
    border-radius: 12px;
    padding: 0.35rem 0.55rem;
    box-shadow: 0 6px 16px rgba(7, 38, 28, 0.06);
  }
  .nav-drawer-brand:hover {
    opacity: 0.95;
  }
  .nav-drawer-logo {
    display: block;
    height: 30px;
    width: auto;
    max-width: 112px;
    object-fit: contain;
  }
  .nav-drawer-title {
    margin: 0;
    font-family: var(--display), var(--bangla);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .nav-drawer-links {
    display: flex !important;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.2rem;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
  }
  .site-nav > .nav-drawer-links > a,
  .site-nav .nav-drawer-links > a,
  .site-nav > a {
    min-height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0.7rem 0.9rem;
    font-size: 1.02rem;
    border-radius: 12px;
    box-sizing: border-box;
  }
  .site-nav > .nav-drawer-links > a.is-active,
  .site-nav .nav-drawer-links > a.is-active {
    background: linear-gradient(135deg, rgba(20, 90, 60, 0.12), rgba(20, 90, 60, 0.06));
    color: var(--green-900);
    box-shadow: inset 3px 0 0 var(--green-700);
  }
  .site-nav .nav-cta {
    margin-top: auto;
    padding-top: 1rem;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 0.65rem;
  }
  .site-nav .nav-cta .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    gap: 0.45rem;
  }
  .site-nav .nav-cta .header-icon-btn {
    width: 100%;
    min-width: 0;
    border-radius: 12px;
  }
  .site-nav .nav-cta .header-icon-btn span {
    font-weight: 600;
  }

  /* Mobile footer: brand → quick links → contact → newsletter */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .footer-brand-col,
  .footer-newsletter-col,
  .footer-col {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
  }
  .site-footer {
    padding-bottom: calc(1.35rem + env(safe-area-inset-bottom, 0px));
  }
  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-col {
    text-align: left;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .footer-links a {
    min-height: 44px;
    padding: 0.45rem 0;
    font-size: 0.98rem;
  }
  .footer-contact li {
    min-height: 44px;
    align-items: center;
  }
}

@media (max-width: 859px) {
  .container {
    width: min(1120px, calc(100% - 1.25rem));
  }
  .section {
    padding: clamp(2.4rem, 6vw, 3.2rem) 0;
  }
  .who-layout {
    gap: 1.5rem;
  }
  .who-aside {
    order: -1;
  }
  .who-copy h2 {
    max-width: none;
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }
  .who-visual,
  .who-visual img {
    min-height: 240px;
    border-radius: 22px;
  }
  .who-float {
    margin: -3.5rem 0.75rem 0;
    padding: 1.05rem 1.1rem 1.15rem;
  }
  .who-points li {
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
  }
  .chapter-map-panel {
    min-height: 280px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .chapter-explorer {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .chapter-focus {
    min-height: 280px;
    border-radius: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .chapter-flat-map {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }
  .chapter-focus-flag {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 140px;
    max-height: 180px;
  }
  .chapter-focus-actions {
    flex-direction: column;
  }
  .chapter-focus-actions .btn,
  .chapter-focus-actions .btn-facebook-group {
    width: 100%;
    justify-content: center;
  }
  .news-ticker {
    min-height: 2.65rem;
  }
  .news-ticker-label {
    padding: 0 0.8rem;
    font-size: 0.8rem;
  }
  .news-ticker-item {
    font-size: 0.88rem;
  }
  .news-featured {
    border-radius: 4px 4px 16px 16px;
  }
  .news-featured-media {
    min-height: 180px;
  }
  .news-featured-body {
    padding: 1.15rem 1.1rem 1.25rem;
  }
  .news-card-compact {
    grid-template-columns: 1fr;
  }
  .news-card-compact .news-cover {
    min-height: 150px;
  }
  .header-icon-btn,
  .btn-sm,
  .btn-facebook-group,
  .news-page-num {
    min-height: 44px;
    min-width: 44px;
  }
  .btn-sm {
    padding-inline: 1rem;
  }
  .map-pin-drop {
    min-width: 0;
    min-height: 0;
    padding: 0.35rem;
    margin: -0.35rem;
  }
  .map-pin-drop .map-pin-shape {
    pointer-events: none;
  }
  .why-dot {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    position: relative;
  }
  .why-dot::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
    border-radius: 999px;
    background: rgba(20, 90, 60, 0.22);
  }
  .why-dot.is-active {
    width: 44px;
    background: transparent;
  }
  .why-dot.is-active::before {
    width: 28px;
    margin-left: -14px;
    background: linear-gradient(90deg, #20948b, var(--green-700));
  }
  .cta-map {
    display: none !important;
    animation: none !important;
  }
  .news-card-rank {
    grid-template-columns: 1fr;
  }
  .news-rank {
    display: none;
  }
  .news-featured-body h3 {
    font-size: 1.22rem;
    line-height: 1.45;
  }
  .news-featured-body > p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
  .faq-a {
    padding: 0 1rem 1rem 1rem;
  }
  .faq summary {
    gap: 0.7rem;
    padding: 1rem 1.05rem;
    font-size: 0.98rem;
  }
  .donate-notice {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.2rem 1.1rem;
    border-radius: 18px;
  }
  .donate-cta {
    min-height: 0;
  }
  .section-head-center {
    gap: 0.85rem;
  }
  .section-head-center h2 {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }
  .section-head-center .link-more {
    white-space: normal;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .page-hero {
    padding: calc(5.65rem + env(safe-area-inset-top, 0px)) 0 2.1rem;
    min-height: clamp(10.5rem, 34vw, 13.5rem);
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .page-hero::before {
    background-position: center 38%;
  }
  .page-hero > .container {
    padding-inline: 0;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }
  .page-hero h1 {
    font-size: clamp(1.55rem, 6.2vw, 2rem);
    line-height: 1.3;
    max-width: min(100%, 18rem);
    margin: 0 auto;
    text-align: center;
  }
  .page-hero-news {
    padding: calc(5.65rem + env(safe-area-inset-top, 0px)) 0 2.1rem;
    min-height: clamp(10.5rem, 34vw, 13.5rem);
  }
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 719px) {
  .container {
    width: min(1120px, calc(100% - 1rem));
  }
  .hero::after {
    background:
      linear-gradient(
        90deg,
        rgba(6, 36, 25, 0.74) 0%,
        rgba(6, 36, 25, 0.8) 35%,
        rgba(6, 36, 25, 0.82) 50%,
        rgba(6, 36, 25, 0.8) 65%,
        rgba(6, 36, 25, 0.74) 100%
      ),
      linear-gradient(180deg, rgba(3, 20, 14, 0.8), rgba(3, 20, 14, 0.65) 35%, rgba(3, 20, 14, 0.86) 100%);
  }
  .hero-photo img {
    object-position: center 40%;
  }
  .section-chapters .section-head-center h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
  .section-chapters .section-head-center {
    margin-bottom: 1.25rem;
  }
  .section { padding: 2.6rem 0; }
  .hero {
    min-height: auto;
    padding-bottom: 2.5rem;
  }
  .is-home .hero-inner {
    padding-top: calc(6.5rem + env(safe-area-inset-top, 0px));
  }
  .hero-inner {
    padding-bottom: 2.25rem;
    text-align: center;
    align-items: center;
  }
  .hero h1 {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(2.05rem, 8.2vw, 2.55rem);
    line-height: 1.2;
    gap: 0.45rem;
  }
  .hero-title-en {
    font-size: clamp(1.05rem, 4.2vw, 1.28rem);
    letter-spacing: 0.04em;
    max-width: none;
    line-height: 1.3;
  }
  .hero-rule,
  .hero .lede {
    margin-inline: auto;
  }
  .hero .lede {
    font-size: 0.98rem;
    max-width: 32rem;
  }
  .hero-actions {
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    flex: none;
    min-width: 0;
    justify-content: center;
  }
  .hero-kicker {
    margin-inline: auto;
  }
  .page-hero {
    padding: calc(5.45rem + env(safe-area-inset-top, 0px)) 0 1.95rem;
    min-height: clamp(10rem, 38vw, 12.75rem);
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .page-hero::before {
    background-position: center 36%;
  }
  .page-hero > .container {
    padding-inline: 0;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
  }
  .page-hero h1 {
    font-size: clamp(1.48rem, 6.4vw, 1.9rem);
    line-height: 1.32;
    margin: 0 auto;
    max-width: min(100%, 17rem);
    text-align: center;
  }
  .page-hero-news {
    padding: calc(5.45rem + env(safe-area-inset-top, 0px)) 0 1.95rem;
    min-height: clamp(10rem, 38vw, 12.75rem);
  }
  .page-hero-chapters,
  .page-hero-about {
    min-height: clamp(10rem, 38vw, 12.75rem);
  }
  .news-article-hero {
    padding: calc(5.45rem + env(safe-area-inset-top, 0px)) 0 2.1rem;
    min-height: auto;
  }
  .news-article-hero.has-cover {
    min-height: 15rem;
  }
  .news-article-hero h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
    line-height: 1.34;
  }
  .chapter-hero-flag {
    display: inline-flex;
    width: 2.45rem;
    height: 1.85rem;
    margin: 0 0.4rem 0 0;
    vertical-align: -0.28rem;
    border-radius: 6px;
  }
  body .flash-wrap {
    top: auto;
    left: auto;
    transform: none;
    margin: calc(4.8rem + env(safe-area-inset-top, 0px)) auto 0;
    width: min(1120px, calc(100% - 1rem));
  }
  body.is-home .flash-wrap {
    position: fixed;
    top: calc(4.6rem + env(safe-area-inset-top, 0px));
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
  .network-banner { border-radius: 20px; }
  .network-banner img { min-height: 180px; max-height: 240px; }
  .media-frame { border-radius: 18px; }
  .who-media-col .media-frame img { max-height: 260px; }
  .section-intro-media .media-frame-wide img { max-height: 200px; }
  .cta-banner {
    padding: 1.55rem 1.15rem;
    border-radius: 22px;
    min-height: 0;
  }
  .cta-copy {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-banner .btn {
    width: 100%;
    justify-content: center;
  }
  .brand-logo {
    height: 50px;
    max-width: min(188px, 56vw);
  }
  .site-header.is-scrolled .brand-logo {
    height: 46px;
    max-width: min(176px, 54vw);
  }
  .brand-logo-footer {
    height: 62px;
    max-width: 200px;
    padding: 0.55rem 0.9rem;
    border-radius: 15px;
  }
  .header-bar,
  .header-inner {
    min-height: 4rem;
    padding: 0.35rem 0.65rem 0.35rem 0.75rem;
    border-radius: 16px;
  }
  .site-header { padding: 0.55rem 0 0.25rem; }
  .site-header.is-scrolled {
    padding: env(safe-area-inset-top, 0px) 0 0;
  }
  .site-header.is-scrolled .header-bar,
  .site-header.is-scrolled .header-inner {
    min-height: 3.85rem;
    padding: 0.25rem 0;
  }
  .who-visual,
  .who-visual img {
    min-height: 210px;
    border-radius: 20px;
  }
  .who-float {
    margin: -3rem 0.55rem 0;
  }
  .who-float h3 { font-size: 1.05rem; }
  .who-float p { font-size: 0.9rem; }
  .who-prose { font-size: 0.98rem; line-height: 1.75; }
  .map-pin-shape { width: 40px; height: 56px; }
  .map-pin-flag {
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    top: 18px;
  }
  .map-pin-drop .map-pin-label {
    white-space: normal;
    max-width: min(4.75rem, 26vw);
    text-align: center;
    line-height: 1.2;
    font-size: 0.62rem;
    opacity: 0;
    padding: 0.12rem 0.3rem;
  }
  .map-pin-drop.is-active .map-pin-label,
  .map-pin-drop:focus-visible .map-pin-label {
    opacity: 1;
    max-width: min(5.5rem, 30vw);
    font-size: 0.68rem;
  }
  .section-chapters {
    overflow-x: clip;
  }
  .section-chapters .container,
  .section-chapters .chapter-explorer {
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }
  .chapter-focus-body {
    padding: 1.1rem 1.05rem 1.2rem;
  }
  .chapter-focus-body h3 {
    font-size: 1.2rem;
  }
  .chapter-focus-actions {
    flex-direction: column;
    width: 100%;
  }
  .chapter-focus-actions .btn,
  .chapter-focus-actions .btn-facebook-group,
  .chapter-focus-actions [data-focus-facebook] {
    width: 100%;
  }
  .btn,
  .btn-facebook-group {
    min-height: 44px;
  }
  .news-card-compact {
    grid-template-columns: 1fr;
  }
  .news-card-compact .news-cover {
    min-height: 140px;
  }
  .news-card-compact .news-body {
    padding: 0.95rem 1rem 1.05rem;
  }
  .news-card-compact p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .news-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .news-page-btn {
    justify-content: center;
  }
  .faq-index {
    width: 1.85rem;
    height: 1.85rem;
    font-size: 0.75rem;
  }
  .faq-q {
    font-size: 0.95rem;
  }
  .values-grid,
  .events-grid,
  .chapter-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  .value-card {
    padding: 1.1rem 1rem;
  }
  .why-card {
    padding: 1.25rem 1.1rem;
    min-height: 0;
  }
  .why-quotemark {
    font-size: 2.8rem;
  }
  .why-quote {
    font-size: 1.05rem;
    line-height: 1.65;
  }
  .why-brand-logo {
    max-width: 120px;
  }
  .auth-card {
    padding: 1.35rem 1.1rem;
    border-radius: 22px;
  }
  .split {
    gap: 1.15rem;
  }
  .form input,
  .form select,
  .form textarea,
  .form button {
    font-size: 16px;
  }
  .site-footer {
    padding: 2.2rem 0 1.35rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .footer-brand-col,
  .footer-newsletter-col,
  .footer-col {
    grid-column: 1 / -1;
  }
  .footer-brand-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 1.15rem;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .footer-brand-col .brand-footer {
    margin-bottom: 0.75rem;
  }
  .footer-tagline {
    font-size: 1.02rem;
    max-width: 22rem;
  }
  .footer-brand-col .footer-muted {
    max-width: 24rem;
  }
  .footer-brand-col .social {
    margin-top: 0.65rem;
  }
  .footer-col {
    text-align: left;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-footer h2 {
    margin-bottom: 0.7rem;
    font-size: 0.96rem;
  }
  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
  .footer-links a {
    padding: 0.45rem 0;
    font-size: 0.98rem;
  }
  .footer-contact {
    gap: 0.7rem;
  }
  .footer-contact li {
    font-size: 0.94rem;
  }
  .footer-newsletter-col {
    margin-top: 0.15rem;
    padding: 1.1rem 1.1rem 1.15rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }
  .footer-newsletter-col .footer-muted {
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
  }
  .footer-bottom {
    margin-top: 1.4rem;
    padding-top: 0.95rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.3rem;
  }
  .newsletter-row {
    grid-template-columns: 1fr;
  }
  .newsletter-row .btn {
    width: 100%;
  }
  .section-head {
    margin-bottom: 1.5rem;
  }
  .about-works-grid {
    grid-template-columns: 1fr;
  }
  .membership-aside-card,
  .contact-aside-card,
  .contact-form-card {
    padding: 1.25rem 1.1rem;
  }
}

@media (max-width: 420px) {
  .who-points li {
    align-items: flex-start;
  }
  .news-ticker-dot {
    margin: 0 0.85rem;
  }
  .news-ticker-label {
    font-size: 0.72rem;
    padding: 0 0.55rem;
    letter-spacing: 0.02em;
  }
  .page-hero {
    padding: calc(5.25rem + env(safe-area-inset-top, 0px)) 0 1.8rem;
    min-height: clamp(9.5rem, 42vw, 12rem);
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .page-hero h1 {
    font-size: clamp(1.4rem, 6.8vw, 1.8rem);
    line-height: 1.32;
    max-width: min(100%, 16rem);
    margin: 0 auto;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.4rem);
  }
  .hero-title-en {
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    max-width: none;
  }
  .header-bar,
  .header-inner {
    padding: 0.3rem 0.5rem 0.3rem 0.6rem;
    border-radius: 14px;
  }
  .site-header.is-scrolled .header-bar,
  .site-header.is-scrolled .header-inner {
    border-radius: 0;
    padding: 0.2rem 0;
  }
  .brand-logo {
    height: 48px;
    max-width: min(172px, 58vw);
  }
  .site-header.is-scrolled .brand-logo {
    height: 44px;
    max-width: min(160px, 56vw);
  }
  .brand-logo-footer {
    height: 54px;
    max-width: 180px;
  }
  .container {
    width: min(1120px, calc(100% - 0.85rem));
  }
  .card,
  .value-card,
  .why-card {
    border-radius: 18px;
  }
}
