:root {
  --orange: #e8793a;
  --orange-light: #f5a06a;
  --orange-pale: #fdf0e8;
  --dark: #1c1a18;
  --warm-gray: #6b6560;
  --light-gray: #f7f5f3;
  --white: #ffffff;
  --border: #e8e4df;
  --shadow: 0 4px 24px rgba(28, 26, 24, 0.1);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

a {
  color: var(--orange)
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo .paw {
  font-size: 1.5rem;
}

.nav-logo-image {
  display: none;
  height: 54px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition:
    background 0.2s,
    transform 0.15s !important;
}
.nav-cta:hover {
  background: #d06930 !important;
  transform: translateY(-1px);
}

/* ── PAGE SECTIONS ── */
section {
  display: none;
}
section.active {
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: flex;
  flex-direction: column;
}

.hero-top {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "tag visual"
    "content visual";
  align-items: start;
  padding: 80px 5% 60px;
  gap: 20px 60px;
}

.hero-content {
  grid-area: content;
  justify-self: start;
}

.hero-tag {
  grid-area: tag;
  justify-self: start;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero p {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: #d06930;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-visual {
  grid-area: visual;
  align-self: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-wrap {
  width: 420px;
  height: 420px;
  background: var(--orange-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo-wrap img {
  width: 340px;
  height: 340px;
  object-fit: contain;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.hero-funds-note {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 5% 52px;
  position: relative;
  background:
    radial-gradient(circle at 15% 50%, rgba(232, 121, 58, 0.18), transparent 32%),
    linear-gradient(135deg, #1c1a18 0%, #2b241f 100%);
}
.hero-funds-note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 121, 58, 0.5),
    transparent
  );
}
.hero-funds-note__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 0 0;
}
.hero-funds-note__icon {
  flex-shrink: 0;
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
  border: 3px solid rgba(232, 121, 58, 0.32);
  border-radius: 24px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}
.hero-funds-note__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-funds-note__copy {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}
.hero-funds-note__value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: white;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.hero-funds-note p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  max-width: 620px;
}

/* ── IMPACT CAROUSEL ── */
.impact-carousel-section {
  padding: 104px 5% 96px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f6 100%);
}
.impact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: start;
  width: 100%;
}
.impact-copy-column {
  display: grid;
  gap: 22px;
  align-content: start;
}
.impact-intro {
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.impact-intro .section-title {
  margin-bottom: 18px;
}
.impact-intro .section-lead {
  margin: 0;
  max-width: 48ch;
}
.impact-kicker {
  margin-top: 18px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.impact-current-story {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  max-width: 100%;
  margin: 0;
}
.impact-current-story h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.impact-current-story p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  white-space: pre-line;
}
.impact-stage {
  max-width: 100%;
  margin: 0;
  width: 100%;
}
.impact-carousel {
  max-width: 100%;
}
.impact-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(28, 26, 24, 0.08);
}
.impact-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.impact-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.impact-slide img {
  width: 100%;
  aspect-ratio: 7 / 6;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.impact-slide-main-photo {
  cursor: zoom-in;
}
.impact-slide-main-photo:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -6px;
}
.impact-slide-gallery {
  display: none;
}
.impact-controls {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.impact-nav {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(28, 26, 24, 0.08);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.impact-nav:hover {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}
.impact-pause {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--dark);
  padding: 0 15px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(28, 26, 24, 0.08);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.impact-pause:hover,
.impact-pause[aria-pressed="true"] {
  background: var(--orange);
  color: white;
  transform: translateY(-2px);
}
.impact-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.impact-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #d9d2cb;
  cursor: pointer;
  transition:
    width 0.2s,
    background 0.2s;
}
.impact-dot.active {
  width: 26px;
  background: var(--orange);
}
.impact-gallery-actions {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.impact-gallery-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(28, 26, 24, 0.74);
  color: white;
  padding: 0 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(28, 26, 24, 0.22);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.impact-gallery-toggle:hover {
  background: var(--orange);
  color: white;
  transform: translateY(2px);
}
.impact-photo-gallery {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.impact-photo-button {
  display: block;
  border: none;
  border-radius: 18px;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}
.impact-photo-button img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  border: 1px solid var(--border);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(28, 26, 24, 0.08);
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.impact-photo-button:hover img {
  box-shadow: 0 16px 30px rgba(28, 26, 24, 0.14);
  transform: translateY(-2px);
}
.impact-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(28, 26, 24, 0.9);
}
.impact-lightbox[hidden] {
  display: none;
}
.impact-lightbox img {
  max-width: min(100%, 1180px);
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.impact-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.impact-lightbox-close:hover {
  background: var(--orange);
}
.impact-btn {
  color: var(--dark);
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.15s;
}
.impact-btn:hover {
  color: var(--orange);
}

/* ── FOUNDERS ── */
.founders-section {
  padding: 96px 5%;
  background:
    radial-gradient(circle at top left, rgba(232, 121, 58, 0.2), transparent 34%), linear-gradient(135deg, #1c1a18 0%, #312923 100%);
  color: white;
  text-align: center;
}
.founders-section .section-title {
  color: white;
}
.founders-section .section-lead {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 46px;
}
.founders-intro {
  max-width: 760px;
  margin: 0 auto;
}
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 0 auto;
}
.founder-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
  text-align: left;
}
.founder-card img {
  width: 100%;
  height: 320px;
  display: block;
  object-fit: cover;
}
.founder-card-body {
  padding: 26px;
}
.founder-role {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.founder-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  margin-bottom: 10px;
}
.founder-card p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* ── ADOPT / FOSTER ── */
.adopt-foster-section {
  padding: 96px 5%;
  background: var(--light-gray);
  text-align: center;
}
.adopt-foster-intro {
  max-width: 760px;
  margin: 0 auto;
}
.adopt-foster-section .section-lead {
  margin-bottom: 48px;
}
.adopt-foster-forms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.form-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(28, 26, 24, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 121, 58, 0.35);
}
.form-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
.form-card p {
  color: var(--warm-gray);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.form-card-action {
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.adopt-foster-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding: 16px 18px 16px 24px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(28, 26, 24, 0.08);
}
.adopt-foster-cta p {
  color: var(--dark);
  font-weight: 700;
}

/* ── RESOURCES / PARTNERS ── */
.resources-hero {
  padding: 128px 5% 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: 54px;
  align-items: end;
  background:
    radial-gradient(circle at 82% 26%, rgba(232, 121, 58, 0.26), transparent 30%),
    linear-gradient(135deg, #1c1a18 0%, #30271f 100%);
  color: white;
}
.resources-hero .section-title {
  color: white;
  max-width: 760px;
}
.resources-hero .section-lead {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0;
}
.resources-hero__card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.resources-hero__card span {
  display: block;
  color: var(--orange-light);
  font-weight: 800;
  margin-bottom: 10px;
}
.resources-hero__card p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.resources-section {
  padding: 88px 5%;
  background: linear-gradient(180deg, #faf8f6 0%, var(--light-gray) 100%);
}
.resources-intro,
.partners-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.resources-feature {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(28, 26, 24, 0.08);
  text-align: left;
}
.resource-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.resources-feature h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.18;
  margin-bottom: 12px;
}
.resources-feature p {
  color: var(--warm-gray);
  line-height: 1.75;
}
.clinic-directory {
  max-width: 1120px;
  margin: 42px auto 0;
  display: grid;
  gap: 28px;
}
.clinic-county {
  padding: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 14px 34px rgba(28, 26, 24, 0.06);
}
.clinic-county h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
.clinic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.clinic-card {
  padding: 20px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.clinic-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.clinic-card p {
  color: var(--dark);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.clinic-card span {
  display: block;
  color: var(--warm-gray);
  font-size: 0.86rem;
  line-height: 1.6;
}
.partners-section {
  padding: 90px 5%;
  background: white;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.partner-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--light-gray);
}
.partner-card--featured {
  background:
    radial-gradient(circle at top right, rgba(232, 121, 58, 0.18), transparent 36%),
    #fff8f2;
  border-color: rgba(232, 121, 58, 0.22);
}
.partner-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 16px;
  background: white;
  font-size: 1.5rem;
  box-shadow: 0 10px 24px rgba(28, 26, 24, 0.06);
}
.partner-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.partner-card p {
  flex: 1;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 22px;
}
.partner-tag {
  width: fit-content;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.resources-cta {
  padding: 78px 5%;
  text-align: center;
  background: var(--orange-pale);
}
.resources-cta .section-lead {
  margin-bottom: 30px;
}

/* ── HOME DONATE CTA ── */
.home-donate-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  background:
    linear-gradient(115deg, rgba(28, 26, 24, 0.96) 0%, rgba(28, 26, 24, 0.96) 55%, rgba(232, 121, 58, 0.96) 55%, rgba(232, 121, 58, 0.96) 100%),
    var(--dark);
  color: white;
}
.home-donate-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 5%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: center;
  text-align: left;
}
.home-donate-inner::after {
  content: "100%";
  justify-self: end;
  font-family: "Playfair Display", serif;
  font-size: clamp(5.8rem, 13vw, 11rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
  color: white;
  text-shadow: 0 18px 40px rgba(28, 26, 24, 0.24);
}
.home-donate-section .section-title {
  max-width: 620px;
  color: white;
  margin-bottom: 18px;
}
.home-donate-section .section-eyebrow {
  color: var(--orange-light);
}
.home-donate-section .section-lead {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
  margin: 0 0 34px;
}
.home-donate-section .btn-primary {
  background: white;
  color: var(--dark);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.home-donate-section .btn-primary:hover {
  background: var(--orange-pale);
  color: var(--dark);
}

/* ── SOCIAL ── */
.social-section {
  padding: 90px 5%;
  text-align: center;
  background: linear-gradient(180deg, #f8f6f4 0%, #f3efeb 100%);
}
.social-section .section-lead {
  margin-bottom: 24px;
  max-width: 680px;
}
.social-card {
  margin: 0 auto;
  max-width: 760px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 18px 40px rgba(28, 26, 24, 0.08);
  display: grid;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.social-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -140px;
  right: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 121, 58, 0.22) 0%, rgba(232, 121, 58, 0) 72%);
  pointer-events: none;
}
.social-card-copy {
  position: relative;
  z-index: 1;
}
.social-card-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.social-card-copy p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.social-highlights {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-highlights span {
  background: var(--orange-pale);
  color: var(--orange);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.social-row--center {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.social-section .social-btn--facebook {
  width: fit-content;
  min-height: 52px;
  height: auto;
  padding: 15px 30px;
  gap: 11px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1b74e4 0%, #0f5fc9 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(27, 116, 228, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}
.social-section .social-btn--facebook:hover {
  background: linear-gradient(135deg, #1b74e4 0%, #0f5fc9 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(27, 116, 228, 0.36);
  filter: saturate(1.08);
}
.social-section .social-btn--facebook .social-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.social-section .social-btn--instagram {
  width: fit-content;
  min-height: 52px;
  height: auto;
  padding: 15px 30px;
  gap: 11px;
  border-radius: 50px;
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(221, 42, 123, 0.28);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}
.social-section .social-btn--instagram:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(221, 42, 123, 0.34);
  filter: saturate(1.08);
}
.social-section .social-btn--instagram .social-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
.social-contact-alt {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 22px;
}
.social-or {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--warm-gray);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.social-or::before,
.social-or::after {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--border);
}
.social-contact-alt p {
  color: var(--warm-gray);
  font-size: 0.92rem;
}
.social-email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.2s,
    transform 0.15s;
}
.social-email-link:hover {
  color: #d06930;
  transform: translateY(-1px);
}
.social-email-link .social-icon {
  width: 19px;
  height: 19px;
}

/* ── ABOUT / MISSION ── */
.about-hero {
  padding: 100px 5% 50px;
  text-align: center;
  background: var(--light-gray);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 5% 80px;
  background: var(--light-gray);
}

.mission-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mission-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.mission-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Why we do it */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-image {
  background: var(--dark);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}

.why-image-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2c1810 0%, #1c1a18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 60px;
}

.pull-quote {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: white;
  line-height: 1.5;
  border-left: 3px solid var(--orange);
  padding-left: 24px;
}

.pull-quote-attr {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 24px;
}

.why-content {
  padding: 80px 60px;
}

.why-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 24px;
}

.why-content p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 18px;
}

.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.value-chip {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

/* ── DONATE ── */
.donate-hero {
  background: var(--dark);
  color: white;
  padding: 100px 5% 70px;
  text-align: center;
}
.donate-hero .section-title {
  color: white;
}
.donate-hero .section-lead {
  color: rgba(255, 255, 255, 0.6);
}

.donate-purposes {
  padding: 0 5% 80px;
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.purpose-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.purpose-card:hover,
.purpose-card.selected {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.purpose-card .p-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.purpose-card h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.purpose-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.purpose-card.selected p {
  color: rgba(255, 255, 255, 0.85);
}

.donate-options-section {
  padding: 86px 5%;
  background: linear-gradient(180deg, #ffffff 0%, var(--light-gray) 100%);
}
.donate-options-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.donate-options-intro .section-lead {
  margin-bottom: 0;
}
.donate-options-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.donate-option-card {
  display: flex;
  flex-direction: column;
  flex: 0 1 calc((100% - 48px) / 3);
  max-width: calc((100% - 48px) / 3);
  min-width: min(280px, 100%);
  min-height: 100%;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 42px rgba(28, 26, 24, 0.08);
}
.donate-option-card--featured {
  background:
    radial-gradient(circle at top right, rgba(61, 149, 206, 0.18), transparent 38%),
    white;
  border-color: rgba(61, 149, 206, 0.24);
}
.donate-option-label {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.donate-brand {
  min-height: 78px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.donate-brand--venmo {
  background: #3d95ce;
  color: white;
  font-size: 2.45rem;
}
.donate-brand--amazon {
  background: #232f3e;
  color: #ff9900;
  font-size: 2.25rem;
}
.donate-brand--generic {
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 2.25rem;
}
.donate-option-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 12px;
}
.donate-option-card p {
  flex: 1;
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.donate-option-card .btn-primary,
.donate-option-card .btn-ghost {
  width: fit-content;
  margin-top: 24px;
}
.donate-qr-frame {
  width: 238px;
  height: 238px;
  margin-top: auto;
  padding: 9px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  box-shadow: 0 14px 30px rgba(28, 26, 24, 0.1);
}
.donate-qr-frame img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
}

/* Donation form */
.donate-form-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.donate-form-wrap h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.donate-form-wrap .sub {
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.amount-btn {
  border: 2px solid var(--border);
  background: white;
  border-radius: 10px;
  padding: 14px 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.amount-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.amount-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.donate-btn {
  width: 100%;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  margin-top: 8px;
}
.donate-btn:hover {
  background: #d06930;
  transform: translateY(-2px);
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.78rem;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Campaigns */
.campaigns-section {
  padding: 80px 5%;
  background: var(--light-gray);
}

.campaigns-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}
.campaigns-section .sub {
  text-align: center;
  color: var(--warm-gray);
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.campaign-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.campaign-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.campaign-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.campaign-body {
  padding: 24px;
}
.campaign-body .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.campaign-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.campaign-body p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 18px;
  line-height: 1.6;
}

.progress-wrap {
  margin-bottom: 14px;
}
.progress-bar-bg {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 8px;
}
.progress-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--orange);
  transition: width 1s ease;
}
.progress-nums {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--warm-gray);
}
.progress-nums strong {
  color: var(--dark);
}

.campaign-donate-btn {
  width: 100%;
  background: var(--orange-pale);
  color: var(--orange);
  border: none;
  border-radius: 50px;
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.campaign-donate-btn:hover {
  background: var(--orange);
  color: white;
}

/* ── TEAM & CONTACT ── */
.team-hero {
  padding: 100px 5% 60px;
  background: var(--light-gray);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 5% 80px;
  background: var(--light-gray);
}

.team-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-grid--founders {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.team-founder-card {
  overflow: hidden;
  padding: 0 0 28px;
}
.team-founder-photo {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  margin-bottom: 24px;
}
.team-founder-card h3,
.team-founder-card .role,
.team-founder-card p {
  margin-left: 24px;
  margin-right: 24px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.team-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* Volunteers */
.volunteer-banner {
  background: var(--orange);
  padding: 60px 5%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.volunteer-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 8px;
}
.volunteer-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.btn-white {
  background: white;
  color: var(--orange);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.15s;
}
.btn-white:hover {
  transform: translateY(-2px);
}

/* Contact */
.contact-simple-section {
  min-height: calc(100vh - 72px);
  padding: 128px 5% 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(232, 121, 58, 0.2), transparent 34%),
    var(--light-gray);
  text-align: center;
}
.contact-simple-card {
  width: min(100%, 560px);
  display: grid;
  gap: 16px;
  margin-top: 50px;
}
.contact-simple-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: white;
  color: var(--dark);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(28, 26, 24, 0.08);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.contact-simple-link:hover {
  border-color: rgba(232, 121, 58, 0.38);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.contact-simple-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 900;
}
.contact-simple-icon--instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  color: white;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.contact-simple-link strong {
  display: block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-section {
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 16px;
}
.contact-info p {
  color: var(--warm-gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-detail .c-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange-pale);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.contact-detail p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  margin-bottom: 0;
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--light-gray);
  border-radius: 24px;
  padding: 48px 40px;
}
.contact-form-wrap h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 28px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: white;
  padding: 60px 5% 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin: 16px 0 20px;
  max-width: 280px;
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: white;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--orange);
}

.footer-social {
  margin-top: 4px;
}
.footer-social h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}
.social-row {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn:hover {
  background: #1877f2;
  color: white;
}
.social-btn--instagram:hover {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
}
.social-icon {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ── UTILITIES ── */
.text-center {
  text-align: center;
}
.mt-auto {
  margin-top: auto;
}

/* Improve donate section visual divide */
.donate-section-white {
  background: white;
}

/* ── IMPACT STORIES PAGE ── */
.stories-hero {
  background: var(--dark);
  color: white;
  padding: 128px 5% 72px;
  text-align: center;
}
.stories-hero .section-title {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.stories-hero .section-lead {
  color: rgba(255, 255, 255, 0.68);
  max-width: 640px;
  margin: 0 auto;
}
.impact-stories-section {
  display: block;
  padding: 72px 5% 96px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f6 100%);
}
.impact-stories-kicker {
  text-align: center;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 auto 56px;
  max-width: 48ch;
}
.impact-stories-list {
  display: grid;
  gap: 72px;
  max-width: 1100px;
  margin: 0 auto;
}
.impact-story-article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}
.impact-story-article:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.impact-story-article--reverse .impact-story-article__media {
  order: 2;
}
.impact-story-article--reverse .impact-story-article__body {
  order: 1;
}
.impact-story-article__media img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 7 / 6;
  object-fit: cover;
  box-shadow: 0 16px 34px rgba(28, 26, 24, 0.08);
  border: 1px solid var(--border);
}
.impact-story-article__gallery {
  margin-top: 18px;
}
.impact-story-gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  color: var(--dark);
  padding: 0 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.impact-story-gallery-toggle::after {
  content: "↓";
  font-size: 0.85rem;
  transition: transform 0.2s;
}
.impact-story-gallery-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.impact-story-gallery-toggle:hover,
.impact-story-gallery-toggle[aria-expanded="true"] {
  background: var(--orange-pale);
  border-color: var(--orange);
  color: var(--orange);
}
.impact-story-article__gallery-panel {
  margin-top: 12px;
}
.impact-story-article__gallery-panel[hidden] {
  display: none;
}
.impact-story-article__gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 10px;
}
.impact-story-article__gallery-grid img {
  aspect-ratio: 1;
  border-radius: 14px;
  box-shadow: none;
}
.impact-story-article__number {
  display: inline-block;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.impact-story-article__body h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  margin-bottom: 18px;
}
.impact-story-article__body p {
  color: var(--warm-gray);
  font-size: 0.96rem;
  line-height: 1.8;
}
.impact-stories-cta {
  padding: 72px 5%;
  text-align: center;
  background: var(--orange-pale);
  border-top: 1px solid var(--border);
}
.impact-stories-cta .section-lead {
  max-width: 520px;
  margin: 0 auto 28px;
}

/* ── STORIES (legacy filters) ── */
.story-filter {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 9px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "DM Sans", sans-serif;
}
.story-filter:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}
.story-filter.active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.story-card.hidden {
  display: none;
}
.story-emoji-wrap {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.story-body {
  padding: 22px;
}
.story-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.stag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.stag.dog {
  background: var(--orange-pale);
  color: var(--orange);
}
.stag.cat {
  background: #eff8ff;
  color: #3a7ec9;
}
.stag.homeless {
  background: #fffbea;
  color: #b07d10;
}
.stag.medical {
  background: #fff0f0;
  color: #e05252;
}
.stag.adopted {
  background: #f0fff4;
  color: #3a9e5f;
}
.story-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
.story-body p {
  font-size: 0.83rem;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 14px;
}
.story-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--warm-gray);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

/* Nav active state */
.nav-links a.active {
  color: var(--orange);
  font-weight: 600;
}
/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 16px 5%;
  box-shadow: var(--shadow);
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-logo {
    gap: 0;
  }
  .nav-logo-image {
    display: block;
  }
  .nav-logo .paw,
  .nav-logo-text {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 5% 40px;
    text-align: center;
  }
  .hero-tag {
    order: 1;
  }
  .hero-visual {
    order: 2;
    margin: 4px 0 20px;
  }
  .hero-logo-wrap {
    width: 200px;
    height: 200px;
  }
  .hero-logo-wrap img {
    width: 160px;
    height: 160px;
  }
  .hero-content {
    order: 3;
    width: 100%;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-funds-note__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-funds-note__copy {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
  }
  .impact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .impact-copy-column {
    gap: 18px;
  }
  .impact-current-story {
    padding: 20px 18px;
    text-align: center;
  }
  .impact-intro {
    text-align: center;
  }
  .impact-intro .section-lead {
    margin: 0 auto;
  }
  .impact-slide img {
    aspect-ratio: 4 / 5;
  }
  .adopt-foster-section {
    padding: 72px 5%;
  }
  .adopt-foster-forms {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .adopt-foster-cta {
    flex-direction: column;
    border-radius: 24px;
    padding: 22px;
  }
  .resources-hero {
    grid-template-columns: 1fr;
  }
  .resources-feature,
  .clinic-list,
  .partners-grid {
    grid-template-columns: 1fr;
  }
  .resources-feature {
    text-align: center;
  }
  .resource-pill,
  .resources-feature .btn-primary {
    margin-left: auto;
    margin-right: auto;
  }
  .home-donate-section {
    background:
      linear-gradient(180deg, rgba(28, 26, 24, 0.98) 0%, rgba(28, 26, 24, 0.98) 62%, rgba(232, 121, 58, 0.96) 62%, rgba(232, 121, 58, 0.96) 100%),
      var(--dark);
  }
  .home-donate-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 5%;
    text-align: center;
  }
  .home-donate-inner::after {
    justify-self: center;
  }
  .home-donate-section .section-title,
  .home-donate-section .section-lead {
    margin-left: auto;
    margin-right: auto;
  }
  .founders-section {
    padding: 72px 5%;
  }
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .founder-card img {
    height: 280px;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .why-section {
    grid-template-columns: 1fr;
  }
  .why-image {
    min-height: 280px;
  }
  .why-content {
    padding: 40px 5%;
  }
  .donate-purposes {
    grid-template-columns: repeat(2, 1fr);
  }
  .donate-form-section {
    grid-template-columns: 1fr;
    padding: 40px 5%;
  }
  .donate-options-section {
    padding: 72px 5%;
  }
  .donate-options-grid {
    max-width: 100%;
  }
  .donate-option-card {
    flex: 0 1 100%;
    max-width: 560px;
  }
  .campaigns-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section {
    grid-template-columns: 1fr;
    padding: 40px 5%;
  }
  .stories-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .volunteer-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .volunteer-banner .btn-white {
    margin: 0 auto;
  }
  .social-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
}
@media (max-width: 600px) {
  .hero-funds-note {
    padding: 0 5% 38px;
  }
  .hero-funds-note__inner {
    gap: 16px;
    padding-top: 28px;
  }
  .hero-funds-note p {
    max-width: none;
  }
  .resources-hero {
    padding: 112px 5% 64px;
  }
  .resources-section,
  .partners-section,
  .resources-cta {
    padding: 64px 5%;
  }
  .impact-carousel-section {
    padding: 72px 5% 64px;
  }
  .stories-hero {
    padding: 112px 5% 56px;
  }
  .impact-stories-section {
    padding: 56px 5% 72px;
  }
  .impact-story-article,
  .impact-story-article--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 56px;
  }
  .impact-story-article--reverse .impact-story-article__media,
  .impact-story-article--reverse .impact-story-article__body {
    order: unset;
  }
  .impact-current-story h3 {
    font-size: 1.3rem;
  }
  .impact-current-story p {
    font-size: 0.9rem;
  }
  .impact-controls {
    gap: 8px;
    flex-wrap: wrap;
  }
  .impact-nav {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .impact-pause {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.8rem;
  }
  .impact-photo-gallery {
    grid-template-columns: 1fr;
  }
  .impact-story {
    padding: 22px 20px 24px;
  }
  .donate-purposes {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-section .social-btn--facebook,
  .social-section .social-btn--instagram {
    width: 100%;
    padding-inline: 20px;
    white-space: normal;
  }
}
