/* ─── Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

/* ─── Custom properties ─────────────────────────────── */
:root {
  --bg:         #F5EDE2;
  --surface:    #E9D9C6;
  --ink:        #1A1410;
  --ink-muted:  #5C5248;
  --ink-faint:  #A89F96;
  --accent:     #D4622A;
  --accent-h:   #B84E1A;
  --gold:       #C4922A;
  --teal:       #2A9D8F;
  --teal-h:     #1E7A6E;
  --teal-dark:  #0D2E2B;
  --white:      #FDFAF7;
  --border:     rgba(26,20,16,0.1);
  --font-d:     'Cormorant Garamond', Georgia, serif;
  --font-b:     'Outfit', system-ui, sans-serif;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(196,82,42,0.2); }

/* ─── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ─── Typography helpers ─────────────────────────────── */
.label {
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.display {
  font-family: var(--font-d);
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border: none;
  margin: 0;
}

/* ─── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,82,42,0.25);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-h);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(42,157,143,0.30);
}

.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-radius: 0;
  gap: 6px;
}
.btn-ghost:hover { gap: 12px; }
.btn-ghost svg { transition: transform 0.2s var(--ease); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(248,244,239,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-logo-paw {
  width: 34px;
  height: 34px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: all 0.3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; display: flex; }
.mobile-menu a {
  font-family: var(--font-d);
  font-size: 3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

/* ─── Layout helpers ─────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 5%; }

section { padding: 96px 0; }

/* ─── Reveal animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.hero-logo-wrap {
  position: absolute;
  top: 80px;
  left: 0;
  right: 44%;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 5%;
  pointer-events: none;
}
.hero-logo-wrap img {
  height: 200px;
  width: auto;
  max-width: 480px;
  object-fit: contain;
  pointer-events: auto;
}
@media (max-width: 900px) {
  .hero-logo-wrap { right: 0; }
}
@media (max-width: 600px) {
  .hero-logo-wrap img { height: 90px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212,98,42,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(42,157,143,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 45% 45%, rgba(196,146,42,0.10) 0%, transparent 60%);
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  overflow: hidden;
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
@media (max-width: 900px) {
  .hero-photo { display: none; }
}

/* paper texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-kicker-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(4rem, 11vw, 9rem);
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 11ch;
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 36ch;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ─── Stats bar ──────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #1A4A44 100%);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 40px 5%;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--teal); }
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── Mission ────────────────────────────────────────── */
.mission {
  background: var(--bg);
}
.mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-quote {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
}
.mission-quote em { font-style: italic; color: var(--accent); }

/* ─── Card grid ──────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: var(--border);
}
.card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s var(--ease);
}
.card:hover { background: var(--white); }

/* ─── Photo card variant ─────────────────────────────── */
.card.card-photo {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  transition: none;
}
.card.card-photo:hover { background: var(--ink); }

.card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,6,0.92) 0%, rgba(12,8,6,0.45) 55%, rgba(12,8,6,0.08) 100%);
  z-index: 1;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.card.card-photo:hover .card-img img { transform: scale(1.06); }

.card-content {
  position: relative;
  z-index: 2;
  padding: 36px 36px 40px;
  margin-top: auto;
}

.card-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212,98,42,0.18);
  line-height: 1;
  margin-bottom: 20px;
}
.card:nth-child(2) .card-num { color: rgba(42,157,143,0.18); }
.card:nth-child(3) .card-num { color: rgba(196,146,42,0.18); }

.card.card-photo .card-num,
.card.card-photo:nth-child(2) .card-num,
.card.card-photo:nth-child(3) .card-num { color: rgba(255,255,255,0.15); }

.card-title {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.card.card-photo .card-title { color: var(--white); }

.card-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.card.card-photo .card-desc { color: rgba(255,255,255,0.62); }
.card.card-photo .card-content .btn-ghost { color: rgba(255,255,255,0.85); }
.card.card-photo .card-content .btn-ghost:hover { color: var(--white); gap: 12px; }

/* ─── Photo strip ────────────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 300px;
  overflow: hidden;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
  display: block;
}
.photo-strip img:hover { transform: scale(1.04); }
@media (max-width: 600px) {
  .photo-strip { height: 220px; grid-template-columns: 1fr; }
  .photo-strip img:not(:first-child) { display: none; }
}

/* ─── Feature strip ──────────────────────────────────── */
.feature-strip {
  background: var(--surface);
  border-top: 3px solid var(--teal);
  border-bottom: 1px solid var(--border);
}
.feature-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px 5%;
  flex-wrap: wrap;
}
.feature-strip h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 14ch;
}
.feature-strip h2 em { font-style: italic; color: var(--accent); }

/* ─── CTA band ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--accent) 0%, #E8872A 55%, var(--gold) 100%);
  padding: 80px 5%;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
}
.cta-band p { color: rgba(253,250,247,0.75); font-size: 1.1rem; margin-bottom: 36px; }
.cta-band .btn-white {
  background: var(--white);
  color: var(--accent);
  font-weight: 700;
}
.cta-band .btn-white:hover {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* ─── Page header ────────────────────────────────────── */
.page-header {
  padding: 140px 5% 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  font-family: var(--font-d);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 20px 0 24px;
}
.page-header p { font-size: 1.1rem; color: var(--ink-muted); max-width: 48ch; line-height: 1.7; }

/* ─── Donate page ────────────────────────────────────── */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}
.donate-sidebar {
  background: var(--ink);
  border-radius: 8px;
  padding: 48px 40px;
  position: sticky;
  top: 88px;
}
.donate-sidebar h2 {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
}
.donate-sidebar .sub { color: rgba(255,255,255,0.45); font-size: 0.875rem; margin-bottom: 32px; }

.toggle-row {
  display: flex;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px;
  margin-bottom: 24px;
}
.toggle-btn {
  flex: 1;
  padding: 10px;
  font-family: var(--font-b);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  background: transparent;
  color: rgba(255,255,255,0.4);
}
.toggle-btn.active {
  background: var(--accent);
  color: var(--white);
}

.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.amount-btn {
  padding: 16px 8px;
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-align: center;
}
.amount-btn:hover { border-color: var(--accent); color: var(--white); }
.amount-btn.selected {
  border-color: var(--accent);
  background: rgba(196,82,42,0.15);
  color: var(--white);
}

.custom-input {
  position: relative;
  margin-bottom: 24px;
}
.custom-input span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.3);
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 600;
  pointer-events: none;
}
.custom-input input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 14px 14px 14px 28px;
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.custom-input input:focus { border-color: var(--accent); }
.custom-input input::placeholder { color: rgba(255,255,255,0.2); }

.impact-line {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  min-height: 1.2em;
  font-style: italic;
}

.donate-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.donate-btn:hover { background: var(--accent-h); box-shadow: 0 6px 20px rgba(196,82,42,0.3); }
.secure-note {
  text-align: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  margin-top: 14px;
}

/* ─── Inline form links ──────────────────────────────── */
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  gap: 20px;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  color: var(--ink);
}
.link-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,82,42,0.1);
}
.link-card-text h3 {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.link-card-text p { font-size: 0.85rem; color: var(--ink-muted); }
.link-card-arrow { color: var(--accent); font-size: 1.5rem; flex-shrink: 0; }

/* ─── Role cards ─────────────────────────────────────── */
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px;
  background: var(--border);
}
.role-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.role-card:hover { background: var(--white); }
.role-icon { font-size: 1.8rem; margin-bottom: 16px; }
.role-title {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.role-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; margin-bottom: 14px; }
.role-commit { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }

/* ─── Contact block ──────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.contact-item h3 { font-family: var(--font-d); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.contact-item a, .contact-item p { font-size: 0.9rem; color: var(--ink-muted); transition: color 0.2s; line-height: 1.6; }
.contact-item a:hover { color: var(--accent); }

/* ─── Petfinder embed ────────────────────────────────── */
.pet-embed { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
.faq-item h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.faq-item p { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.7; }

/* ─── Timeline ───────────────────────────────────────── */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -32px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-year { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.timeline-title { font-family: var(--font-d); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.timeline-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.65; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  background: #1C1C1C;
  color: rgba(255,255,255,0.85);
  padding: 72px 5% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo-paw {
  width: 30px; height: 30px;
  background: var(--accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  opacity: 0.9;
}
.mission-photo {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 28px;
}
.mission-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .donate-layout { grid-template-columns: 1fr; }
  .donate-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 120px 5% 64px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-body { flex-direction: column; align-items: flex-start; }
  .feature-strip-inner { flex-direction: column; align-items: flex-start; }
}
