/* ============================================================
   Seraphina's Sanctuary — Wicker Catio Design System
   A cozy, sunlit catio: lavender walls, sunshine yellow,
   plum ink, violet doors. Sophisticated, never childish.
   ============================================================ */

:root {
  /* Palette (kept from the current site's identity) */
  --lavender:        #EDE4FF;   /* base — light purple walls */
  --lavender-deep:   #E2D4FA;   /* deeper lavender for bands */
  --lavender-mist:   #F6F1FF;   /* near-white lavender */
  --plum:            #5B4880;   /* dark purple — body text */
  --plum-deep:       #46365F;   /* headings */
  --violet:          #A688E1;   /* brighter purple — buttons */
  --violet-deep:     #8B6FD4;   /* button hover */
  --violet-soft:     #C9B6F0;   /* soft violet for borders */
  --sun:             #FEEE6F;   /* yellow accent */
  --sun-deep:        #F2D94E;   /* yellow hover */
  --sun-soft:        #FEF7C9;   /* pale sun wash */
  --cream:           #FFFDF6;   /* warm white cards */
  --ink:             #3A2E52;   /* body text on light */

  /* Type */
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Karla', 'Segoe UI', sans-serif;

  /* Shape */
  --radius: 18px;
  --radius-sm: 10px;
  --arch: 999px 999px 22px 22px / 100% 100% 22px 22px;

  /* Elevation */
  --shadow: 0 10px 30px rgba(91, 72, 128, 0.12);
  --shadow-soft: 0 4px 14px rgba(91, 72, 128, 0.08);

  /* Wicker lattice texture (subtle woven weave) */
  --wicker: repeating-linear-gradient(
      45deg, rgba(91, 72, 128, 0.05) 0 2px, transparent 2px 7px
    ),
    repeating-linear-gradient(
      -45deg, rgba(91, 72, 128, 0.05) 0 2px, transparent 2px 7px
    );
  --wicker-strong: repeating-linear-gradient(
      45deg, rgba(91, 72, 128, 0.10) 0 2px, transparent 2px 7px
    ),
    repeating-linear-gradient(
      -45deg, rgba(91, 72, 128, 0.10) 0 2px, transparent 2px 7px
    );
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--lavender);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--violet-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--plum-deep); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--plum-deep);
  line-height: 1.15;
  font-weight: 600;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.7rem); }

p { text-wrap: pretty; }

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease, color .2s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

.btn-violet {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 6px 18px rgba(166, 136, 225, 0.4);
}
.btn-violet:hover { background: var(--violet-deep); color: #fff; }

.btn-sun {
  background: var(--sun);
  color: var(--plum-deep);
  box-shadow: 0 6px 18px rgba(242, 217, 78, 0.45);
}
.btn-sun:hover { background: var(--sun-deep); color: var(--plum-deep); }

.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--violet-soft);
}
.btn-ghost:hover { border-color: var(--violet); background: rgba(166, 136, 225, 0.08); }

.btn-sm { padding: .55rem 1.15rem; font-size: .92rem; min-height: 40px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--violet-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .7rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum-deep);
  line-height: 1.1;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-deep);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
}
.main-nav a {
  display: block;
  padding: .55rem .85rem;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--plum);
}
.main-nav a:hover { background: var(--lavender); color: var(--plum-deep); }
.main-nav .nav-cta a {
  background: var(--violet);
  color: #fff;
  padding: .6rem 1.3rem;
}
.main-nav .nav-cta a:hover { background: var(--violet-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  border-radius: 3px;
  background: var(--plum);
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(254, 238, 111, 0.35), transparent 70%),
    radial-gradient(45% 45% at 12% 80%, rgba(166, 136, 225, 0.22), transparent 70%),
    var(--lavender);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wicker);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  padding-block: clamp(3.5rem, 8vw, 6.5rem);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--violet-deep);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--violet-soft);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em {
  font-style: italic;
  color: var(--violet-deep);
}
.hero p.lede {
  font-size: 1.2rem;
  color: var(--plum);
  max-width: 34em;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-note {
  margin-top: 1.4rem;
  font-size: .9rem;
  color: var(--plum);
  opacity: .85;
}

.hero-photo {
  position: relative;
  justify-self: center;
  width: min(420px, 100%);
}
.hero-photo .glow {
  position: absolute;
  inset: -8%;
  background: radial-gradient(50% 50% at 50% 45%, rgba(254, 238, 111, 0.5), transparent 70%);
  filter: blur(6px);
  z-index: 0;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  border-radius: var(--arch);
  box-shadow: var(--shadow);
  /* melt into the page — soft dissolve at the bottom edge */
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.hero-photo .paw-note {
  position: absolute;
  z-index: 2;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sun);
  color: var(--plum-deep);
  font-size: .85rem;
  font-weight: 800;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.section-head { max-width: 46em; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker {
  display: block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: .6rem;
}
.section-head p { margin-top: .9rem; color: var(--plum); font-size: 1.08rem; }

.band-lavender { background: var(--lavender-deep); }
.band-mist { background: var(--lavender-mist); }
.band-sun { background: var(--sun-soft); }
.band-wicker { background: var(--wicker), var(--lavender); }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.stat {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat .num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
  color: var(--violet-deep);
  line-height: 1;
}
.stat .lbl {
  display: block;
  margin-top: .45rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--plum);
}

/* ---------- Welcome / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
}
.split .copy h2 { margin-bottom: 1rem; }
.split .copy p + p { margin-top: 1rem; }
.split .copy .btn { margin-top: 1.6rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.gallery figure {
  position: relative;
  border-radius: var(--arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream);
}
.gallery img {
  width: 100%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 2.2rem 1rem .8rem;
  background: linear-gradient(to top, rgba(70, 54, 95, 0.75), transparent);
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery figure:hover figcaption { opacity: 1; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }
.card .tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet-deep);
  background: var(--lavender);
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: .9rem;
}
.card .btn { margin-top: 1.1rem; }

/* ---------- Donate page ---------- */
.donate-hero { text-align: center; }
.donate-channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}
.channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.channel:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.channel .ch-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--violet-deep);
  font-size: 1.4rem;
  font-weight: 800;
}
.channel h3 { font-size: 1.25rem; }
.channel p { font-size: .9rem; color: var(--plum); }
.channel .btn { margin-top: .7rem; }

.policy {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-left: 5px solid var(--sun);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  max-width: 52em;
}
.policy h3 { margin-bottom: .7rem; }
.policy p + p { margin-top: .9rem; }

.vet-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  max-width: 52em;
}
.vet-card .ch-icon { width: 48px; height: 48px; }

/* ---------- Programs ---------- */
.program {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.6rem;
  align-items: start;
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.9rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.program .prog-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sun-deep);
  line-height: 1;
  min-width: 2.6rem;
  text-align: center;
}
.program h3 { margin-bottom: .4rem; }
.program .status {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .3rem .8rem;
  margin-bottom: .7rem;
}
.status-live { background: var(--sun-soft); color: var(--plum-deep); }
.status-soon { background: var(--lavender); color: var(--violet-deep); }

/* ---------- Support network ---------- */
.network-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.network-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.network-card .ch-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--violet-deep);
  font-size: 1.5rem;
  font-weight: 800;
}
.network-card h3 { margin-bottom: .3rem; }
.network-card p { font-size: .95rem; }

/* ---------- Transparency ---------- */
.monthly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.monthly {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.monthly .m-label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet-deep);
}
.monthly .m-value {
  display: block;
  margin-top: .4rem;
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--plum-deep);
}
.monthly .m-note { font-size: .8rem; color: var(--plum); margin-top: .3rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  max-width: 40em;
}
.form-card label {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--plum-deep);
  margin-bottom: .4rem;
}
.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--lavender-mist);
  border: 1.5px solid var(--violet-soft);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  margin-bottom: 1.2rem;
  transition: border-color .2s ease;
}
.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  border-color: var(--violet);
}
.form-card textarea { min-height: 140px; resize: vertical; }
.form-hint { font-size: .82rem; color: var(--plum); opacity: .85; margin-top: -.6rem; margin-bottom: 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-links { display: grid; gap: 1rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-link .ch-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--violet-deep);
  font-size: 1.2rem;
  font-weight: 800;
}
.contact-link .cl-label {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet-deep);
}
.contact-link .cl-value { font-weight: 700; color: var(--plum-deep); }

/* ---------- Board ---------- */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}
.board-card {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.board-card .initials {
  width: 64px;
  height: 64px;
  margin: 0 auto .9rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender);
  color: var(--violet-deep);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
}
.board-card h3 { font-size: 1.2rem; }
.board-card .role {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet-deep);
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--violet-soft);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  box-shadow: var(--shadow-soft);
}
.value-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.value-card p { font-size: .95rem; }

/* The 7th value card sits alone in its row — center it so the grid stays balanced */
.value-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: min(100%, 358px);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(254, 238, 111, 0.4), transparent 70%),
    var(--lavender-deep);
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wicker);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { margin-bottom: .8rem; }
.cta-band p { max-width: 36em; margin: 0 auto 1.8rem; color: var(--plum); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum-deep);
  color: var(--lavender-mist);
  padding-top: 3.5rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: var(--wicker-strong), var(--violet);
  opacity: .5;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand .brand { color: var(--lavender-mist); margin-bottom: .8rem; }
.footer-brand .brand small { color: var(--sun); }
.footer-brand p { font-size: .92rem; opacity: .85; max-width: 30em; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: .5rem; }
.footer-col a { color: var(--lavender-mist); font-size: .95rem; opacity: .9; }
.footer-col a:hover { color: var(--sun); opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(246, 241, 255, 0.15);
  padding-block: 1.4rem;
  font-size: .85rem;
  opacity: .8;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom .ein { font-weight: 700; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 85% 10%, rgba(254, 238, 111, 0.3), transparent 70%),
    var(--lavender);
  padding-block: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wicker);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero .kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--violet-deep);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--violet-soft);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.page-hero h1 { margin-bottom: .8rem; }
.page-hero p { max-width: 40em; margin-inline: auto; color: var(--plum); font-size: 1.1rem; }

/* ---------- Prose ---------- */
.prose { max-width: 46em; }
.prose p + p { margin-top: 1.1rem; }
.prose h2 { margin: 2.2rem 0 .9rem; }
.prose h3 { margin: 1.8rem 0 .6rem; }
.prose ul { margin: 1rem 0 1rem 1.4rem; display: grid; gap: .5rem; }
.prose strong { color: var(--plum-deep); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero p.lede { margin-inline: auto; }
  .hero-actions, .hero-note { justify-content: center; }
  .hero-photo { order: -1; width: min(340px, 80%); }
  .split { grid-template-columns: 1fr; }
  .split img { order: -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:last-child { grid-column: 1 / -1; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }

  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--lavender-mist);
    display: grid;
    place-items: center;
    transform: translateY(-100%);
    transition: transform .3s ease;
    z-index: 40;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; gap: .6rem; text-align: center; }
  .main-nav a { font-size: 1.25rem; padding: .8rem 1.6rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .program { grid-template-columns: 1fr; }
  .program .prog-num { text-align: left; }
  .vet-card { grid-template-columns: 1fr; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
