/* ==========================================================
   PINEYWOODS PAWS ANIMAL RESCUE  —  Main Stylesheet
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
  --blue-darkest:  #0D2D52;
  --blue-darker:   #1A4F8C;
  --blue-dark:     #2563A8;
  --blue:          #3B82C4;
  --blue-mid:      #4A90D4;
  --blue-light:    #60A5D9;
  --blue-pale:     #EBF4FF;
  --blue-pale2:    #F0F7FF;

  --amber:         #F59E0B;
  --amber-dark:    #D97706;
  --amber-light:   #FEF3C7;

  --green:         #10B981;
  --green-pale:    #D1FAE5;

  --text-dark:     #0F172A;
  --text-med:      #334155;
  --text-light:    #64748B;
  --text-muted:    #94A3B8;

  --bg-white:      #FFFFFF;
  --bg-light:      #F8FAFC;
  --bg-alt:        #F1F5F9;
  --bg-dark:       #0F172A;
  --bg-darker:     #060E1C;

  --border:        #E2E8F0;
  --border-light:  #F1F5F9;

  --font-head:     'Montserrat', -apple-system, sans-serif;
  --font-body:     'Open Sans', -apple-system, sans-serif;
  --font-serif:    'Playfair Display', Georgia, serif;

  --nav-h:         80px;
  --container:     1200px;

  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  --sh-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --sh-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.05);
  --sh-lg:  0 10px 28px rgba(0,0,0,.10), 0 4px 8px rgba(0,0,0,.06);
  --sh-xl:  0 20px 40px rgba(0,0,0,.12), 0 8px 16px rgba(0,0,0,.06);
  --sh-2xl: 0 30px 60px rgba(0,0,0,.16);
  --sh-blue: 0 8px 25px rgba(59,130,196,.4);
  --sh-amber: 0 8px 25px rgba(245,158,11,.4);

  --ease: 250ms ease;
  --ease-fast: 150ms ease;
  --ease-slow: 400ms ease;
}

/* ----------------------------------------------------------
   RESET
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem,   5vw,  3.75rem); }
h2 { font-size: clamp(1.5rem, 3vw,  2.5rem);  }
h3 { font-size: clamp(1.2rem, 2vw,  1.65rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--text-med); line-height: 1.75; }
.lead { font-size: 1.15rem; line-height: 1.8; color: var(--text-med); }

/* ----------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------- */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.section      { padding: 5rem 0; }
.section--alt  { background: var(--bg-light); }
.section--dark { background: var(--bg-dark); }
.section--blue { background: linear-gradient(135deg, var(--blue-darker), var(--blue)); }

/* ----------------------------------------------------------
   SECTION HEADERS
   ---------------------------------------------------------- */
.sec-hd {
  text-align: center;
  margin-bottom: 3.5rem;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: .75rem;
}
.sec-hd h2 { margin-bottom: .75rem; }
.sec-hd .sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: var(--r-pill);
  margin: .75rem auto 0;
}
.divider--amber { background: linear-gradient(90deg, var(--amber), #FBBF24); }
.divider--white { background: rgba(255,255,255,.5); }

.on-dark .eyebrow  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }
.on-dark h2        { color: #fff; }
.on-dark .sub      { color: rgba(255,255,255,.75); }

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  cursor: pointer;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(59,130,196,.5);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: var(--sh-amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245,158,11,.5);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: var(--sh-lg);
}
.btn-white:hover {
  background: var(--blue-pale);
  transform: translateY(-2px);
}
.btn-sm  { padding: .55rem 1.25rem; font-size: .825rem; }
.btn-lg  { padding: 1.1rem 2.75rem; font-size: 1rem; }

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 900;
  transition: background var(--ease), box-shadow var(--ease);
}
.site-nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--sh-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-brand img { height: 48px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.nav-brand-text .brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--blue);
  letter-spacing: -.01em;
}
.nav-brand-text .brand-tag {
  font-size: .65rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-nav.hero-nav .nav-brand-text .brand-name { color: #fff; }
.site-nav.hero-nav .nav-brand-text .brand-tag  { color: rgba(255,255,255,.65); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-menu a {
  font-family: var(--font-head);
  font-size: .825rem;
  font-weight: 600;
  color: var(--text-med);
  padding: .5rem .8rem;
  border-radius: var(--r-md);
  transition: all var(--ease-fast);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--blue);
  background: var(--blue-pale);
}
.site-nav.hero-nav .nav-menu a {
  color: rgba(255,255,255,.88);
}
.site-nav.hero-nav .nav-menu a:hover,
.site-nav.hero-nav .nav-menu a.active {
  color: #fff;
  background: rgba(255,255,255,.14);
}
.nav-donate { margin-left: .75rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--ease-fast);
}
.site-nav.hero-nav .nav-toggle span { background: #fff; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----------------------------------------------------------
   PAGE HERO BANNER  (inner pages)
   ---------------------------------------------------------- */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue-darkest) 0%, var(--blue-darker) 45%, var(--blue) 100%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 50%, rgba(255,255,255,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(255,255,255,.06) 0%, transparent 55%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero .ph-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .75rem;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--ease-fast); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.35); }

/* ----------------------------------------------------------
   HOME HERO
   ---------------------------------------------------------- */
.home-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, var(--blue-darkest) 0%, var(--blue-darker) 35%, var(--blue) 70%, var(--blue-light) 100%);
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 5% 50%,  rgba(96,165,217,.18) 0%, transparent 100%),
    radial-gradient(ellipse 50% 60% at 95% 10%,  rgba(59,130,196,.22) 0%, transparent 100%),
    radial-gradient(ellipse 80% 40% at 50% 105%, rgba(26,79,140,.45) 0%, transparent 100%);
}
/* subtle paw-print SVG tile */
.home-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='90' height='90'%3E%3Cg fill='rgba(255,255,255,.028)'%3E%3Ccircle cx='22' cy='16' r='5'/%3E%3Ccircle cx='34' cy='11' r='4'/%3E%3Ccircle cx='38' cy='22' r='4'/%3E%3Ccircle cx='13' cy='24' r='4'/%3E%3Cellipse cx='27' cy='36' rx='9' ry='12'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  padding: .45rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -.025em;
}
.hero-title .hi { color: var(--amber); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  max-width: 490px;
}
.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-avatars { display: flex; }
.hero-avatars .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: #fff; font-weight: 700;
  margin-left: -10px;
}
.hero-avatars .av:first-child { margin-left: 0; }
.hero-proof-text { font-size: .825rem; color: rgba(255,255,255,.75); }
.hero-proof-text strong { color: #fff; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-ring {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-ring::before, .logo-ring::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}
.logo-ring::before { inset: 0;    background: rgba(255,255,255,.05); animation: pulse-ring 4s ease-in-out infinite; }
.logo-ring::after  { inset: 40px; background: rgba(255,255,255,.04); animation: pulse-ring 4s ease-in-out infinite .8s; }
.logo-ring img {
  width: 240px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.35));
  animation: float-logo 5s ease-in-out infinite;
}
@keyframes float-logo {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
@keyframes pulse-ring {
  0%,100% { transform: scale(1);    opacity: .5; }
  50%      { transform: scale(1.04); opacity: .9; }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .68rem;
  font-family: var(--font-head);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: hint-bounce 2.2s ease-in-out infinite;
  cursor: pointer;
}
.scroll-chevron {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg);
}
@keyframes hint-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ----------------------------------------------------------
   MISSION STRIP  (Home, below hero)
   ---------------------------------------------------------- */
.mission-strip {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
}
.mission-strip .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.ms-pill {
  display: flex; align-items: center; gap: 1rem; flex: 1;
}
.ms-icon {
  width: 54px; height: 54px;
  border-radius: var(--r-lg);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.ms-text .ms-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-dark);
}
.ms-text .ms-sub {
  font-size: .78rem;
  color: var(--text-light);
}
.ms-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ----------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  background: linear-gradient(135deg, var(--blue-darkest) 0%, var(--blue-darker) 60%, var(--blue-dark) 100%);
  padding: 4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: .2rem;
}
.stat-num .hi { color: var(--amber); }
.stat-lbl {
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
}

/* ----------------------------------------------------------
   ABOUT SPLIT  (Home)
   ---------------------------------------------------------- */
.about-split .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-block {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  overflow: hidden;
  position: relative;
}
.about-img-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,196,.08) 0%, rgba(96,165,217,.18) 100%);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: #fff;
  border-radius: var(--r-xl);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--sh-xl);
  text-align: center;
  min-width: 130px;
}
.about-badge .bd-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.about-badge .bd-lbl {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.about-txt .eyebrow { display: block; width: fit-content; }
.about-txt h2 { margin-bottom: 1rem; }
.about-txt p   { margin-bottom: 1.25rem; }
.check-list { margin-bottom: 1.75rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .7rem;
  font-size: .95rem;
  color: var(--text-med);
}
.chk {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.chk svg { width: 13px; height: 13px; }

/* ----------------------------------------------------------
   HOW IT WORKS
   ---------------------------------------------------------- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 2.5rem);
  right: calc(16.67% + 2.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue-light), var(--blue-pale));
}
.step { text-align: center; position: relative; }
.step-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--sh-blue);
  position: relative; z-index: 1;
}
.step-icon { font-size: 2rem; margin-bottom: .75rem; }
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p  { font-size: .875rem; }

/* ----------------------------------------------------------
   PET CARDS
   ---------------------------------------------------------- */
.pets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.pet-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-light);
  transition: all var(--ease);
}
.pet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-2xl);
}
.pet-img {
  width: 100%;
  height: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  position: relative;
  background: linear-gradient(135deg, var(--blue-pale2), #e8f4fe);
}
.pet-img.dog-bg  { background: linear-gradient(135deg, #FFF7ED, #FDE8C4); }
.pet-img.cat-bg  { background: linear-gradient(135deg, #F0FDF4, #CAFADE); }
.pet-img.spec-bg { background: linear-gradient(135deg, #FDF4FF, #EDE9FE); }
.pet-status {
  position: absolute; top: 1rem; left: 1rem;
  font-size: .7rem; font-weight: 700; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  color: #fff;
}
.status-available { background: var(--green); }
.status-pending   { background: var(--amber); }
.status-hold      { background: var(--blue-mid); }
.pet-body { padding: 1.25rem 1.5rem 1.75rem; }
.pet-name  { font-size: 1.25rem; font-weight: 700; margin-bottom: .15rem; }
.pet-breed { font-size: .825rem; color: var(--blue); font-weight: 600; margin-bottom: .75rem; }
.pet-tags  {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: .9rem;
}
.tag {
  font-size: .72rem;
  background: var(--bg-light);
  color: var(--text-light);
  padding: .2rem .65rem;
  border-radius: var(--r-pill);
  font-weight: 500;
}
.pet-desc { font-size: .85rem; margin-bottom: 1.1rem; }

/* ----------------------------------------------------------
   FILTERS
   ---------------------------------------------------------- */
.filter-bar {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .55rem 1.25rem;
  border-radius: var(--r-pill);
  font-size: .825rem;
  font-weight: 700;
  font-family: var(--font-head);
  background: var(--bg-white);
  color: var(--text-med);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--ease-fast);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ----------------------------------------------------------
   CTA TRIO (dark bg cards)
   ---------------------------------------------------------- */
.cta-trio { background: var(--bg-dark); padding: 5rem 0; }
.cta-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.cta-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--ease);
}
.cta-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.2);
}
.cta-card-icon { font-size: 3.25rem; margin-bottom: 1.25rem; display: block; }
.cta-card h3   { color: #fff; font-size: 1.3rem; margin-bottom: .65rem; }
.cta-card p    { color: rgba(255,255,255,.62); font-size: .875rem; margin-bottom: 1.5rem; }

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.testi-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--sh-md);
  position: relative;
  border: 1px solid var(--border-light);
}
.testi-stars { color: var(--amber); font-size: .875rem; margin-bottom: .85rem; }
.testi-q {
  font-size: .95rem;
  color: var(--text-med);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testi-q::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: var(--blue-pale);
  line-height: 0;
  vertical-align: -1.2rem;
  margin-right: .1rem;
  color: var(--blue);
  opacity: .25;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-head); font-size: .875rem; font-weight: 700; }
.testi-role { font-size: .75rem; color: var(--text-light); }

/* ----------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70'%3E%3Cg fill='rgba(255,255,255,.04)'%3E%3Ccircle cx='18' cy='13' r='4'/%3E%3Ccircle cx='28' cy='9' r='3'/%3E%3Ccircle cx='32' cy='18' r='3'/%3E%3Ccircle cx='11' cy='20' r='3'/%3E%3Cellipse cx='21' cy='30' rx='7' ry='10'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner .wrap { position: relative; z-index: 1; }
.cta-banner h2   { color: #fff; margin-bottom: .75rem; }
.cta-banner .lead { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ----------------------------------------------------------
   ABOUT PAGE
   ---------------------------------------------------------- */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.mission-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  transition: all var(--ease);
}
.mission-card:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.mc-icon {
  width: 80px; height: 80px;
  border-radius: var(--r-xl);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.25rem;
}
.mission-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }

/* Timeline */
.timeline-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-pale), var(--blue-light), var(--blue-pale));
  transform: translateX(-50%);
}
.tl-item {
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.tl-item:nth-child(odd) .tl-content  { grid-column: 1; text-align: right; }
.tl-item:nth-child(odd) .tl-dot      { grid-column: 2; }
.tl-item:nth-child(odd) .tl-spacer   { grid-column: 3; }
.tl-item:nth-child(even) .tl-spacer  { grid-column: 1; }
.tl-item:nth-child(even) .tl-dot     { grid-column: 2; }
.tl-item:nth-child(even) .tl-content { grid-column: 3; text-align: left; }
.tl-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--blue);
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 0 4px var(--blue-pale), var(--sh-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .7rem;
  z-index: 1;
  justify-self: center;
}
.tl-year {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .2rem;
}
.tl-content h4 { font-size: .975rem; margin-bottom: .3rem; }
.tl-content p  { font-size: .825rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-av {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1rem;
  border: 4px solid var(--bg-white);
  box-shadow: var(--sh-md);
}
.team-card h4  { font-size: .975rem; margin-bottom: .2rem; }
.team-card .role { font-size: .78rem; color: var(--blue); font-weight: 600; margin-bottom: .5rem; }
.team-card p   { font-size: .8rem; }

/* ----------------------------------------------------------
   DONATION TIERS
   ---------------------------------------------------------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.tier-card {
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}
.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: transparent;
  transition: background var(--ease);
}
.tier-card:hover, .tier-card.featured {
  border-color: var(--blue);
  box-shadow: var(--sh-lg);
  transform: translateY(-5px);
}
.tier-card.featured::before {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
}
.tier-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-head);
  padding: .2rem .75rem;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.tier-icon   { font-size: 2.5rem; margin-bottom: .75rem; }
.tier-amount {
  font-family: var(--font-head);
  font-size: 2.4rem; font-weight: 900;
  color: var(--text-dark); line-height: 1;
  margin-bottom: .2rem;
}
.tier-period { font-size: .78rem; color: var(--text-light); margin-bottom: .6rem; }
.tier-name   { font-family: var(--font-head); font-size: .95rem; font-weight: 700; margin-bottom: .85rem; }
.tier-perks  { text-align: left; }
.tier-perks li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--text-med);
  margin-bottom: .35rem;
}
.tier-perks li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.impact-item {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 2rem 1.25rem;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-light);
  transition: all var(--ease);
}
.impact-item:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.impact-icon   { font-size: 2.5rem; margin-bottom: .65rem; }
.impact-amount { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: var(--blue); margin-bottom: .2rem; }
.impact-desc   { font-size: .825rem; color: var(--text-light); }

/* ----------------------------------------------------------
   ADOPTION PROCESS
   ---------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(12.5% + 2rem);
  right: calc(12.5% + 2rem);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-pale), var(--blue-light), var(--blue-pale));
}
.proc-step { text-align: center; position: relative; }
.proc-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--blue);
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  position: relative; z-index: 1;
  transition: all var(--ease);
}
.proc-step:hover .proc-num {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.proc-step h4 { font-size: .9rem; margin-bottom: .3rem; }
.proc-step p  { font-size: .8rem; }

/* ----------------------------------------------------------
   ACCORDION (FAQ)
   ---------------------------------------------------------- */
.accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.accordion-item.open {
  border-color: var(--blue);
  box-shadow: var(--sh-sm);
}
.accordion-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem;
  background: var(--bg-white);
  border: none; cursor: pointer;
  font-family: var(--font-head); font-size: .9rem; font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--ease-fast);
}
.accordion-btn:hover { background: var(--bg-light); }
.acc-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--ease-fast), background var(--ease-fast), color var(--ease-fast);
}
.accordion-item.open .acc-icon {
  transform: rotate(45deg);
  background: var(--blue); color: #fff;
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.25rem;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
  padding: 0 1.25rem 1.25rem;
}
.accordion-body p { font-size: .875rem; }

/* ----------------------------------------------------------
   EVENTS
   ---------------------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.event-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-light);
  transition: all var(--ease);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.event-date-hd {
  background: linear-gradient(135deg, var(--blue-darkest), var(--blue-dark));
  color: #fff;
  padding: 1.25rem;
  text-align: center;
}
.ev-month { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; opacity: .8; }
.ev-day   { font-family: var(--font-head); font-size: 3rem; font-weight: 900; line-height: 1; }
.ev-year  { font-size: .72rem; opacity: .65; }
.event-body { padding: 1.25rem; }
.ev-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: .72rem; font-weight: 700;
  padding: .2rem .75rem;
  border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .5rem;
  font-family: var(--font-head);
}
.event-body h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.event-body p  { font-size: .84rem; margin-bottom: .75rem; }
.ev-meta {
  display: flex; gap: 1.25rem;
  font-size: .78rem; color: var(--text-light);
}
.ev-meta-item { display: flex; align-items: center; gap: .3rem; }

/* ----------------------------------------------------------
   VOLUNTEER CARDS
   ---------------------------------------------------------- */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.vol-card {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh-md);
  border-top: 4px solid var(--blue);
  transition: all var(--ease);
}
.vol-card:hover { transform: translateY(-4px); box-shadow: var(--sh-xl); }
.vol-icon      { font-size: 2.5rem; margin-bottom: 1rem; }
.vol-card h3   { font-size: 1.1rem; margin-bottom: .4rem; }
.vol-card p    { font-size: .875rem; margin-bottom: 1.1rem; }
.vol-commit {
  font-size: .78rem; color: var(--blue); font-weight: 600;
  background: var(--blue-pale);
  padding: .3rem .85rem;
  border-radius: var(--r-pill);
  display: inline-block;
}

/* ----------------------------------------------------------
   FOSTER PAGE
   ---------------------------------------------------------- */
.foster-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.benefit-card {
  padding: 2rem;
  border-radius: var(--r-xl);
  background: var(--bg-white);
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--border);
  transition: all var(--ease);
}
.benefit-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); }
.ben-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.benefit-card h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.benefit-card p  { font-size: .85rem; }

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
}
.info-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.info-card {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: all var(--ease);
}
.info-card:hover { border-color: var(--blue); box-shadow: var(--sh-md); }
.info-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-lg);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.info-card h4 { font-size: .9rem; margin-bottom: .25rem; }
.info-card p, .info-card a {
  font-size: .85rem;
  color: var(--text-med);
  text-decoration: none;
}
.info-card a:hover { color: var(--blue); }

.contact-form-wrap {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border-light);
}
.contact-form-wrap h3 { margin-bottom: .5rem; }
.contact-form-wrap > p { font-size: .9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: .75rem; font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: .4rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: all var(--ease-fast);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--blue);
  background: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(59,130,196,.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ----------------------------------------------------------
   MAP SECTION
   ---------------------------------------------------------- */
.map-section { background: var(--bg-light); padding: 5rem 0; }
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
  height: 460px;
  background: linear-gradient(135deg, var(--blue-pale2), #ddeeff);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-placeholder {
  text-align: center;
  padding: 3rem;
}
.map-ph-icon { font-size: 4rem; margin-bottom: 1rem; }
.map-placeholder h3 { color: var(--blue-dark); margin-bottom: .5rem; }
.map-placeholder p  { max-width: 420px; margin: 0 auto; font-size: .9rem; }

/* ----------------------------------------------------------
   NEWSLETTER (Footer variant)
   ---------------------------------------------------------- */
.nl-form { display: flex; gap: .5rem; }
.nl-form input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-pill);
  padding: .75rem 1.25rem;
  color: #fff;
  font-size: .875rem;
  outline: none;
  transition: border-color var(--ease-fast);
  font-family: var(--font-body);
}
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form input:focus { border-color: var(--blue-light); }
.nl-form button {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: .75rem 1.25rem;
  font-weight: 700; font-size: .825rem;
  cursor: pointer;
  transition: background var(--ease-fast);
  font-family: var(--font-head);
}
.nl-form button:hover { background: var(--blue-light); }

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--bg-darker);
  color: #fff;
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand img { height: 58px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .875rem; margin-bottom: 1.25rem; }
.badge-501 {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-md);
  padding: .5rem 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.badge-501 .check-mark {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800;
  flex-shrink: 0;
}
.social-row { display: flex; gap: .65rem; }
.soc-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: all var(--ease-fast);
  text-decoration: none;
}
.soc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.5);
  font-size: .875rem;
  transition: color var(--ease-fast);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: .75rem;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
}
.footer-contact-item .fc-icon {
  font-size: 1rem;
  color: var(--blue-light);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-contact-item a:hover { color: var(--blue-light); }
.footer-nl h5 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: .6rem; }
.footer-nl p  { color: rgba(255,255,255,.5); font-size: .825rem; margin-bottom: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p, .footer-bottom a { color: rgba(255,255,255,.35); font-size: .78rem; text-decoration: none; }
.footer-bottom a:hover { color: var(--blue-light); }
.footer-bottom .fb-links { display: flex; gap: 1.5rem; }

/* ----------------------------------------------------------
   ANIMATIONS
   ---------------------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ----------------------------------------------------------
   UTILITY
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-lg { margin-bottom: 2.5rem; }
.gap-btns { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.gap-btns.center { justify-content: center; }

/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .tier-grid   { grid-template-columns: repeat(2, 1fr); }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.25rem 1.5rem 2rem;
    box-shadow: var(--sh-lg);
    gap: .15rem;
  }
  .nav-menu.open  { display: flex; }
  .nav-menu a     { color: var(--text-dark) !important; padding: .8rem 1rem; font-size: .95rem; }
  .nav-menu a:hover, .nav-menu a.active { background: var(--blue-pale); color: var(--blue) !important; }
  .nav-toggle     { display: flex; }
  .nav-donate     { display: none; }

  .hero-inner         { grid-template-columns: 1fr; text-align: center; padding-top: calc(var(--nav-h) + 3rem); }
  .hero-visual        { order: -1; }
  .logo-ring          { width: 220px; height: 220px; }
  .logo-ring img      { width: 150px; }
  .hero-btns          { justify-content: center; }
  .hero-proof         { justify-content: center; }
  .hero-desc          { margin-left: auto; margin-right: auto; }

  .mission-strip .wrap { flex-direction: column; }
  .ms-divider          { width: 48px; height: 1px; }

  .about-split .wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: 1rem; right: 1rem; }

  .how-steps     { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }

  .pets-grid     { grid-template-columns: 1fr; }
  .testi-grid    { grid-template-columns: 1fr; }
  .cta-trio-grid { grid-template-columns: 1fr; }
  .mission-cards { grid-template-columns: 1fr; }
  .events-grid   { grid-template-columns: 1fr; }
  .vol-grid      { grid-template-columns: 1fr; }
  .foster-benefits { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  .timeline-wrap::before { left: 26px; transform: none; }
  .tl-item { grid-template-columns: 48px 1fr; gap: 1.25rem; }
  .tl-item:nth-child(odd) .tl-content,
  .tl-item:nth-child(even) .tl-content { grid-column: 2; text-align: left; }
  .tl-item:nth-child(odd) .tl-dot,
  .tl-item:nth-child(even) .tl-dot { grid-column: 1; }
  .tl-item:nth-child(odd) .tl-spacer,
  .tl-item:nth-child(even) .tl-spacer { display: none; }

  .footer-grid   { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .footer-bottom .fb-links { justify-content: center; }

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

@media (max-width: 480px) {
  .wrap   { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .tier-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .nl-form { flex-direction: column; }
}

/* ----------------------------------------------------------
   DONATE PAGE — Tiers & Impact
   ---------------------------------------------------------- */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tier-card {
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
  position: relative;
  background: var(--bg-white);
}
.tier-card:hover,
.tier-card.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-pale), var(--sh-lg);
  transform: translateY(-4px);
}
.tier-card.featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, #fffdf5, #fff);
}
.tier-card.featured:hover,
.tier-card.featured.selected {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-light), var(--sh-lg);
}
.tier-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  white-space: nowrap;
}
.tier-icon  { font-size: 2.25rem; margin-bottom: .75rem; }
.tier-amount {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue-dark);
  line-height: 1;
}
.tier-period {
  font-size: .75rem;
  color: var(--text-light);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.tier-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.tier-perks {
  list-style: none;
  text-align: left;
  font-size: .82rem;
  color: var(--text-light);
}
.tier-perks li {
  padding: .3rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.tier-perks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* Impact grid */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.impact-item {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: all var(--ease);
}
.impact-item:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.impact-icon  { font-size: 2rem; margin-bottom: .5rem; }
.impact-amount {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: .4rem;
}
.impact-desc { font-size: .8rem; color: var(--text-light); }

/* ----------------------------------------------------------
   VOLUNTEER PAGE — Vol cards
   ---------------------------------------------------------- */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.vol-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: all var(--ease);
}
.vol-card:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}
.vol-icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.vol-card h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.vol-card p  { font-size: .88rem; color: var(--text-light); margin-bottom: 1rem; }
.vol-commit {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .3rem .75rem;
  border-radius: 50px;
}

/* ----------------------------------------------------------
   EVENTS PAGE
   ---------------------------------------------------------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.event-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--ease);
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: var(--blue-light);
}
.event-date-hd {
  padding: 1.25rem;
  text-align: center;
  color: #fff;
}
.ev-month { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.ev-day   { display: block; font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; line-height: 1; }
.ev-year  { display: block; font-size: .72rem; opacity: .75; }
.event-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.ev-tags    { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .9rem; }
.ev-tag {
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .6rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.event-body h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.ev-meta {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: .78rem;
  color: var(--text-light);
  margin-bottom: .9rem;
}
.ev-meta span { display: flex; align-items: center; gap: .4rem; }
.event-body p  { font-size: .85rem; color: var(--text-light); flex: 1; margin-bottom: 1.25rem; }
.ev-footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; margin-top: auto; }
.ev-badge {
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 50px;
}
.ev-badge.free { background: var(--green-pale); color: var(--green); }
.ev-badge.paid { background: var(--amber-light); color: var(--amber-dark); }

/* ----------------------------------------------------------
   CONTACT PAGE
   ---------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-col { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all var(--ease);
}
.contact-info-card:hover {
  border-color: var(--blue);
  box-shadow: var(--sh-md);
}
.ci-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-lg);
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.ci-body h4  { font-size: .95rem; margin-bottom: .35rem; }
.ci-body p   { font-size: .83rem; color: var(--text-light); margin-bottom: .5rem; }
.ci-link     { font-weight: 700; color: var(--blue); font-size: .88rem; word-break: break-all; }
.ci-link:hover { color: var(--blue-dark); }
.ci-note { font-size: .78rem !important; color: var(--blue) !important; background: var(--blue-pale); padding: .5rem .75rem; border-radius: var(--r-md); margin-top: .75rem !important; }
.hours-list  { display: flex; flex-direction: column; gap: .35rem; margin-top: .5rem; }
.hours-row   { display: flex; justify-content: space-between; font-size: .83rem; }
.hours-row span { color: var(--text-light); }
.hours-row strong { color: var(--text-dark); }

/* MAP SECTION */
.map-section { padding: 5rem 0; background: var(--bg-light); }
.map-wrap { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); margin-top: 2.5rem; }
.map-placeholder {
  background: linear-gradient(135deg, var(--blue-pale) 0%, #ddeeff 50%, #eef4ff 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border: 2px dashed var(--blue-light);
  border-radius: var(--r-xl);
}
.map-ph-inner { text-align: center; max-width: 520px; }
.map-pin-icon {
  font-size: 3.5rem;
  color: var(--blue);
  margin-bottom: 1rem;
  animation: bounce-pin 2s ease-in-out infinite;
}
@keyframes bounce-pin {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.map-ph-inner h3 { color: var(--blue-dark); font-size: 1.4rem; margin-bottom: .4rem; }
.map-ph-inner p  { color: var(--text-light); font-size: .9rem; margin-bottom: .5rem; }
.map-note { font-size: .82rem !important; background: rgba(255,255,255,.6); padding: .75rem 1rem; border-radius: var(--r-md); margin-top: .75rem !important; }

/* ----------------------------------------------------------
   RESPONSIVE — new components
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .tier-grid   { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .vol-grid    { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .vol-grid    { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .tier-grid   { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tier-grid   { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .map-placeholder { min-height: 280px; padding: 2rem 1rem; }
}
