:root {
  color-scheme: light;
  --ink: #172036;
  --muted: #6f5c63;
  --paper: #fff7f7;
  --mist: #fff0f1;
  --line: rgba(231, 143, 145, .26);
  --rose: #e78f91;
  --rose-dark: #a94e55;
  --rose-deep: #7f2f38;
  --rose-soft: #f6c7c8;
  --rose-pale: #fff0f1;
  --white: #ffffff;
  --rose-rgb: 231, 143, 145;
  --rose-dark-rgb: 169, 78, 85;
  --shadow: 0 22px 54px rgba(20, 33, 61, .1);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  overflow: visible;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(231, 143, 145, .12);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(231, 143, 145, .04);
  transition: transform .5s cubic-bezier(.22,.61,.36,1), box-shadow .5s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.site-header.header-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

.nav {
  width: min(1720px, calc(100% - 64px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: clamp(168px, 13vw, 220px);
  height: auto;
  display: block;
  transition: opacity .2s;
}
.brand img:hover { opacity: .8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links a,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #1f2332;
  font-size: clamp(13px, .85vw, 15px);
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .15s;
  letter-spacing: -.01em;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  background: rgba(231, 143, 145, .1);
  color: var(--rose-deep);
  outline: none;
}

.nav-links .is-active,
.nav-trigger[aria-expanded="true"],
.has-menu:hover .nav-trigger,
.has-menu:focus-within .nav-trigger {
  background: rgba(231, 143, 145, .14);
  color: var(--rose-deep);
  outline: none;
}

.nav-pin {
  border: 1.5px solid rgba(231, 143, 145, .25) !important;
  padding-inline: 16px !important;
  color: var(--rose-dark) !important;
  background: rgba(231, 143, 145, .06) !important;
}

.nav-pin:hover,
.nav-pin:focus-visible,
.nav-pin.is-active {
  background: rgba(231, 143, 145, .14) !important;
  color: var(--rose-deep) !important;
  border-color: rgba(169, 78, 85, .35) !important;
}

.nav-chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transform: translateY(1px);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
}

.nav-trigger[aria-expanded="true"] .nav-chevron,
.has-menu:hover .nav-chevron,
.has-menu:focus-within .nav-chevron {
  transform: translateY(1px) rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1001;
  width: min(310px, 90vw);
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  display: grid;
  padding: 6px;
  border: 1px solid rgba(231, 143, 145, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 56px rgba(20, 33, 61, .12), 0 4px 12px rgba(0,0,0,.04);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px) scale(.97);
  transition: opacity .22s ease, transform .25s cubic-bezier(.22,1,.36,1);
  transform-origin: top center;
}

.nav-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.has-menu:hover .nav-menu,
.has-menu:focus-within .nav-menu,
.nav-trigger[aria-expanded="true"] + .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.nav-menu a {
  min-height: 48px;
  justify-content: flex-start;
  padding: 12px 18px;
  border-radius: 10px;
  color: #1f2332;
  font-size: 15px;
  font-weight: 620;
  transition: background .18s, color .18s, padding-left .2s;
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  background: rgba(231, 143, 145, .1);
  color: var(--rose-deep);
  padding-left: 22px;
}

.nav-action,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

.nav-action {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(231, 143, 145, .22);
  gap: 6px;
}
.nav-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(231, 143, 145, .32);
}
.nav-action:active {
  transform: translateY(0) scale(.97);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(231, 143, 145, .22);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(231, 143, 145, .28);
}

.nav-action--secondary {
  background: transparent;
  color: var(--rose-dark);
  border: 1.5px solid rgba(231, 143, 145, .22);
  box-shadow: none;
}
.nav-action--secondary:hover {
  background: rgba(231, 143, 145, .06);
  border-color: rgba(169, 78, 85, .3);
  box-shadow: none;
}

.btn-secondary {
  background: var(--white);
  border-color: rgba(20, 33, 61, .16);
  color: var(--ink);
}

.hero {
  padding: clamp(58px, 8vw, 96px) 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(320px, .48fr);
  gap: 28px;
  align-items: stretch;
}

.eyebrow,
.kicker {
  margin: 0 0 10px;
  color: var(--rose-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 82px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 620;
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.panel {
  padding: clamp(24px, 4vw, 42px);
}

.hero-side {
  display: grid;
  gap: 12px;
  align-content: start;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .86);
}

.stat strong {
  display: block;
  color: var(--rose);
  font-size: 32px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 760;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--mist);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 22px;
  box-shadow: none;
}

.card p,
.muted {
  color: var(--muted);
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.amount-card {
  min-height: 118px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.amount-card.featured {
  background: var(--rose);
  color: var(--white);
}

.amount-card strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.amount-card span {
  display: block;
  margin-top: 8px;
  color: inherit;
  font-weight: 800;
}

/* ---- amount buttons (donation selector) ---- */
.amounts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.amount {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100px;
  padding: 18px 16px;
  border: 2.5px solid var(--rose-soft);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
}

.amount::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  opacity: 0;
  transition: opacity .25s;
  border-radius: inherit;
}

.amount:hover {
  border-color: var(--rose);
  box-shadow: 0 6px 22px rgba(231, 143, 145, .22);
  transform: translateY(-2px);
}

.amount:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 2px;
}

.amount[aria-pressed="true"] {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  box-shadow: 0 10px 28px rgba(231, 143, 145, .32);
}

.amount[aria-pressed="true"]::before {
  opacity: 1;
}

.amount strong {
  display: block;
  font-size: 30px;
  font-weight: 850;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.amount span {
  display: block;
  margin-top: 7px;
  font-weight: 750;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
}

.amount[aria-pressed="true"] span {
  opacity: .88;
}

.amount-custom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 100px;
  padding: 16px;
  border: 2.5px dashed var(--rose-soft);
  border-radius: 16px;
  background: var(--mist);
  justify-content: center;
  transition: border-color .22s, background .22s;
}

.amount-custom:focus-within {
  border-color: var(--rose);
  background: var(--white);
}

.amount-custom label {
  font-weight: 750;
  font-size: 13px;
  color: var(--rose-dark);
}

.custom-amount-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-amount-row input {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--rose-soft);
  border-radius: 10px;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  background: var(--white);
  color: var(--ink);
  transition: border-color .22s;
}

.custom-amount-row input:focus {
  border-color: var(--rose);
  outline: none;
  box-shadow: 0 0 0 4px rgba(231, 143, 145, .12);
}

.custom-amount-row input::placeholder {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

.custom-amount-row span {
  font-weight: 850;
  font-size: 18px;
  color: var(--rose-dark);
  white-space: nowrap;
}

/* ---- responsive donation ---- */
@media (max-width: 860px) {
  .donation-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .amounts {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .amount {
    min-height: auto;
    padding: 14px;
  }

  .amount strong {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.bank-list {
  display: grid;
  gap: 0;
}

.bank-list div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.bank-list dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bank-list dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

/* =============================================
   DONATION SECTION – rose-branded rebuild
   ============================================= */
.donation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  gap: 28px;
  align-items: center;
}

@media (max-width: 860px) {
  .donation-layout {
    grid-template-columns: 1fr;
  }
}

.donation-panel {
  background: var(--white);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 52px) clamp(24px, 5vw, 44px);
  box-shadow: 0 12px 48px rgba(169, 78, 85, .1);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: center;
}

.donation-copy h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 10px;
  color: var(--rose-deep);
}

.donation-copy .kicker {
  margin-bottom: 6px;
}

.donation-copy > p:not(.kicker):not(.donation-note) {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 6px;
}

.donation-note {
  font-size: 15px;
  font-weight: 700;
  color: var(--rose-dark);
  margin: 12px 0 0;
  min-height: 22px;
  transition: color .2s;
}

.donation-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ---- donation quote ---- */
.donation-quote {
  margin: 0;
  padding: clamp(32px, 5vw, 48px) clamp(28px, 4vw, 40px);
  border-radius: 24px;
  background: linear-gradient(160deg, var(--white) 0%, var(--rose-pale) 100%);
  box-shadow: 0 16px 56px rgba(127, 47, 56, .1);
  position: relative;
}

.donation-quote::before {
  content: "\201C";
  position: absolute;
  left: clamp(20px, 3vw, 32px);
  top: 10px;
  font-size: 96px;
  line-height: 1;
  color: var(--rose);
  opacity: .28;
  font-family: Georgia, "Times New Roman", serif;
  pointer-events: none;
}

.donation-quote p {
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--rose-deep);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.donation-quote p::first-line {
  font-weight: 900;
}

.donation-quote cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--rose-dark);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .04em;
  position: relative;
  z-index: 1;
}

.donation-quote cite::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
}

/* action buttons row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn {
  flex: 1 1 auto;
  min-width: 180px;
  text-decoration: none;
}

.form-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(231, 143, 145, .22);
  border-color: var(--rose);
}

.map-preview {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .72) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .72) 1px, transparent 1px),
    linear-gradient(135deg, rgba(231, 143, 145, .24), rgba(255, 255, 255, .92));
  background-size: 38px 38px, 38px 38px, auto;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px 999px 999px 5px;
  background: var(--rose);
  color: var(--white);
  font-weight: 950;
  transform: rotate(-45deg);
  box-shadow: 0 14px 28px rgba(169, 78, 85, .24);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-pin:nth-child(1) {
  top: 22%;
  left: 18%;
}

.map-pin:nth-child(2) {
  top: 54%;
  left: 43%;
  background: var(--ink);
}

.map-pin:nth-child(3) {
  top: 25%;
  right: 20%;
  background: var(--rose-dark);
}

.map-pin:nth-child(4) {
  right: 16%;
  bottom: 18%;
  background: #c96d74;
}

.location-list {
  display: grid;
  gap: 10px;
}

.location-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.location-item strong {
  display: block;
}

.location-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 650;
}

/* ═══════════════════════ Footer ═══════════════════════ */
.footer {
  padding: 0;
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
  padding: clamp(40px, 6vw, 60px) clamp(16px, 4vw, 40px) 44px;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 850;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.footer-logo img {
  width: min(200px, 100%);
  height: auto;
  opacity: .9;
  transition: opacity .2s;
}

.footer-logo img:hover {
  opacity: 1;
}

.footer-desc {
  margin: 16px 0 0;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 650;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-contact a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
  transition: color .18s;
}

.footer-contact a:hover {
  color: var(--rose-dark);
}

.footer-nl-text {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.4;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-newsletter input {
  width: 100%;
  padding: 11px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--mist);
  border: 2px solid var(--rose-soft);
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.footer-newsletter input:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(231, 143, 145, .1);
}

.footer-newsletter button {
  width: 100%;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 800;
  font-family: inherit;
  color: var(--white);
  background: var(--rose);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s;
}

.footer-newsletter button:hover {
  background: var(--rose-dark);
  box-shadow: 0 6px 18px rgba(169, 78, 85, .26);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--rose-pale);
  color: var(--rose-dark);
  transition: background .2s, color .2s, transform .2s;
}

.social-links a:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding: 16px clamp(16px, 4vw, 40px);
  background: var(--mist);
}

.footer-legal .shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
}

.fine-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.fine-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  transition: color .18s;
}

.fine-links a + a {
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.fine-links a:hover {
  color: var(--rose-dark);
}

/* Screen Reader Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive footer */
@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }

  .footer-legal .shell {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.donate-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 96px) 0 clamp(54px, 6vw, 76px);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .96) 0%, rgba(255, 247, 247, .86) 42%, rgba(239, 248, 245, .74) 100%),
    linear-gradient(180deg, #fffafa 0%, var(--paper) 100%);
}

.donate-hero::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(63, 125, 115, .32), rgba(231, 143, 145, .28), transparent);
}

.donate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .52fr);
  gap: clamp(18px, 2.4vw, 30px);
  align-items: stretch;
}

.donate-main {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-content: center;
  padding: clamp(34px, 5.4vw, 68px);
  border: 1px solid rgba(63, 125, 115, .16);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .76)),
    linear-gradient(115deg, rgba(255, 240, 241, .74), rgba(232, 247, 243, .64));
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(23, 32, 54, .12);
}

.donate-main::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42%, 360px);
  height: 100%;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(63, 125, 115, .08) 48% 100%),
    linear-gradient(180deg, rgba(244, 179, 94, .12), transparent 58%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}

.donate-main > * {
  position: relative;
  z-index: 1;
}

.donate-main h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: .92;
}

.donate-main .lead {
  max-width: 660px;
  color: #554951;
  font-size: clamp(18px, 1.75vw, 23px);
  line-height: 1.45;
}

.donate-quick {
  display: grid;
  gap: 16px;
}

.donate-photo-card {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(23, 32, 54, .14);
}

.donate-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.donate-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 32, 54, .1), transparent 32%),
    linear-gradient(0deg, rgba(23, 32, 54, .78), transparent 54%);
}

.photo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  max-width: 230px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(23, 32, 54, .12);
  backdrop-filter: blur(14px);
}

.photo-badge span,
.photo-badge strong {
  display: block;
}

.photo-badge span {
  color: var(--rose-deep);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.photo-badge strong {
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.22;
}

.donate-photo-card figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 850;
  line-height: 1.25;
  text-shadow: 0 2px 18px rgba(23, 32, 54, .42);
}

.donate-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.donate-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(63, 125, 115, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #315f58;
  font-size: 14px;
  font-weight: 850;
}

.donate-trust-row b {
  color: var(--rose-deep);
}

.donate-summary {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(63, 125, 115, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 50px rgba(23, 32, 54, .08);
}

.donate-summary .kicker {
  grid-column: 1 / -1;
  margin: 0 0 2px;
}

.donate-summary .stat {
  min-height: 100%;
  display: grid;
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-color: rgba(63, 125, 115, .14);
  background: #fff;
  box-shadow: none;
}

.donate-summary .stat span {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.34;
}

.donation-workspace {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .48fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}

.donation-builder,
.bank-panel,
.sponsor-panel {
  border: 1px solid rgba(63, 125, 115, .14);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(23, 32, 54, .09);
}

.donation-builder {
  padding: clamp(26px, 4.2vw, 46px);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.choice-card {
  position: relative;
  min-height: 164px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(63, 125, 115, .14);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 250, .96));
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.choice-card::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(63, 125, 115, .38);
  border-radius: 999px;
  background: var(--white);
}

.choice-card strong {
  display: block;
  padding-right: 22px;
  color: #253855;
  font-size: clamp(29px, 2.55vw, 44px);
  line-height: 1;
}

.choice-card span {
  color: var(--muted);
  font-weight: 820;
  line-height: 1.24;
}

.choice-card[aria-pressed="true"],
.choice-card:hover,
.choice-card:focus-visible {
  outline: none;
  transform: translateY(-2px);
  border-color: rgba(63, 125, 115, .42);
  background:
    linear-gradient(135deg, #315f58, #4f8d82 55%, #e78f91);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(49, 95, 88, .2);
}

.choice-card[aria-pressed="true"] strong,
.choice-card:hover strong,
.choice-card:focus-visible strong {
  color: var(--white);
}

.choice-card[aria-pressed="true"] span,
.choice-card:hover span,
.choice-card:focus-visible span {
  color: rgba(255, 255, 255, .9);
}

.choice-card[aria-pressed="true"]::after,
.choice-card:hover::after,
.choice-card:focus-visible::after {
  border-color: rgba(255, 255, 255, .94);
  background: var(--white);
}

.impact-note {
  position: relative;
  margin-top: 22px;
  padding: 22px 22px 22px 24px;
  border: 1px solid rgba(63, 125, 115, .18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(232, 247, 243, .78), rgba(255, 240, 241, .72));
}

.impact-note::before {
  content: "";
  position: absolute;
  inset: 16px auto 16px 0;
  width: 4px;
  border-radius: 999px;
  background: #3f7d73;
}

.impact-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #315f58;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.impact-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--rose-deep);
  font-size: 15px;
  text-transform: uppercase;
}

.impact-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 720;
}

.donation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.bank-panel,
.sponsor-panel {
  padding: clamp(24px, 3.4vw, 34px);
}

.bank-panel {
  position: sticky;
  top: 98px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
    linear-gradient(135deg, rgba(232, 247, 243, .72), rgba(255, 240, 241, .64));
}

.bank-panel::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #3f7d73, var(--rose));
}

.bank-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3.2vw, 40px);
}

.bank-intro,
.bank-footnote {
  color: var(--muted);
  font-weight: 690;
}

.bank-intro {
  margin-bottom: 20px;
}

.bank-footnote {
  margin: 14px 0 0;
  font-size: 14px;
}

.bank-panel .bank-list div {
  padding: 17px 0;
  border-top-color: rgba(63, 125, 115, .13);
}

.bank-panel .bank-list dd {
  font-size: clamp(18px, 1.45vw, 21px);
}

.copy-row {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.copy-row code {
  flex: 1 1 230px;
  padding: 14px 15px;
  border: 1px solid rgba(63, 125, 115, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  color: var(--ink);
  font-family: inherit;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.copy-button {
  min-height: 48px;
  padding: 11px 16px;
  border: 1px solid rgba(63, 125, 115, .22);
  border-radius: 999px;
  background: #315f58;
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.copy-button:focus-visible,
.copy-button:hover {
  outline: none;
  border-color: #315f58;
  background: #264e49;
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 26px;
  border: 1px solid rgba(63, 125, 115, .14);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 250, .96));
  box-shadow: 0 18px 44px rgba(23, 32, 54, .06);
}

.proof-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #3f7d73, var(--rose));
}

.proof-card strong {
  display: block;
  margin-bottom: 14px;
  color: #3f7d73;
  font-size: 38px;
  line-height: 1;
}

.sponsor-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 250, 250, .94));
}

.steps {
  counter-reset: donation-step;
  display: grid;
  gap: 12px;
}

.step-card {
  counter-increment: donation-step;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid rgba(63, 125, 115, .13);
  border-radius: 18px;
  background: var(--white);
}

.step-card::before {
  content: counter(donation-step);
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(63, 125, 115, .14);
  color: #315f58;
  font-weight: 950;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 920px) {
  .nav {
    flex-wrap: nowrap;
    padding: 12px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .donate-hero-grid,
  .donation-workspace,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .choice-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .donate-main {
    min-height: auto;
  }

  .donate-summary {
    grid-template-columns: 1fr;
  }

  .bank-panel {
    position: static;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .brand img {
    width: 154px;
  }

  .nav-action,
  .btn {
    width: 100%;
  }

  .site-header .nav-action {
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
  }

  .amount-grid {
    grid-template-columns: 1fr;
  }

  .donate-main {
    min-height: auto;
    padding: 28px;
    border-radius: 22px;
  }

  .donate-main h1 {
    font-size: 40px;
    line-height: 1;
  }

  .donate-main .lead {
    font-size: 18px;
  }

  .donate-trust-row {
    display: none;
  }

  .donate-photo-card,
  .donate-photo-card img {
    min-height: 280px;
  }

  .donate-photo-card {
    border-radius: 22px;
  }

  .photo-badge {
    max-width: calc(100% - 36px);
  }

  .choice-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 132px;
  }

  .donation-actions {
    display: grid;
  }

  .copy-row {
    display: grid;
  }

  .copy-button {
    width: 100%;
  }

  .panel {
    padding: 22px;
  }

  .map-preview {
    min-height: 260px;
  }
}

/* ── Hamburger menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid rgba(20, 33, 61, .12);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  z-index: 1002;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - var(--header-height, 86px));
  overflow-y: auto;
  background: rgba(255, 255, 255, .99);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(20, 33, 61, .14);
  backdrop-filter: blur(16px);
  padding: 18px 0 28px;
  z-index: 1001;
}

.nav-dropdown.is-open {
  display: block;
}

.nav-drawer {
  display: grid;
  gap: 18px;
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 16px;
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  transition: background .18s ease, color .18s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible,
.nav-dropdown a.is-active {
  background: rgba(231, 143, 145, .12);
  color: var(--rose-deep);
  outline: none;
}

.nav-drawer-pins {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nav-drawer-pins a {
  min-height: 58px;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(231, 143, 145, .34);
  border-radius: 16px;
  background: rgba(255, 240, 241, .58);
  color: var(--rose-deep);
  font-weight: 900;
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* ── Dropdown grid ── */
.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0;
}

.dropdown-col strong {
  display: block;
  font-size: 11px;
  font-weight: 900;
  color: var(--rose-deep);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
  padding: 0 6px;
}

.dropdown-col a {
  width: 100%;
  border-bottom: 1px solid rgba(20, 33, 61, .07);
  border-radius: 0;
}

@media (max-width: 860px) {
  .nav {
    width: min(100% - 28px, 1120px);
    gap: 10px;
  }

  .brand img {
    width: 154px;
  }

  .nav-drawer-pins,
  .dropdown-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dropdown-col {
    padding-top: 6px;
  }
}

/* ══════ MOBILE DRAWER (mmenu) ══════ */
@keyframes mmenuBackdropIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes mmenuDrawerIn    { from { transform: translateX(102%); } to { transform: translateX(0); } }

@keyframes mmenuLinkIn      { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mmenuBottomIn    { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mmenuCloseShimmer { 0% { border-color: rgba(169,78,85,.12); } 50% { border-color: rgba(169,78,85,.28); } 100% { border-color: rgba(169,78,85,.12); } }

.mmenu-scope {
  position: fixed;
  inset: 0;
  z-index: 9999;
  font-family: Inter, system-ui, sans-serif;
  display: none;
}
.mmenu-scope.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.mmenu-scope.is-open .mmenu-backdrop {
  animation: mmenuBackdropIn .28s ease;
}
.mmenu-scope.is-open .mmenu-drawer {
  animation: mmenuDrawerIn .32s cubic-bezier(.22,1,.36,1);
}
.mmenu-scope.is-open .mmenu-eyebrow {
  animation: mmenuLinkIn .4s .1s cubic-bezier(.22,1,.36,1) forwards;
}
.mmenu-scope.is-open .mmenu-link {
  animation: mmenuLinkIn .42s cubic-bezier(.22,1,.36,1) forwards;
}
.mmenu-scope.is-open .mmenu-bottom {
  animation: mmenuBottomIn .48s .2s cubic-bezier(.22,1,.36,1) forwards;
}
.mmenu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16,14,20,.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: mmenuBackdropIn .28s ease;
}
.mmenu-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 86vw);
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: -12px 0 48px rgba(16,14,20,.15), -2px 0 8px rgba(0,0,0,.04);
  transform: translateX(102%);
  transition: transform .34s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.mmenu-scope.is-open .mmenu-drawer {
  transform: translateX(0);
}

/* Smooth mobile menu open-close transitions */
.mmenu-backdrop {
  opacity: 0;
  transition: opacity .24s ease, backdrop-filter .24s ease;
}
.mmenu-scope.is-open .mmenu-backdrop {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .mmenu-scope,
  .mmenu-backdrop,
  .mmenu-drawer {
    transition: none !important;
    animation: none !important;
  }
}

.mmenu-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  min-height: 62px;
  padding: 0 20px;
}
.mmenu-logo {
  height: 27px;
  width: auto;
}
.mmenu-close {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(169,78,85,.14);
  border-radius: 50%;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  color: #7f2f38;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  animation: mmenuCloseShimmer 3.5s 1.2s ease-in-out infinite;
}
.mmenu-close:active {
  background: rgba(231,143,145,.16);
  border-color: rgba(169,78,85,.38);
}
.mmenu-nav {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  padding: 4px 14px 10px;
  -webkit-overflow-scrolling: touch;
}
.mmenu-section {
  padding-top: 6px;
}
.mmenu-section:first-child {
  padding-top: 0;
}
.mmenu-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 900;
  color: #a94e55;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 8px;
  padding-left: 8px;
  opacity: 0;
  animation: mmenuLinkIn .4s .1s cubic-bezier(.22,1,.36,1) forwards;
}
.mmenu-link {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 50px;
  padding: 10px 12px 10px 8px;
  color: #1f2332;
  font-size: 16px;
  font-weight: 530;
  text-decoration: none;
  border-radius: 12px;
  opacity: 0;
  animation: mmenuLinkIn .42s cubic-bezier(.22,1,.36,1) forwards;
  transition: background .18s, padding-left .22s, color .18s;
}
.mmenu-link:active {
  background: rgba(231,143,145,.09);
  padding-left: 14px;
}
.mmenu-link.is-active {
  color: #7f2f38;
  font-weight: 650;
  background: rgba(231,143,145,.08);
}
.mmenu-link-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e78f91;
  opacity: .45;
  transition: opacity .2s, transform .2s, box-shadow .2s;
}
.mmenu-link.is-active .mmenu-link-dot {
  opacity: 1;
  transform: scale(1.6);
  background: #a94e55;
  box-shadow: 0 0 0 5px rgba(169,78,85,.09);
}
.mmenu-link-chev {
  flex-shrink: 0;
  margin-left: auto;
  color: #d4b3b5;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .22s, transform .22s, color .22s;
}
.mmenu-link:active .mmenu-link-chev,
.mmenu-link.is-active .mmenu-link-chev {
  opacity: 1;
  transform: translateX(0);
  color: #a94e55;
}
.mmenu-bottom {
  position: relative;
  z-index: 1;
  padding: 8px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  animation: mmenuBottomIn .48s .2s cubic-bezier(.22,1,.36,1) forwards;
}

.mmenu-actions-card {
  display: flex;
  border-radius: 16px;
  background: #f5f0f1;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.mmenu-action {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 10px 14px;
  text-decoration: none;
  color: #1f2332;
  font-size: 14px;
  font-weight: 620;
  transition: background .18s, color .18s;
}
.mmenu-action:active {
  background: rgba(231,143,145,.08);
}
.mmenu-action--map {
  color: #7f2f38;
  font-weight: 720;
}
.mmenu-action--account {
  color: #6f5c63;
  font-weight: 600;
}
.mmenu-action-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,.75);
  color: inherit;
}
.mmenu-action--map .mmenu-action-icon {
  color: #e78f91;
}
.mmenu-action--account .mmenu-action-icon {
  color: #a99a9d;
}
.mmenu-action-label {
  flex: 1;
}
.mmenu-action-arrow {
  flex-shrink: 0;
  color: #c9babb;
  opacity: .5;
  transition: opacity .18s, transform .18s;
}
.mmenu-action:active .mmenu-action-arrow {
  opacity: 1;
  transform: translateX(3px);
}
.mmenu-actions-divider {
  width: 1px;
  min-height: 36px;
  align-self: center;
  background: rgba(0,0,0,.06);
}


/* Header parity for injected static mobile menu */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(135deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-135deg); }
.hamburger.is-open { border-color: rgba(169,78,85,.3); background: rgba(255,240,241,.7); box-shadow: 0 0 0 5px rgba(231,143,145,.08); }

/* Stronger global header rules for pages with local legacy header CSS */
.site-header.site-header {
  z-index: 1000;
  overflow: visible;
}

.site-header .nav {
  width: min(1720px, calc(100% - 64px));
  min-height: 86px;
  gap: 24px;
}

.site-header .brand img {
  width: clamp(178px, 13vw, 246px);
}

.site-header .nav-links {
  gap: clamp(8px, 1.1vw, 22px);
}

.site-header .nav-links a,
.site-header .nav-trigger {
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid transparent;
  color: #111827;
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 850;
}

.site-header .nav-pin {
  border: 2px solid var(--rose);
  padding-inline: 16px;
}

@media (max-width: 1180px) {
  .site-header .nav-links {
    display: none;
  }

  .site-header .hamburger {
    display: flex;
  }
}

@media (max-width: 860px) {
  .site-header .nav {
    width: min(100% - 28px, 1120px);
    min-height: 76px;
    gap: 10px;
  }

  .site-header .brand img {
    width: 154px;
  }
}

/* ── Rearrangement of top nav actions ── */
.nav-actions-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 2px solid var(--rose);
  background: transparent;
  color: var(--rose-dark);
  font-size: clamp(14px, .92vw, 17px);
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.nav-contact-btn:hover,
.nav-contact-btn:focus-visible,
.nav-contact-btn.is-active {
  background: rgba(231, 143, 145, .13);
  color: var(--rose-deep);
  border-color: var(--rose-dark);
  outline: none;
}

@media (max-width: 1180px) {
  .nav-contact-btn {
    display: none !important;
  }
  .nav-actions-group {
    margin-left: auto;
  }
}

/* ── Premium Centered Navigation Grid ── */
@media (min-width: 1181px) {
  .site-header .nav {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center;
    justify-content: stretch;
  }
  .site-header .brand {
    justify-self: start;
    display: flex;
    align-items: center;
  }
  .site-header .nav-links {
    justify-self: center;
    display: flex;
    align-items: center;
  }
  .site-header .nav-actions-group {
    justify-self: end;
  }
}


/* ═══════ MOBILE + COOKIE FIXES ═══════ */

/* Hide WordPress cookie banners */
.cmplz-cookiebanner,
.cmplz-manage-consent,
#cmplz-cookiebanner-container,
[data-cmplz],
.cc-banner,
.cc-window { display: none !important; }

@media (max-width: 640px) {
  .nav-links { display: none !important; }
  .nav-actions-group { display: none !important; }
  .hamburger { display: flex !important; }
  .nav { min-height: 64px; padding: 0 16px; }
  .brand img { width: 140px; }
  
  .hero, .page-hero { padding: 100px 0 60px; min-height: auto; }
  .hero-layout, .hero-grid { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 36px; white-space: normal; line-height: 1.1; }
  .hero-actions, .hero-actions-group { flex-direction: column; }
  .hero-actions .btn, .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 12px; }
  .hero-stat { flex: 1 1 45%; min-width: 120px; }

  .section { padding: 48px 0; }
  .section-head { flex-direction: column; }
  
  .dashboard-grid, .needs-grid, .projects, .reports { grid-template-columns: 1fr; }
  .signal-row { flex-direction: column; }
  .partner-grid { grid-template-columns: repeat(3, 1fr); }
  
  .donation-layout, .contact-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-legal .shell { flex-direction: column; text-align: center; }
  .footer-newsletter { flex-direction: column; }

  /* Map page */
  .map-page { padding: 24px 0; }
  .map-intro h1 { font-size: 28px; }
  .map-app { display: flex; flex-direction: column; }
  .map-panel { order: -1; min-height: 400px; width: 100%; }
  .map-sidebar { width: 100%; max-height: none; }
  .real-map { height: 400px; }
}

@media (max-width: 480px) {
  .hero h1, .page-hero h1 { font-size: 28px; }
  .hero-stat { flex: 1 1 100%; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .shell { width: calc(100% - 24px); }
}

/* ═══════ GLOBAL MOBILE OVERFLOW FIXES ═══════ */
@media (max-width: 640px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }
  img, video, canvas, svg {
    max-width: 100%;
    height: auto;
  }
  .slider-stage, .slider-slide, .slider-slide img {
    width: 100% !important;
    max-width: 100vw !important;
  }
  .photo-slider {
    flex-direction: column;
  }
  .project-card img {
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 640px) {
  .slider-side, .slider-note, .slider-nav, .slider-thumbs { width: 100% !important; max-width: 100vw !important; }
  .slider-control { flex-shrink: 0; }
}

/* Mobile fixed rectangular header */
@media (max-width: 640px) {
  body {
    padding-top: 60px;
  }

  .site-header,
  .site-header.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 60px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(20, 33, 61, .08) !important;
    background: rgba(255, 255, 255, .98) !important;
    box-shadow: 0 8px 24px rgba(20, 33, 61, .08) !important;
    opacity: 1 !important;
    transform: none !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    z-index: 1000 !important;
  }

  .site-header.header-hidden,
  .site-header.menu-open {
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header .nav {
    width: 100% !important;
    height: 60px !important;
    min-height: 60px !important;
    margin: 0 !important;
    padding: 0 16px !important;
  }

  .site-header .hamburger {
    border-radius: 8px !important;
  }
}
