:root {
  --navy: #082a55;
  --navy-2: #0e376b;
  --red: #f05a3c;
  --gold: #e8b64e;
  --green: #6f9c64;
  --blue: #35659d;
  --cream: #fbf6ee;
  --soft: #fffaf5;
  --ink: #162744;
  --muted: #66728b;
  --line: #e8edf3;
  --shadow: 0 18px 46px rgba(14, 37, 73, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(42px, 5vw, 72px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(31px, 3.4vw, 50px);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(232, 237, 243, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  white-space: nowrap;
}

.menu a {
  position: relative;
  text-decoration: none;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.menu a.active,
.menu a:hover {
  color: var(--red);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%);
}

.menu-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.menu-dropdown--stories .menu-dropdown__panel {
  width: 360px;
}

.menu-dropdown--stories .menu-dropdown__panel a {
  white-space: normal;
  overflow-wrap: anywhere;
}

.menu-dropdown__toggle {
  display: grid;
  width: 18px;
  height: 24px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}

.menu-dropdown__toggle:hover,
.menu-dropdown:focus-within .menu-dropdown__toggle,
.menu-dropdown.is-open .menu-dropdown__toggle {
  color: var(--red);
}


.menu-dropdown__panel {
  position: absolute;
  top: calc(100% + 18px);
  left: -18px;
  display: grid;
  width: 242px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(14, 37, 73, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-dropdown__panel::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.menu-dropdown:hover .menu-dropdown__panel,
.menu-dropdown:focus-within .menu-dropdown__panel,
.menu-dropdown.is-open .menu-dropdown__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu .menu-dropdown__panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.3;
}

.menu .menu-dropdown__panel a:hover,
.menu .menu-dropdown__panel a:focus-visible,
.menu .menu-dropdown__panel a[aria-current="page"] {
  background: var(--soft);
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn.primary,
.btn.donate {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(240, 90, 60, 0.24);
}

.btn.secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

.btn.light {
  background: #fff;
  color: var(--navy);
}

.accent {
  color: var(--red);
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.kicker {
  margin-top: 7px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.lead {
  max-width: 640px;
  margin-top: 18px;
  color: #53627e;
  font-size: 18px;
  line-height: 1.75;
}

.small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section.tight {
  padding: 58px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #fff 0%, #fff 54%, #fff7ed 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  min-height: 560px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 74px 0 68px;
}

.hero-copy p {
  max-width: 500px;
  margin-top: 24px;
  color: #425370;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.featured-photo {
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
}

.featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero .featured-photo {
  margin-right: calc((100vw - min(1120px, calc(100vw - 48px))) / -2);
}

.home-hero .featured-photo img {
  object-position: center right;
}

.stats-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-card {
  min-height: 126px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.stat-card:last-child {
  border-right: 0;
}

.stat-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-card b {
  display: block;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
}

.stat-card>span:not(.icon-bubble),
.stat-card p {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.icon-bubble {
  display: inline-grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.icon-bubble.blue {
  color: var(--blue);
}

.icon-bubble.green {
  color: var(--green);
}

.icon-bubble.gold {
  color: var(--gold);
}

.centered {
  text-align: center;
}

.centered .lead {
  margin-right: auto;
  margin-left: auto;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.program-card,
.story-card,
.amount-card,
.payment-card,
.mini-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.06);
}

.program-card {
  position: relative;
}

.program-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.program-card .icon-bubble {
  position: absolute;
  top: 126px;
  left: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  color: #fff;
  box-shadow: 0 8px 18px rgba(14, 37, 73, 0.16);
}

.program-card .icon-bubble.blue {
  background: var(--blue);
}

.program-card .icon-bubble.green {
  background: #158b69;
}

.program-card .icon-bubble.red {
  background: var(--red);
}

.program-card .icon-bubble.gold {
  background: var(--gold);
}

.card-body {
  padding: 28px 22px 24px;
}

.card-body h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.card-body p {
  color: var(--muted);
  font-size: 13px;
}

.learn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--red);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.dark-cta {
  background: #355380;
  color: #fff;
}

div.dark-cta,
.dark-panel {
  position: relative;
  overflow: hidden;
  padding: 42px 32px;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.08);
}

.dark-cta .container,
div.dark-cta,
.dark-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.dark-cta h2,
.dark-cta h3,
.dark-panel h2,
.dark-panel h3 {
  color: #fff;
}

.dark-cta p,
.dark-panel p {
  color: #fff;
}

.outline-heart {
  display: grid;
  flex: 0 0 74px;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 31px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  background: linear-gradient(120deg, #fff 0%, #fff 62%, #fff5e9 100%);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  align-items: center;
  gap: 62px;
}

.split.reverse {
  grid-template-columns: minmax(410px, 1.05fr) minmax(0, 0.95fr);
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.copy-stack--narrow {
  max-width: 840px;
  margin: 0 auto;
}

.copy-stack ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.copy-stack li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #425370;
  font-size: 14px;
}

.copy-stack li::before,
.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
}

.featured-photo {
  position: relative;
  min-height: 420px;
}

.featured-card {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
}

.featured-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.featured-photo.rounded {
  max-width: 420px;
  justify-self: end;
}

.featured-photo.rounded img {
  border-radius: 12px;
}

.featured-photo.rounded .featured-card--light {
  right: 20px;
  bottom: 20px;
  width: min(290px, 80%);
  padding: 18px 20px;
  gap: 12px;
}

.featured-card--light {
  position: absolute;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(320px, 75%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.info-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
}

.info-row b {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.info-row span {
  color: #40506d;
  font-size: 12px;
  font-weight: 700;
}

.mission-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.mission-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 34px 46px;
}

.mission-card+.mission-card {
  border-left: 1px solid var(--line);
}

.values-band {
  position: relative;
  overflow: hidden;
  padding: 42px 32px;
  border-radius: 12px;
  background: #355380;
  color: #fff;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.08);
}

.values-band h2 {
  color: #fff;
  text-align: center;
  font-size: 22px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.value {
  text-align: center;
}

.value b {
  display: block;
  margin: 10px 0 5px;
  color: #fff;
}

.value p {
  color: #fff;
  font-size: 12px;
}

.quote-band {
  margin-top: 54px;
  padding: 26px 32px;
  border-radius: 10px;
  background: #fff6ed;
  color: #43506b;
}

.quote-band b {
  margin-right: 18px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 0;
  vertical-align: middle;
}

.impact-hero {
  padding-bottom: 0;
}

.impact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 62px;
  align-items: start;
}

.impact-list {
  display: grid;
  gap: 30px;
  margin-top: 38px;
}

.impact-list .stat-head {
  align-items: flex-start;
}

.impact-list b {
  display: block;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.impact-list strong {
  display: block;
  color: var(--navy);
  font-size: 12px;
}

.impact-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.featured-photo {
  position: relative;
  min-height: 640px;
}

.featured-photo img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  object-position: center;
}

.featured-card--dark {
  position: absolute;
  z-index: 1;
  right: 42px;
  bottom: -72px;
  width: min(520px, calc(100% - 84px));
  padding: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), #123d72);
  color: #fff;
  box-shadow: 0 24px 54px rgba(11, 45, 85, 0.2);
}

.featured-card--dark h3 {
  margin-bottom: 20px;
  color: #fff;
}

.featured-card--dark li {
  color: #e7f0f9;
}

.story-feature {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  align-items: stretch;
  margin-top: 42px;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(90deg, #fff 0%, #fff 44%, #fff3e8 100%);
  box-shadow: 0 16px 38px rgba(14, 37, 73, 0.08);
}

.story-feature>div {
  padding: 34px;
}

.story-feature img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.story-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
}

.story-card__img--laksh {
  object-position: center calc(0% - 10px);
}

.story-card__img--murulidhar {
  object-position: center calc(50% + 60px);
}

.story-card__img--ramya {
  object-position: center calc(50% + 20px);
}

.hope-strip {
  padding: 20px 0;
  background: #355380;
  color: #fff;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.partners-row {
  margin-top: 28px;
}

.partners-row img {
  width: min(520px, 100%);
}

.sdg-section {
  background: var(--soft);
}

.sdg-subheading {
  margin-top: 12px;
  text-align: center;
  color: var(--navy);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 800;
}

.sdg-intro {
  max-width: 680px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--muted);
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.sdg-card {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.06);
}

.sdg-card img {
  width: min(150px, 100%);
  height: auto;
}

.sdg-card figcaption {
  margin-top: 12px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.program-card .card-body p+p {
  margin-top: 12px;
}

.partner-logo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}

.partner-logo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.partner-logo svg {
  display: block;
  width: 100%;
  aspect-ratio: 1.75;
}

.partner-logo figcaption {
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.csr-support-grid {
  margin-top: 36px;
}

.csr-support-card .card-body {
  height: 100%;
}

.contact-location {
  font-style: normal;
}

.contact-channel-list {
  display: grid;
  gap: 10px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.social-links .social-item {
  margin: 0;
}

.social-item {
  display: flex;
  align-items: center;
  min-height: 30px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff !important;
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--red);
  color: #fff !important;
}

.social-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.contact-details a {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.department-contacts h2,
.centre-contacts h2 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 16px;
}

.centre-email-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  list-style: none;
}

.process-band {
  position: relative;
  overflow: hidden;
  padding: 42px 32px;
  border-radius: 12px;
  background: #355380;
  color: #fff;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.process-card h3 {
  color: #fff;
  font-family: inherit;
  font-size: 15px;
}

.process-card p {
  color: #fff;
  font-size: 12px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.amount-card {
  padding: 30px 20px;
  text-align: center;
}

.amount-card b {
  display: block;
  margin: 16px 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.payment-card {
  min-height: 276px;
  padding: 30px;
}

.payment-card h3 {
  margin-bottom: 20px;
  font-family: inherit;
  font-size: 16px;
}

.payment-card .qr {
  width: 100%;
  margin: 0 auto 18px;
}

.payment-card .pay-logos {
  width: 160px;
  margin: 0 auto;
}

.payment-card__upi {
  text-align: center;
}

.tax-note {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 48px;
  padding: 24px 30px;
  border-radius: 10px;
  background: #fff6ed;
}

.tax-note img {
  width: 118px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 62px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-details b {
  display: block;
  color: var(--red);
}

.featured-photo {
  position: relative;
  min-height: 420px;
}

.featured-photo>img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.featured-card--compact {
  position: absolute;
  right: 28px;
  bottom: -34px;
  z-index: 1;
  width: min(330px, calc(100% - 56px));
  padding: 26px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), #123d72);
  color: #fff;
  box-shadow: var(--shadow);
}

.featured-card--compact h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
}

.featured-card--compact a {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 54px;
  align-items: end;
}

form {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-image {
  overflow: hidden;
  border-radius: 10px;
}

.form-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.site-footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(2, minmax(130px, 1fr)) minmax(220px, 1.35fr);
  gap: 36px;
  padding-bottom: 42px;
}

.footer-brand__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin-bottom: 16px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
}

.footer-brand__link img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-brand p,
.footer-connect p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.footer-title {
  margin: 4px 0 16px;
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
}

.footer-email {
  display: inline-block;
  margin: 12px 0 18px;
  color: #fff !important;
  font-weight: 700;
}

.footer-cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 10px 15px;
  font-size: 11px;
}

.site-footer .footer-row {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .55);
}

.site-footer .footer-row a {
  color: rgba(255, 255, 255, .8);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1050px) {
  .nav {
    align-items: flex-start;
    padding: 18px 0;
  }

  .menu {
    max-width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding: 12px 2px 14px;
  }

  .menu-dropdown__panel {
    left: 0;
  }

  .menu-dropdown--stories::after,
  .menu-dropdown--stories .menu-dropdown__panel {
    width: min(360px, calc(100vw - 48px));
  }

  .menu-dropdown::after {
    left: 0;
  }

  .footer-grid,
  .hero-grid,
  .split,
  .split.reverse,
  .impact-wrap,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .home-hero .featured-photo {
    margin-right: 0;
  }

  .featured-photo {
    min-height: 420px;
  }

  .featured-photo img,
  .featured-photo>img {
    height: 480px;
  }

  .featured-card--dark {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 24px;
  }

  .card-grid,
  .amount-grid,
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid,
  .values-grid,
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sdg-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 32px, 1120px);
  }

  h1 {
    font-size: 32px;
    letter-spacing: 0;
  }

  .hero-copy h1 {
    max-width: 330px;
  }

  .hero-copy p,
  .hero-actions {
    max-width: 330px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  h2 {
    font-size: 31px;
  }

  .nav {
    display: grid;
    gap: 8px;
    min-height: auto;
  }

  .brand img {
    width: 68px;
  }

  .menu {
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
    gap: 10px 16px;
    white-space: normal;
    overflow-x: visible;
  }

  .menu a {
    max-width: 92px;
    font-size: 10px;
    overflow-wrap: anywhere;
  }

  .nav .btn.donate {
    justify-self: start;
  }

  .hero-grid {
    min-height: 0;
  }

  .hero-copy,
  .page-hero,
  .section {
    padding: 54px 0;
  }

  .featured-photo {
    min-height: 360px;
  }

  .hero-actions,
  .dark-cta .container,
  div.dark-cta,
  .dark-panel,
  .footer-row {
    align-items: stretch;
    flex-direction: column;
  }

  .stats-row,
  .card-grid,
  .card-grid.two,
  .card-grid.three,
  .mission-grid,
  .values-grid,
  .process-grid,
  .amount-grid,
  .payment-grid,
  .sdg-grid,
  .partner-logo-list,
  .tax-note,
  .field-row {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mission-card,
  .mission-card+.mission-card {
    border-left: 0;
    padding: 28px 0;
  }

  .story-feature {
    grid-template-columns: 1fr;
  }

  .featured-card,
  .featured-card--light,
  .featured-card--dark,
  .featured-card--compact {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }

  .values-band,
  .process-band,
  div.dark-cta,
  .dark-panel {
    padding: 32px 20px;
  }
}

/* Premium Form Status & Focus Styles */
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53, 101, 157, 0.15);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 4px;
  margin-bottom: 4px;
  animation: fadeInStatus 0.3s ease-out;
}

.form-status.success {
  background-color: #e8f7e9;
  border: 1px solid rgba(111, 156, 100, 0.5);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  color: #244a20;
  font-weight: 700;
}

.form-status.error {
  background-color: #fff5f5;
  border: 1px solid rgba(240, 90, 60, 0.3);
  color: #b03a22;
}

button:disabled {
  pointer-events: none;
}

@keyframes fadeInStatus {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-photo {
  max-width: 560px;
  width: 100%;
}

@media (max-width: 799px) {

  .featured-photo img,
  .featured-photo>img {
    width: 100%;
    height: auto;
    display: block;
  }
}

@media (min-width: 800px) {
  .featured-photo {
    height: 730px;
    overflow: hidden;
  }

  .featured-photo.rounded {
    height: 548px;
  }

  .featured-photo img,
  .featured-photo>img {
    height: 100%;
    object-position: bottom center;
  }
}

.about-reach__item .card-body {
  display: grid;
  min-height: 118px;
  place-items: center;
  text-align: center;
}

.about-reach__item h3 {
  font-size: 18px;
}

.governing-board__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.board-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  padding-top: 24px;
}

.board-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(14, 37, 73, 0.12);
}

.board-card__photo-wrap {
  width: 220px;
  height: 220px;
  max-width: calc(100% - 48px);
  border-radius: 10px;
  overflow: hidden;
  background: #f1f4f8;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(14, 37, 73, 0.08);
}

.board-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.board-card:hover .board-card__photo {
  transform: scale(1.03);
}

.board-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  padding: 20px 24px 22px;
}

.board-card__body .eyebrow {
  margin-bottom: 6px;
}

.board-card__body h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.board-card__body p {
  flex-grow: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.board-card__link {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.board-detail-hero .board-member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.08);
  width: 240px;
  margin: 0 auto;
  justify-self: center;
  align-self: center;
}

.board-detail-hero .board-member-card__photo-wrap {
  width: 208px;
  height: 208px;
  border-radius: 10px;
  overflow: hidden;
  background: #f1f4f8;
}

.board-detail-hero .board-member-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.board-detail-hero .board-member-card__caption {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.board-detail-hero .board-member-card__caption b {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
}

.board-detail-hero .board-member-card__caption span {
  color: var(--muted);
  font-size: 13px;
}

.program-team__banner {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(14, 37, 73, 0.08);
}

.program-team__banner-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.board-profile__responsibilities {
  padding: 22px;
  border-left: 3px solid var(--red);
  border-radius: 6px;
  background: var(--soft);
}

.board-profile__responsibilities h3 {
  font-family: inherit;
  font-size: 16px;
}

.board-profile__responsibilities ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
}

.program-team__content,
.program-team__quote {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .governing-board__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .board-profile__layout {
    grid-template-columns: 1fr;
  }

  .board-profile__photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .board-detail-hero .featured-photo {
    max-width: 240px;
    max-height: 250px;
  }
}

/* ==========================================================================
   Annual Report Cards & OTP Verification Modal
   ========================================================================== */

.report-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(14, 37, 73, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}

.report-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(14, 37, 73, 0.12);
  border-color: rgba(53, 101, 157, 0.3);
}

.report-card__header {
  padding: 24px 24px 14px;
  border-bottom: 1px solid #f4f6f9;
  background: linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.report-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  background: rgba(240, 90, 60, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.report-card__header h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0;
}

.report-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.report-card__body p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.report-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--muted);
}

.report-card__meta-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.btn-download-report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  text-decoration: none;
}

.btn-download-report:hover {
  background: var(--red);
  color: #fff;
}

.btn-download-report:active {
  transform: scale(0.99);
}

/* Modal Overlay & Dialog */
body.modal-open {
  overflow: hidden;
}

.report-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 42, 85, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.report-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.report-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(8, 42, 85, 0.28);
  padding: 32px 28px;
  transform: translateY(18px);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.report-modal.is-open .report-modal__dialog {
  transform: translateY(0);
}

.report-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f0f4f8;
  color: var(--navy);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.report-modal__close:hover {
  background: var(--red);
  color: #fff;
}

.report-modal__header {
  margin-bottom: 22px;
  padding-right: 28px;
}

.report-modal__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 4px;
}

.report-modal__title {
  font-size: 24px;
  color: var(--navy);
  margin: 0 0 4px;
}

.report-modal__subtitle {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--red);
}

.report-modal__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.report-form-group {
  margin-bottom: 16px;
}

.report-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.report-form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 7px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.report-form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(53, 101, 157, 0.15);
}

.report-form-input--otp {
  letter-spacing: 8px;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--navy);
}

.btn-modal-submit {
  width: 100%;
  padding: 13px;
  background: var(--red);
  color: #fff;
  border: 0;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease;
  margin-top: 8px;
}

.btn-modal-submit:hover:not(:disabled) {
  background: #d84529;
}

.btn-modal-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.report-modal__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12.5px;
}

.report-btn-link {
  background: none;
  border: 0;
  padding: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12.5px;
  cursor: pointer;
  text-decoration: underline;
}

.report-btn-link:hover:not(:disabled) {
  color: var(--red);
}

.report-btn-link:disabled {
  color: var(--muted);
  text-decoration: none;
  cursor: not-allowed;
}

.report-status {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  line-height: 1.5;
  margin-top: 14px;
  display: none;
}

.report-status.error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c6cb;
}

.report-status.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.report-status.info {
  background: #e3f2fd;
  color: #1565c0;
  border: 1px solid #bbdefb;
}

.report-success-box {
  text-align: center;
  padding: 16px 8px;
}

.report-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 26px;
  font-weight: 900;
}

.report-success-box h4 {
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 8px;
}

.report-success-box p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 20px;
  text-align: center;
}

.report-expiry-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--muted);
  background: #f4f6f9;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 12px;
}


