/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #f7f0e4;
  --cream-dark: #ede3d0;
  --paper:      #fdf8f2;
  --tan:        #c8a882;
  --tan-dark:   #a07850;
  --brown:      #5c3318;
  --brown-mid:  #7a4525;
  --brown-dark: #3a1e08;
  --brown-deep: #1e0d02;
  --gold:       #c9971d;
  --gold-lt:    #deb84a;
  --rust:       #b84c2a;
  --text-dark:  #2e1506;
  --text-mid:   #6b3a1e;
  --text-muted: #9a7060;
  --text-lt:    #f7f0e4;
  --radius:     18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }
img { display: block; }
a { text-decoration: none; }

/* ── Paper texture overlay ────────────────────────────────── */
.paper-bg {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(180,140,100,0.04) 28px, rgba(180,140,100,0.04) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(180,140,100,0.03) 28px, rgba(180,140,100,0.03) 29px);
}

.dark-bg {
  background-color: var(--brown-dark);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 20px, rgba(255,255,255,0.012) 20px, rgba(255,255,255,0.012) 21px);
}

/* ── Drawn-style card ─────────────────────────────────────── */
.drawn-card {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  box-shadow: 5px 5px 0 var(--tan-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.drawn-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--tan-dark);
}

.drawn-card-sm {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  box-shadow: 4px 4px 0 var(--tan);
}

/* ── Hand-drawn button ────────────────────────────────────── */
.btn-drawn {
  display: inline-block;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 13px 32px;
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid var(--brown-deep);
  box-shadow: 4px 4px 0 var(--brown-mid);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-drawn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brown-mid);
  color: var(--gold-lt);
}

.btn-drawn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-deep);
  padding: 13px 32px;
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid var(--brown);
  box-shadow: 4px 4px 0 var(--brown);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-drawn-gold:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--brown);
}

.btn-outline-drawn {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 11px 30px;
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid var(--tan);
  box-shadow: 3px 3px 0 rgba(200,168,130,0.4);
  transition: transform 0.15s, background 0.15s;
}
.btn-outline-drawn:hover {
  transform: translate(-2px, -2px);
  background: rgba(255,255,255,0.07);
}

/* ── Wave transitions ─────────────────────────────────────── */
.wave {
  line-height: 0;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.wave svg {
  display: block;
  width: 100%;
  height: 80px;
}
.wave-dark-to-cream  { background: var(--cream); }
.wave-cream-to-dark  { background: var(--brown-dark); }
.arch-dark-to-cream  { background: var(--cream); }
.arch-dark-to-cream svg { height: 100px; }
.arch-cream-to-dark  { background: var(--brown-dark); }
.arch-cream-to-dark svg { height: 100px; }
.arch-dark-to-cream-flip { background: var(--brown-dark); }
.arch-dark-to-cream-flip svg { height: 100px; }

/* ── Section labels / headings ────────────────────────────── */
.eyebrow {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 8px;
}
.eyebrow-dark { color: var(--brown-mid); }

.big-heading {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
}
.big-heading.light { color: var(--cream); }

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}
.body-text.light { color: rgba(247,240,228,0.75); }

.stamp {
  display: inline-block;
  background: var(--gold);
  color: var(--brown-deep);
  font-family: 'Caveat', cursive;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  border: 1.5px solid var(--brown);
  letter-spacing: 0.05em;
}
.stamp.light {
  background: transparent;
  color: var(--tan);
  border-color: var(--tan);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ──────────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown-deep);
  border-bottom: 3px solid var(--gold);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.nav-brand {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}
.nav-sub {
  font-size: 0.65rem;
  color: var(--tan);
  font-style: italic;
  display: block;
  margin-top: 1px;
  font-family: 'Nunito', sans-serif;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: rgba(247,240,228,0.75);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold-lt);
  background: rgba(201,151,29,0.1);
}
.nav-links a.nav-donate {
  background: var(--gold);
  color: var(--brown-deep);
  padding: 8px 20px;
  border-radius: 255px 8px 230px 8px / 8px 230px 8px 255px;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 10px;
  border: 1.5px solid var(--brown-mid);
  box-shadow: 3px 3px 0 var(--brown-mid);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-links a.nav-donate:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--brown-mid);
  background: var(--gold-lt);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
  margin-left: auto;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--brown-deep);
  padding: 12px 24px 24px;
  list-style: none;
  gap: 4px;
  border-top: 1px solid rgba(201,151,29,0.2);
}
.nav-mobile a {
  color: var(--cream);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.nav-mobile.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--brown-dark);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,151,29,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(92,51,24,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-end;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 60px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,151,29,0.15);
  border: 1.5px solid rgba(201,151,29,0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}
.hero-h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.05;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
  display: inline-block;
  position: relative;
}
.hero-h1 em::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  opacity: 0.5;
}
.hero-tagline {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(247,240,228,0.7);
  max-width: 420px;
}
.hero-tagline strong { color: var(--gold-lt); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 0.75rem;
  color: rgba(247,240,228,0.4);
  margin-top: 4px;
  font-style: italic;
}
.hero-right {
  align-self: flex-end;
  display: flex;
  justify-content: center;
}
.hero-bear-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-bear {
  width: 100%;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.5));
}
.hero-bubble {
  position: absolute;
  top: 30px;
  right: -10px;
  background: var(--gold);
  color: var(--brown-deep);
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  padding: 10px 18px;
  font-family: 'Caveat', cursive;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid var(--brown);
  box-shadow: 3px 3px 0 var(--brown);
  transform: rotate(3deg);
  max-width: 180px;
  text-align: center;
  line-height: 1.3;
}

/* ── Stats row ────────────────────────────────────────────── */
.stats-row {
  background: var(--brown-mid);
  padding: 20px 24px;
  border-top: 2px solid rgba(201,151,29,0.3);
  border-bottom: 2px solid rgba(201,151,29,0.3);
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(247,240,228,0.55); margin-top: 3px; }

/* ── Youth section ────────────────────────────────────────── */
.youth-section {
  padding: 100px 24px;
}
.youth-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.youth-photo-wrap {
  position: relative;
}
.youth-photo-frame {
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  overflow: hidden;
  border: 3px solid var(--brown);
  box-shadow: 8px 8px 0 var(--tan);
  aspect-ratio: 4/5;
}
.youth-photo { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.9) saturate(0.85); }
.youth-sticker {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--cream);
  border: 2px solid var(--brown);
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  padding: 14px 18px;
  box-shadow: 4px 4px 0 var(--tan-dark);
  transform: rotate(-3deg);
  text-align: center;
}
.youth-sticker-num {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1;
}
.youth-sticker-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.youth-text { display: flex; flex-direction: column; gap: 22px; }
.youth-text .body-text { color: var(--text-muted); }
.bear-quote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--cream-dark);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  color: var(--brown);
  line-height: 1.45;
  font-style: italic;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  background: var(--cream-dark);
  border: 1.5px solid var(--tan);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brown-mid);
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
}

/* ── Three step programs ──────────────────────────────────── */
.programs-section {
  padding: 100px 24px;
}
.programs-header { text-align: center; margin-bottom: 60px; }
.programs-header .big-heading { margin-bottom: 12px; }
.programs-header .body-text { max-width: 520px; margin: 0 auto; }

.programs-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.program-card {
  background: var(--paper);
  border: 2px solid var(--brown);
  padding: 36px 26px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.program-card:nth-child(1) {
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  box-shadow: 6px 6px 0 var(--tan-dark);
}
.program-card:nth-child(2) {
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  box-shadow: 6px 6px 0 var(--tan-dark);
  margin-top: 24px;
}
.program-card:nth-child(3) {
  border-radius: 230px 12px 255px 12px / 12px 255px 12px 230px;
  box-shadow: 6px 6px 0 var(--tan);
  border-style: dashed;
  background: var(--cream-dark);
}
.program-card:hover { transform: translate(-3px,-3px); }
.program-card:nth-child(1):hover { box-shadow: 9px 9px 0 var(--tan-dark); }
.program-card:nth-child(2):hover { box-shadow: 9px 9px 0 var(--tan-dark); }

.program-num {
  width: 50px; height: 50px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-deep);
  flex-shrink: 0;
}
.program-num.muted { background: var(--cream-dark); color: var(--tan-dark); border-color: var(--tan); }
.program-name {
  font-family: 'Caveat', cursive;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}
.program-name.muted { color: var(--tan-dark); }
.program-sub {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brown-mid);
  font-weight: 700;
}
.program-sub.muted { color: var(--tan); }
.program-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
}
.program-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.program-tag {
  font-size: 0.72rem;
  background: var(--cream-dark);
  border: 1px solid var(--tan);
  color: var(--brown-mid);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 700;
}

/* ── Funds section ────────────────────────────────────────── */
.funds-section {
  padding: 100px 24px;
}
.funds-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.funds-card-wrap {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  box-shadow: 6px 6px 0 var(--tan-dark);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.funds-card-wrap h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--text-dark);
  font-weight: 700;
}
.chart-wrap { position: relative; width: 200px; height: 200px; }
.chart-legend { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; }
.chart-legend li { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; color: var(--text-muted); }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.funds-text { display: flex; flex-direction: column; gap: 22px; }
.funds-text .body-text { color: var(--text-muted); }
.funds-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.funds-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1.5px solid var(--tan);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.funds-list li strong { color: var(--text-dark); display: block; margin-bottom: 2px; }
.funds-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }

/* ── Slogan / mission section ─────────────────────────────── */
.slogan-section {
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.slogan-section::before {
  content: '🐻';
  position: absolute;
  font-size: 12rem;
  opacity: 0.04;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.slogan-big {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.slogan-big em {
  font-style: normal;
  color: var(--gold);
}
.slogan-sub {
  font-size: 1rem;
  color: rgba(247,240,228,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── Join grid ────────────────────────────────────────────── */
.join-section { padding: 100px 24px; }
.join-header { text-align: center; margin-bottom: 48px; }
.join-grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.join-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16/9;
  border: 2px solid var(--brown);
  box-shadow: 5px 5px 0 var(--brown-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.join-card:nth-child(1) { border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px; }
.join-card:nth-child(2) { border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px; }
.join-card:nth-child(3) { border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px; }
.join-card:nth-child(4) { border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px; }
.join-card:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--brown-mid); }
.join-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55) saturate(0.75); transition: transform 0.4s, filter 0.3s; }
.join-card:hover img { transform: scale(1.05); }
.join-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(0deg, rgba(30,13,2,0.8) 0%, transparent 100%);
}
.join-label-text { font-family: 'Caveat', cursive; font-size: 1.35rem; font-weight: 700; color: #fff; }
.join-arrow {
  width: 34px; height: 34px;
  background: var(--gold);
  border-radius: 50%;
  border: 1.5px solid var(--brown);
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-deep);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Donate CTA ───────────────────────────────────────────── */
.donate-cta {
  padding: 100px 24px;
  text-align: center;
}
.donate-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.donate-cta-inner .big-heading { margin-bottom: 0; }
.donate-amounts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.amt-btn {
  padding: 9px 20px;
  border: 2px solid var(--brown);
  background: transparent;
  color: var(--brown);
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 255px 8px 230px 8px / 8px 230px 8px 255px;
  box-shadow: 3px 3px 0 var(--tan);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.amt-btn:hover, .amt-btn.active {
  background: var(--brown-dark);
  color: var(--gold-lt);
  transform: translate(-1px,-1px);
  box-shadow: 4px 4px 0 var(--tan);
}
.custom-input {
  width: 180px; padding: 9px 16px;
  border-radius: 50px;
  border: 2px solid var(--brown);
  background: var(--paper);
  color: var(--text-dark); font-size: 1rem; text-align: center; outline: none;
}
.custom-input:focus { border-color: var(--gold); }
.donate-fine { font-size: 0.78rem; color: var(--text-muted); font-style: italic; }

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .big-heading { margin-bottom: 16px; }
.page-hero .body-text { max-width: 560px; margin: 0 auto; }

/* ── About story ──────────────────────────────────────────── */
.story-section { padding: 100px 24px; }
.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-photo-wrap {
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  overflow: hidden;
  border: 3px solid var(--brown);
  box-shadow: 8px 8px 0 var(--tan-dark);
  aspect-ratio: 1;
}
.story-photo { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85); }
.story-text { display: flex; flex-direction: column; gap: 20px; }
.story-text .body-text { color: var(--text-muted); }

/* ── Values ───────────────────────────────────────────────── */
.values-section { padding: 80px 24px; }
.values-grid {
  max-width: 1100px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-card {
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.value-icon { font-size: 2rem; }
.value-card h4 { font-family: 'Caveat', cursive; font-size: 1.4rem; color: var(--gold-lt); }
.value-card p { font-size: 0.88rem; color: rgba(247,240,228,0.65); line-height: 1.65; }

/* ── Team ─────────────────────────────────────────────────── */
.team-section { padding: 80px 24px; }
.team-grid {
  max-width: 900px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  padding: 28px 22px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  border: 2px solid var(--tan);
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  box-shadow: 4px 4px 0 var(--tan);
}
.team-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.team-card h4 { font-family: 'Caveat', cursive; font-size: 1.25rem; color: var(--text-dark); }
.team-card .role { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--brown-mid); font-weight: 700; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

.team-avatar-duo { display: flex; justify-content: center; }
.team-avatar-duo .team-avatar:last-child { margin-left: -16px; }

.team-toggle-btn {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-mid);
  background: none;
  border: 2px solid var(--tan);
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.team-toggle-btn:hover { background: var(--cream-dark); color: var(--brown); }

.team-more { display: none; margin-top: 32px; }
.team-more.open { display: block; }

.team-grid-secondary {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Involve page ─────────────────────────────────────────── */
.involve-section { padding: 80px 24px; }
.involve-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }
.involve-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.involve-row.reverse { direction: rtl; }
.involve-row.reverse > * { direction: ltr; }
.involve-photo-wrap {
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  overflow: hidden;
  border: 3px solid var(--brown);
  box-shadow: 7px 7px 0 var(--tan-dark);
  aspect-ratio: 4/3;
}
.involve-photo { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.85) saturate(0.85); }
.involve-text { display: flex; flex-direction: column; gap: 18px; }
.involve-text .body-text { color: var(--text-muted); }
.involve-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.involve-bullets li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.6;
}
.involve-bullets li::before { content: '🐾'; flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }

/* ── Donate page ──────────────────────────────────────────── */
.donate-page-section { padding: 80px 24px; }
.donate-page-inner { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 40px; }
.donate-card {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  box-shadow: 6px 6px 0 var(--tan-dark);
  padding: 36px 40px;
}
.donate-card h3 { font-family: 'Caveat', cursive; font-size: 1.7rem; color: var(--text-dark); margin-bottom: 20px; }
.amount-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.form-row { display: flex; gap: 14px; flex-wrap: wrap; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 180px; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input, .form-group select, .contact-form textarea {
  padding: 11px 14px;
  background: var(--cream);
  border: 2px solid var(--tan);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: 'Nunito', sans-serif;
}
.form-group input:focus, .form-group select:focus { border-color: var(--brown); }
.form-group select option { background: var(--cream); }
.freq-row { display: flex; gap: 10px; margin-bottom: 20px; }
.freq-btn {
  flex: 1; padding: 10px;
  border-radius: var(--radius);
  border: 2px solid var(--tan);
  background: var(--cream);
  color: var(--text-muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.freq-btn.active, .freq-btn:hover { border-color: var(--brown); background: var(--cream-dark); color: var(--brown); }
.submit-btn {
  width: 100%; padding: 14px;
  background: var(--brown-dark);
  border: 2px solid var(--brown-deep);
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  box-shadow: 4px 4px 0 var(--brown-mid);
  color: var(--gold-lt);
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 8px;
}
.submit-btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--brown-mid); }
.secure-note { font-size: 0.77rem; color: var(--text-muted); text-align: center; margin-top: 10px; font-style: italic; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.why-card {
  background: var(--paper);
  border: 1.5px solid var(--tan);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
}
.why-icon { font-size: 1.7rem; margin-bottom: 8px; }
.why-card h4 { font-family: 'Caveat', cursive; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 4px; }
.why-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* ── Events ───────────────────────────────────────────────── */
.events-section { padding: 80px 24px; }
.events-inner { max-width: 860px; margin: 0 auto; }
.events-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.event-card {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 255px 12px 230px 12px / 12px 230px 12px 255px;
  box-shadow: 4px 4px 0 var(--tan);
  padding: 22px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.event-card:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--tan); }
.event-date {
  background: var(--gold);
  border: 1.5px solid var(--brown);
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
}
.event-month { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--brown-deep); }
.event-day { font-family: 'Caveat', cursive; font-size: 1.9rem; font-weight: 700; color: var(--brown-deep); line-height: 1; }
.event-info h4 { font-family: 'Caveat', cursive; font-size: 1.3rem; color: var(--text-dark); margin-bottom: 3px; }
.event-info p { font-size: 0.83rem; color: var(--text-muted); }
.event-tag {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 4px 12px; border-radius: 50px;
  background: rgba(201,151,29,0.15); color: var(--brown-mid); border: 1px solid var(--tan);
}

/* ── Contact ──────────────────────────────────────────────── */
.contact-section { padding: 80px 24px; }
.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h3 { font-family: 'Caveat', cursive; font-size: 2rem; color: var(--text-dark); }
.contact-info p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; font-size: 0.9rem; color: var(--text-muted); }
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--cream-dark);
  border: 1.5px solid var(--tan);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--text-dark); margin-bottom: 2px; }
.contact-form {
  background: var(--paper);
  border: 2px solid var(--brown);
  border-radius: 12px 230px 12px 230px / 230px 12px 230px 12px;
  box-shadow: 6px 6px 0 var(--tan-dark);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 { font-family: 'Caveat', cursive; font-size: 1.65rem; color: var(--text-dark); margin-bottom: 4px; }
.contact-form textarea {
  padding: 12px 14px;
  border-radius: var(--radius);
  min-height: 130px;
  resize: vertical;
  border: 2px solid var(--tan);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form textarea:focus { border-color: var(--brown); }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item { border-bottom: 1.5px solid var(--tan); }
.faq-q {
  width: 100%; background: none; border: none;
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; line-height: 1; }
.faq-item.open .faq-q { color: var(--brown); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── Scroll animations ────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--brown-deep);
  padding: 56px 24px 0;
}
.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(200,168,130,0.12);
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; border: 2px solid var(--gold); }
.footer-name { font-family: 'Caveat', cursive; font-size: 1.25rem; font-weight: 700; color: var(--gold); }
.footer-tagline-text { font-family: 'Caveat', cursive; font-size: 0.95rem; color: var(--tan); font-style: italic; }
.footer-desc { font-size: 0.83rem; color: rgba(247,240,228,0.45); line-height: 1.65; }
.footer-col h5 { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(247,240,228,0.5); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold-lt); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 18px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.76rem; color: rgba(247,240,228,0.2);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner, .youth-inner, .story-inner, .funds-inner,
  .involve-row, .contact-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { align-items: center; text-align: center; padding-bottom: 40px; }
  .hero-tagline { text-align: center; }
  .hero-cta { justify-content: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-secondary { grid-template-columns: 1fr 1fr; }
  .involve-row.reverse { direction: ltr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .join-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .program-card:nth-child(2) { margin-top: 0; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .values-grid, .team-grid, .team-grid-secondary { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: auto 1fr; }
  .event-tag { display: none; }
  .donate-card { padding: 24px 18px; }
  .contact-form { padding: 24px 20px; }
}
