/* SAVE Homeless Animals — Static Site Stylesheet */

/* ─── Self-hosted Fonts ─────────────────────────────────────────────────── */
/* Roboto v51 — latin subset, variable font covers 300/400/500/700          */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Playfair Display v40 — 700, latin subset */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/playfair-display-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --blue:       #4660a9;
  --blue-dark:  #344d8f;
  --blue-light: #eef1f9;
  --orange:     #e07919;
  --orange-dark:#c0641a;
  --green:      #A7AD6F;
  --text:       #1e1e1e;
  --text-muted: #4d4d4d;
  --bg:         #ffffff;
  --bg-alt:     #f4f4f4;
  --border:     #ddd;
  --card-shadow:0 2px 12px rgba(0,0,0,.08);
  --radius:     8px;
  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', Helvetica, Arial, Lucida, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  transition: background .25s, color .25s;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
ul { list-style: none; }

/* ─── Layout helpers ────────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { color: var(--blue); margin-bottom: .5rem; }
.section-header p  { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .1s;
  border: none;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); color: #fff; }

.btn-secondary { background: var(--blue); color: #fff; }
.btn-secondary:hover { background: var(--blue-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--blue); }

/* ─── Navigation ────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: .95rem;
  font-weight: 600;
}

.nav-links a {
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { text-decoration: none; color: var(--blue); }

.nav-links .btn { padding: .5rem 1.2rem; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.theme-toggle:hover { background: var(--bg-alt); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;  /* 44×44px tap target */
  margin: -6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 600;
  color: var(--text);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: .5rem; text-align: center; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* Left text column */

/* Subtle diagonal slice between columns */

/* Right photo column */

/* Gradient fade from photo into the text column */

.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p  { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; }

/* Page-level hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #5a74c0 100%);
  color: #fff;
  padding: 5.5rem 1.5rem;
  text-align: center;
  min-height: 260px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Subtle paw-print pattern overlay */
.page-hero::before {
  content: '🐾';
  position: absolute;
  font-size: 12rem;
  opacity: .04;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-20deg);
  pointer-events: none;
  user-select: none;
}

.page-hero .container { width: 100%; }
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p  { opacity: .88; font-size: 1.05rem; max-width: 640px; margin: .5rem auto 0; }

/* Contact page hero — photo bg, left-aligned, wave at bottom */
.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(30,30,30,0) 70%),
    url('../images/Contact-Banner-Image-Updated.jpg') center / cover no-repeat;
  text-align: left;
  min-height: 340px;
  padding-bottom: 5.5rem; /* extra room for wave */
}
.page-hero--contact::before { display: none; } /* hide emoji paw overlay */
.page-hero--contact h1 { font-size: clamp(2rem, 5vw, 3.5rem); max-width: none; }
.page-hero--contact p  { margin: .5rem 0 0; }

/* Paw decoration row inside contact form column */
.contact-paw-row {
  position: relative;
  min-height: 160px;
  margin-top: 1.5rem;
  pointer-events: none;
}
.contact-paw-row img {
  position: absolute;
  opacity: .22;
  display: block;
}
.contact-paw-row .cpaw-large {
  width: clamp(80px, 7vw, 120px);
  height: clamp(80px, 7vw, 120px);
  bottom: 1.5rem;
  right: 2.5rem;
  transform: rotate(45deg);
}
.contact-paw-row .cpaw-small {
  width: clamp(60px, 5vw, 90px);
  height: clamp(60px, 5vw, 90px);
  bottom: 2.5rem;
  left: 1.5rem;
  transform: rotate(-45deg);
}

/* ─── Mission Strip ─────────────────────────────────────────────────────── */

/* ─── Card Grid ─────────────────────────────────────────────────────────── */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* CTA Hero Cards (homepage) */
.cta-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow); }
.cta-icon { font-size: 2.5rem; margin-bottom: 1rem; display:flex; align-items:center; justify-content:center; }
.cta-icon svg { width: 42px; height: 42px; flex-shrink: 0; }
.cta-card h3 { color: var(--blue); margin-bottom: .5rem; }
.cta-card p  { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.25rem; flex: 1; }

/* ─── Steps ─────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
}
.step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { color: var(--blue); margin-bottom: .5rem; }
.step p  { color: var(--text-muted); font-size: 1rem; }

/* ─── Fee Table ─────────────────────────────────────────────────────────── */

/* Inclusions list */

/* ─── Accordion (Myths) ─────────────────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  scroll-margin-top: 140px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background .15s;
}
.accordion-trigger:hover { background: var(--bg-alt); }
.accordion-trigger .icon {
  flex-shrink: 0;
  transition: transform .25s;
  font-size: 1.2rem;
  color: var(--blue);
}
.accordion-trigger[aria-expanded="true"] .icon { transform: rotate(45deg); }

.accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease;
}
.accordion-body.open { grid-template-rows: 1fr; }
.accordion-body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ─── Quote ─────────────────────────────────────────────────────────────── */
blockquote {
  border-left: 4px solid var(--orange);
  padding: 1rem 1.5rem;
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-muted);
  margin: 1.5rem 0;
}
blockquote cite { display: block; margin-top: .5rem; font-style: normal; font-weight: 600; color: var(--text); font-size: .95rem; }

/* ─── Contact Layout ────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-map {
  grid-column: 1 / -1;
  grid-row: 2;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { grid-column: auto; grid-row: auto; }
  .contact-form-col {
    text-align: center;
    order: -1; /* button block appears above Visit/Call on mobile */
    min-width: 0;
  }
  .contact-form-col h3,
  .contact-form-col p { text-align: center; }
  .contact-paw-row { min-height: 120px; }
  .contact-paw-row .cpaw-large { right: 15%; }
  .contact-paw-row .cpaw-small { left: 15%; }
}

/* Hours table: stack day + time vertically at all widths where the left
   column is too narrow for the side-by-side table (up to ~1065px).
   Use 1100px to align with the nav hamburger breakpoint. */
@media (max-width: 1100px) {
  .hours-table,
  .hours-table tbody,
  .hours-table tr { display: block; }
  .hours-table td { display: block; white-space: normal; padding: 0; }
  .hours-table td:first-child { font-weight: 600; margin-top: .35rem; }
  .hours-table td:last-child  { padding-left: 1rem; color: var(--text-muted); font-size: .95rem; }
}

.contact-info {
  background: #f0f4fb;
  border-radius: 14px;
  padding: 2rem 1.75rem;
  min-width: 0; /* prevent grid item from blowing past its track */
}
.contact-info h3 { color: var(--blue); margin-bottom: 1rem; }
.contact-detail {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-detail .icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
.contact-detail > div { min-width: 0; } /* prevent flex child from expanding past track */
.contact-detail p { margin: 0; color: var(--text-muted); }

.hours-table { border-collapse: collapse; margin-top: .5rem; }
.hours-table td { padding: .4rem .75rem .4rem 0; font-size: 1rem; color: var(--text-muted); white-space: nowrap; }
.hours-table td:first-child { font-weight: 600; color: var(--text); }
.contact-detail--hours .icon { margin-top: .85rem; }
.hours-note {
  margin-top: .75rem;
  font-size: 1rem;
  color: var(--orange-dark);
  background: #fff8f2;
  border-left: 3px solid var(--orange);
  padding: .5rem .75rem;
  border-radius: 0 4px 4px 0;
}

.map-facade {
  background: #e8edf5;
  border-radius: 8px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-facade-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.map-facade-pin { width: 36px; height: 36px; }
.map-facade-addr { font-size: 1rem; color: var(--text-muted); margin: 0; }
.map-facade-btn { font-size: 1rem; padding: .5rem 1.25rem; }
.map-facade-link { font-size: 1rem; color: var(--blue); }

/* ─── Contact Form Dialog (JotForm lightbox) ─────────────────────────────── */
.jf-dialog {
  border: none;
  border-radius: 12px;
  padding: 0;
  width: min(720px, 95vw);
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.jf-dialog::backdrop { background: rgba(0,0,0,.55); }
.jf-dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blue);
  color: #fff;
  padding: .85rem 1.25rem;
  font-weight: 600;
  font-size: 1rem;
}
.jf-dialog-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  border-radius: 4px;
  opacity: .8;
  transition: opacity .15s;
}
.jf-dialog-close:hover { opacity: 1; }
.jf-dialog-body { overflow-y: auto; }

/* ─── Footer ────────────────────────────────────────────────────────────── */

/* Alt giving list */

/* Planned giving */

/* Tax info / transparency */
.transparency-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.transparency-box h3 { color: var(--blue); margin-bottom: 1rem; }
.doc-links { display: flex; flex-wrap: wrap; gap: .75rem; }
.doc-link {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem .85rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  transition: background .2s;
}
.doc-link::before {
  content: '';
  display: inline-block;
  width: 20px; height: 20px;
  background: url('/assets/images/tax-returns-icon.svg') center/contain no-repeat;
  flex-shrink: 0;
}
.doc-link:hover { background: var(--blue-light); text-decoration: none; }

/* ─── Volunteer Requirements ────────────────────────────────────────────── */
.req-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }

/* ─── Privacy page ──────────────────────────────────────────────────────── */
.policy-content { max-width: 760px; margin: 0 auto; }
.policy-content h2 { color: var(--blue); margin: 2rem 0 .75rem; font-size: 1.25rem; }
.policy-content ul { list-style: disc; padding-left: 1.5rem; color: var(--text-muted); }
.policy-content ul li { margin-bottom: .4rem; }
.policy-content p { color: var(--text-muted); }

/* ─── 404 ───────────────────────────────────────────────────────────────── */
.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}
.not-found h1 { font-size: 6rem; color: var(--blue); opacity: .3; line-height: 1; }
.not-found h2 { margin-bottom: 1rem; }
.not-found p  { color: var(--text-muted); margin-bottom: 2rem; }

/* ─── Section header accent underline ───────────────────────────────────── */
.section-header.accent h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin: .75rem auto 0;
  border-radius: 2px;
}

/* ─── Focus visible (accessibility) ────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  /* Hero collapses to single column on tablets */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger  { display: flex; }

  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .card-grid-4 { grid-template-columns: 1fr; }
}

/* ─── Reduced motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE CLONE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Top utility bar ───────────────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════════════
   NAVIGATION — consolidated (top bar + main nav + dropdowns)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Top utility bar ──────────────────────────────────────────── */
.top-bar {
  background: #4660a9;
  padding: 0;
  height: 50px;
}
.top-bar-inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
}
.top-bar-socials {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.top-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity .15s;
  color: #fff;
}
.top-social:hover { opacity: .75; text-decoration: none; }
.top-social svg { width: 15px; height: 15px; }

.top-nav {
  display: flex;
  gap: 0;
  list-style: none;
  position: relative;
}
.top-nav a {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  font-weight: 500;
  padding: .65rem 1rem;
  text-decoration: none;
  display: block;
  letter-spacing: .03em;
}
.top-nav a:hover { color: var(--orange); text-decoration: none; }

.top-nav-has-dropdown { position: relative; }
.top-nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #344d8f;
  border-radius: 0 0 6px 6px;
  min-width: 180px;
  padding: .4rem 0;
  z-index: 2000;
  list-style: none;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.top-nav-has-dropdown:hover .top-nav-dropdown { display: block; }
.top-nav-dropdown a {
  display: block;
  padding: .45rem 1rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  white-space: nowrap;
}
.top-nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ── Main sticky nav ──────────────────────────────────────────── */
.main-nav {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  overflow: visible;
}
.main-nav-inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
  position: relative;
  z-index: 100;
}
.main-nav-logo { display: flex; align-items: center; flex-shrink: 0; align-self: flex-start; margin-top: 8px; }
.main-nav-logo img {
  height: 160px;
  width: auto;
  position: relative;
  z-index: 101;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.18));
  transition: height 0.4s ease;
}
.main-nav--shrunk .main-nav-logo img {
  height: 110px;
}
.main-nav--shrunk .main-nav-logo {
  align-self: center;
  margin-top: 0;
}
.main-nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: stretch;
  margin-left: auto;
}
.main-nav-links a {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  padding: .5rem 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color .15s;
}
.main-nav-links a:hover { color: #4660a9; text-decoration: none; }
.main-nav-links > li > a.nav-active {
  color: var(--orange);
  position: relative;
}
.main-nav-links > li > a.nav-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue);
  opacity: 1; /* override opacity:.5 from .has-dropdown > a::after chevron rule */
}

.main-nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  padding-left: 1.2rem;
}

/* Donate button */
.main-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background .15s;
}
.main-donate-btn:hover { background: #c0641a; text-decoration: none; }
.main-donate-btn img { height: 20px; width: auto; filter: brightness(0) invert(1); vertical-align: middle; margin: 0 1px; }

/* Mobile-only donate li — hidden on desktop, visible in slide-out menu */
.mobile-donate-item { display: none; }
.mobile-util-group  { display: none; }

/* CSS dropdown menus */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e0e4ef;
  border-radius: 8px;
  min-width: 220px;
  padding: .5rem 0;
  padding-top: 6px;
  margin-top: 0;
  z-index: 2000;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.nav-dropdown li a {
  display: block;
  padding: .6rem 1.25rem;
  color: #333;
  font-size: .95rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-dropdown li a:hover { background: #f4f6fb; color: #4660a9; text-decoration: none; }
.has-dropdown:hover .nav-dropdown { display: block; }
.has-dropdown.dropdown-open .nav-dropdown { display: block; }
.has-dropdown > a::after { content: ' ▾'; font-size: .7em; opacity: .5; }
/* transparent bridge keeps li:hover alive as mouse moves down */
.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 6px;
  background: transparent;
  z-index: 1999;
}

/* Hamburger */
.main-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -6px;
}
.main-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all .3s;
}
.main-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.main-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.main-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav (legacy) */
.main-mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 1rem 2rem 1.5rem;
  z-index: 999;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.main-mobile-nav.open { display: flex; }
.main-mobile-nav a {
  color: #333;
  font-weight: 600;
  font-size: .95rem;
  padding: .85rem 0;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
}
.main-mobile-nav a:last-child { border-bottom: none; }
.main-mobile-nav .main-donate-btn { margin-top: .75rem; text-align: center; justify-content: center; }

/* ─── Homepage Hero ─────────────────────────────────────────────────────── */
.hp-hero {
  height: 869px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.42) 0, rgba(30,30,30,0) 100%),
    url('/assets/images/Home-Hero-BG-Image.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 5%;
  position: relative;
}
.hp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.hp-hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}
.hp-hero-content { max-width: 1100px; }
.hp-hero h1 {
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  max-width: 820px;
}
.hp-hero p {
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 2.5rem;
}
.hp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 50px;
  padding: .6rem .6rem .6rem 2rem;
  text-decoration: none;
  transition: background .2s;
}
.hp-hero-btn::after {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.hp-hero-btn:hover { background: #c5680f; text-decoration: none; color: #fff; }

/* ─── CTA Section 1 (Adopt Dog / Adopt Cat / Foster) ────────────────────── */
/* ── Row 1: Adopt Dog / Adopt Cat / Foster ─────────────────────── */
.hp-cta-1 {
  background: url('/assets/images/Curved-dashed-bg-line.png') 50% 35% / contain no-repeat;
  padding: 7.25rem 2rem 5.7rem;
  position: relative;
  overflow: visible;
}
.hp-cta-title {
  text-align: center;
  color: #1a1a1a;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 3.5rem;
  letter-spacing: -.01em;
}
.hp-cta-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* minmax(0) lets tracks shrink below content width */
  gap: 2.5rem;
  max-width: min(1240px, 90vw); /* 90vw keeps symmetric buffer from viewport edges */
  margin: 0 auto;
}

/* ── Row 2: Volunteer / Donate — second dotted line + dog/cat bg ── */
.hp-cta-2 {
  background: url('/assets/images/Two-Column-Row-BG.png') right top / contain no-repeat;
  padding: 0 2rem 11.875rem;
  position: relative;
  overflow: visible;
}
/* Dog + cat looking up — bottom-left, slides -30px under the paw-wave-divider
   so the blue wave hides the hard bottom edge of the image */
.hp-cta-2::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px; left: 0;
  width: 500px;
  height: 375px;
  background: url('/assets/images/Dog-and-Cat-watching-sky-together.webp') center 100% / cover no-repeat;
  pointer-events: none;
}
/* Right-center paw — to the right of the donate circle (matches live site row::before) */
.hp-cta-2::after {
  content: '';
  position: absolute;
  top: 50px;
  right: calc(50% - 560px); /* 50% - (half grid 450px + 110px overhang) */
  width: 120px;
  height: 120px;
  background: url('/assets/images/Right-center-Hand.svg') 0% 0% / contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
.hp-cta-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hp-cta-item { text-align: center; }
.hp-cta-item h3 {
  color: #4660a9;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.hp-cta-item p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.hp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #e07919;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  letter-spacing: .03em;
  transition: gap .2s;
}
.hp-cta-link:hover { text-decoration: underline; gap: .75rem; }
.hp-cta-link span { font-size: 1.1em; }

.hp-sponsors {
  background: #4660a9;
  padding: 3.5rem 2rem;
}
.hp-sponsors-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hp-sponsor-tier {
  margin-bottom: 2.5rem;
  text-align: center;
}
.hp-sponsor-tier:last-child { margin-bottom: 0; }
.hp-tier-label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.25rem;
}
.hp-sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.hp-sponsor-logos img {
  max-height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
  transition: opacity .15s;
}
.hp-sponsor-logos img:hover { opacity: 1; }

/* ─── Concert / Thank-you section ──────────────────────────────────────── */
.hp-concert {
  padding: 5rem 2rem;
  background: var(--bg);
}
.hp-concert-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hp-concert-eyebrow {
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.hp-concert h2 {
  color: var(--blue);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  margin-bottom: 1.25rem;
}
.hp-concert p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.hp-concert p:last-child { margin-bottom: 0; }

/* ─── Homepage responsive ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main-nav-links > li > a.nav-active::after { display: none; }
  .main-nav-links { display: none; }
  .main-nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
    padding: .5rem 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav-links.mobile-open > li { width: 100%; }
  .main-nav-links.mobile-open > li > a { padding: .85rem 2rem; display: block; }
  .main-nav-links.mobile-open .nav-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 .25rem;
    min-width: 0;
  }
  .main-nav-links.mobile-open .nav-dropdown li a { padding: .5rem 3rem; }
  /* Mobile dropdown arrow — right-aligned, full opacity, flips when open */
  .main-nav-links.mobile-open .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav-links.mobile-open .has-dropdown > a::after {
    content: '▾';
    font-size: 1em;
    opacity: 1;
    margin-left: auto;
    padding-left: 1rem;
    transition: transform .2s;
  }
  .main-nav-links.mobile-open .has-dropdown.dropdown-open > a::after {
    content: '▴';
  }
  .main-hamburger { display: flex; }
  .top-bar { display: none; }
  /* Hide nav-bar donate button; it moves into the slide-out menu instead */
  .main-nav-right .main-donate-btn { display: none; }
  /* Show donate li at bottom of slide-out menu */
  .main-nav-links.mobile-open .mobile-util-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid #eee;
    padding: 0.4rem 0;
    list-style: none;
  }
  .main-nav-links.mobile-open .mobile-util-group a {
    display: block;
    padding: 0.5rem 2rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: color .15s;
  }
  .main-nav-links.mobile-open .mobile-util-group a:hover { color: var(--blue); }
  .main-nav-links.mobile-open .mobile-donate-item {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem 0.5rem;
    border-top: 1px solid #eee;
    border-bottom: none;
    list-style: none;
  }
  .main-nav-links.mobile-open .mobile-donate-item .main-donate-btn {
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    padding: .7rem 2rem;
    width: 100%;
    justify-content: center;
    color: #fff; /* .main-nav-links a {color:#333} has higher specificity — override here */
  }
  /* Fix #2: min-height lets hero expand if content is tall — no more CTA cut-off */
  .hp-hero { min-height: 560px; height: auto; padding: 4rem 1.5rem; }
  /* Tablet: stack to 2-col then 1-col */
  .hp-cta-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-cta-grid-3 .hp-cta-item:nth-child(3) { grid-column: 1 / -1; }
  .hp-cta-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hp-cta-2::before { display: none; }
  .hp-cta-2::after { display: none; }
}
@media (max-width: 600px) {
  /* Single column on small phones */
  .hp-cta-grid-3 { grid-template-columns: 1fr; }
  .hp-cta-grid-3 .hp-cta-item:nth-child(3) { grid-column: auto; }
  .hp-cta-grid-2 { grid-template-columns: 1fr; }
  .hp-cta-img { width: 240px; height: 240px; }
}
@media (max-width: 480px) {
  .main-nav-inner { height: 72px; }
  .main-nav-logo img { height: 56px; }
  .main-mobile-nav { top: 72px; }
  .hp-hero-btn { font-size: .9rem; padding: .5rem .5rem .5rem 1.25rem; letter-spacing: .04em; }
  .hp-hero-btn::after { width: 36px; height: 36px; font-size: 1.2rem; }

}

/* ── CTA circle fixes: larger + clickable + hover ──────────────── */
.hp-cta-img {
  width: clamp(300px, 7.5vw + 274px, 380px);
  height: clamp(300px, 7.5vw + 274px, 380px);
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  transition: transform .25s, box-shadow .25s;
}
.hp-cta-circle-link {
  display: block;
  position: relative;
  width: clamp(300px, 7.5vw + 274px, 380px);
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  text-decoration: none;
  cursor: pointer;
}
.hp-cta-circle-link .hp-cta-img {
  width: 100%;
  height: 100%;
  margin: 0;
  transition: transform .35s ease, filter .35s ease;
}
.hp-cta-circle-hover {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(70, 96, 169, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .06em;
  opacity: 0;
  transition: opacity .25s ease;
}
.hp-cta-circle-link:hover .hp-cta-img { transform: scale(1.06); filter: brightness(.85); }
.hp-cta-circle-link:hover .hp-cta-circle-hover { opacity: 1; }
.hp-cta-circle-link:focus-visible { outline: 3px solid #e07919; outline-offset: 4px; }

/* ── CTA section: paw decoration ──────────────────────────────── */
.hp-cta-1::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 48px;
  width: 210px;
  height: 195px;
  background: url('/assets/images/Top-left-Hand.svg') center / contain no-repeat;
  pointer-events: none;
  opacity: .9;
  z-index: 0;
}
.hp-cta-1 > * { position: relative; z-index: 1; }

.hp-concert-sponsors {
  background: var(--bg);
  padding: 5rem 2rem;
}
.hp-concert-sponsors-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Lifted exactly from live site CSS */
.ssb-intro { text-align: center; margin-bottom: 56px; }
.ssb-intro-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #e07919; margin-bottom: 10px; }
.ssb-intro-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(26px, 4vw, 38px); font-weight: 700; color: #2c3338; line-height: 1.2; margin-bottom: 14px; }
.ssb-intro-title span { color: #4660a9; }
.ssb-intro-rule { width: 60px; height: 3px; background: linear-gradient(90deg, #4660a9, #e07919); border-radius: 2px; margin: 0 auto; }
.ssb-intro-body { font-size: 16px; color: #4a5568; line-height: 1.75; max-width: 680px; margin: 20px auto 0; }
.ssb-intro-body p { margin: 0 0 12px; }
.ssb-intro-body p:last-child { margin-bottom: 0; }
.ssb-intro-cta { margin-top: 24px; font-size: 15px; color: #e07919; line-height: 1.7; }
.ssb-intro-cta a { color: #4660a9; text-decoration: none; font-weight: 500; }
.ssb-intro-cta a:hover { text-decoration: underline; }

.ssb-tier { margin-bottom: 52px; }
.ssb-tier-header { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.ssb-tier-header-line { flex: 1; height: 1px; }
.ssb-tier-badge { display: inline-flex; align-items: center; gap: 9px; padding: 11px 30px 11px 24px; border-radius: 50px; font-weight: 700; font-size: 13.5px; letter-spacing: 2.5px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.ssb-tier-badge svg { width: 18px; height: 18px; flex-shrink: 0; }

.ssb-tier--presenting .ssb-tier-header-line { background: linear-gradient(90deg, transparent, #4660a9 80%); }
.ssb-tier--presenting .ssb-tier-header-line:last-child { background: linear-gradient(90deg, #4660a9 20%, transparent); }
.ssb-tier--presenting .ssb-tier-badge { background: linear-gradient(135deg, #4660a9 0%, #2d3e7e 100%); color: #fff; box-shadow: rgba(70,96,169,.38) 0 4px 18px; }

.ssb-tier--gold .ssb-tier-header-line { background: linear-gradient(90deg, transparent, #c9a227 80%); }
.ssb-tier--gold .ssb-tier-header-line:last-child { background: linear-gradient(90deg, #c9a227 20%, transparent); }
.ssb-tier--gold .ssb-tier-badge { background: linear-gradient(135deg, #d4a825 0%, #9a7415 100%); color: #fff; box-shadow: rgba(201,162,39,.38) 0 4px 18px; }

.ssb-tier--silver .ssb-tier-header-line { background: linear-gradient(90deg, transparent, #7b8fa1 80%); }
.ssb-tier--silver .ssb-tier-header-line:last-child { background: linear-gradient(90deg, #7b8fa1 20%, transparent); }
.ssb-tier--silver .ssb-tier-badge { background: linear-gradient(135deg, #8a9bb0 0%, #5d7284 100%); color: #fff; box-shadow: rgba(123,143,161,.38) 0 4px 18px; }

.ssb-tier--bronze .ssb-tier-header-line { background: linear-gradient(90deg, transparent, #a0672d 80%); }
.ssb-tier--bronze .ssb-tier-header-line:last-child { background: linear-gradient(90deg, #a0672d 20%, transparent); }
.ssb-tier--bronze .ssb-tier-badge { background: linear-gradient(135deg, #c4792d 0%, #7a4d1d 100%); color: #fff; box-shadow: rgba(160,103,45,.38) 0 4px 18px; }

.ssb-logo-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }
.ssb-mixed-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 14px; }
.ssb-names-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 12px; }

.ssb-logo-card { background: #fff; border: 1.5px solid #e8ecf4; border-radius: 14px; padding: 22px 32px; display: flex; align-items: center; justify-content: center; min-width: 140px; transition: transform .22s, box-shadow .22s, border-color .22s; }
.ssb-logo-card:hover { transform: translateY(-4px); box-shadow: rgba(0,0,0,.1) 0 10px 28px; border-color: #c8d0e8; }
.ssb-logo-card img { display: block; max-width: 100%; height: auto; object-fit: contain; }
.ssb-logo-card--named { flex-direction: column; gap: 10px; }
.ssb-logo-card-name { font-size: 16px; font-weight: 500; color: #2c3338; text-align: center; line-height: 1.4; }
.ssb-tier--presenting .ssb-logo-card { padding: 28px 52px; border-radius: 16px; border-width: 2px; border-color: rgba(70,96,169,.2); background: #fafbff; }
.ssb-tier--presenting .ssb-logo-card img { max-height: 100px; max-width: 320px; }
.ssb-tier--presenting .ssb-logo-card:hover { border-color: #4660a9; box-shadow: rgba(70,96,169,.15) 0 12px 32px; }
.ssb-tier--gold .ssb-logo-card img { max-height: 70px; max-width: 220px; }
.ssb-tier--silver .ssb-logo-card img { max-height: 60px; max-width: 200px; }
.ssb-tier--silver .ssb-mixed-grid .ssb-logo-card:hover { border-color: #8a9bb0; }
.ssb-tier--bronze .ssb-logo-card img { max-height: 50px; max-width: 160px; }

.ssb-name-card { background: #f8f9fc; border: 1.5px solid #e8ecf4; border-radius: 10px; padding: 13px 22px; text-align: center; transition: transform .2s, box-shadow .2s; }
.ssb-name-card:hover { transform: translateY(-2px); box-shadow: rgba(0,0,0,.08) 0 6px 18px; }
.ssb-name-card-name { font-size: 16px; font-weight: 500; color: #2c3338; line-height: 1.4; }
.ssb-name-card-memorial { font-size: 14.5px; font-style: italic; color: #2c3338; font-weight: 500; }
.ssb-mixed-grid .ssb-name-card { min-height: 74px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px 24px; }

.ssb-sep { border: none; height: 1px; background: linear-gradient(90deg, transparent, #e0e4ef 30%, #e0e4ef 70%, transparent); margin: 0 0 52px; }
.ssb-key { display: flex; justify-content: center; gap: 28px; padding: 18px 0 4px; font-size: 13px; color: #6b7a8d; font-style: italic; }

/* ── CTA row 2: decorative images ────────────────────────────────── */

/* ── Wavy paw divider ────────────────────────────────────────────── */
.paw-wave-divider {
  position: relative;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
}
.pwav-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pwav-paw {
  position: absolute;
  width: 26px;
  height: 26px;
}

/* ── CTA: tablet sizing (circles use clamp() — no stepped overrides needed) ── */
@media (max-width: 900px) {
  .hp-cta-1::before { display: none; }
  .hp-cta-2::before { display: none; }
}
@media (max-width: 768px) {
  .top-bar-socials { display: none; }
  .has-dropdown:not(.dropdown-open) > .nav-dropdown { display: none !important; /* overrides desktop display:block when submenu not toggled open */ }
  .paw-wave-divider { height: 30px; }
  .pwav-paw { display: none; }
}

/* ── Scroll-to-top button ───────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s;
  color: #4660a9;
  font-size: 1.2rem;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { background: #f0f0f0; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════
   VOLUNTEER PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* Hero */
.page-hero--vol {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%),
    url('/cdn-cgi/image/width=1440,quality=65,format=auto/assets/images/SAVE-pack-walk-volunteer-page-banner-img.webp');
  background-size: cover;
  background-position: center;
  min-height: 530px;
  padding-top: 180px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.page-hero--vol .container { width: 100%; padding-bottom: 3rem; }
.page-hero--vol h1 {
  text-align: left;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 640px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

/* Wave at bottom of hero — absolutely pinned so it always spans full width */
.vol-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.vol-hero-wave svg {
  display: block;
  width: 100%;
  height: 70px;
}

/* Subtitle row */
.vol-subtitle-row {
  background: #eef1f8;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.vol-subtitle-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 3rem;
  box-shadow: 0 6px 32px rgba(70,96,169,0.12);
  border: 1px solid rgba(70,96,169,0.08);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vol-subtitle-text {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  color: var(--orange);
  text-align: center;
  line-height: 1.75;
  font-weight: 600;
  margin: 0;
}

/* Decorative green paw (shared — now <img> using Top-left-Hand-green.svg) */
.vol-deco-paw {
  position: absolute;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.vol-deco-paw--left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 150px;
  height: 150px;
}
.vol-deco-paw--right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(20deg) scaleX(-1);
  width: 130px;
  height: 130px;
}

/* Requirements section */
.vol-reqs-section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.vol-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.vol-intro-img img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.vol-req-lead { margin-bottom: .75rem; }
.vol-req-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.75rem;
}
.vol-req-list li {
  padding: .65rem 0 .65rem 2.6rem;
  position: relative;
  color: var(--text-muted);
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  border-bottom: 1px solid var(--border);
}
.vol-req-list li:last-child { border-bottom: none; }
.vol-req-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='27' cy='37' rx='8' ry='11' transform='rotate(-12 27 37)' fill='%23e07919'/%3E%3Cellipse cx='45' cy='27' rx='8' ry='11' fill='%23e07919'/%3E%3Cellipse cx='64' cy='27' rx='8' ry='11' fill='%23e07919'/%3E%3Cellipse cx='82' cy='37' rx='8' ry='11' transform='rotate(12 82 37)' fill='%23e07919'/%3E%3Cpath d='M55 90c-18 0-32-12-32-27 0-9 7-16 16-16h32c9 0 16 7 16 16 0 15-14 27-32 27z' fill='%23e07919'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
.vol-req-list strong { color: var(--text); }

/* Volunteer Application button — blue pill; !important overrides .btn base class styles */
.vol-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 1.5rem auto 0;
  background: var(--blue) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 40px !important;
  padding: .75rem 2rem !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
.vol-app-btn-icon {
  width: 1.9em;
  height: 1.9em;
  flex-shrink: 0;
}
.vol-app-btn:hover {
  background: var(--blue-dark) !important; /* overrides .btn:hover */
  text-decoration: none;
}

/* Email + dress-code row */
.vol-notes-row {
  background: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.vol-notes-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.vol-notes-text {
  flex: 1;
  text-align: center;
}
.vol-email-note {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  color: var(--orange);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.vol-email-note a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.vol-email-note a:hover { text-decoration: underline; }
.vol-dress-note {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  max-width: 820px;
  margin-inline: auto;
}

/* Paws for Reading — BLUE bg, wave top, paw decorations */
.vol-paws-section {
  background: var(--blue) !important; /* overrides any inherited bg from section reset */
  position: relative;
  overflow: hidden;
}
.vol-paws-wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.vol-paws-wave-top svg {
  display: block;
  width: 100%;
  height: 70px;
}
.vol-paws-bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
/* Convert the olive-filled SVG to a solid light-blue watermark:
   brightness(0) → all pixels black → invert(1) → all white,
   then sepia+hue-rotate tints it light blue to match the section */
.vol-paws-bg-paw {
  position: absolute;
  filter: brightness(0) invert(1) opacity(0.18);
}
.vol-paws-bg-paw--lg {
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -80px;
  transform: rotate(10deg);
}
.vol-paws-bg-paw--md {
  width: 260px;
  height: 260px;
  right: 28%;
  top: -40px;
  transform: rotate(-5deg);
}
.vol-paws-bg-paw--sm {
  width: 200px;
  height: 200px;
  left: -20px;
  top: 30%;
  transform: rotate(-15deg);
}
.vol-paws-content {
  position: relative;
  z-index: 2;
  padding-top: 3.5rem;
  padding-bottom: 3rem;
}
/* Full-width section title above the grid */
.vol-paws-title-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.vol-paws-title {
  display: inline-block;
  color: #fff;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--orange);
}
.vol-program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center; /* vertically center image vs text */
}
.vol-program-img {
  display: flex;
  justify-content: center;
}
.vol-program-img-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.vol-program-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Full-width footer paragraph below the two-column grid */
.vol-paws-footer-text {
  color: rgba(255,255,255,0.92);
  text-align: center;
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  line-height: 1.8;
  max-width: 960px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.vol-paws-footer-text strong { color: #fff; font-weight: 700; }
.vol-paws-footer-text a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.vol-paws-footer-text a:hover { text-decoration: underline; }

/* "Tyson Loves..." heading in the right text column */
.vol-tyson-heading {
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.vol-program-text p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  line-height: 1.75;
}
.vol-program-text a { color: rgba(255,255,255,.9); text-decoration: underline; }

/* Full-bleed L'Oréal background-image section — height scales with viewport */
.vol-fullbleed-bg {
  width: 100%;
  height: clamp(420px, 48vw, 960px);
  background:
    linear-gradient(rgba(70,96,169,0.2), rgba(70,96,169,0.2)),
    url('/assets/images/loreal-scaled.webp') center 20%/cover no-repeat;
}

/* Corporate intro — BLUE background */
.vol-corp-intro-section { background: var(--blue) !important; /* overrides any inherited bg from section reset */ scroll-margin-top: 120px; }
.vol-corp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: center;
}
.vol-corp-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.vol-corp-intro-p {
  color: rgba(255,255,255,.88);
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  line-height: 1.75;
}
.vol-corp-link { color: #fff; text-decoration: underline; }
.vol-corp-intro-img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

/* About the Experience — white background */
.vol-corp-detail-section {
  background: var(--bg);
  padding-top: 0;
}
/* Section heading — white area, centered with orange accent underline */
.vol-exp-header-bar {
  background: var(--bg);
  padding: 3rem 2rem 0;
  text-align: center;
}
.vol-exp-heading {
  display: inline-block;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--orange);
}
.vol-corp-detail-content {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}
.vol-corp-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.vol-corp-detail-left,
.vol-corp-detail-right { display: flex; flex-direction: column; }
/* Body paragraphs — dark text to match live site */
.vol-corp-body {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1.25rem;
}
/* Activity section labels */
.vol-act-label {
  font-size: clamp(1rem, 0.6rem + 0.8vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  color: var(--blue);
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.vol-act-label span { font-weight: 400; text-transform: none; color: var(--text-muted); letter-spacing: 0; }
/* Sub-line: "(Max 4–6 People)" on its own line */
.vol-act-sublabel {
  font-size: clamp(1rem, 0.6rem + 0.8vw, 1.15rem);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 700;
  color: var(--blue);
  margin-top: 0;
  margin-bottom: .75rem;
}
.vol-act-list {
  list-style: disc;
  padding-left: 1.4rem;
  color: var(--text);
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.3rem);
  margin-bottom: 1rem;
}
.vol-act-list li { margin-bottom: .35rem; }
/* "Volunteers Make Tails Wag" pill — full width inside right column */
.vol-tails-wag {
  display: block;
  background: var(--blue);
  color: #fff;
  border-radius: 40px;
  padding: .75rem 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1rem, 0.5rem + 0.8vw, 1.05rem);
  margin-top: 1.25rem;
  line-height: 1.4;
  text-align: center;
}
.vol-corp-detail-img {
  margin-top: 1.25rem;
}
.vol-corp-detail-img img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
/* Contact row below the grid */
.vol-corp-contact {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  color: var(--text);
  line-height: 1.75;
}
.vol-corp-contact a {
  color: var(--blue);
  text-decoration: underline;
}

/* Volunteer Handbook — BLUE background; !important overrides any inherited section bg/padding */
.vol-handbook-section {
  background: var(--blue) !important;
  position: relative;
  overflow: hidden;
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}
.vol-handbook-wave-top {
  position: absolute;
  top: 0; left: 0; width: 100%; line-height: 0; z-index: 1;
}
.vol-handbook-wave-top svg {
  display: block; width: 100%; height: 70px;
}
.vol-handbook-wave-bottom {
  position: absolute;
  bottom: 0; left: 0; width: 100%; line-height: 0; z-index: 1;
}
.vol-handbook-wave-bottom svg {
  display: block; width: 100%; height: 70px;
}
.vol-handbook-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.vol-handbook-heading {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
.vol-handbook-section p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  line-height: 1.75;
}
.vol-handbook-section em { color: rgba(255,255,255,.88); }
/* !important overrides .btn base class styles for this orange pill variant */
.vol-handbook-btn {
  background: var(--orange) !important;
  color: #fff !important;
  border: none !important;
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 40px !important;
  padding: .8rem 2.25rem !important;
}
.vol-handbook-btn:hover { background: var(--orange-dark) !important; /* overrides .btn:hover */ }

/* Closing CTA */
.vol-closing-section { background: var(--bg); }
.vol-closing-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 3rem 3.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.07);
}
.vol-closing-lead {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 1rem;
}
.vol-closing-email {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.vol-closing-email a {
  color: var(--blue);
  text-decoration: underline;
}

/* ── Donate Page ─────────────────────────────────────────────────── */

/* Hero */
.donate-hero {
  background: linear-gradient(rgba(30,30,30,.15), rgba(30,30,30,.15)), url('/assets/images/cat-dog-donate-web.jpg');
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  padding: 224px 0;
  text-align: center;
}
.donate-hero h1 {
  color: #fff;
  font-size: 100px;
  font-weight: 800;
  line-height: 130px;
  margin: 0;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
}

/* Donation Type Cards */
.donate-cards-section {
  padding: 51px 0;
}
.donate-cards-container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem;
}
.donate-cards-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 40px;
}
.donate-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  background: var(--blue);
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(0,0,0,.1);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.donate-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  text-decoration: none;
}
.donate-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  flex-shrink: 0;
}
.donate-card h4 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 30px 12px;
  line-height: 1.3;
}

/* Additional Ways Section — 2-col layout */
.donate-ways-section {
  padding: 51px 0;
}
.donate-ways-row {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.donate-ways-left {
  flex: 1;
  min-width: 0;
}
.donate-ways-right {
  flex: 1;
  min-width: 0;
}
.donate-ways-heading {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  text-align: left;
}

/* Donate-specific accordion — orange toggles */
.donate-accordion {
  border: none;
  border-radius: 0;
  overflow: visible;
}
.donate-accordion .accordion-item {
  border: none;
  margin-bottom: 8px;
  border-radius: 6px;
  overflow: hidden;
}
.donate-accordion .accordion-trigger {
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 20px;
  border: 1px solid rgba(224,121,25,.4);
  border-radius: 6px;
  width: 100%;
  justify-content: space-between;
}
.donate-accordion .accordion-trigger[aria-expanded="true"] {
  border-radius: 6px 6px 0 0;
}
.donate-accordion .accordion-trigger:hover {
  background: #c5680f;
}
.donate-accordion .accordion-trigger .icon {
  font-weight: 300;
  font-size: 28px;
}
.donate-accordion .accordion-trigger[aria-expanded="true"] .icon {
  transform: none;
}
.donate-accordion .accordion-body {
  background: #fff;
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.donate-accordion .accordion-body.open { max-height: 4000px; }
.donate-accordion .accordion-body-inner {
  padding: 20px 0 0;
  color: var(--text);
  overflow: visible;
}

/* Salt image + tax text in right column */
.donate-salt-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 12px;
}
.donate-tax-text {
  color: var(--text);
  line-height: 1.7;
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
}

/* Donate Stock button */
.donate-stock-btn {
  display: inline-block;
  margin-top: .5rem;
}
.donate-stock-btn img { display: block; max-width: 182px; height: auto; }

/* Amazon Wishlist inline image */
.amazon-wishlist-link img {
  display: block;
  max-width: 297px;
  height: auto;
  border-radius: 8px;
  transition: transform .2s;
}
.amazon-wishlist-link:hover img { transform: scale(1.02); }

/* Vehicles for Charity logo */
.vehicle-donate-img {
  display: block;
  margin: .75rem auto 0;
  max-width: 228px; height: auto;
}

/* Financial section */
.donate-financial-section {
  background: rgba(168,174,113,.5);
  padding: 80px 0;
}
.donate-financial-row {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 40px;
}
.donate-financial-left { flex: 1; }
.donate-financial-right { flex: 1; }
.donate-financial-left h2 {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 .5rem;
}
.donate-financial-left a {
  color: var(--blue);
  text-decoration: underline;
}
.donate-financial-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.donate-financial-right li {
  margin-bottom: .5rem;
}
.donate-financial-right a {
  color: var(--blue);
  text-decoration: underline;
}

/* Responsive — Donate Page */
@media (max-width: 980px) {
  .donate-cards-row { flex-wrap: wrap; gap: 10px; }
  .donate-card { flex: 0 1 calc(50% - 5px); max-width: none; }
  .donate-hero h1 { font-size: 60px; line-height: 78px; }
  .donate-hero { padding: 80px 0; }
}
@media (max-width: 768px) {
  .donate-ways-row { flex-direction: column; }
  .donate-financial-row { flex-direction: column; }
  .donate-hero h1 { font-size: 48px; line-height: 62px; }
  .donate-hero { padding: 80px 0; }
  .donate-ways-heading { font-size: 36px; }
  .donate-accordion .accordion-trigger { font-size: 18px; padding: 16px; }
  .donate-accordion .accordion-item { margin-bottom: 6px; }
}
@media (max-width: 480px) {
  .accordion-trigger { scroll-margin-top: 90px; }
  .donate-cards-row { gap: 24px; }
  .donate-card { flex: 0 1 100%; max-width: 400px; margin: 0 auto; }
  .donate-card h4 { font-size: 17px; }
  .donate-hero h1 { font-size: 40px; line-height: 52px; }
  .donate-hero { padding: 70px 0; }
  .donate-ways-heading { font-size: 28px; }
  .donate-accordion .accordion-trigger { font-size: 16px; padding: 14px; }
  .donate-accordion .accordion-item { margin-bottom: 4px; }
  .donate-accordion .accordion-trigger .icon { font-size: 22px; }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .vol-intro-grid,
  .vol-program-grid,
  .vol-corp-intro-grid,
  .vol-corp-detail-grid { grid-template-columns: 1fr; gap: 2rem; }

  .vol-intro-img img { aspect-ratio: 4/3; }
  .page-hero--vol {
    padding-top: 120px;
    min-height: 380px;
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%),
      url('/cdn-cgi/image/width=960,quality=65,format=auto/assets/images/SAVE-pack-walk-volunteer-page-banner-img.webp');
  }
  /* clamp() handles this range — no override needed */
  .vol-deco-paw--left { width: 90px; height: 90px; left: 0; }
  .vol-deco-paw--right { width: 80px; height: 80px; right: 0; }
  .vol-program-img-circle { width: 280px; height: 280px; }
}

@media (max-width: 640px) {
  .page-hero--vol h1 { font-size: 1.8rem; }
  .page-hero--vol {
    background-image:
      linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%, transparent 100%),
      url('/cdn-cgi/image/width=640,quality=65,format=auto/assets/images/SAVE-pack-walk-volunteer-page-banner-img.webp');
  }
  .vol-fullbleed-bg { height: clamp(260px, 55vw, 420px); }
  .vol-notes-inner { flex-direction: column; }
  .vol-deco-paw { display: none; }
  .vol-closing-card { padding: 2rem 1.5rem; }
  .vol-subtitle-card { padding: 2.5rem 35px; }
  .vol-program-img-circle { width: 220px; height: 220px; }
}

/* ═════════════════════════════════════════════════════════════════════
   FOOTER — exact live-site clone (overrides all previous footer CSS)
   ════════════════════════════════════════════════════════════════════ */

.hp-footer {
  background: #4660a9;
  padding: 103px 0 16px;
}

/* Top row: 4 columns spanning full viewport width */
.hp-footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding: 0 4rem 38px;
}

/* Equal flex columns */
.hp-footer-col {
  flex: 1;
  min-width: 0;
}

/* Column bottom padding (matches Divi module margin-bottom: 7px) */
.hp-footer-col--brand,
.hp-footer-col--hours,
.hp-footer-col--menu {
  padding-bottom: 7px;
}

/* Logo column */
.hp-footer-col--logo img {
  display: block;
  width: 151px;
  height: auto;
  margin: 0 auto;
}

/* Tagline — h3, 25px bold white */
.hp-footer-col--brand h3 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  line-height: 30px;
  margin: 0 0 20px;
}

/* Body text — brand: fluid 16–18px medium white */
.hp-footer-col--brand p {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  font-weight: 500;
  color: #fff;
  line-height: 25.2px;
  margin: 0;
}

/* Menu text — fluid 16–18px medium white */
.hp-footer-col--menu p {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  font-weight: 500;
  color: #fff;
  line-height: 35.2px;
  margin: 0;
  padding-bottom: 18px;
}
.hp-footer-col--menu p:last-child { padding-bottom: 0; }

/* Lobby hours: centered */
.hp-footer-col--hours {
  text-align: center;
}

/* Menu: right-aligned text, block centered in column */
.hp-footer-col--menu {
  display: grid;
  grid-template-columns: max-content;
  justify-content: center;
  text-align: right;
}
.hp-footer-col--hours p {
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  font-weight: 500;
  color: #fff;
  line-height: 25.2px;
  margin: 0;
  padding-bottom: 18px;
}
.hp-footer-col--hours p:last-child { padding-bottom: 0; }

/* Links in brand/menu columns */
.hp-footer-col--brand a,
.hp-footer-col--menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 0.5vw + 0.85rem, 1.125rem);
  font-weight: 500;
}
.hp-footer-col--brand a:hover,
.hp-footer-col--menu a:hover {
  text-decoration: underline;
  color: #fff;
}

/* Bottom row */
.hp-footer-bottom-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 2rem 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.52);
}

/* Copyright */
.hp-footer-copyright {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,.5);
}
.hp-footer-copyright a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-weight: 300;
}
.hp-footer-copyright a:hover {
  text-decoration: underline;
}

/* Social icons — match Divi social follow */
.hp-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.ftr-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: opacity .15s;
}
.ftr-social:hover { opacity: .85; text-decoration: none; }
.ftr-social svg { width: 18px; height: 18px; }
.ftr-social--fb { background: #3b5998; }
.ftr-social--ig { background: #ea2c59; }
.ftr-social--tw { background: #000; }
.ftr-social--li { background: #007bb6; }

/* Footer responsive */
@media (max-width: 980px) {
  .hp-footer-top-row {
    flex-wrap: wrap;
    gap: 25px;
    padding: 0 3rem 38px;
  }
  .hp-footer-col--logo { flex: 0 0 100%; }
}
@media (max-width: 768px) {
  .hp-footer { padding: 40px 0 12px; }
  .hp-footer-top-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 2rem 38px;
  }
  .hp-footer-col { text-align: center; width: 100%; }
  .hp-footer-col--logo { flex: none; }
  .hp-footer-col--logo img { margin: 0 auto; width: 110px; }
  .hp-footer-col--brand h3 { font-size: 22px; margin-bottom: 10px; }
  .hp-footer-col--menu { display: block; text-align: center; }
  .hp-footer-col--menu p { line-height: 27px; padding-bottom: 14px; }
  .hp-footer-bottom-row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .hp-footer-socials { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════════
   ADOPT PAGE — extracted from live site computed styles
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────── */
.adopt-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(30,30,30,0) 100%),
    url('/assets/images/Adopt-page-Banner-image-updated.jpg') center/cover no-repeat;
  min-height: 450px;
  padding: 203px 0 60px 140px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.adopt-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  height: 100px;
}
.adopt-hero-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}
.adopt-hero h1 {
  color: #fff;
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0;
  font-family: Roboto, Helvetica, Arial, sans-serif;
}

/* ── Cards Section ────────────────────────────────────────────────── */
.adopt-cards-section {
  background:
    url('/assets/images/Curved-dashed-bg-line.png') 50% 35% / contain no-repeat,
    #fff;
  padding: 116px 0 91px;
}
.adopt-cards-inner {
  max-width: 1535px;
  margin: 0 auto;
  padding: 0 3rem;
}
.adopt-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 108px;
}
.adopt-card {
  text-align: center;
  padding: 0;
}
.adopt-card-img-wrap {
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 50px;
  border: 5px solid #e0e0e0;
  transition: border-color .3s ease;
  text-decoration: none;
}
.adopt-card-img-wrap:hover,
.adopt-card-img-wrap:focus-visible {
  border-color: var(--orange);
}
.adopt-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.adopt-card-title {
  display: block;
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  color: #1e1e1e;
  margin: 0 0 29px;
  line-height: 1.2;
  text-decoration: none;
}
.adopt-card-title:hover { color: var(--orange); }
.adopt-card-body {
  font-size: 22px;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 0 29px;
}
.adopt-card-link {
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  line-height: 36px;
}
.adopt-card-link:hover { text-decoration: underline; }

/* ── Adoption Application Section ─────────────────────────────────── */
.adopt-app-section {
  background:
    url('/assets/images/Two-Column-Row-BG.png') 100% 0% / contain no-repeat,
    #fff;
  padding: 0 0 84px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.adopt-app-section::before {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 210px;
  height: 195px;
  background: url('/assets/images/Top-left-Hand-green.svg') no-repeat center/contain;
  pointer-events: none;
  z-index: 0;
}
.adopt-app-inner {
  max-width: 454px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.adopt-app-img-wrap {
  display: block;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 50px;
  border: 5px solid #e0e0e0;
  transition: border-color .3s ease;
  text-decoration: none;
}
.adopt-app-img-wrap:hover,
.adopt-app-img-wrap:focus-visible {
  border-color: var(--orange);
}
.adopt-app-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.adopt-app-title {
  display: block;
  font-size: 27px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.35px;
  color: #1e1e1e;
  margin: 0 0 29px;
  text-decoration: none;
}
.adopt-app-title:hover { color: var(--orange); }
.adopt-app-body {
  font-size: 22px;
  font-weight: 300;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 0 29px;
}
.adopt-app-link {
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  line-height: 36px;
}
.adopt-app-link:hover { text-decoration: underline; }

/* ── 129px Spacer between App and Programs ────────────────────────── */
.adopt-spacer-129 {
  height: 129px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.adopt-spacer-129::before {
  content: '';
  position: absolute;
  top: 53px;
  left: 50%;
  transform: translateX(-50%);
  width: 1640px;
  height: 11px;
  background: var(--blue);
}

/* ── Programs Section (Seniors + Patriots) ────────────────────────── */
.adopt-programs-section {
  background: #fff;
  padding: 20px 0 34px;
}
.adopt-programs-inner {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 2rem; /* prevents cards from hitting viewport edges at 1200–1640px */
}

/* Seniors for Seniors */
.adopt-seniors {
  display: flex;
  gap: 90px;
  align-items: flex-start;
  padding: 19px 0 35px;
  /* card is on the text column only, matching live site */
}
.adopt-seniors-text {
  flex: 1 1 0;
  padding: 24px 25px;
  margin-top: 7px;
  background: #fff;
  border-radius: 26px;
  box-shadow: rgba(0,0,0,0.3) 0px 2px 11px 0px;
}
.adopt-seniors-heading {
  font-size: 52px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0;
  line-height: 1.1;
}
.adopt-seniors-text p {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem); /* ~1rem at 900px, grows to 1.3rem max */
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 22px;
}
.adopt-seniors-text p:last-child { padding-bottom: 0; }
.adopt-seniors-spacer {
  height: 22px;
  padding-bottom: 0 !important; /* overrides .adopt-seniors-text p:last-child rule above */
  min-height: 0;
}
.adopt-seniors-media {
  flex: 1 1 0;
}
.adopt-seniors-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.adopt-testimonial {
  background: rgb(102, 124, 185);
  padding: 40px 30px 36px;
  margin-top: 28px;
  border-radius: 20px;
  position: relative;
  text-align: center;
  box-shadow: rgba(0,0,0,0.3) 0px 2px 11px 0px;
  display: flex;
  align-items: center;
  gap: 30px;
}
/* quote icon circle — centered on top edge, matching live Divi testimonial ::before */
.adopt-testimonial::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 50%;
  margin-left: -22px;
  width: 44px;
  height: 44px;
  background: rgb(245, 245, 245) url('/assets/images/quote-icon.svg') center/26px 26px no-repeat;
  border-radius: 50%;
  display: block;
  z-index: 1;
}
.adopt-testimonial-portrait {
  width: 150px;
  height: 143px;
  background: url('/assets/images/Platinum-Row-Left-Paw-Icon-updated-300x269.png') center/cover no-repeat;
  flex-shrink: 0;
  display: block;
  mix-blend-mode: screen; /* makes dark bg transparent, shows paw as light watermark on blue card */
}
.adopt-testimonial-content {
  flex: 1;
}
.adopt-testimonial-quote {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  margin: 0;
  font-style: normal;
}
.adopt-testimonial-author {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  display: block;
  margin-top: 32px;
}

/* Blue divider rule */
.adopt-divider-row {
  padding: 38px 0 30px;
}
.adopt-divider {
  border: none;
  height: 11px;
  background: var(--blue);
  margin: 0;
}

/* Pets for Patriots */
.adopt-patriots {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.adopt-patriots-logo {
  text-align: center;
  padding: 38px 0 37px;
}
.adopt-patriots-logo img {
  width: 200px;
  height: 189px;
  display: block;
  margin: 0 auto;
}
.adopt-patriots-cols {
  display: flex;
  gap: 90px;
  align-items: flex-start;
  padding: 38px 0 37px;
}
.adopt-patriots-left { flex: 1; padding: 24px 25px; }
.adopt-patriots-heading {
  font-size: 43px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 1.25rem;
  line-height: 1.1;
}
.adopt-patriots-left p {
  font-size: 22px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.adopt-patriots-list {
  font-size: 22px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.8;
  margin: 0 0 0.75rem;
  padding-left: 1.5rem;
}
.adopt-patriots-left a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.adopt-patriots-left a:hover { text-decoration: underline; }
.adopt-patriots-right {
  flex: 1;
  padding: 24px 25px;
}
.adopt-patriots-special-label {
  font-size: 43px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 42px;
  line-height: 1.1;
}
.adopt-patriots-special-subtitle {
  font-size: 22px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0 0 42px;
}
.adopt-patriots-fees-label {
  font-size: 43px;
  font-weight: 700;
  color: #1e1e1e;
  margin: 0 0 42px;
  line-height: 1.1;
}
/* Remove trailing margin on last child in patriots left */
.adopt-patriots-left > *:last-child { margin-bottom: 0; }
.adopt-patriots-right > *:last-child { margin-bottom: 0; }
.adopt-patriots-fees-list {
  font-size: 22px;
  font-weight: 400;
  color: #1e1e1e;
  line-height: 1.6;
  margin: 0;
}

/* ── Adopt Page Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .adopt-cards-inner { padding: 0 4rem; }
  .adopt-cards-row { gap: 2.5rem; }
  .adopt-programs-inner { padding: 0 3rem; }
  .adopt-seniors { gap: 40px; }
  .adopt-patriots-cols { gap: 40px; }
  .adopt-app-section::before { width: 160px; height: 150px; right: -20px; }
}

@media (max-width: 900px) {
  .adopt-hero { min-height: 377px; padding: 110px 2rem 40px; }
  .adopt-hero h1 { font-size: clamp(3rem, 10vw, 100px); }
  .adopt-cards-section { padding: 100px 0 101px; }
  .adopt-app-section { padding: 0 0 62px; }
  .adopt-cards-row { grid-template-columns: 1fr; margin: 0 auto; gap: 3rem; }
  .adopt-card-title { margin-bottom: 1rem; }
  .adopt-card-body { margin-bottom: 1.5rem; }
  .adopt-card-link { line-height: normal; }
  .adopt-app-title { margin-bottom: 1rem; }
  .adopt-app-body { margin-bottom: 1.5rem; }
  .adopt-programs-section { padding: 10px 0 20px; }
  .adopt-seniors { flex-direction: column; gap: 2rem; padding: 30px 0 110px; }
  .adopt-seniors-text { max-width: 100%; flex: none; padding: 1.5rem 1.5rem; }
  .adopt-seniors-text p { font-weight: 400; padding-bottom: 15px; }
  .adopt-seniors-spacer { height: 8px; }
  .adopt-seniors-media { max-width: 100%; flex: none; width: 100%; }
  .adopt-seniors-photo { width: 100%; }
  .adopt-testimonial { margin-top: 20px; }
  .adopt-programs-inner { padding: 0 1rem; }
  .adopt-seniors-heading { font-size: clamp(1.8rem, 5vw, 52px); margin-bottom: 1rem; }
  .adopt-divider-row { padding: 8px 0 8px; }
  .adopt-patriots-logo { padding: 8px 0; }
  .adopt-patriots-cols { flex-direction: column; gap: 2rem; padding: 1.5rem 0; }
  .adopt-patriots-left { padding: 0; }
  .adopt-patriots-right { flex: none; width: 100%; padding: 0; }
  .adopt-patriots-heading,
  .adopt-patriots-special-label { font-size: clamp(1.6rem, 4vw, 43px); }
  .adopt-app-section::before { width: 120px; height: 110px; right: -15px; }
}

@media (max-width: 600px) {
  .adopt-hero { padding: 120px 1.5rem 30px; }
  .adopt-cards-section { padding: 60px 0 50px; }
  .adopt-app-section { padding: 40px 0 60px; }
  .adopt-seniors { padding: 24px 0 13px; }
  .adopt-seniors-text { padding: 1.25rem 1.5rem; } /* restore card padding on mobile */
  .adopt-seniors-text p { padding-bottom: 12px; } /* font-size handled by clamp in base rule */
  .adopt-seniors-spacer { display: none; }
  .adopt-testimonial {
    padding: 24px 24px 28px;
    margin-top: 2.5rem;
    font-size: 20px;
    line-height: 30px;
    flex-direction: column;
  }
  .adopt-testimonial-portrait {
    width: 160px;  /* 20% smaller than desktop 200px */
    height: 152px;
  }
  .adopt-testimonial-author { margin-top: 16px; }
  .adopt-patriots { padding: 20px; }
  .adopt-patriots-cols { padding-bottom: 37px; }
  .adopt-patriots-left p,
  .adopt-patriots-list { font-size: 1rem; }
  .adopt-patriots-fees-label { font-size: clamp(1.4rem, 4vw, 1.8rem); }
  .adopt-patriots-fees-list { font-size: 1rem; }
  .adopt-app-section::before { width: 90px; height: 85px; right: -10px; }
  .adopt-card-img-wrap,
  .adopt-app-img-wrap {
    width: min(100%, 400px);
    height: auto;
    aspect-ratio: 1;
  }
  .adopt-app-img-wrap { max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* ==================================================================
   Adopt-a-Dog Page — page-specific styles
   ================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────── */
.adopt-dog-hero {
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(30,30,30,0) 100%),
              url('/assets/images/Chloe-Cooper-and-Charlie-puppies.webp');
  background-size: cover, cover;
  background-position: center top, center top;
  min-height: 450px;
  padding: 200px 0 0;
  display: flex;
  align-items: flex-start;
}
.adopt-dog-hero h1 {
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ── Be a Friend ──────────────────────────────────────────────────── */
.adopt-dog-friend {
  background: var(--blue);
  padding: 77px 0;
  text-align: center;
}
.adopt-dog-friend h2 {
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
}
.adopt-dog-friend p {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 42px;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Widget / Dog listing embed ───────────────────────────────────── */
.adopt-dog-widget { padding: 77px 0; }

/* ── 3-Step Process + Fees ────────────────────────────────────────── */
.adopt-dog-steps { padding: 77px 0; }
.adopt-dog-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  background: var(--blue);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
}
.adopt-dog-step { text-align: left; }
.adopt-dog-step .adopt-dog-step-num {
  font-size: 60px;
  font-weight: 800;
  color: var(--orange);
  margin: 40px 0;
  line-height: 1;
}
.adopt-dog-step h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0 0 15px;
}
.adopt-dog-step p {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.adopt-dog-step a { color: var(--orange); }
/* Arrow circle on the adoption application button */
.adopt-dog-step .cmn-btn {
  position: relative;
  padding-right: 60px;
}
.adopt-dog-step .cmn-btn::after {
  content: '→';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  font-size: 16px;
}

/* Center-aligned orange pill button (also used on adopt-a-cat) */
a.cmn-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  padding: 12px 50px;
  border-radius: 60px;
  text-decoration: none;
  text-align: center;
  transition: background .2s;
}
a.cmn-btn:hover { background: #c76a15; color: #fff; }

/* ── Adoption Fees ────────────────────────────────────────────────── */
.adopt-dog-fees-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2rem;
}
.adopt-dog-fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.adopt-dog-fees-left h3,
.adopt-dog-fees-right h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 8px;
}
.adopt-dog-fees-left p,
.adopt-dog-fees-right p {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Pets are Family ──────────────────────────────────────────────── */
.adopt-dog-family { padding: 0 0 77px; }
.adopt-dog-paw-divider { display: none; } /* mobile only — shown in @media 980px block */
.adopt-dog-family > .container > h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 2rem;
  text-align: center;
}
.adopt-dog-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.adopt-dog-family-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.adopt-dog-family-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.adopt-dog-family-text p {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ── Myths (blue bg, 2-col accordion) ─────────────────────────────── */
.adopt-dog-myths {
  background: var(--blue);
  padding: 60px 0;
  color: #fff;
}
.adopt-dog-myths h4 {
  font-size: 43px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin: 0 0 12px;
}
.adopt-dog-myths-intro,
.adopt-dog-myths-outro {
  text-align: center;
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  color: #fff;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.6;
}
.adopt-dog-myths-outro { margin: 2rem auto 0; }
.adopt-dog-myths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
/* Myths accordion — white-on-blue override for this section only */
.adopt-dog-myths .accordion-item {
  border: none;
  margin-bottom: 6px;
  border-radius: 4px;
  overflow: hidden;
}
/* Closed trigger — orange bg, white text */
.adopt-dog-myths .accordion-trigger {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
}
.adopt-dog-myths .accordion-trigger:hover {
  background: #c76a15;
}
/* Open trigger — white bg, blue text */
.adopt-dog-myths .accordion-trigger[aria-expanded="true"] {
  background: #fff;
  color: var(--blue);
  border-radius: 4px 4px 0 0;
  border: 1px solid #e0e0e0;
  border-bottom: none;
}
.adopt-dog-myths .accordion-trigger[aria-expanded="true"]:hover {
  background: #f5f5f5;
}
/* Chevron icon — circle style */
.adopt-dog-myths .accordion-trigger .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  font-size: 0;
  flex-shrink: 0;
  transition: none;
}
.adopt-dog-myths .accordion-trigger .icon::before {
  content: '▾';
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.adopt-dog-myths .accordion-trigger[aria-expanded="true"] .icon {
  border: 2px solid var(--blue);
  transform: none; /* suppress global rotate(45deg) */
}
.adopt-dog-myths .accordion-trigger[aria-expanded="true"] .icon::before {
  content: '▴';
  color: var(--blue);
}
/* Use max-height approach (not 0fr grid) because padding on the inner element
   prevents the 0fr track from collapsing to zero — max-height is unaffected by padding */
.adopt-dog-myths .accordion-body {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.adopt-dog-myths .accordion-body.open {
  max-height: 2000px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
}
.adopt-dog-myths .accordion-body-inner {
  background: #fff;
  color: var(--text);
  font-size: .95rem;
  line-height: 1.6;
  padding: 16px;
}

/* ── Adoption Application ─────────────────────────────────────────── */
.adopt-dog-app {
  padding: 77px 0;
  text-align: center;
}
.adopt-dog-app h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}
.adopt-dog-app p {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.colored-txt { color: var(--orange); }
.colored-txt a { color: var(--orange); text-decoration: underline; }

/* ── Responsive: Adopt-a-Dog ──────────────────────────────────────── */
@media (max-width: 980px) {
  .adopt-dog-hero { min-height: 350px; padding: 140px 0 0; }
  .adopt-dog-hero h1 { font-size: 60px; }
  .adopt-dog-friend h2 { font-size: 40px; }
  .adopt-dog-friend p { font-size: 18px; line-height: 30px; }
  .adopt-dog-steps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .adopt-dog-fees-grid { grid-template-columns: 1fr; }
  .adopt-dog-steps { padding-bottom: 0; } /* paw divider handles spacing to next section */
  .adopt-dog-family-grid { grid-template-columns: 1fr; }
  .adopt-dog-family-img { height: 700px; } /* restore natural image height when stacked */
  .adopt-dog-paw-divider { display: flex; justify-content: center; padding: 30px 0 31px; }
  .adopt-dog-paw-divider img { height: clamp(100px, 44px + 15.87vw, 200px); width: auto; }
  .adopt-dog-myths-grid { grid-template-columns: 1fr; gap: 0; }
  .adopt-dog-myths h4 { font-size: 32px; }
}

@media (max-width: 600px) {
  .adopt-dog-hero { min-height: 250px; padding: 100px 0 0; }
  .adopt-dog-hero h1 { font-size: 40px; }
  .adopt-dog-friend { padding: 50px 0; }
  .adopt-dog-friend h2 { font-size: 28px; }
  .adopt-dog-friend p { font-size: 16px; line-height: 26px; }
  .adopt-dog-step .adopt-dog-step-num { font-size: 48px; }
  .adopt-dog-step h3 { font-size: 24px; }
  .adopt-dog-myths h4 { font-size: 26px; }
  .adopt-dog-family-img { height: 500px; } /* smaller than tablet 700px on phone */
  .adopt-dog-steps, .adopt-dog-widget,
  .adopt-dog-family, .adopt-dog-app { padding: 50px 0; }
  .adopt-dog-paw-divider { padding: 0.5rem 0; } /* half padding on mobile */
}

/* ==================================================================
   Adopt-a-Cat Page — page-specific styles
   ================================================================== */

/* ── Hero ─────────────────────────────────────────────────────────── */
.adopt-cat-hero {
  background: linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(30,30,30,0) 100%),
              url('/assets/images/Adopt-a-Cat-banner-image.jpg');
  background-size: cover, cover;
  background-position: center top, center top;
  min-height: 450px;
  padding: 200px 0 0;
  display: flex;
  align-items: flex-start;
}
.adopt-cat-hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

/* ── Be a Friend ──────────────────────────────────────────────────── */
.adopt-cat-friend {
  background: var(--blue);
  padding: 77px 0;
  text-align: center;
}
.adopt-cat-friend h2 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1em;
  margin: 0 0 16px;
}
.adopt-cat-friend p {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 30.4px;
  max-width: 860px;
  margin: 0 auto;
}

/* ── Widget / Cat listing embed ───────────────────────────────────── */
.adopt-cat-widget { padding: 77px 0; }

/* ── 3-Step Process + Fees ────────────────────────────────────────── */
.adopt-cat-steps { padding: 77px 0; }
/* reuses .adopt-dog-steps-grid, .adopt-dog-step, .adopt-dog-step-num, .cmn-btn */

.adopt-cat-fees-heading {
  text-align: center;
  font-size: 45px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin: 3rem 0 2rem;
}
.adopt-cat-fees-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.adopt-cat-fees-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.adopt-cat-fees-info h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1em;
  margin: 0 0 4px;
}
.adopt-cat-fees-info p {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 42px;
  margin-bottom: 1rem;
}

/* ── Pets are Family ──────────────────────────────────────────────── */
.adopt-cat-family { padding: 0 0 77px; }
.adopt-cat-family > .container > h2 {
  font-size: 61px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.2em;
  margin: 0 0 2rem;
  text-align: center;
}
.adopt-cat-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}
.adopt-cat-family-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.adopt-cat-family-text p {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 42px;
  margin-bottom: 1rem;
}

/* ── Working Cats ─────────────────────────────────────────────────── */
.adopt-cat-working {
  background: var(--blue);
  padding: 77px 0;
  color: #fff;
}
.adopt-cat-working h2 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2em;
  margin: 0 0 16px;
}
.adopt-cat-working-text {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.adopt-cat-working-text p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  line-height: 30.4px;
  margin-bottom: 1rem;
}

/* ── What You Provide ─────────────────────────────────────────────── */
.adopt-cat-provide {
  background: #efefef;
  padding: 50px 0;
}
.adopt-cat-provide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.adopt-cat-provide-img img {
  width: 100%;
  height: auto;
  display: block;
}
.adopt-cat-provide-info h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1.2em;
  margin: 0 0 8px;
}
.adopt-cat-provide-info h3:first-child { margin-top: 0; }
.adopt-cat-provide-info p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75em;
  margin-bottom: 2.5rem;
}

/* ── How it Works card (blue card inside #efefef section) ─────────── */
.adopt-cat-how-card {
  background: var(--blue);
  border-radius: 20px;
  overflow: hidden;
  padding: 50px 35px;
  margin-top: 75px;
  text-align: center;
}
.adopt-cat-how-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 36px;
  margin: 0 0 20px;
}
.adopt-cat-how-text {
  max-width: 860px;
  margin: 0 auto;
}
.adopt-cat-how-text p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  line-height: 30.4px;
  margin-bottom: 1rem;
}
.adopt-cat-how-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* ── Adoption Application ─────────────────────────────────────────── */
.adopt-cat-app {
  padding: 77px 0;
  text-align: center;
}
.adopt-cat-app h2 {
  font-size: 61px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  line-height: 1.2em;
  margin: 0 0 12px;
}
.adopt-cat-app p {
  font-size: 24px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 42px;
  margin-bottom: 1.5rem;
}

/* ── Responsive: Adopt-a-Cat ──────────────────────────────────────── */
@media (max-width: 980px) {
  .adopt-cat-hero { min-height: 350px; padding: 140px 0 0; }
  .adopt-cat-hero h1 { font-size: 48px; }
  .adopt-cat-friend h2 { font-size: 36px; }
  .adopt-cat-friend p { font-size: 18px; line-height: 28px; }
  .adopt-cat-fees-heading { font-size: 36px; }
  .adopt-cat-fees-info h3 { font-size: 24px; }
  .adopt-cat-fees-info p { font-size: 20px; line-height: 32px; }
  .adopt-cat-fees-grid,
  .adopt-cat-family-grid,
  .adopt-cat-provide-grid { grid-template-columns: 1fr; }
  .adopt-cat-family > .container > h2,
  .adopt-cat-app h2 { font-size: 46px; }
  .adopt-cat-family-text p,
  .adopt-cat-app p { font-size: 20px; line-height: 32px; }
  .adopt-cat-working h2 { font-size: 36px; }
  .adopt-cat-working-text p { font-size: 18px; line-height: 28px; }
  .adopt-cat-how-card h3 { font-size: 24px; line-height: 30px; }
  .adopt-cat-how-text p { font-size: 18px; line-height: 28px; }
  .adopt-cat-provide-info h3 { font-size: 24px; }
}

@media (max-width: 600px) {
  .adopt-cat-hero { min-height: 250px; padding: 100px 0 0; }
  .adopt-cat-hero h1 { font-size: 36px; }
  .adopt-cat-friend { padding: 50px 0; }
  .adopt-cat-friend h2 { font-size: 26px; }
  .adopt-cat-friend p { font-size: 16px; line-height: 24px; }
  .adopt-cat-fees-heading { font-size: 26px; }
  .adopt-cat-fees-info h3 { font-size: 20px; }
  .adopt-cat-fees-info p { font-size: 18px; line-height: 28px; }
  .adopt-cat-family > .container > h2,
  .adopt-cat-app h2 { font-size: 28px; }
  .adopt-cat-family-text p,
  .adopt-cat-app p { font-size: 18px; line-height: 28px; }
  .adopt-cat-working h2 { font-size: 26px; }
  .adopt-cat-working-text p,
  .adopt-cat-how-text p { font-size: 16px; line-height: 24px; }
  .adopt-cat-how-card h3 { font-size: 22px; line-height: 28px; }
  .adopt-cat-how-card { padding: 35px 20px; margin-top: 40px; }
  .adopt-cat-provide-info h3 { font-size: 20px; }
  .adopt-cat-provide-info p { font-size: 18px; }
  .adopt-cat-steps, .adopt-cat-widget,
  .adopt-cat-provide, .adopt-cat-family, .adopt-cat-app { padding: 40px 0; }
}

/* ==================================================================
   How to Help Page — page-specific styles
   ================================================================== */

/* ── Hero (photo bg + wave) ───────────────────────────────────── */
.hth-hero {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  padding: 203px 0 237px;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(30,30,30,0) 100%),
    url('/assets/images/How-to-help-Banner-image-updated.jpg');
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hth-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.375rem); /* cap at 70px = live inr_bnr_h1 */
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1;
  text-align: left;
}
.hth-hero .wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

/* ── Shared section heading ───────────────────────────────────── */
.hth-section-heading {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 0 0 2rem;
}
.hth-section-heading--white { color: #fff; }

/* ── Wish List section ────────────────────────────────────────── */
.hth-wishlist { padding: 77px 0; }

/* "Wish List" heading — large dark left-aligned */
.hth-wish-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2rem;
  text-align: left;
}

/* 2-col grid: accordion left (~3fr), Sonya photo right (~2fr) */
.hth-wishlist-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

/* Accordion — max-height approach; remove default card border/radius */
.hth-accordion {
  border: none;
  border-radius: 0;
  overflow: visible;
}
.hth-accordion .accordion-item {
  border: none;
  margin-bottom: 6px;
  border-radius: 4px;
  overflow: hidden;
}
/* Closed trigger — orange bg, white text */
.hth-accordion .accordion-trigger {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border-radius: 4px;
}
.hth-accordion .accordion-trigger:hover {
  background: #c76a15;
}
/* Open trigger — white bg, blue text */
.hth-accordion .accordion-trigger[aria-expanded="true"] {
  background: #fff;
  color: var(--blue);
  border-radius: 4px 4px 0 0;
  border: 1px solid #e0e0e0;
  border-bottom: none;
}
.hth-accordion .accordion-trigger[aria-expanded="true"]:hover {
  background: var(--bg-alt);
}
/* Chevron icon — circle style; use ::before so CSS controls the symbol
   regardless of what JS writes as textContent (+/−) */
.hth-accordion .accordion-trigger .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  font-size: 0; /* hide JS-injected +/− text */
  flex-shrink: 0;
  transition: none;
}
.hth-accordion .accordion-trigger .icon::before {
  content: '▾';
  font-size: 18px;
  color: #fff;
  line-height: 1;
}
.hth-accordion .accordion-trigger[aria-expanded="true"] .icon {
  border: 2px solid var(--blue);
  transform: none; /* suppress global rotate(45deg) for +/− style icons */
}
.hth-accordion .accordion-trigger[aria-expanded="true"] .icon::before {
  content: '▴';
  color: var(--blue);
}
/* Open body — bordered card continuation */
.hth-accordion .accordion-body {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.hth-accordion .accordion-body.open {
  max-height: 3000px;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 4px 4px;
}

/* Styled bullet list inside accordion panels */
.hth-wish-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hth-wish-list li {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
  padding: .3rem 0 .3rem 1.2rem;
  position: relative;
}
.hth-wish-list li::before {
  content: '•';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}
.hth-wish-list li a { color: var(--blue); text-decoration: underline; }
.hth-wish-list li a:hover { color: var(--orange); }

/* Sonya photo — right column of wishlist grid */
.hth-sonya-wrap {
  text-align: center;
}
.hth-sonya-wrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* Disclaimer note */
.hth-wishlist-note {
  background: #fff8f0;
  border-left: 4px solid var(--orange);
  padding: 1rem 1.25rem;
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.1rem);
  color: var(--text-muted);
  border-radius: 0 6px 6px 0;
  margin-top: 1rem;
}

/* ── Host Your Own Fundraiser ─────────────────────────────────── */
.hth-fundraiser {
  padding: 77px 0;
  background: var(--bg-alt);
}
.hth-fundraiser-subheading {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--blue);
  text-align: center;
  margin: 0 0 2rem;
}
.hth-fundraiser-body {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hth-fundraiser-body a { color: var(--blue); text-decoration: underline; }
.hth-nonprofit-note {
  font-style: italic;
  opacity: .85;
}
.hth-fundraiser-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}
.hth-fundraiser-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Multi-column list inside Fundraising Ideas accordion panel */
.hth-ideas-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.hth-ideas-col-list li {
  font-size: clamp(1rem, 0.35rem + 0.95vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.6;
  padding: .3rem 0 .3rem 1.2rem;
  position: relative;
  break-inside: avoid;
}
.hth-ideas-col-list li::before {
  content: '•';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* Logo accordion panel — two download variants side by side */
.hth-logo-panel { text-align: center; }
.hth-logo-download {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.hth-logo-variant {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.hth-logo-variant img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}
.hth-logo-variant span {
  font-size: .9rem;
  color: var(--text-muted);
  font-style: italic;
}
.hth-logo-btn {
  font-size: .9rem !important; /* override cmn-btn size for logo panel only */
  padding: .6rem 1.5rem !important; /* override cmn-btn padding for logo panel only */
}

/* ── Amazon Wish Lists ────────────────────────────────────────── */
.hth-amazon {
  background: #efefef;
  padding: 60px 0;
  text-align: center;
}
.hth-amazon-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}
.hth-amazon-link {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.hth-amazon-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.hth-amazon-link img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.hth-amazon-blurb {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  padding: 1.25rem 1.25rem 1rem;
  flex: 1;
}
.hth-amazon-label {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
}

/* ── Responsive: How to Help ──────────────────────────────────── */
@media (max-width: 980px) {
  .hth-hero { min-height: 350px; padding-top: 140px; }
  .hth-hero h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
  .hth-wishlist-grid { grid-template-columns: 1fr; }
  .hth-sonya-wrap { max-width: 480px; margin: 0 auto; }
  .hth-fundraiser-grid { grid-template-columns: 1fr; }
  .hth-ideas-col-list { columns: 1; }
  .hth-amazon-link img { height: auto; }
}

@media (max-width: 600px) {
  .hth-hero { min-height: 250px; padding-top: 100px; }
  .hth-hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hth-wishlist,
  .hth-amazon,
  .hth-fundraiser { padding: 50px 0; }
  .hth-amazon-grid { flex-direction: column; align-items: center; }
  .hth-amazon-link img { height: auto; }
}

/* ═══════════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────────────────── */
.about-hero {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(30,30,30,0) 100%),
    url('/assets/images/Abby-in-the-lawn.webp') center center / cover no-repeat;
  min-height: 450px;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.about-hero .container {
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.about-hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1em;
  text-transform: none;
  margin: 0;
}
.about-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* ── White content section ─────────────────────────────────────────── */
.about-content {
  background: #fff;
  padding: 60px 0;
}
.about-content-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Orange bordered intro box */
.about-intro-box {
  border: 3px solid var(--orange);
  border-radius: 24px;
  padding: 20px;
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-intro-box p {
  font-size: 20px;
  font-weight: 300;
  color: var(--orange);
  line-height: 30.4px;
  margin-bottom: 1em;
}
.about-intro-badge {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.about-intro-badge img {
  width: 280px;
  height: auto;
}

/* Our Mission white card */
.about-mission-card {
  border-radius: 26px;
  box-shadow: rgba(0,0,0,0.3) 0 4px 10px 0;
  padding: 24px;
  margin-bottom: 2rem;
}
.about-mission-row {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.about-mission-text h4 {
  font-size: 43px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1em;
  margin-bottom: 1rem;
}
.about-mission-text p {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}
.about-cornelia {
  text-align: center;
  flex-shrink: 0;
}
.about-cornelia-img-wrap {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.about-cornelia-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-cornelia-caption {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

/* Our History white card */
.about-history-card {
  border-radius: 26px;
  box-shadow: rgba(0,0,0,0.3) 0 4px 10px 0;
  padding: 24px;
}
.about-history-card h4 {
  font-size: 43px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.1em;
  margin-bottom: 1rem;
  text-align: center;
}
.about-history-card p {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1em;
}
.about-history-card p:last-child { margin-bottom: 0; }

/* ── Blue History Section ──────────────────────────────────────────── */
.about-history-blue {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
.about-wave-top {
  position: absolute;
  top: 0; left: 0;
  width: 100%; line-height: 0; z-index: 1;
}
.about-wave-bottom {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; line-height: 0; z-index: 1;
}
.about-history-blue > .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-history-blue-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}
.about-sebastian {
  display: flex;
  justify-content: center;
}
.about-sebastian img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.about-history-blue-text p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  line-height: 30.4px;
  margin-bottom: 1.25em;
}
.about-history-blue-text p:last-child { margin-bottom: 0; }

/* ── Key Staff ─────────────────────────────────────────────────────── */
.about-staff {
  background: #efefef url('/assets/images/Curved-dashed-bg-line.png') center center / cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Green outline paw deco — upper-left, desktop only */
.about-staff-paw-left {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 200px;
  height: 200px;
  background: url('/assets/images/Right-center-Hand.svg') center / contain no-repeat;
  transform: scaleX(-1);
  pointer-events: none;
  z-index: 1;
}
.about-staff-heading {
  font-size: 45px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about-staff-card {
  text-align: center;
  cursor: pointer;
  transition: transform .2s, opacity .2s;
}
.about-staff-card:hover { transform: translateY(-4px); opacity: .85; }
.about-staff-img-wrap {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 1rem;
}
.about-staff-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-staff-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.about-staff-card p {
  font-size: 18px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.4;
}

/* ── Board of Trustees ─────────────────────────────────────────────── */
.about-board {
  background: #efefef;
  padding: 50px 2rem 70px;
}
.about-board-card {
  background: #fff;
  border-radius: 27px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 4px 10px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 50px;
}
.about-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.about-board-col h2 {
  font-size: 45px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
/* Checklist paw-icon list */
.about-board-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-board-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}
.about-board-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('/assets/images/Dog-Paw-for-donate-button.svg') center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(95%);
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
}

/* ── Employment Section ────────────────────────────────────────────── */
.about-employ {
  background: var(--blue);
  position: relative;
  overflow: hidden;
}
/* Light-blue paw decorations — left (large) and right (smaller) */
.about-employ-paw-left,
.about-employ-paw-right {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  width: 312px;
  height: 280px;
  top: 65px;
  right: 0;
  background: url('/assets/images/3-Sponsor-Badge-Row-paw.png') 0 0 / contain no-repeat;
}
.about-employ-paw-left {
  width: 437px;
  height: 393px;
  top: -155px;
  left: -200px;
  background: url('/assets/images/Platinum-Row-Left-Paw-Icon-updated.png') 0 0 / contain no-repeat;
}
.about-employ > .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-employ h2 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.about-employ-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
}
.about-employ-lead {
  font-size: 35px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.about-employ-text p:not(.about-employ-lead) {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  line-height: 30.4px;
}
.about-employ-img {
  display: flex;
  justify-content: center;
}
.about-employ-img img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* ── Open Position ─────────────────────────────────────────────────── */
.about-position {
  background: #efefef url('/assets/images/Curved-dashed-bg-line.png') center center / cover;
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
/* Green outline paw deco — right-center, desktop only */
.about-position-paw-deco {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  background: url('/assets/images/Right-center-Hand.svg') center / contain no-repeat;
  pointer-events: none;
  z-index: 1;
}
.about-position-centered {
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-position-img-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.about-position-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-position-centered h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.about-position-centered p {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.3rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

/* ── Employment Application Button ────────────────────────────────── */
.about-app {
  background: #efefef;
  padding: 0 0 70px;
  text-align: center;
}
.about-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(1rem, 0.7vw + 0.7rem, 1.375rem);
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 20px 32px;
  border-radius: 43px;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.about-app-btn-icon {
  width: 1.9em;
  height: 1.9em;
  flex-shrink: 0;
}
.about-app-btn:hover {
  background: #3550a0;
  transform: translateY(-2px);
}

/* ── Equal Employment Opportunity (card biting into footer) ────────── */
.about-eeo {
  background: transparent;
  padding: 40px 0 0;
  position: relative;
  z-index: 10;
  overflow: visible;
}
.about-eeo-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: rgba(0,0,0,0.15) 0 4px 20px;
  padding: 50px 60px;
  margin-bottom: -30px;
  text-align: center;
}
.about-eeo-card h2 {
  font-size: 45px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}
.about-eeo-card p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  text-align: center;
  margin: 0 auto;
}

/* ── Staff Popups ──────────────────────────────────────────────────── */
.staff-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(70, 96, 169, 0.7);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.staff-overlay.is-open {
  display: flex;
}
.staff-popup {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: rgba(0,0,0,0.16) 0 0 30px 0;
  width: 100%;
  max-width: 768px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  text-align: center;
}
.staff-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 26px;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.staff-popup-close:hover { background: #3550a0; }
.staff-popup-img-wrap {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin: 0.5rem auto 1.25rem;
}
.staff-popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.staff-popup h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.35rem;
}
.staff-popup-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-bottom: 0.35rem;
}
.staff-popup-email {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 0.75rem;
}
.staff-popup-email a {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}
.staff-popup-email a:hover { text-decoration: underline; }
.staff-popup-bio {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  text-align: center;
  line-height: 1.6;
  margin-top: 0.5rem;
}

/* ── Responsive: About Page ────────────────────────────────────────── */
@media (max-width: 1100px) {
  .about-hero h1 { font-size: 48px; }
  .about-history-blue-grid { grid-template-columns: 280px 1fr; }
  .about-employ-grid { grid-template-columns: 1fr 280px; }
  /* Shrink large paw decos */
  .about-employ-paw-left { width: 300px; height: 270px; left: -120px; }
  .about-employ-paw-right { width: 220px; height: 198px; }
}

@media (max-width: 900px) {
  .about-mission-row { grid-template-columns: 1fr; }
  .about-cornelia { text-align: center; }
  .about-cornelia-img-wrap { width: 180px; height: 180px; }
  .about-history-blue-grid { grid-template-columns: 1fr; }
  .about-sebastian img { width: 220px; height: 220px; }
  .about-staff-grid { grid-template-columns: repeat(2, 1fr); }
  .about-board-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-board-card { padding: 50px 30px; }
  .about-employ-grid { grid-template-columns: 1fr; }
  .about-employ-img img { width: 220px; height: 220px; }
  /* Hide paw decos on tablet/mobile */
  .about-employ-paw-left,
  .about-employ-paw-right,
  .about-position-paw-deco,
  .about-staff-paw-left { display: none; }
  .about-eeo-card { padding: 40px 32px; }
}

@media (max-width: 768px) {
  .staff-popup { max-width: 90vw; }
  .staff-popup-img-wrap { width: 200px; height: 200px; }
  .staff-popup h2 { font-size: 24px; }
  .staff-popup-title { font-size: 18px; }
  .staff-popup-bio { font-size: 17px; }
}

@media (max-width: 600px) {
  .about-hero { min-height: 300px; padding-top: 80px; }
  .about-hero h1 { font-size: 36px; }
  .about-mission-text h4,
  .about-history-card h4 { font-size: 32px; }
  .about-staff-heading,
  .about-board-col h2,
  .about-employ h2,
  .about-eeo-card h2 { font-size: 32px; }
  .about-staff-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .about-staff-img-wrap { width: 200px; height: 200px; }
  .about-employ-lead { font-size: 26px; }
  .about-app-btn { padding: 16px 28px; border-radius: 32px; }
  .about-history-blue > .container,
  .about-employ > .container { padding-top: 70px; padding-bottom: 70px; }
  .about-position-img-wrap { width: 220px; height: 220px; }
  .staff-popup-img-wrap { width: 160px; height: 160px; }
  .staff-popup h2 { font-size: 20px; }
  .staff-popup-title { font-size: 16px; }
  .staff-popup-bio { font-size: 15px; }
  .about-eeo-card { padding: 32px 20px; border-radius: 18px; }
  .about-eeo-card p { font-size: 17px; }
}

/* ================================================================
   FOSTER PAGE
   ================================================================ */

/* ── Hero ────────────────────────────────────────────────────────── */
.foster-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 450px;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.4) 0%, rgba(30,30,30,0) 100%),
    url('/assets/images/Foster-Page-Banner-updated-image-2.jpg') center center / cover no-repeat;
}
.foster-hero .container {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}
.foster-hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.1;
}
.foster-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* ── Main grey section ───────────────────────────────────────────── */
.foster-main {
  background: #efefef;
  padding: 80px 0;
}

/* Row 1: photo left, text+bullets right */
.foster-row-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

/* Row 2: text left, photo right */
.foster-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.foster-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.foster-intro,
.foster-body {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Bullet list — orange paw icons */
.foster-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.foster-list li {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 33px;
  margin-bottom: 0.5rem;
}
.foster-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('/assets/images/Dog-Paw-for-donate-button.svg') center / contain no-repeat;
  filter: brightness(0) saturate(100%) invert(55%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(95%);
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
}

/* ── CTA card section ────────────────────────────────────────────── */
.foster-cta-section {
  background: #efefef;
  padding: 0 0 80px;
}
.foster-cta-card {
  background: #fff;
  border-radius: 27px;
  box-shadow: rgba(0, 0, 0, 0.16) 0 4px 10px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px 80px;
  text-align: center;
}
.foster-cinnabun-wrap {
  max-width: 646px;
  margin: 0 auto 2.5rem;
}
.foster-cinnabun-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 3px solid #1e1e1e;
}
.foster-cta-text {
  font-size: 20px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 0.75rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.foster-cta-email {
  font-size: 20px;
  font-weight: 500;
  color: var(--orange);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.foster-cta-email a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}
.foster-cta-email a:hover { text-decoration: underline; }
.foster-btn-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.foster-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--blue);
  color: #fff;
  font-size: clamp(1rem, 0.7vw + 0.7rem, 1.375rem);
  font-weight: 700;
  text-decoration: none;
  border-radius: 43px;
  padding: 14px 28px;
  transition: opacity .2s;
  letter-spacing: 0.02em;
}
.foster-app-btn:hover { opacity: 0.85; }
.foster-app-btn-icon {
  width: 1.9em;
  height: 1.9em;
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .foster-row-1,
  .foster-row-2 { grid-template-columns: 1fr; gap: 2rem; }
  /* On mobile, stack photo above text in both rows */
  .foster-row-2 .foster-text-col { order: 2; }
  .foster-row-2 .foster-photo-col { order: 1; }
  .foster-cta-card { padding: 60px 32px; }
  .foster-app-btn { padding: 16px 24px; }
}
@media (max-width: 600px) {
  .foster-hero h1 { font-size: 36px; }
  .foster-hero { min-height: 300px; }
  .foster-intro,
  .foster-body,
  .foster-list li,
  .foster-cta-text,
  .foster-cta-email { font-size: 17px; }
  .foster-cta-card { padding: 40px 20px; }
  .foster-app-btn { padding: 12px 20px; border-radius: 32px; }
}

/* ═══════════════════════════════════════════════════════════════════
   RESOURCES PAGE  (lines ~5104+)
═══════════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────────────── */
.res-hero {
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.25) 100%),
    url('/assets/images/buddha-web.jpg') center center / cover no-repeat;
}
.res-hero h1 {
  font-size: 100px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1;
  letter-spacing: 2px;
}

/* ── Tab Bar ───────────────────────────────────────────────────────── */
.res-tabs {
  display: flex;
  background: var(--blue);
  gap: 0;
}
.res-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex: 1;
  padding: 3.75rem 1rem;
  color: #fff;
  text-decoration: none;
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.33);
  transition: background 0.2s;
}
.res-tab:last-child { border-right: none; }
.res-tab:hover { background: rgb(102, 124, 185); color: #fff; }
.res-tab-img {
  width: 75px;
  height: 75px;
  display: block;
}

/* ── Sections ──────────────────────────────────────────────────────── */
/* scroll-margin-top offsets anchor scroll by sticky nav height */
#lost-found,
#pet-support,
#animal-surrender,
#animal-law { scroll-margin-top: 140px; } /* 130px nav + 10px buffer */

.res-section { padding: 70px 0; }
.res-section-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 1.4rem;
  letter-spacing: 0.04em;
}
.res-subheading {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  color: #1e1e1e;
  margin: 1.6rem 0 0.6rem;
}
.res-body {
  font-size: clamp(1rem, 0.4rem + 1.1vw, 1.2rem);
  color: #333;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.res-link {
  color: var(--orange);
  text-decoration: underline;
  font-weight: 500;
}
.res-link:hover { color: #c0600a; }

/* Alternating backgrounds */
.res-lost-found   { background: #fff; }
.res-pet-support  { background: #efefef; }
.res-rehoming     { background: #fff; }
.res-surrender    { background: rgba(168, 174, 113, 0.5); }
.res-animal-law   { background: #fff; }

/* ── Two-column layout ─────────────────────────────────────────────── */
.res-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.res-col-photo { display: flex; align-items: flex-start; }
.res-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

/* ── Accordion ─────────────────────────────────────────────────────── */
.res-accordion-group { display: flex; flex-direction: column; gap: 0.7rem; }
.res-accordion-item { border-radius: 8px; overflow: hidden; }

/* Blue variant */
.res-acc--blue .res-acc-header {
  background: var(--blue);
  color: #fff;
}
.res-acc--blue .res-acc-header:hover { background: #3a52a0; }
.res-acc--blue .res-acc-body { background: #f0f3fa; color: #1e1e1e; }

/* Orange variant */
.res-acc--orange .res-acc-header {
  background: var(--orange);
  color: #fff;
}
.res-acc--orange .res-acc-header:hover { background: #c86e14; }
.res-acc--orange .res-acc-body { background: #fff7ef; color: #1e1e1e; }

.res-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.res-acc-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.res-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.res-acc-body.open {
  padding: 1.25rem 1.5rem;
}
.res-acc-body p { margin: 0 0 0.8rem; }
.res-acc-body p:last-child { margin-bottom: 0; }
.res-acc-body a { color: var(--orange); text-decoration: underline; }
.res-acc-body ul { margin: 0.5rem 0 0 1.2rem; padding: 0; }
.res-acc-body li { margin-bottom: 0.4rem; }

/* ── Pet Support — Rover images ────────────────────────────────────── */
.res-rover-images {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}
.res-rover-logo {
  max-width: 140px;
  height: auto;
}
.res-rover-qr {
  width: 200px;
  height: auto;
  border-radius: 8px;
}

/* ── Rehoming — pet photos strip ───────────────────────────────────── */
.res-rehoming-heading { text-align: center; margin-bottom: 2rem; }
.res-pet-photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.res-pet-photos img {
  flex: 0 0 calc(20% - 0.8rem);
  max-width: calc(20% - 0.8rem); /* override global img { max-width: 100% } */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── Rehoming — Military/Moving cards ──────────────────────────────── */
.res-mil-mov-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.res-mil-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.res-mil-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 1rem;
  letter-spacing: 0.05em;
}
.res-mil-card p {
  font-size: clamp(1rem, 0.4rem + 1vw, 1.1rem);
  color: #333;
  line-height: 1.6;
  margin: 0 0 0.6rem;
}

/* ── Animal Surrender — blurbs ─────────────────────────────────────── */
.res-surrender-blurbs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.res-blurb {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.res-blurb-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.res-blurb-icon svg {
  width: 40px;
  height: 40px;
  color: #a8ae71;
  fill: #a8ae71;
  stroke: none;
}
.res-blurb-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  margin: 0 0 0.3rem;
  letter-spacing: 0.04em;
}
.res-blurb-body {
  font-size: clamp(0.95rem, 0.4rem + 1vw, 1.1rem);
  color: #333;
  line-height: 1.6;
  margin: 0;
}

/* ── Support CTA button ────────────────────────────────────────────── */
.res-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.res-support-btn:hover { background: #c86e14; }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  /* nav collapses to 72px at ≤1100px */
  #lost-found,
  #pet-support,
  #animal-surrender,
  #animal-law { scroll-margin-top: 82px; }
}
@media (max-width: 1024px) {
  .res-hero h1 { font-size: 70px; }
  .res-tab { padding: 2rem 0.5rem; }
  .res-tab-img { width: 55px; height: 55px; }
}
@media (max-width: 768px) {
  .res-hero h1 { font-size: 48px; }
  .res-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .res-pet-photos img { flex: 0 0 calc(33.333% - 0.67rem); max-width: calc(33.333% - 0.67rem); }
  .res-mil-mov-grid { grid-template-columns: 1fr; }
  .res-tabs { flex-wrap: wrap; }
  .res-tab {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.33);
    padding: 1.75rem 0.5rem;
    font-size: 0.7rem;
  }
  .res-tab-img { width: 48px; height: 48px; }
}
@media (max-width: 500px) {
  .res-hero { min-height: 240px; padding-bottom: 40px; }
  .res-hero h1 { font-size: 36px; }
  .res-pet-photos img { flex: 0 0 calc(50% - 0.5rem); max-width: calc(50% - 0.5rem); }
  .res-section { padding: 50px 0; }
}

/* ═══════════════════════════════════════════════════════════════════
   EVENTS PAGE  (lines ~5421+)
═══════════════════════════════════════════════════════════════════ */

.evts-page {
  padding: 60px 0 80px;
  background: #fff;
}

/* ── H1 ──────────────────────────────────────────────────────────── */
.evts-h1 {
  font-size: 72px;
  font-weight: 500;
  color: #1e1e1e;
  margin: 0 0 40px;
}

/* ── Month divider ───────────────────────────────────────────────── */
.evts-month-divider {
  font-size: 22px;
  font-weight: 400;
  color: #626262;
  margin: 60px 0 40px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9e9e9;
  letter-spacing: 0.02em;
}
.evts-month-divider:first-of-type { margin-top: 0; }

/* ── Event article ───────────────────────────────────────────────── */
.evts-event {
  display: grid;
  grid-template-columns: 260px 1fr 240px;
  gap: 0;
  border-bottom: 1px solid #e9e9e9;
  padding: 24px 0 32px;
  align-items: start;
}

/* ── Image column ────────────────────────────────────────────────── */
.evts-img-col {
  padding-right: 20px;
}
.evts-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* ── Content column ──────────────────────────────────────────────── */
.evts-content-col {
  padding: 0 20px;
}
.evts-title {
  font-size: 29px;
  font-weight: 600;
  color: #171c24;
  margin: 0 0 12px;
  line-height: 1.2;
}
.evts-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.evts-title a:hover { color: var(--blue); }
.evts-desc {
  font-size: clamp(0.95rem, 0.4rem + 1vw, 1.05rem);
  color: #555;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.evts-view-more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.evts-view-more:hover { color: var(--orange); }

/* ── Meta sidebar column ─────────────────────────────────────────── */
.evts-meta-col {
  padding: 0 0 0 20px;
}
.evts-date-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
.evts-date-num {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
.evts-date-mon {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.evts-meta-detail {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.9rem;
  color: #414243;
  line-height: 1.4;
  margin-bottom: 8px;
}
.evts-meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #414243;
}
.evts-meta-addr {
  font-size: 0.85rem;
  color: #626262;
  margin: 0 0 0 22px;
  line-height: 1.4;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .evts-event {
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
  }
  .evts-meta-col {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0 0;
    flex-wrap: wrap;
  }
  .evts-date-badge { flex-direction: row; align-items: baseline; gap: 4px; margin-bottom: 0; }
  .evts-date-num { font-size: 36px; }
}
@media (max-width: 600px) {
  .evts-h1 { font-size: 48px; }
  .evts-event {
    grid-template-columns: 1fr;
  }
  .evts-img-col { padding-right: 0; }
  .evts-img { max-width: 100%; }
  .evts-content-col { padding: 1rem 0 0; }
  .evts-title { font-size: 22px; }
}
