/* ==========================================================================
   Speechless Animal Welfare Foundation — Design System
   Palette derived from the foundation's own logo (deep blue + sky blue),
   warmed with an amber accent that sits well against the rescue photography.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #06213f;
  --navy-800: #0a2c56;
  --navy-700: #0d3e91;
  --blue-600: #1361c4;
  --sky-500: #1e9bd7;
  --sky-400: #4fb6e6;
  --sky-100: #e2f2fb;
  --sky-50: #f1f9fd;

  /* Warm accent */
  --amber-600: #d97b12;
  --amber-500: #f2a03d;
  --amber-300: #ffd39b;
  --amber-50: #fff6e9;

  /* Neutrals */
  --ink: #0e1b2b;
  --ink-soft: #3d4d61;
  --ink-mute: #6a7a8d;
  --line: #e2e9f0;
  --line-soft: #eef3f8;
  --paper: #ffffff;
  --shell: #f6f9fc;

  /* Semantic */
  --bg: var(--paper);
  --text: var(--ink);
  --brand: var(--navy-700);
  --accent: var(--amber-500);

  /* Radii */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;
  --r-pill: 999px;

  /* Elevation */
  --sh-sm: 0 1px 2px rgba(10, 44, 86, .06), 0 2px 6px rgba(10, 44, 86, .05);
  --sh-md: 0 2px 4px rgba(10, 44, 86, .05), 0 10px 24px rgba(10, 44, 86, .08);
  --sh-lg: 0 4px 10px rgba(10, 44, 86, .06), 0 24px 56px rgba(10, 44, 86, .14);
  --sh-ring: 0 0 0 1px var(--line);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(64px, 9vw, 122px);

  /* Type */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);

  color-scheme: light;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.14;
  letter-spacing: -.021em;
  margin: 0 0 .5em;
  font-weight: 800;
  text-wrap: balance;
}

h1 { font-size: clamp(2.35rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.85rem, 3.7vw, 2.85rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1.06rem; font-weight: 700; }

p { margin: 0 0 1.15rem; color: var(--ink-soft); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--navy-700); }

ul, ol { margin: 0 0 1.15rem; padding-left: 1.15rem; color: var(--ink-soft); }
li { margin-bottom: .4rem; }

strong { color: var(--navy-800); font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--sky-500);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--sky-100); color: var(--navy-900); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--wrap-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 78px); }
.section--shell { background: var(--shell); }
.section--sky {
  background: linear-gradient(170deg, var(--sky-50) 0%, #ffffff 92%);
}
.section--navy {
  background: radial-gradient(120% 130% at 12% 0%, var(--navy-700) 0%, var(--navy-900) 62%);
  color: #dce8f5;
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: #b9cde3; }
.section--navy strong, .cta-band strong { color: #fff; }
.section--navy a:not(.btn) { color: var(--amber-300); }
.section--navy a:not(.btn):hover { color: #fff; }

.skip-link {
  position: absolute; left: 12px; top: -70px; z-index: 200;
  background: var(--navy-800); color: #fff;
  padding: 12px 20px; border-radius: var(--r-sm); font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }

/* Section heading block */
.sec-head { max-width: 660px; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.06rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sky-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .55;
}
.sec-head--center .eyebrow::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: .55;
}
.section--navy .eyebrow { color: var(--amber-300); }

.lead { font-size: clamp(1.06rem, 1.7vw, 1.22rem); color: var(--ink-soft); line-height: 1.62; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy-700);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 700; letter-spacing: -.005em;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  cursor: pointer; white-space: nowrap;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  box-shadow: 0 1px 2px rgba(6, 33, 63, .16), 0 8px 20px -8px rgba(13, 62, 145, .5);
}
.btn:hover { color: var(--btn-fg); transform: translateY(-2px); box-shadow: 0 2px 4px rgba(6, 33, 63, .16), 0 14px 28px -10px rgba(13, 62, 145, .6); }
.btn:active { transform: translateY(0); }

.btn--accent {
  --btn-bg: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  --btn-fg: #33200a;
  box-shadow: 0 1px 2px rgba(90, 50, 5, .18), 0 10px 24px -10px rgba(217, 123, 18, .8);
}
.btn--accent:hover { box-shadow: 0 2px 5px rgba(90, 50, 5, .2), 0 16px 32px -12px rgba(217, 123, 18, .9); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--sky-50); border-color: var(--sky-400); color: var(--navy-700); box-shadow: var(--sh-sm); }

.btn--light {
  --btn-bg: rgba(255, 255, 255, .1);
  --btn-fg: #fff;
  border-color: rgba(255, 255, 255, .28);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn--light:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .5); }

.btn--sm { padding: 10px 18px; font-size: .87rem; }
.btn--lg { padding: 17px 34px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display); font-weight: 700; font-size: .94rem;
  color: var(--navy-700);
}
.link-arrow svg { transition: transform .25s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -14px rgba(10, 44, 86, .34);
  background: rgba(255, 255, 255, .94);
}

.nav {
  display: flex; align-items: center; gap: 20px;
  min-height: 78px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; margin-right: auto; flex-shrink: 0; }
.nav__brand img { height: 46px; width: auto; }
.nav__brand:hover { opacity: .88; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: .93rem;
  color: var(--ink-soft);
  padding: 9px 13px; border-radius: var(--r-xs);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--navy-800); background: var(--sky-50); }
.nav__link[aria-current="page"] { color: var(--navy-700); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 2px;
  height: 2.5px; border-radius: 2px; background: var(--sky-500);
}

.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px; padding: 0;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span {
  display: block; position: relative;
  width: 20px; height: 2px; border-radius: 2px; background: var(--navy-800);
  transition: background .2s var(--ease);
}
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  border-radius: 2px; background: var(--navy-800);
  transition: transform .28s var(--ease-out), top .2s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1000px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: inline-flex; }
}

.mobile-menu {
  position: fixed; inset: 78px 0 auto; z-index: 89;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  padding: 18px var(--gutter) 30px;
  display: none;
  max-height: calc(100dvh - 78px);
  overflow-y: auto;
}
.mobile-menu.is-open { display: block; animation: menuDrop .28s var(--ease-out); }
@keyframes menuDrop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-menu a.mobile-menu__link {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 650; font-size: 1.06rem;
  color: var(--navy-800); padding: 15px 4px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a.mobile-menu__link[aria-current="page"] { color: var(--sky-500); }
.mobile-menu .btn { margin-top: 20px; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(46px, 6vw, 84px) clamp(56px, 7vw, 96px);
  background: linear-gradient(168deg, var(--sky-50) 0%, #fff 78%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; z-index: 0;
  width: 620px; height: 620px; right: -180px; top: -300px;
  background: radial-gradient(circle, rgba(30, 155, 215, .18), transparent 66%);
  border-radius: 50%;
}
.hero::after {
  content: ""; position: absolute; z-index: 0;
  width: 480px; height: 480px; left: -220px; bottom: -260px;
  background: radial-gradient(circle, rgba(242, 160, 61, .16), transparent 68%);
  border-radius: 50%;
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 5vw, 68px); align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

.hero__title { margin-bottom: 20px; }
.hero__title em {
  font-style: normal;
  background: linear-gradient(115deg, var(--sky-500), var(--navy-700));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__text { font-size: clamp(1.04rem, 1.6vw, 1.19rem); max-width: 54ch; margin-bottom: 30px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-pill); padding: 7px 16px 7px 8px;
  font-size: .85rem; font-weight: 600; color: var(--navy-800);
  box-shadow: var(--sh-sm); margin-bottom: 24px;
  font-family: var(--font-display);
}
.pill__dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber-50); color: var(--amber-600);
  display: grid; place-items: center; font-size: .72rem;
}

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.hero__badge {
  position: absolute; left: -18px; bottom: -22px;
  background: #fff; border-radius: var(--r-lg);
  padding: 16px 22px; box-shadow: var(--sh-lg);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line-soft);
}
.hero__badge b {
  font-family: var(--font-display); font-size: 1.7rem; font-weight: 800;
  color: var(--navy-700); line-height: 1;
}
.hero__badge span { font-size: .82rem; color: var(--ink-mute); line-height: 1.35; display: block; max-width: 12ch; }
@media (max-width: 560px) { .hero__badge { left: 8px; bottom: -18px; padding: 13px 18px; } }

/* Page hero (interior pages) */
.page-hero {
  position: relative; overflow: hidden;
  padding-block: clamp(52px, 7vw, 96px) clamp(44px, 6vw, 76px);
  background: radial-gradient(120% 150% at 82% -10%, var(--sky-100) 0%, var(--sky-50) 44%, #fff 88%);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero__inner { max-width: 720px; }
.page-hero p { font-size: clamp(1.02rem, 1.5vw, 1.16rem); }

.crumbs { font-size: .85rem; color: var(--ink-mute); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-mute); }
.crumbs a:hover { color: var(--navy-700); }
.crumbs span[aria-hidden] { opacity: .5; }

/* --------------------------------------------------------------------------
   7. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
}
.stats--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px) { .stats, .stats--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats, .stats--3 { grid-template-columns: 1fr; } }

.stat { background: #fff; padding: clamp(22px, 3vw, 34px) clamp(16px, 2vw, 26px); text-align: center; }
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 2.85rem); line-height: 1;
  color: var(--navy-700); letter-spacing: -.03em;
  display: block; margin-bottom: 8px;
}
.stat__label { font-size: .84rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-mute); }
.section--navy .stat { background: rgba(255, 255, 255, .05); }
.section--navy .stats { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .16); }
.section--navy .stat__num { color: #fff; }
.section--navy .stat__label { color: #a9c2dc; }

/* --------------------------------------------------------------------------
   8. Cards & grids
   -------------------------------------------------------------------------- */
/* Grid children default to min-width:auto, which lets long words, nowrap
   buttons and fixed-width inputs push a track wider than the viewport.
   Pinning them to 0 keeps every layout inside the screen down to 320px. */
.grid > *, .split > *, .hero__grid > *, .donate-panel > *,
.stats > *, .spotlight > *, .form__row > * { min-width: 0; }
.copy-field code { min-width: 0; }

.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 660px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--sky-100); }
.card__media { position: relative; overflow: hidden; background: var(--sky-50); }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .6s var(--ease-out); }
.card:hover .card__media img { transform: scale(1.045); }
.card__body { padding: clamp(20px, 2.2vw, 28px); flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { font-size: .96rem; }
.card__foot { margin-top: auto; padding-top: 18px; }

/* Icon feature card */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 2.6vw, 34px); height: 100%; transition: transform .3s var(--ease-out), box-shadow .3s var(--ease); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.feature__icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--sky-50); color: var(--navy-700);
}
.feature__icon--amber { background: var(--amber-50); color: var(--amber-600); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 10px; }
.feature p { font-size: .96rem; margin-bottom: 0; }

/* Split media + text */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 72px); align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split--reverse .split__media { order: 2; }
@media (max-width: 880px) { .split--reverse .split__media { order: 0; } }
.split__media img {
  width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-md);
  aspect-ratio: 5 / 4; object-fit: cover;
}
.split__media--tall img { aspect-ratio: 4 / 5; }
.split__media--contain img { aspect-ratio: auto; object-fit: contain; box-shadow: none; background: transparent; }

/* Checklist */
.ticks { list-style: none; padding: 0; margin: 0 0 26px; }
.ticks li {
  position: relative; padding-left: 34px; margin-bottom: 13px;
  color: var(--ink-soft); font-size: .99rem;
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--sky-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d3e91' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.section--navy .ticks li { color: #c4d6ea; }
.section--navy .ticks li::before { background-color: rgba(255, 255, 255, .12); }

/* --------------------------------------------------------------------------
   9. Adoption cards
   -------------------------------------------------------------------------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 30px; align-items: center;
}
.chip {
  font-family: var(--font-display); font-weight: 650; font-size: .88rem;
  padding: 9px 18px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: #fff; color: var(--ink-soft);
  cursor: pointer; transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--sky-400); color: var(--navy-700); }
.chip[aria-pressed="true"] { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }

.pups { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.2vw, 28px); }
@media (max-width: 1040px) { .pups { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .pups { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .pups { grid-template-columns: 1fr; } }

.pup {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease), border-color .3s;
}
.pup:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--sky-100); }
.pup.is-hidden { display: none; }

.pup__media { position: relative; background: var(--sky-50); }
.pup__media button {
  display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in;
}
.pup__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .6s var(--ease-out); }
.pup:hover .pup__media img { transform: scale(1.05); }
.pup__count {
  position: absolute; right: 10px; bottom: 10px;
  background: rgba(6, 33, 63, .74); color: #fff;
  font-size: .74rem; font-weight: 600; letter-spacing: .02em;
  padding: 4px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(4px); display: flex; align-items: center; gap: 5px;
}
.pup__tag {
  position: absolute; left: 10px; top: 10px;
  background: rgba(255, 255, 255, .94); color: var(--navy-800);
  font-family: var(--font-display); font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}

.pup__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.pup__name { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 12px; }
.pup__name h3 { margin: 0; font-size: 1.2rem; }
.pup__age { font-size: .84rem; color: var(--ink-mute); font-weight: 600; white-space: nowrap; }

.pup__meta { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; }
.pup__meta li { display: flex; align-items: center; gap: 8px; font-size: .855rem; color: var(--ink-soft); margin: 0; }
.pup__meta svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--sky-500); }
.pup__meta .no { color: var(--ink-mute); opacity: .82; }
.pup__meta .no svg { color: var(--ink-mute); }
.pup__body .btn { margin-top: auto; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 140;
  background: rgba(4, 18, 35, .93);
  display: none; align-items: center; justify-content: center;
  padding: max(20px, 4vh) 20px;
  backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: fade .25s var(--ease); }
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }
.lightbox__stage { max-width: 940px; width: 100%; text-align: center; }
.lightbox__stage img {
  max-height: 74dvh; width: auto; margin-inline: auto;
  border-radius: var(--r-md); box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
}
.lightbox__cap { color: #fff; font-family: var(--font-display); font-weight: 700; margin-top: 18px; font-size: 1.1rem; }
.lightbox__cap small { display: block; font-weight: 500; color: #9fb6cd; font-size: .84rem; margin-top: 4px; font-family: var(--font-body); }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .26); background: rgba(255, 255, 255, .12);
  color: #fff; cursor: pointer; display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .26); }
.lightbox__btn--prev { left: max(14px, 3vw); }
.lightbox__btn--next { right: max(14px, 3vw); }
.lightbox__close { position: absolute; top: 18px; right: max(14px, 3vw); transform: none; }

/* --------------------------------------------------------------------------
   10. Stories / testimonials
   -------------------------------------------------------------------------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(24px, 2.6vw, 34px); height: 100%;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease);
  position: relative;
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.quote__mark {
  font-family: Georgia, serif; font-size: 4rem; line-height: .8;
  color: var(--sky-100); margin-bottom: 6px; user-select: none;
}
.quote p { font-size: .98rem; color: var(--ink-soft); }
.quote__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 20px; }
.quote__who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: var(--sh-sm); }
.quote__who b { font-family: var(--font-display); color: var(--navy-800); font-size: .96rem; display: block; }
.quote__who span { font-size: .82rem; color: var(--ink-mute); }

/* Diary entries */
.diary { display: grid; gap: clamp(26px, 3vw, 40px); }
.diary__item {
  display: grid; grid-template-columns: 300px 1fr; gap: clamp(22px, 3vw, 42px);
  align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.diary__item:hover { box-shadow: var(--sh-md); border-color: var(--sky-100); }
.diary__item:nth-child(even) { grid-template-columns: 1fr 300px; }
.diary__item:nth-child(even) .diary__media { order: 2; }
@media (max-width: 780px) {
  .diary__item, .diary__item:nth-child(even) { grid-template-columns: 1fr; }
  .diary__item:nth-child(even) .diary__media { order: 0; }
}
.diary__media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
@media (max-width: 780px) { .diary__media img { min-height: 0; aspect-ratio: 16 / 10; } }
.diary__text { padding: clamp(22px, 2.6vw, 34px) clamp(22px, 2.6vw, 34px) clamp(22px, 2.6vw, 34px) 0; }
@media (max-width: 780px) { .diary__text { padding: 0 24px 28px; } }
.diary__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--amber-50); color: var(--amber-600);
  font-family: var(--font-display); font-size: .74rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 14px;
}
.diary__text h3 { margin-bottom: 10px; }
.diary__text p { margin-bottom: 0; font-size: .99rem; }

/* --------------------------------------------------------------------------
   11. Spotlight (press / film / celebrity)
   -------------------------------------------------------------------------- */
.spotlight { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 30px); }
@media (max-width: 980px) { .spotlight { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .spotlight { grid-template-columns: 1fr; } }

.spot {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: transform .3s var(--ease-out), background .3s var(--ease);
}
.spot:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .1); }
.spot__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .74rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--amber-300); margin-bottom: 16px;
}
.spot__icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 211, 155, .16); display: grid; place-items: center; }
.spot__icon svg { width: 17px; height: 17px; }
.spot h3 { font-size: clamp(1.24rem, 2vw, 1.55rem); margin-bottom: 12px; }
.spot p { margin-bottom: 0; }
.spot__note {
  margin-top: 18px; font-size: .82rem; color: #8fa8c2;
  border-top: 1px dashed rgba(255, 255, 255, .18); padding-top: 14px;
}

/* --------------------------------------------------------------------------
   12. Donation panel
   -------------------------------------------------------------------------- */
.donate-panel {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(26px, 3.4vw, 52px);
  box-shadow: var(--sh-md);
}
@media (max-width: 860px) { .donate-panel { grid-template-columns: 1fr; } }

.qr-card {
  background: linear-gradient(165deg, var(--sky-50), #fff);
  border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; text-align: center;
}
.qr-card img { width: 100%; max-width: 230px; margin: 0 auto 16px; border-radius: var(--r-sm); }
.qr-card__label { font-size: .8rem; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; margin-bottom: 6px; }

.copy-field {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 6px 6px 6px 18px; max-width: 100%;
}
.copy-field code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .92rem;
  color: var(--navy-800); overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.copy-btn {
  margin-left: auto; flex-shrink: 0;
  border: 0; border-radius: var(--r-pill); cursor: pointer;
  background: var(--navy-700); color: #fff;
  font-family: var(--font-display); font-weight: 650; font-size: .82rem;
  padding: 9px 16px; transition: background .2s var(--ease);
}
.copy-btn:hover { background: var(--blue-600); }
.copy-btn.is-done { background: #14804a; }

.give-options { display: grid; gap: 12px; margin-bottom: 26px; }
.give-option {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--shell);
}
.give-option b { font-family: var(--font-display); color: var(--navy-800); display: block; font-size: .98rem; }
.give-option span { font-size: .88rem; color: var(--ink-mute); }
.give-option__amt {
  flex-shrink: 0; font-family: var(--font-display); font-weight: 800;
  color: var(--navy-700); font-size: 1.05rem; min-width: 62px;
}

/* --------------------------------------------------------------------------
   13. Gallery strip
   -------------------------------------------------------------------------- */
.strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
@media (max-width: 900px) { .strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .strip { grid-template-columns: repeat(2, 1fr); } }
.strip img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--r-md); transition: transform .4s var(--ease-out), box-shadow .3s var(--ease);
}
.strip a:hover img { transform: scale(1.03); box-shadow: var(--sh-md); }

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--font-display); font-weight: 650; font-size: .88rem; color: var(--navy-800); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: .97rem; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fff; width: 100%;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(30, 155, 215, .14);
}
.field input::placeholder, .field textarea::placeholder { color: #9aa8b8; }
.form__note { font-size: .85rem; color: var(--ink-mute); }

.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 20px 22px; transition: box-shadow .3s var(--ease), border-color .3s;
}
.contact-card:hover { box-shadow: var(--sh-sm); border-color: var(--sky-100); }
.contact-card__icon {
  width: 42px; height: 42px; border-radius: var(--r-sm); flex-shrink: 0;
  display: grid; place-items: center; background: var(--sky-50); color: var(--navy-700);
}
.contact-card__icon svg { width: 20px; height: 20px; }
.contact-card b { display: block; font-family: var(--font-display); color: var(--navy-800); margin-bottom: 3px; font-size: .95rem; }
.contact-card a, .contact-card span { font-size: .93rem; color: var(--ink-soft); word-break: break-word; }
.contact-card a:hover { color: var(--navy-700); }

/* Accordion */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; color: var(--navy-800);
  padding: 22px 44px 22px 0; position: relative;
  transition: color .2s var(--ease);
}
.faq__q:hover { color: var(--blue-600); }
.faq__q::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 2.4px solid currentColor; border-bottom: 2.4px solid currentColor;
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease-out);
}
.faq__q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { display: none; padding-bottom: 24px; max-width: 74ch; }
.faq__a.is-open { display: block; animation: menuDrop .3s var(--ease-out); }

/* --------------------------------------------------------------------------
   15. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(34px, 5vw, 68px);
  background: radial-gradient(120% 160% at 88% 8%, var(--blue-600) 0%, var(--navy-800) 55%, var(--navy-900) 100%);
  color: #fff; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='.05'%3E%3Ccircle cx='24' cy='30' r='6'/%3E%3Ccircle cx='38' cy='20' r='5'/%3E%3Ccircle cx='52' cy='24' r='5'/%3E%3Ccircle cx='64' cy='36' r='5'/%3E%3Cpath d='M32 44c8-8 20-8 26 0 5 7 2 15-6 16h-14c-8-1-11-9-6-16z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .55;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #b9cde3; max-width: 58ch; margin-inline: auto; margin-bottom: 28px; font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900); color: #93aac4;
  padding-block: clamp(48px, 6vw, 76px) 0;
  font-size: .93rem;
}
.footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: 46px;
}
@media (max-width: 940px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo { background: #fff; border-radius: var(--r-md); padding: 12px 16px; display: inline-block; margin-bottom: 18px; }
.footer__logo img { height: 40px; width: auto; }
.site-footer p { color: #8ea5be; font-size: .93rem; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 18px; }
.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 11px; }
.footer__list a { color: #93aac4; }
.footer__list a:hover { color: #fff; }

.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #cfe0f0;
  transition: background .2s var(--ease), transform .2s var(--ease-out), color .2s;
}
.socials a:hover { background: var(--sky-500); color: #fff; transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

.footer__bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  align-items: center; justify-content: space-between;
  font-size: .85rem; color: #7e94ad;
}
.footer__bar a { color: #7e94ad; }
.footer__bar a:hover { color: #fff; }

.footer-upi {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-md); padding: 16px 18px; margin-top: 4px;
}
.footer-upi span { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: #7e94ad; margin-bottom: 6px; }
.footer-upi code { color: #fff; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .92rem; }

/* --------------------------------------------------------------------------
   17. Toast
   -------------------------------------------------------------------------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 20px);
  background: var(--navy-900); color: #fff;
  padding: 13px 22px; border-radius: var(--r-pill);
  font-size: .9rem; font-weight: 600; font-family: var(--font-display);
  box-shadow: var(--sh-lg); z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease-out);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

/* --------------------------------------------------------------------------
   18. Scroll reveal
   -------------------------------------------------------------------------- */
/* Reveals only apply when JS is running, so a no-JS visitor still sees
   every section rather than a page of invisible content. */
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: clamp(32px, 4vw, 56px); }
.mb-lg { margin-bottom: clamp(32px, 4vw, 56px); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.no-scroll { overflow: hidden; }
.divider { height: 1px; background: var(--line); border: 0; margin-block: clamp(40px, 5vw, 64px); }
