/* SAVE Homeless Animals — Static Site Stylesheet */

/* ─── Variables ─────────────────────────────────────────────────────────── */
:root {
  --blue:       #4660a9;
  --blue-dark:  #344d8f;
  --blue-light: #eef1f9;
  --orange:     #e07919;
  --orange-dark:#c0641a;
  --green:      #32a709;
  --text:       #1e1e1e;
  --text-muted: #555;
  --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: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.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: .95rem;
  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: .9rem;
  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 */
.hero-text-col {
  display: flex;
  align-items: center;
  padding: 5rem 3rem 5rem 1.5rem;
  position: relative;
  z-index: 1;
}

/* Subtle diagonal slice between columns */
.hero-text-col::after {
  content: '';
  position: absolute;
  top: 0; right: -40px; bottom: 0;
  width: 80px;
  background: var(--blue);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 2;
}

/* Right photo column */
.hero-img-col {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient fade from photo into the text column */
.hero-img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

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

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 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; }

/* ─── Mission Strip ─────────────────────────────────────────────────────── */
.mission-strip {
  background: var(--orange);
  color: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.mission-strip p { font-size: 1.1rem; max-width: 760px; margin: 0 auto .5rem; }
.mission-strip .badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1rem; }
.badge-pill {
  background: rgba(255,255,255,.2);
  border: 1px solid #fff;
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .85rem;
  font-weight: 600;
}

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

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }

.card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.card-img-wide {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-body h3 { color: var(--blue); margin-bottom: .5rem; }
.card-body p  { color: var(--text-muted); flex: 1; margin-bottom: 1.25rem; font-size: .95rem; }
.card-body .btn { align-self: flex-start; }

/* 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; }
.cta-card h3 { color: var(--blue); margin-bottom: .5rem; }
.cta-card p  { color: var(--text-muted); font-size: .9rem; 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: .95rem; }

/* ─── Fee Table ─────────────────────────────────────────────────────────── */
.fee-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; }
.fee-table th {
  background: var(--blue);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
}
.fee-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--border); }
.fee-table tr:last-child td { border-bottom: none; }
.fee-table tbody tr:nth-child(odd) { background: var(--bg-alt); }
.fee-table .waived { font-size: .85rem; color: var(--green); font-weight: 600; }

/* Inclusions list */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .5rem;
  margin-top: 1rem;
}
.includes-grid li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--text-muted);
}
.includes-grid li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ─── 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;
  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 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.accordion-body.open { max-height: 500px; }
.accordion-body-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: .95rem;
}

/* ─── Animal Feed Placeholder ───────────────────────────────────────────── */
.feed-section {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}
.feed-section .feed-label {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.feed-section h3 { color: var(--blue); margin-bottom: .5rem; }
.feed-section p  { color: var(--text-muted); margin-bottom: 1.5rem; }

.mock-animal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
}
.mock-animal-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.mock-animal-img {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--blue-light) 0%, #d0d8ef 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.mock-animal-info { padding: 1rem; }
.mock-animal-info h4 { font-size: 1rem; color: var(--blue); margin-bottom: .25rem; }
.mock-animal-info .meta { font-size: .8rem; color: var(--text-muted); margin-bottom: .75rem; }
.mock-animal-info .btn { font-size: .85rem; padding: .5rem 1rem; }

/* ─── Form Placeholder ──────────────────────────────────────────────────── */
.form-placeholder {
  background: var(--bg-alt);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
.form-placeholder .form-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.form-placeholder h3 { color: var(--blue); margin-bottom: .5rem; }
.form-placeholder p  { font-size: .9rem; margin-bottom: 1.5rem; }

/* ─── Callout Box ───────────────────────────────────────────────────────── */
.callout {
  border-left: 4px solid var(--orange);
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.callout.callout-blue { border-left-color: var(--blue); }
.callout h3 { color: var(--orange); margin-bottom: .5rem; }
.callout.callout-blue h3 { color: var(--blue); }
.callout p { margin: 0; color: var(--text-muted); }

/* ─── Info Block ────────────────────────────────────────────────────────── */
.info-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.info-block img { border-radius: var(--radius); }

/* ─── 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: .9rem; }

/* ─── Sponsors ──────────────────────────────────────────────────────────── */
.sponsor-tier { margin-bottom: 2.5rem; }
.sponsor-tier h3 {
  text-align: center;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  position: relative;
}
.sponsor-tier h3::before,
.sponsor-tier h3::after {
  content: '';
  position: absolute;
  top: 50%; width: 30%;
  height: 1px;
  background: var(--border);
}
.sponsor-tier h3::before { left: 0; }
.sponsor-tier h3::after  { right: 0; }

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}
.sponsor-pill {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .5rem 1.25rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text);
}

/* ─── 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-info {
  background: #f0f4fb;
  border-radius: 14px;
  padding: 2rem 1.75rem;
}
.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 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: .9rem; 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: .82rem;
  color: var(--orange-dark);
  background: #fff8f2;
  border-left: 3px solid var(--orange);
  padding: .5rem .75rem;
  border-radius: 0 4px 4px 0;
}

/* ─── Contact Form Dialog ───────────────────────────────────────────────── */
.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);
  /* centre on all browsers */
  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; max-height: calc(80vh - 52px); }

@media (max-width: 900px) {
  .contact-form-col { text-align: center; }
  .contact-form-col h3,
  .contact-form-col p { text-align: center; }
}

.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: .9rem; color: var(--text-muted); margin: 0; }
.map-facade-btn { font-size: .9rem; padding: .5rem 1.25rem; }
.map-facade-link { font-size: .8rem; color: var(--blue); }

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  margin-top: 1.5rem;
  flex-direction: column;
  gap: .5rem;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0d1422;
  color: #c8d0e0;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img { height: 48px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p   { font-size: .9rem; opacity: .75; margin-bottom: 1rem; }

.footer-socials { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
}
.footer-socials a:hover { background: var(--orange); }

.footer-col h4 {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: #c8d0e0; font-size: .9rem; }
.footer-col ul li a:hover { color: var(--orange); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  opacity: .6;
}

/* ─── Donate Cards ──────────────────────────────────────────────────────── */
.donate-type-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .2s, box-shadow .2s;
}
.donate-type-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.12); }
.donate-type-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.donate-type-card .card-body h3 { font-size: 1.05rem; }

/* Alt giving list */
.alt-giving-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.alt-giving-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: 1rem; background: var(--bg-alt);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.alt-giving-list li .icon { font-size: 1.4rem; flex-shrink: 0; }
.alt-giving-list li div p { margin: 0; color: var(--text-muted); font-size: .9rem; }
.alt-giving-list li div strong { color: var(--text); }

/* Planned giving */
.giving-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.giving-method {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.giving-method .icon { font-size: 1.75rem; margin-bottom: .5rem; }
.giving-method h4   { font-size: .9rem; color: var(--blue); }

/* 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: .85rem;
  font-weight: 600;
  color: var(--blue);
  transition: background .2s;
}
.doc-link:hover { background: var(--blue-light); text-decoration: none; }

/* ─── Program Cards ─────────────────────────────────────────────────────── */
.program-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.program-card.reverse img { order: 2; }
.program-card.reverse .program-card-body { order: 1; }
.program-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.program-card-body { padding: 2rem; }
.program-card-body h3 { color: var(--blue); margin-bottom: .75rem; }
.program-card-body p  { color: var(--text-muted); }

/* ─── Staff Cards ───────────────────────────────────────────────────────── */
.staff-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
.staff-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.staff-card h3 { color: var(--blue); font-size: 1rem; margin-bottom: .25rem; }
.staff-card .role { font-size: .85rem; color: var(--orange); font-weight: 600; }

/* ─── Job Listings ──────────────────────────────────────────────────────── */
.job-listing {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.job-listing h4 { color: var(--blue); margin-bottom: .25rem; }
.job-listing .type { font-size: .8rem; color: var(--text-muted); }
.job-listing .btn { flex-shrink: 0; }

/* ─── Volunteer Requirements ────────────────────────────────────────────── */
.req-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.req-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.req-item .icon { font-size: 1.4rem; flex-shrink: 0; }
.req-item p { margin: 0; font-size: .9rem; color: var(--text-muted); }
.req-item strong { color: var(--text); }

/* ─── 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); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Hero collapses to single column on tablets */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-img-col {
    height: 280px;
    order: -1;
  }
  .hero-img-col::before {
    background: linear-gradient(180deg, transparent 40%, var(--blue) 100%);
  }
  .hero-text-col {
    padding: 3rem 1.5rem;
  }
  .hero-text-col::after { display: none; }
}

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

  .card-grid-3,
  .card-grid-2 { grid-template-columns: 1fr; }

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

  .info-block,
  .program-card { grid-template-columns: 1fr; }

  /* Use order instead of direction:rtl for safer RTL-free reversal */
  .program-card.reverse img { order: -1; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .fee-table { display: block; overflow-x: auto; }
}

@media (max-width: 480px) {
  .card-grid-4 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { max-width: 280px; margin: 0 auto; text-align: center; }
  .mock-animal-grid { grid-template-columns: 1fr 1fr; }
}

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

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

/* ─── Top utility bar ───────────────────────────────────────────────────── */
.top-bar {
  background: #4660a9;
  padding: 0;
}
.top-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 44px;
}
.top-nav {
  display: flex;
  gap: 0;
  list-style: none;
}
.top-nav a {
  color: rgba(255,255,255,.88);
  font-size: .8rem;
  font-weight: 400;
  padding: .6rem .9rem;
  text-decoration: none;
  display: block;
  letter-spacing: .03em;
}
.top-nav a:hover { color: #fff; text-decoration: none; }

/* ─── 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);
}
.main-nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.main-nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.main-nav-logo img { height: 90px; width: auto; }
.main-nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.main-nav-links a {
  color: #333;
  font-size: .88rem;
  font-weight: 500;
  padding: .5rem 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  display: block;
  transition: color .15s;
}
.main-nav-links a:hover { color: #4660a9; text-decoration: none; }
.main-nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.main-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #4660a9;
  color: #fff !important;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .6rem 1.4rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background .15s;
}
.main-donate-btn:hover { background: #344d8f; color: #fff !important; text-decoration: none; }
.main-donate-btn img { height: 18px; width: auto; margin: 0 1px; vertical-align: middle; }
.main-theme-toggle {
  background: none;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  font-size: 1rem;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.main-theme-toggle:hover { background: #f0f0f0; }
.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); }
.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: .9rem;
  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.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 5%;
}
.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(.95rem, 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: #4660a9;
  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: #4660a9;
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}
.hp-hero-btn:hover { background: #344d8f; text-decoration: none; color: #fff; }

/* ─── CTA Section 1 (Adopt Dog / Adopt Cat / Foster) ────────────────────── */
.hp-cta-1 {
  background: url('/assets/images/Curved-dashed-bg-line.png') center center / cover;
  padding: 4.5rem 2rem;
}
.hp-cta-title {
  text-align: center;
  color: #4660a9;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: .02em;
}
.hp-cta-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.hp-cta-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.hp-cta-item { text-align: center; }
.hp-cta-img {
  width: 240px; height: 240px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
}
.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: .95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.hp-cta-link {
  display: inline-block;
  color: #e07919;
  font-size: .88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 2px solid #e07919;
  border-radius: 43px;
  padding: .55rem 1.5rem;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.hp-cta-link:hover { background: #e07919; color: #fff; text-decoration: none; }

/* ─── CTA Section 2 (Volunteer / Donate) ───────────────────────────────── */
.hp-cta-2 {
  background: url('/assets/images/Two-Column-Row-BG.png') center center / cover;
  padding: 4.5rem 2rem;
}
/* ─── Sponsors Section ──────────────────────────────────────────────────── */
.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: .7rem;
  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: .72rem;
  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: .95rem;
  line-height: 1.7;
  margin-bottom: .75rem;
}
.hp-concert p:last-child { margin-bottom: 0; }

/* ─── Homepage Footer ───────────────────────────────────────────────────── */
.hp-footer {
  background: #4660a9;
  color: rgba(255,255,255,.85);
  padding: 0;
}
.hp-footer-tagline {
  background: #344d8f;
  text-align: center;
  padding: 1.75rem 2rem;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: .01em;
  color: rgba(255,255,255,.9);
  font-weight: 300;
}
.hp-footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
}
.hp-footer-brand img {
  width: 199px;
  height: auto;
  margin-bottom: 1.25rem;
  filter: none;
}
.hp-footer-brand address {
  font-style: normal;
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  margin-bottom: .75rem;
}
.hp-footer-brand a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.hp-footer-brand a:hover { color: #fff; text-decoration: underline; }
.hp-footer-col h4 {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: .75rem;
  margin-top: 1.25rem;
}
.hp-footer-col h4:first-child { margin-top: 0; }
.hp-footer-col ul { list-style: none; }
.hp-footer-col ul li { margin-bottom: .4rem; }
.hp-footer-col ul li a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  text-decoration: none;
}
.hp-footer-col ul li a:hover { color: #fff; text-decoration: underline; }
.hp-footer-col p {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  line-height: 1.65;
  margin-bottom: .4rem;
}
.hp-footer-socials {
  display: flex;
  gap: .5rem;
  margin-top: 1.25rem;
}
.hp-footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.hp-footer-socials a:hover { background: rgba(255,255,255,.3); text-decoration: none; }
.hp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 1.25rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  gap: 1rem;
  flex-wrap: wrap;
}
.hp-footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.hp-footer-bottom a:hover { color: #fff; }

/* ─── Homepage responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hp-cta-grid-3 { grid-template-columns: 1fr 1fr; }
  .hp-footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1100px) {
  .main-nav-links { display: none; }
  .main-hamburger { display: flex; }
  .top-bar { display: none; }
  .hp-hero { height: 560px; padding: 0 1.5rem; }
  .hp-cta-grid-3 { grid-template-columns: 1fr; }
  .hp-cta-grid-2 { grid-template-columns: 1fr; }
  .hp-cta-img { width: 200px; height: 200px; }
  .hp-footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
}
@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: .75rem 3.5rem .75rem 1.5rem; }
  .hp-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── CTA circle fixes: larger + clickable + hover ──────────────── */
.hp-cta-img {
  width: 380px !important;
  height: 380px !important;
  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: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  text-decoration: none;
  cursor: pointer;
}
.hp-cta-circle-link .hp-cta-img {
  width: 100% !important;
  height: 100% !important;
  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 {
  position: relative;
  overflow: visible;
}
.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; }

/* ── Concert + Sponsors section ────────────────────────────────── */
.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; }

/* ── Footer: larger fonts ──────────────────────────────────────── */
.hp-footer-brand address { font-size: 1rem; line-height: 1.8; }
.hp-footer-col p { font-size: 1rem; line-height: 1.7; }
.hp-footer-col ul li a { font-size: 1rem; }
.hp-footer-col h4 { font-size: .8rem; }
.hp-footer-note { font-size: .85rem !important; color: rgba(255,255,255,.5); margin-top: .5rem; }

/* ── CTA responsive updates ────────────────────────────────────── */
@media (max-width: 1100px) {
  .hp-cta-circle-link, .hp-cta-img { width: 300px !important; height: 300px !important; }
}
@media (max-width: 900px) {
  .hp-cta-circle-link, .hp-cta-img { width: 240px !important; height: 240px !important; }
  .hp-cta-1::before { display: none; }
}
@media (max-width: 768px) {
  .hp-cta-circle-link, .hp-cta-img { width: 220px !important; height: 220px !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   COMPREHENSIVE NAV + FOOTER + DECORATION UPDATE
   ═══════════════════════════════════════════════════════════════════ */

/* ── Top bar: social icons on right ──────────────────────────────── */
.top-bar-inner {
  justify-content: space-between !important;
}
.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 dropdown ────────────────────────────────────────────── */
.top-nav { position: relative; }
.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: .78rem;
  white-space: nowrap;
}
.top-nav-dropdown a:hover { color: #fff; background: rgba(255,255,255,.08); }

/* ── Main nav: larger text ───────────────────────────────────────── */
.main-nav-links a {
  font-size: 1rem !important;
  font-weight: 500 !important;
  padding: .5rem 1.1rem !important;
}

/* ── CSS dropdown menus ──────────────────────────────────────────── */
.has-dropdown { position: relative; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid #e0e4ef;
  border-radius: 8px;
  min-width: 220px;
  padding: .5rem 0;
  z-index: 2000;
  list-style: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown li a {
  display: block;
  padding: .6rem 1.25rem;
  color: #333 !important;
  font-size: .9rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-decoration: none;
  transition: background .12s, color .12s;
  white-space: nowrap;
}
.nav-dropdown li a:hover { background: #f4f6fb; color: #4660a9 !important; text-decoration: none; }
.has-dropdown > a::after {
  content: ' ▾';
  font-size: .65em;
  opacity: .6;
}

/* ── Donate button: orange, larger, pill ─────────────────────────── */
.main-donate-btn {
  background: #e07919 !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  padding: .7rem 1.75rem !important;
  border-radius: 50px !important;
  letter-spacing: .04em !important;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: background .15s, transform .1s;
}
.main-donate-btn:hover {
  background: #c0641a !important;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
}
.main-donate-btn img { height: 20px; width: auto; filter: brightness(0) invert(1); }

/* ── CTA links: plain text with arrow ───────────────────────────── */
.hp-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #e07919 !important;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  background: none !important;
  letter-spacing: .03em;
  transition: gap .2s;
}
.hp-cta-link:hover { text-decoration: underline; gap: .75rem; }
.hp-cta-link span { font-size: 1.1em; }

/* ── CTA row 2: decorative images ────────────────────────────────── */
.hp-cta-2 {
  position: relative;
  overflow: hidden;
}
.hp-cta2-deco-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 340px;
  pointer-events: none;
  z-index: 0;
}
.hp-cta2-deco-left img {
  width: 100%;
  height: auto;
  display: block;
}
.hp-cta2-deco-right {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  pointer-events: none;
  z-index: 0;
  opacity: .85;
}
.hp-cta2-deco-right img { width: 100%; height: auto; display: block; }
.hp-cta-2 .hp-cta-grid-2 { position: relative; z-index: 1; }

/* ── 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;
}

/* ── Footer: layout matching live site ───────────────────────────── */
.hp-footer { background: #4660a9; color: rgba(255,255,255,.9); }

.hp-footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: grid;
  grid-template-columns: 1.8fr 1.5fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}
.hp-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.hp-footer-brand img {
  width: 110px;
  height: auto;
  flex-shrink: 0;
}
.hp-footer-tagline-inline {
  font-size: 1.15rem !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.35;
  margin-bottom: .75rem !important;
}
.hp-footer-brand address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.82);
}
.hp-footer-brand address a { color: rgba(255,255,255,.82); text-decoration: none; }
.hp-footer-brand address a:hover { color: #fff; text-decoration: underline; }
.hp-footer-brand-text { flex: 1; }

.hp-footer-col h4 {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.hp-footer-col p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: .35rem;
}
.hp-footer-note {
  font-size: .85rem !important;
  color: rgba(255,255,255,.55) !important;
  margin-top: .75rem !important;
  line-height: 1.5 !important;
}
.hp-footer-col ul { list-style: none; }
.hp-footer-col ul li { margin-bottom: .5rem; }
.hp-footer-col ul li a {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  text-decoration: none;
  transition: color .15s;
}
.hp-footer-col ul li a:hover { color: #fff; text-decoration: underline; }

/* Footer bottom bar */
.hp-footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,.15);
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hp-footer-bottom {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.hp-footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.hp-footer-bottom a:hover { color: #fff; }

/* Footer social icons: colored circles */
.hp-footer-socials { display: flex; align-items: center; gap: .5rem; }
.ftr-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  text-decoration: none;
  transition: transform .15s, opacity .15s;
  color: #fff;
}
.ftr-social:hover { transform: translateY(-2px); opacity: .9; text-decoration: none; }
.ftr-social svg { width: 16px; height: 16px; }
.ftr-social--fb { background: #1877f2; }
.ftr-social--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.ftr-social--tw { background: #000; }
.ftr-social--li { background: #0a66c2; }

/* ── Responsive updates ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hp-footer-main { grid-template-columns: 1fr 1fr; }
  .hp-footer-brand { grid-column: 1 / -1; }
  .hp-cta2-deco-left { width: 200px; }
  .hp-cta2-deco-right { width: 180px; }
}
@media (max-width: 768px) {
  .top-bar-socials { display: none; }
  .hp-footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
  .hp-footer-brand { flex-direction: column; }
  .hp-footer-bottom-bar { flex-direction: column; gap: .75rem; text-align: center; }
  .hp-cta2-deco-left, .hp-cta2-deco-right { display: none; }
  .has-dropdown > a::after { content: ''; }
  .nav-dropdown { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════
   ROUND 4 FIXES
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. Hero button: handled by base rule above ──────────────────── */

/* ── 2. Top utility bar: larger font ────────────────────────────── */
.top-nav a {
  font-size: .92rem !important;
  padding: .65rem 1rem !important;
}

/* ── 3. Main nav links: larger ──────────────────────────────────── */
.main-nav-links a {
  font-size: 1.15rem !important;
  font-weight: 500 !important;
  padding: .5rem 1.2rem !important;
  letter-spacing: .02em !important;
}
.has-dropdown > a::after { content: ' ▾'; font-size: .7em; opacity: .5; }

/* ── 4. Donate button: larger pill ─────────────────────────────── */
.main-donate-btn {
  font-size: 1.1rem !important;
  padding: .8rem 2rem !important;
  border-radius: 50px !important;
}
.main-donate-btn img { height: 22px !important; }

/* ── 5. Logo overlaps hero (design flair) ───────────────────────── */
.main-nav {
  overflow: visible !important;
  z-index: 100 !important;
}
.main-nav-inner { position: relative; z-index: 100; }
.main-nav-logo img {
  height: 110px !important;
  width: auto !important;
  margin-bottom: -28px;
  position: relative;
  z-index: 101;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.18));
}

/* ── 6. CTA section title: large + black ────────────────────────── */
.hp-cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  letter-spacing: -.01em !important;
  margin-bottom: 3.5rem !important;
}
/* ── 7. Dog/cat deco image: much larger ─────────────────────────── */
.hp-cta2-deco-left {
  width: 520px !important;
  bottom: 0 !important;
  left: -20px !important;
}

/* ── 8. Dropdown: no gap so mouse can reach items ───────────────── */
.nav-dropdown {
  top: 100% !important;
  margin-top: 0 !important;
  padding-top: 6px !important;
}
/* 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;
}
.has-dropdown:hover > .nav-dropdown { display: block; }

/* ── 9. Wavy paw divider: mobile ─────────────────────────────────── */
@media (max-width: 768px) {
  .paw-wave-divider { height: 30px; }
  .pwav-paw { display: none; }
}

/* ── 10. Footer logo: natural size, no clipping ─────────────────── */
.hp-footer-brand img {
  flex-shrink: 0;
  max-width: 199px;
  height: auto;
}

/* ── 11. Footer fonts: larger across the board ──────────────────── */
.hp-footer-tagline-inline {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: .85rem !important;
}
.hp-footer-brand address {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
}
.hp-footer-col h4 {
  font-size: .8rem !important;
  margin-bottom: 1rem !important;
}
.hp-footer-col p, .hp-footer-col ul li a {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
}

/* ── 12. 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); }

/* ── 13. Footer bottom bar social icons: colored ────────────────── */
.ftr-social--fb { background: #1877f2 !important; }
.ftr-social--ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%) !important; }
.ftr-social--tw { background: #000 !important; }
.ftr-social--li { background: #0a66c2 !important; }
.ftr-social { width: 40px !important; height: 40px !important; }
.ftr-social svg { width: 18px !important; height: 18px !important; }
