/* =========================================================
   Hollywood Rescue Grooming Foundation
   ---------------------------------------------------------
   Palette derived from the logo:
     · cream / ivory background
     · silver-gray ("Hollywood Rescue" script)
     · crimson  ("Grooming Foundation" sans + paw prints)
   ========================================================= */

:root {
  /* ── Vibrant pink + silver/pewter palette ──
     - Pink is the lively, attention-getting accent (CTAs, highlights)
     - Silver/pewter replaces near-black for typography & dark sections
     - Background stays warm ivory for warmth
  */
  --bg: #FAF7F4;             /* warm ivory */
  --bg-2: #ffffff;
  --ink: #4A4540;            /* warm silver-pewter — replaces near-black */
  --ink-2: #5C5650;          /* a touch lighter for secondary text */
  --pewter: #5C5550;         /* used for dark section backgrounds */
  --pewter-dark: #4A4540;
  --muted: #837E78;          /* warm mid-gray */
  --line: #ECE5DE;           /* warm hairline */
  --silver: #9C9690;         /* logo silver, warm */
  --silver-soft: #D6D0CB;
  /* Variable names retained for compatibility,
     but the values are now vibrant rose-pink, not crimson */
  --crimson: #DD466B;        /* vibrant rose-pink — primary accent */
  --crimson-dark: #B83557;   /* hover state */
  --crimson-soft: #FCE2E8;   /* very pale pink for soft backgrounds */
  --gold: #D4AA6B;           /* warm gold */
  --success: #5BB78C;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 14px rgba(50, 40, 35, .06);
  --shadow: 0 14px 38px rgba(50, 40, 35, .09);
  --shadow-lg: 0 24px 60px rgba(50, 40, 35, .12);
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Skip-to-content link (accessibility, also a small SEO signal) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  color: var(--silver);          /* silver headings, matching the logo's script color */
}
h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 900; }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: 22px; font-weight: 700; color: var(--ink); }   /* smaller h3s stay darker for readability */

/* Headings on dark backgrounds get white instead of silver */
.closer-h, .news h2 { color: white; }
p  { margin: 0; }

em { font-style: italic; color: var(--crimson); font-weight: 800; }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--crimson);
}
.eyebrow.light { color: var(--gold); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 245, .9);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 16px;
}

/* Brand: actual logo image, white background blended invisibly on the cream page */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  height: 54px;
  width: auto;
  display: block;
  /* mix-blend-mode: multiply makes the logo's white background blend
     transparently against the cream page — no white box around the logo */
  mix-blend-mode: multiply;
}
.footer-brand .brand-logo { height: 64px; }
@media (max-width: 880px) {
  .brand-logo { height: 46px; }
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  opacity: .8;
}
.menu a:hover { opacity: 1; color: var(--crimson); }
@media (max-width: 880px) {
  .menu .link { display: none; }
  .brand-sub { font-size: 9px; letter-spacing: .18em; }
  .brand-script { font-size: 22px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary {
  background: var(--crimson);
  color: white;
  box-shadow: 0 8px 22px rgba(221, 70, 107, .28);
}
.btn-primary:hover {
  background: var(--crimson-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

/* ============ HERO ============ */
.hero { padding: 56px 0 64px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.hero-left h1 { margin-top: 18px; }
.hero-left .lead {
  font-size: 19px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 540px;
}
.hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
}
.badge-soft b { color: var(--ink); font-weight: 700; }
.badge-soft .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(91, 183, 140, .18);
}

/* Featured award badge in the hero */
.badge-award {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #5C5550 0%, #4A4540 100%);
  color: white;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(74, 69, 64, .25);
  position: relative;
  cursor: default;
}
.badge-award::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold), transparent 50%, var(--crimson));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.badge-award-icon {
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
}
.badge-award-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.badge-award-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  color: white;
}
.badge-award-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--crimson-soft);
  color: var(--crimson-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.pill .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 4px rgba(221, 70, 107, .22);
}

/* Hero slideshow */
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #232323;
  margin-top: 28px;
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.slideshow .slide.on { opacity: 1; }
.slideshow .dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.slideshow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}
.slideshow .dot.on {
  background: white;
  width: 22px;
  border-radius: 99px;
}

/* ============ HERO DONATE CARD (simplified) ============ */
.donate-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 96px;
}
@media (max-width: 980px) { .donate-card { position: static; padding: 32px 24px; } }

.dc-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--crimson);
}
.dc-title {
  font-family: 'Fraunces', serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-top: 6px;
  margin-bottom: 24px;
}

/* Three big, friendly amount pills */
.amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amt {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 18px 6px;
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  transition: all .15s ease;
  text-align: center;
  color: var(--ink);
}
.amt:hover {
  border-color: var(--crimson);
  transform: translateY(-1px);
}
.amt.on {
  border-color: var(--crimson);
  background: var(--crimson);
  color: white;
  box-shadow: 0 8px 22px rgba(221, 70, 107, .25);
}

/* Custom amount field — sits quietly below the chips */
.custom { margin-top: 10px; }
.custom .field {
  display: flex;
  align-items: center;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  transition: border-color .15s ease;
}
.custom .field:focus-within { border-color: var(--crimson); }
.custom .field span {
  color: var(--muted);
  font-weight: 600;
  font-size: 16px;
}
.custom input {
  border: 0;
  outline: 0;
  padding: 14px 8px;
  font-family: inherit;
  font-size: 15px;
  width: 100%;
  background: transparent;
  color: var(--ink);
}
.custom input::placeholder { color: var(--muted); }

/* The one big primary action */
.btn-xl {
  padding: 20px 28px;
  font-size: 17px;
  letter-spacing: .01em;
}
.donate-btn {
  width: 100%;
  margin-top: 18px;
  border-radius: 16px;
}
.donate-btn::after { content: ' →'; }
.donate-btn:hover { box-shadow: 0 12px 30px rgba(221, 70, 107, .35); }

/* Apple Pay + Google Pay quick-tap buttons.
   Industry-standard black pills with white branding — these are
   visual confirmation that wallet payments are accepted.
   Both buttons redirect to the same checkout (Stripe shows the
   right wallet for the user's device). */
.quickpay-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.quickpay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  background: #000;
  color: white;
  font-family: -apple-system, 'SF Pro Display', system-ui, 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .01em;
  transition: transform .12s ease, opacity .12s ease;
}
.quickpay:hover { transform: translateY(-1px); opacity: .92; }
.quickpay:active { transform: translateY(0); opacity: 1; }
.quickpay svg { display: block; }
.quickpay.applepay { letter-spacing: 0; }
.quickpay.googlepay { background: #fff; color: #000; border: 1px solid #dadce0; }
.quickpay.googlepay:hover { background: #f8f9fa; opacity: 1; }

/* Subtle microcopy below — impact + trust on one line */
.dc-footnote {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.dc-footnote #impactLine { color: var(--ink-2); }
.dc-footnote b { color: var(--crimson); font-weight: 700; }
.dc-trust {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver);
}

/* ============ AWARDS ============ */
.awards {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: white;
}
.awards-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
/* The big featured award — LA Business Journal */
.award-featured {
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 32px;
  background:
    linear-gradient(135deg, rgba(212, 170, 107, .08) 0%, rgba(221, 70, 107, .04) 100%),
    white;
  border: 1px solid var(--line);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.award-featured::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 170, 107, .12) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 740px) {
  .award-featured {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 22px;
    text-align: center;
  }
}

.award-featured-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.award-featured-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 740px) { .award-featured-title-row { flex-direction: column; gap: 12px; } }
.award-featured-medal {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(221, 70, 107, .2));
}
.award-featured-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
.award-featured-pub {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-top: 6px;
}
.award-featured-quote {
  margin: 16px 0 0;
  padding: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  border: 0;
  max-width: 540px;
}
.award-featured-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 24px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
}
.award-featured-year {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
}
.award-featured-year-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: .85;
}

.awards-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .awards-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .awards-row { grid-template-columns: repeat(2, 1fr); }
}
.award {
  text-align: center;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: transform .15s ease, box-shadow .15s ease;
}
.award:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.award-mark {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--crimson);
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.award-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.award-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: .04em;
}

/* ============ SECTIONS ============ */
section { padding: 88px 0; }
section.tight { padding-top: 56px; padding-bottom: 56px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.section-head h2 { margin-top: 8px; }
.section-head p {
  color: var(--muted);
  max-width: 520px;
  margin-top: 10px;
}
.centered-p { text-align: center; }

/* ============ BEFORE / AFTER ============ */
.ba-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) { .ba-wrap { grid-template-columns: 1fr; } }

.ba {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #222;
  user-select: none;
  touch-action: none;
}
.ba .ba-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.ba .ba-img.after  { z-index: 1; }
.ba .ba-img.before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pct, 50%)) 0 0);
}
.ba .ba-label {
  position: absolute;
  top: 16px;
  z-index: 3;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, .6);
  color: white;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.ba .ba-label.l-before { left: 16px; }
.ba .ba-label.l-after  { right: 16px; }
.ba .ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pct, 50%);
  width: 3px;
  background: white;
  z-index: 4;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
  pointer-events: none;
}
.ba .ba-handle {
  position: absolute;
  top: 50%;
  left: var(--pct, 50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .25);
  display: grid;
  place-items: center;
  cursor: ew-resize;
  color: var(--crimson);
  font-weight: 800;
  font-size: 16px;
}
.ba .ba-handle::before { content: '‹›'; letter-spacing: -2px; }

.ba-cta { text-align: center; margin-top: 32px; }

/* ============ CAROUSEL ============ */
.carousel { position: relative; }
.track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 24px;
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }

.card-dog {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card-dog:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-dog .img {
  aspect-ratio: 4 / 3;
  background: #eee;
  overflow: hidden;
}
.card-dog .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card-dog:hover .img img { transform: scale(1.05); }
.card-dog .body { padding: 20px; }
.card-dog .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  background: var(--crimson-soft);
  color: var(--crimson-dark);
}
.meta { font-size: 13px; color: var(--muted); margin-top: 6px; }
.progress {
  height: 6px;
  background: var(--silver-soft);
  border-radius: 99px;
  overflow: hidden;
  margin-top: 12px;
}
.progress > span {
  display: block;
  height: 100%;
  background: var(--crimson);
  border-radius: 99px;
}
.progress-meta { display: flex; justify-content: space-between; margin-top: 6px; }
.progress-meta .ink { color: var(--ink); }
.card-dog .cta {
  margin-top: 14px;
  width: 100%;
}

.nav-btns-wrap { position: relative; width: 100px; }
.nav-btns {
  position: absolute;
  top: -58px;
  right: 0;
  display: flex;
  gap: 8px;
}
.iconbtn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, color .15s, border-color .15s;
  color: var(--ink);
}
.iconbtn:hover { background: var(--ink); color: white; border-color: var(--ink); }
.iconbtn svg { width: 18px; height: 18px; }

/* ============ MISSION (steps) ============ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .how-grid { grid-template-columns: 1fr; } }
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.step .num {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--crimson);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin-bottom: 18px;
}
.step p { color: var(--muted); margin-top: 8px; }

/* ============ STORIES ============ */
.stories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .stories { grid-template-columns: 1fr; } }
.quote {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line);
}
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.quote p {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  line-height: 1.45;
}
.who {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.who b { display: block; font-size: 14px; }
.who span { font-size: 12px; color: var(--muted); }

/* ============ CLOSER ============ */
.closer {
  background: var(--ink);
  color: white;
  padding: 56px 0;
}
.closer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.closer-h {
  color: white;
  font-size: clamp(24px, 3vw, 36px);
  max-width: 640px;
  margin-top: 6px;
}

/* ============ FOOTER ============ */
footer { padding: 56px 0 24px; border-top: 1px solid var(--line); background: white; }
.foot {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 860px) { .foot { grid-template-columns: 1fr 1fr; } }
.footer-brand { margin-bottom: 16px; }
.footer-blurb {
  color: var(--muted);
  font-size: 14px;
  max-width: 340px;
}
footer h4 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
}
footer ul {
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
footer ul a { text-decoration: none; }
footer ul a:hover { color: var(--crimson); }
.legal {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}
.legal a { text-decoration: none; }
.legal a:hover { color: var(--crimson); }

/* ============ PROGRAMS ============ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .programs-grid { grid-template-columns: 1fr; } }
.program {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.program:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--silver-soft);
}
.program-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--crimson-soft);
  font-size: 24px;
  margin-bottom: 16px;
}
.program h3 {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 6px;
}
.program p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* Clickable program card — full-card link */
.program-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.program-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: transform .15s ease;
}
.program-link:hover .program-cta { transform: translateX(2px); }

/* ============ FEATURED EVENT — Santa Paws ============ */
.featured-event {
  padding: 80px 0;
  background: white;
  border-top: 1px solid var(--line);
}
.featured-event-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .featured-event-inner { grid-template-columns: 1fr; gap: 32px; }
}
.featured-event-poster {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  max-width: 460px;
  justify-self: center;
}
.featured-event-poster img {
  width: 100%;
  height: auto;
  display: block;
}
.featured-event-text h2 {
  margin-top: 8px;
  margin-bottom: 16px;
}
.featured-event-lead {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.55;
  margin-bottom: 16px;
}
.featured-event-text > p {
  color: var(--muted);
  line-height: 1.65;
}
.featured-event-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ============ ORIGIN STORY ============ */
.origin {
  background:
    linear-gradient(135deg, rgba(221, 70, 107, .03) 0%, rgba(212, 170, 107, .04) 100%),
    var(--bg-2);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.origin-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px) {
  .origin-inner { grid-template-columns: 1fr; gap: 40px; }
}
.origin-left h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.6vw, 44px);
}
.origin-left h2 em {
  font-style: italic;
  color: var(--crimson);
  font-weight: 800;
}
.origin-lead {
  font-size: 18px;
  margin-top: 20px;
  line-height: 1.55;
}
.origin-lead a {
  color: var(--crimson);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid var(--crimson-soft);
}
.origin-lead a:hover { border-color: var(--crimson); }
.origin-left > p:not(.eyebrow):not(.origin-lead):not(.origin-tagline) {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 16px;
}
.origin-left em { font-style: italic; color: var(--crimson); }
.origin-cta-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.origin-tagline {
  margin-top: 28px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--ink);
  padding-left: 16px;
  border-left: 3px solid var(--crimson);
}

/* Origin: right column = brand photo on top, stat grid below */
.origin-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.origin-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: white;
  position: relative;
}
.origin-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.origin-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: white;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: .02em;
}
.origin-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.origin-stat {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.origin-stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: var(--crimson);
  letter-spacing: -.03em;
}
.origin-stat-num span {
  font-size: 18px;
  color: var(--gold);
  margin-left: 2px;
  font-weight: 800;
}
.origin-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: box-shadow .15s ease;
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  font-family: 'Fraunces', serif;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  color: var(--crimson);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.55;
}

/* ============ BLOG TEASER ============ */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .blog-teaser-grid { grid-template-columns: 1fr; } }
.blog-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card-link {
  display: block;
  padding: 28px;
  text-decoration: none;
  color: var(--ink);
}
.blog-card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 10px;
}
.blog-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 14px;
}
.blog-meta {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver);
  font-weight: 600;
}

/* ============ NAP / footer address ============ */
.nap {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.nap a {
  color: var(--muted);
  text-decoration: none;
}
.nap a:hover { color: var(--crimson); }
.footer-h {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

/* ============ MOBILE DONATE BAR ============ */
.mobile-donate-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 60;
  background: var(--crimson);
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(221, 70, 107, .4);
}
@media (max-width: 760px) {
  .mobile-donate-bar { display: block; }
  body { padding-bottom: 80px; }
}
