:root {
  --bg: #FBF6EE;
  --bg-warm: #F4ECDD;
  --bg-sand: #E9D9B8;
  --ink: #1B2A4E;
  --ink-soft: #3A4A6B;
  --ink-mute: #6B7894;
  --line: #E8DDC9;
  --blue: #2C7DC9;
  --blue-deep: #1F5A99;
  --blue-soft: #BCD8F0;
  --sun: #F5B82E;
  --sun-soft: #FCE9A8;
  --magenta: #C04B8A;
  --coral: #E8714F;
  --coral-deep: #C95937;
  --leaf: #5C8A4D;
  --leaf-soft: #C9DCB8;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 42px;

  --shadow-soft: 0 6px 30px -12px rgba(27, 42, 78, 0.14);
  --shadow-lift: 0 24px 60px -28px rgba(27, 42, 78, 0.32);

  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --t-display: clamp(2.4rem, 5.6vw, 4.8rem);
  --t-h1: clamp(2rem, 4vw, 3.2rem);
  --t-h2: clamp(1.6rem, 2.6vw, 2.2rem);
  --t-h3: clamp(1.2rem, 1.6vw, 1.5rem);
  --t-body: 1.0625rem;
  --t-lead: 1.18rem;
  --t-small: 0.92rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100vw; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--sun); color: var(--ink); }

.serif { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.01em; }
.cursive { font-family: 'Caveat', cursive; font-weight: 700; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ───────────── Top bar ───────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.84);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.topbar.scrolled { border-color: var(--line); }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 12px;
  gap: 12px;
  min-width: 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  flex-shrink: 1;
  min-width: 0;
}
.brand-logo {
  height: 88px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.topbar-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(251,246,238,0.06);
  border: 1px solid rgba(251,246,238,0.14);
  border-radius: 999px;
  font-weight: 600;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: rgba(251,246,238,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  transition: color 0.2s ease, background 0.2s ease;
}
.lang-switch button:hover { color: var(--bg); }
.lang-switch button.active {
  background: var(--bg);
  color: var(--ink);
}
.cta-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--coral);
  color: var(--bg);
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 14px rgba(232,113,79,0.32);
}
.cta-mini:hover { transform: translateY(-1px); background: var(--coral-deep); box-shadow: 0 8px 22px rgba(232,113,79,0.4); }

@media (max-width: 720px) {
  .brand-logo { height: 64px; }
}
@media (max-width: 480px) {
  .topbar-inner { gap: 8px; padding-block: 10px; }
  .brand-logo { height: 52px; }
  .cta-mini { padding: 9px 16px; font-size: 13px; }
}

/* ───────────── Hero ───────────── */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 80px) 0 clamp(60px, 10vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 22px;
  padding: 8px 16px;
  background: var(--blue-soft);
  border-radius: 999px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: var(--t-display);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 20px;
  color: var(--ink);
}
.hero h1 .accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--magenta);
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-2deg);
}
.hero-lead {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--coral);
  color: var(--bg);
  box-shadow: 0 8px 26px -8px rgba(232,113,79,0.55);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(232,113,79,0.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

.hero-photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lift);
  transform: rotate(2deg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-photo:hover { transform: rotate(0); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.hero-photo .tape {
  position: absolute;
  width: 110px; height: 28px;
  background: rgba(245, 184, 46, 0.7);
  top: -10px;
  left: 30px;
  transform: rotate(-4deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.hero-photo .tape.right {
  left: auto;
  right: 24px;
  bottom: -10px;
  top: auto;
  transform: rotate(3deg);
  background: rgba(192, 75, 138, 0.7);
}

.hero-badge {
  position: absolute;
  bottom: -36px;
  left: -24px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 18px 22px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 340px;
}
.hero-badge-icon {
  width: 44px; height: 44px;
  background: var(--sun-soft);
  color: var(--blue-deep);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hero-badge-text { font-size: 13px; line-height: 1.45; color: var(--ink-soft); }
.hero-badge-text strong { color: var(--ink); display: block; font-weight: 600; font-family: 'Fraunces', serif; font-size: 14px; }

/* hand-drawn flourishes */
.scribble { position: absolute; pointer-events: none; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { transform: rotate(1.5deg); aspect-ratio: 4/3; max-width: 480px; margin: 0 auto; }
  .hero-badge { left: 0; right: 0; margin: 0 auto; bottom: -28px; max-width: 320px; }
}

/* ───────────── Section base ───────────── */
section { position: relative; padding: clamp(60px, 9vw, 120px) 0; }
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin: 0 0 14px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: var(--t-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 18px;
}
.section-title .cursive {
  color: var(--magenta);
  font-size: 1.08em;
  display: inline-block;
  transform: rotate(-2deg);
}
.section-lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  max-width: 64ch;
  line-height: 1.6;
}

/* ───────────── Who We Are ───────────── */
.who {
  background: var(--bg);
  position: relative;
}
.who::before, .who::after {
  content: ""; position: absolute; pointer-events: none;
}
.who::before {
  /* concentric blue arcs left side */
  width: 280px; height: 280px;
  left: -120px; top: 40px;
  background: radial-gradient(circle at center, transparent 50%, var(--blue-soft) 51%, var(--blue-soft) 56%, transparent 57%, transparent 70%, var(--blue-soft) 71%, var(--blue-soft) 76%, transparent 77%);
  opacity: 0.6;
}
.who-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  max-width: 980px;
  margin-inline: auto;
}
.who-text { position: relative; }
.who-text h2.cursive {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--magenta);
  margin: 0 0 24px;
  transform: rotate(-1deg);
  display: inline-block;
}
.who-text p {
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0 0 18px;
  color: var(--ink);
}
.who-text p:last-child { color: var(--ink-soft); font-style: italic; font-family: 'Fraunces', serif; }
.who-stars {
  position: absolute;
  top: -10px;
  right: 12%;
  display: flex;
  gap: 10px;
}
.who-stars svg { width: 28px; height: 28px; }
.who-rays {
  position: absolute;
  bottom: 30px;
  right: -40px;
}
.who-rainbow {
  position: absolute;
  bottom: -60px;
  right: -50px;
  width: 200px; height: 100px;
  opacity: 0.85;
}
.who-photo {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(-1.5deg);
}
.who-photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 720px) {
  .who-inner { grid-template-columns: 1fr; }
}

/* ───────────── Numbers strip ───────────── */
.numbers {
  background: var(--blue);
  color: var(--bg);
  padding: clamp(50px, 7vw, 80px) 0;
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 10%, rgba(245,184,46,0.18) 0%, transparent 35%),
              radial-gradient(circle at 10% 80%, rgba(192,75,138,0.15) 0%, transparent 30%);
  pointer-events: none;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.num {
  text-align: center;
}
.num .big {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--sun);
  display: block;
  margin-bottom: 8px;
}
.num .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: rgba(251,246,238,0.78);
}
@media (max-width: 880px) { .numbers-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
@media (max-width: 480px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

/* ───────────── A Home Filled with Care ───────────── */
.care { background: var(--bg-warm); }
.care-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.care-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
  transition: transform 0.5s ease;
}
.care-photo:hover { transform: rotate(0); }
.care-photo img { width: 100%; height: 100%; object-fit: cover; }
.care-text h2.cursive {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--sun);
  margin: 0 0 24px;
  transform: rotate(-1deg);
  display: inline-block;
  -webkit-text-stroke: 0.5px var(--coral-deep);
}
.care-text p { font-size: 1.05rem; line-height: 1.75; margin: 0 0 16px; color: var(--ink); }

@media (max-width: 720px) { .care-inner { grid-template-columns: 1fr; } }

/* ───────────── 6 Pillars ───────────── */
.pillars { background: var(--bg); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-soft);
  border-color: var(--blue-soft);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 24px;
}
.pillar-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.pillar-card p { font-size: 0.97rem; line-height: 1.6; color: var(--ink-soft); margin: 0; }

.pillar-edu .pillar-icon { background: var(--blue-soft); color: var(--blue-deep); }
.pillar-food .pillar-icon { background: var(--sun-soft); color: var(--coral-deep); }
.pillar-health .pillar-icon { background: #FCE0DA; color: var(--coral-deep); }
.pillar-hygiene .pillar-icon { background: #DDEDD7; color: var(--leaf); }
.pillar-play .pillar-icon { background: #EFD9E8; color: var(--magenta); }
.pillar-bond .pillar-icon { background: var(--bg-sand); color: #8B5A2B; }

@media (max-width: 880px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ───────────── Beyond the home ───────────── */
.beyond {
  background: var(--leaf-soft);
  position: relative;
  overflow: hidden;
}
.beyond .container { position: relative; z-index: 1; }
.beyond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.beyond-card {
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 30px 26px;
  border: 1px solid rgba(92, 138, 77, 0.2);
  position: relative;
  overflow: hidden;
}
.beyond-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--leaf), var(--sun));
}
.beyond-card .ico {
  width: 48px; height: 48px;
  background: var(--leaf-soft);
  color: var(--leaf);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.beyond-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.beyond-card p { color: var(--ink-soft); margin: 0; font-size: 0.96rem; }
@media (max-width: 880px) { .beyond-grid { grid-template-columns: 1fr; } }

/* ───────────── Our Story ───────────── */
.story { background: var(--bg); }
.story-narrative {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 28px 0 8px;
  max-width: 700px;
}

.story-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin: 32px 0 56px;
  aspect-ratio: 16/9;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 22px;
  justify-content: center;
}
.founders-grid.founders-single { grid-template-columns: minmax(0, 380px); }
.founder-card {
  text-align: center;
  padding: 24px 18px;
}
.founder-mark {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: 'Fraunces', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--bg);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 35, 70, 0.15);
}
.founder-mark img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.founder-card.f1 .founder-mark { background: linear-gradient(135deg, var(--magenta) 0%, var(--coral) 100%); }
.founder-card.f2 .founder-mark { background: linear-gradient(135deg, var(--sun) 0%, var(--coral) 100%); color: var(--ink); }
.founder-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.18rem;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.founder-card .role {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
  font-weight: 600;
}
.founder-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; line-height: 1.6; }

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 320px));
  gap: 60px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px dashed var(--line);
  position: relative;
}
.timeline-item { padding: 0 8px; position: relative; }
.timeline-item::before {
  content: ""; position: absolute;
  top: -41px; left: 50%; transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--coral);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1.5px var(--line);
}
.timeline-year {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 6px;
}
.timeline-text { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 880px) {
  .founders-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .timeline-item::before { display: none; }
  .timeline-item { padding-left: 16px; border-left: 2px solid var(--coral); }
}

/* ───────────── Gallery ───────────── */
.gallery {
  background: var(--ink);
  color: var(--bg);
  position: relative;
}
.gallery .eyebrow { color: var(--sun); }
.gallery .section-title { color: var(--bg); }
.gallery .section-lead { color: rgba(251,246,238,0.74); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 52px;
}
.g-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  cursor: zoom-in;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
  filter: saturate(1.05);
}
.g-item:hover img { transform: scale(1.04); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }
.g-caption {
  position: absolute;
  bottom: 12px; left: 14px; right: 14px;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--bg);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.g-item:hover .g-caption { opacity: 1; }

@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-item.wide { grid-column: span 2; }
  .g-item.tall { grid-row: span 2; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 200px; }
  .g-item.wide, .g-item.tall { grid-column: span 2; grid-row: auto; }
}

/* ───────────── Donation tiers ───────────── */
.give { background: var(--bg); }
.give-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--coral);
}
.tier.featured {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--bg);
  border-color: var(--blue);
  position: relative;
  overflow: hidden;
}
.tier.featured::before {
  content: "Most popular"; position: absolute;
  top: 12px; right: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  background: var(--sun); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
}
.tier-amount {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier-amount .per { font-size: 0.85rem; color: var(--ink-mute); font-weight: 500; letter-spacing: 0.02em; font-family: 'Inter', sans-serif; }
.tier.featured .tier-amount .per { color: rgba(251,246,238,0.7); }
.tier-name {
  font-family: 'Fraunces', serif;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.tier-desc { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.55; flex: 1; }
.tier.featured .tier-desc { color: rgba(251,246,238,0.86); }
.tier-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  transition: background 0.2s ease;
  align-self: flex-start;
}
.tier-cta:hover { background: var(--coral); }
.tier.featured .tier-cta { background: var(--bg); color: var(--ink); }
.tier.featured .tier-cta:hover { background: var(--sun); }

@media (max-width: 1080px) { .give-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .give-grid { grid-template-columns: 1fr; } }

.give-other {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.other-card {
  background: var(--bg-warm);
  border: 1px dashed var(--line);
  padding: 24px 22px;
  border-radius: var(--r-md);
  text-align: center;
}
.other-card h3 { font-family: 'Fraunces', serif; font-size: 1.1rem; margin: 0 0 6px; font-weight: 600; }
.other-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 14px; }
.other-card a { font-weight: 600; color: var(--coral-deep); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.other-card a:hover { color: var(--coral); }
@media (max-width: 720px) { .give-other { grid-template-columns: 1fr; } }

/* ───────────── Footer ───────────── */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0 40px;
  position: relative;
}
.footer-rainbow {
  position: absolute;
  top: -76px; left: 50%; transform: translateX(-50%);
  width: 280px; height: 80px;
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 600;
  margin: 0 0 16px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; font-size: 0.94rem; color: rgba(251,246,238,0.78); }
.footer-grid li a:hover { color: var(--sun); }
.footer-blurb {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: rgba(251,246,238,0.92);
  margin: 0 0 18px;
  max-width: 36ch;
}
.footer-vbl {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  background: rgba(251,246,238,0.06);
  border: 1px solid rgba(251,246,238,0.12);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(251,246,238,0.86);
}
.footer-vbl::before {
  content: "🌴"; font-size: 14px;
}
.footer-lang {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(251,246,238,0.1);
}
.footer-lang-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 600;
}
.footer-bottom {
  border-top: 1px solid rgba(251,246,238,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  color: rgba(251,246,238,0.5);
  letter-spacing: 0.04em;
}
.lumanaire-credit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.lumanaire-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(155, 89, 182, 0.32);
  background: linear-gradient(to right, rgba(155, 89, 182, 0.08), rgba(251, 246, 238, 0.02), rgba(233, 30, 140, 0.08));
  text-decoration: none;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.18s ease;
}
.lumanaire-credit:hover {
  border-color: rgba(155, 89, 182, 0.6);
  background: linear-gradient(to right, rgba(155, 89, 182, 0.16), rgba(251, 246, 238, 0.04), rgba(233, 30, 140, 0.16));
  transform: translateY(-1px);
}
.lumanaire-credit .bolt {
  width: 16px; height: 16px;
  color: #C58FD9;
  transition: transform 0.3s ease;
}
.lumanaire-credit:hover .bolt { transform: rotate(20deg) scale(1.1); }
.lumanaire-credit .proudly {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(251, 246, 238, 0.6);
}
.lumanaire-credit .wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  background: linear-gradient(to right, #C58FD9, #F472B6, #A3E635);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  footer { text-align: center; }
  .footer-grid { gap: 28px; }
  .footer-blurb { margin-inline: auto; }
  .footer-vbl { margin-inline: auto; }
  .footer-lang { justify-content: center; flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ───────────── Toast (donate-amount hint) ───────────── */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 14px 40px -8px rgba(27, 42, 78, 0.45);
  font-size: 14px;
  font-weight: 500;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: calc(100vw - 32px);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast .amt {
  background: var(--sun);
  color: var(--ink);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.toast .arrow { color: var(--sun); }
@media (max-width: 480px) {
  .toast { font-size: 13px; padding: 12px 16px 12px 14px; gap: 10px; bottom: 16px; }
  .toast .amt { padding: 3px 10px; font-size: 13px; }
}

/* ───────────── Scroll reveal ───────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-photo, .care-photo, .who-photo { transform: none !important; }
}

/* ───────────── Print (so VBL can re-print as a brochure) ───────────── */
@media print {
  body { background: white; color: black; }
  .topbar, .lang-switch, .cta-mini, .btn, .tier-cta, footer { display: none; }
  section { page-break-inside: avoid; padding: 30px 0; }
  .hero-photo, .care-photo, .who-photo { transform: none; box-shadow: none; }
  .numbers { background: white; color: black; border: 2px solid black; }
  .num .big { color: black; }
}

/* ═══════════════════════════════════════════════════════════
   INTERIOR PAGES — nav, hero, volunteer, guardian, gallery
   ═══════════════════════════════════════════════════════════ */

/* ───────────── Top navigation ───────────── */
.topnav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: center;
}
.topnav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.topnav a:hover { background: var(--bg-warm); color: var(--ink); }
.topnav a[aria-current="page"] {
  color: var(--blue-deep);
  background: rgba(44, 125, 201, 0.1);
}
@media (max-width: 980px) {
  .topbar-inner { flex-wrap: wrap; justify-content: center; row-gap: 6px; }
  .brand { order: 1; }
  .topbar-actions { order: 2; }
  .topnav {
    order: 3;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 6px;
  }
  .brand-logo { height: 62px; }
}
@media (max-width: 420px) {
  .topnav a { padding: 8px 10px; font-size: 12.5px; }
}

/* ───────────── Interior page hero ───────────── */
.page-hero {
  padding: clamp(34px, 5vw, 62px) 0 clamp(26px, 4vw, 46px);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: var(--t-display);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
}
.page-hero h1 .accent {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--magenta);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-2deg);
}
.page-hero .page-lead {
  font-size: var(--t-lead);
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 0 auto;
  line-height: 1.65;
}
.page-hero .hero-ctas { justify-content: center; margin-top: 30px; }
.page-hero-photo {
  margin-top: clamp(30px, 4vw, 52px);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 21 / 9;
  background: var(--bg-warm);
}
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.page-hero-photo.crop-mid img { object-position: center 48%; }
@media (max-width: 720px) {
  .page-hero-photo { aspect-ratio: 4 / 3; }
}

/* ───────────── Prose blocks ───────────── */
.prose { max-width: 74ch; margin-inline: auto; }
.prose p { color: var(--ink-soft); margin: 0 0 18px; line-height: 1.72; }
.prose p:last-child { margin-bottom: 0; }
.prose p.emphasis {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.24rem;
  color: var(--ink);
  line-height: 1.5;
}
.prose.center { text-align: center; }

/* ───────────── Closing CTA band ───────────── */
.cta-band {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-band .section-title { margin-bottom: 14px; }
.cta-band .section-lead { margin-inline: auto; }
.cta-band .hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* ═════════ VOLUNTEER ═════════ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}
.pkg {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pkg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.pkg-esperanca::before { background: var(--sun); }
.pkg-abraco::before { background: var(--blue); }
.pkg-word {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--magenta);
  margin: 0 0 6px;
  transform: rotate(-2deg);
  display: inline-block;
}
.pkg-price {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.pkg-price .per {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
}
.pkg-meaning {
  background: var(--bg-warm);
  border-left: 3px solid var(--sun);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 18px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.pkg-abraco .pkg-meaning { border-left-color: var(--blue); }
.pkg-intro { color: var(--ink-soft); margin: 0 0 16px; }
.pkg-includes { list-style: none; padding: 0; margin: 0 0 26px; }
.pkg-includes li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pkg-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -1px;
  width: 20px; height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
}
.pkg .btn { align-self: flex-start; margin-top: auto; }
@media (max-width: 880px) {
  .pkg-grid { grid-template-columns: 1fr; }
}

.doc-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--bg-warm);
  border: 1px dashed var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px);
  max-width: 760px;
  margin-inline: auto;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.doc-card:hover { border-color: var(--blue-soft); transform: translateY(-2px); }
.doc-card .doc-ico {
  flex-shrink: 0;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 26px;
}
.doc-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.2rem; margin: 0 0 4px; }
.doc-card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.doc-card .doc-go { margin-left: auto; color: var(--blue-deep); font-weight: 600; white-space: nowrap; }
@media (max-width: 620px) {
  .doc-card { flex-wrap: wrap; gap: 16px; }
  .doc-card .doc-go { margin-left: 0; }
}

.activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.activity {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  text-align: center;
}
.activity .ico { font-size: 26px; display: block; margin-bottom: 10px; }
.activity span.label { font-weight: 600; font-size: 0.96rem; }
@media (max-width: 880px) { .activities { grid-template-columns: repeat(2, 1fr); } }

/* ═════════ BECOME A GUARDIAN ═════════ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
}
.how-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.how-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--blue-soft);
  margin-bottom: 12px;
}
.how-step h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.22rem; margin: 0 0 10px; }
.how-step p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.62; }
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; } }

.child-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 3.6vw, 54px) clamp(22px, 3vw, 40px);
}
.child-card { text-align: center; }
.child-photo {
  width: clamp(148px, 16vw, 196px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  background: var(--bg-warm);
  box-shadow: 0 0 0 5px var(--bg), 0 0 0 9px var(--blue-soft), var(--shadow-soft);
}
.child-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.5s ease;
}
.child-card:hover .child-photo img { transform: scale(1.06); }
.child-card:nth-child(5n+2) .child-photo { box-shadow: 0 0 0 5px var(--bg), 0 0 0 9px var(--sun-soft), var(--shadow-soft); }
.child-card:nth-child(5n+3) .child-photo { box-shadow: 0 0 0 5px var(--bg), 0 0 0 9px var(--leaf-soft), var(--shadow-soft); }
.child-card:nth-child(5n+4) .child-photo { box-shadow: 0 0 0 5px var(--bg), 0 0 0 9px #F6CFE3, var(--shadow-soft); }
.child-card:nth-child(5n+5) .child-photo { box-shadow: 0 0 0 5px var(--bg), 0 0 0 9px #F8CDBD, var(--shadow-soft); }
.child-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.child-card p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.62; margin: 0 0 14px; }
.child-meta {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--blue-deep);
  display: block;
}
@media (max-width: 880px) { .child-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .child-grid { grid-template-columns: 1fr; } }

/* ═════════ GALLERY STORIES ═════════ */
.gstory {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(30px, 4.6vw, 66px);
  align-items: start;
  margin-bottom: clamp(56px, 8vw, 112px);
}
@media (min-width: 881px) {
  .gstory-text { position: sticky; top: 150px; }
}
.gstory:last-child { margin-bottom: 0; }
.gstory:nth-child(even) .gstory-text { order: 2; }
.gstory-text h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.gstory-text p { color: var(--ink-soft); margin: 0 0 16px; line-height: 1.7; }
.gstory-text p:last-child { margin-bottom: 0; }
.gstory-date {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--magenta);
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 6px;
}
.gstory-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gstory-photos button {
  padding: 0;
  border: 0;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  display: block;
  width: 100%;
}
.gstory-photos button:first-child,
.gstory-photos button:nth-child(6) { grid-column: span 2; aspect-ratio: 16 / 9; }
.gstory-photos img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.2,0.8,0.2,1); }
.gstory-photos button:hover img { transform: scale(1.06); }
@media (max-width: 880px) {
  .gstory { grid-template-columns: 1fr; }
  .gstory:nth-child(even) .gstory-text { order: 0; }
}

/* ───────────── Lightbox ───────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(27, 42, 78, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: var(--r-md);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.7);
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: var(--bg);
  background: rgba(251, 246, 238, 0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(251, 246, 238, 0.26); }
.lightbox-close { top: 18px; right: 20px; width: 46px; height: 46px; font-size: 26px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.lightbox-prev { left: clamp(10px, 2vw, 28px); }
.lightbox-next { right: clamp(10px, 2vw, 28px); }
@media (max-width: 560px) {
  .lightbox-nav { width: 42px; height: 42px; }
}
