/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Pulled from logo */
  --green-dark:   #2a5c2e;
  --green-mid:    #3d7a42;
  --green-light:  #5a9e5f;
  --blue-dna:     #1b6aaa;
  --brown-root:   #5c3d1e;
  --brown-light:  #8b6340;

  --color-bg:        #ffffff;
  --color-bg-alt:    #f7f9f7;
  --color-bg-dark:   #1a2e1c;
  --color-text:      #1c2b1d;
  --color-muted:     #5a6b5b;
  --color-border:    #dde8dd;
  --color-donate-bg: #1b3a4b;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.2s ease;

  --container: 1120px;
  --pad:        1.25rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}

img { max-width: 100%; display: block; }

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--green-mid); }

/* ===========================
   FOCUS STYLES (keyboard nav)
   =========================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green-mid);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -9999px;
  left: 1rem;
  background: var(--green-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

ul { list-style: none; }

/* ===========================
   UTILITIES
   =========================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: 5.5rem; }
.section--alt { background: var(--color-bg-alt); }

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 0.6rem;
}

.section__lead {
  text-align: center;
  color: var(--color-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  letter-spacing: 0.01em;
}

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

.btn--ghost {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--ghost:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn--donate {
  background: var(--color-donate-bg);
  color: #fff;
  border-color: var(--color-donate-bg);
  width: 100%;
  text-align: center;
  font-size: 1.05rem;
  padding: 0.85rem 1.6rem;
}
.btn--donate:hover {
  background: #264d60;
  border-color: #264d60;
  color: #fff;
}

/* ===========================
   HEADER / NAV
   =========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 0.65rem;
}

.nav__logo img {
  height: 42px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav__links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
  align-items: center;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}
.nav__links a:hover { color: var(--green-dark); }
.nav__links a.active { color: var(--green-dark); font-weight: 600; }

.nav__donate {
  background: var(--green-dark);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav__donate:hover {
  background: var(--green-mid) !important;
  color: #fff !important;
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--color-text);
  margin-left: auto;
}

.nav__mobile {
  display: none;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 1rem var(--pad);
}
.nav__mobile ul { display: flex; flex-direction: column; gap: 0.75rem; }
.nav__mobile a { font-weight: 500; font-size: 1rem; color: var(--color-text); }
.nav__mobile.open { display: block; }

/* ===========================
   HERO
   =========================== */
.hero {
  /* Warm parchment — multiply blend mode works perfectly on this */
  background: #f2f4ee;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* The tree — absolutely positioned, intentionally massive, bleeds off all edges */
.hero__tree {
  position: absolute;
  /* Anchor the roots near the bottom-right, canopy bleeds off the top */
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  height: 124vh;
  width: auto;
  /* multiply: white background becomes invisible, tree colors stay vivid */
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  /* Very subtle warm tint to integrate with the parchment background */
  filter: saturate(1.08) brightness(0.97);
  /* Fade out at the bottom and right edges — no hard cutoff */
  mask-image: linear-gradient(
    to bottom,
    black 55%,
    rgba(0,0,0,0.6) 78%,
    transparent 96%
  ),
  linear-gradient(
    to left,
    black 60%,
    rgba(0,0,0,0.4) 88%,
    transparent 100%
  );
  mask-composite: intersect;
  -webkit-mask-image: linear-gradient(
    to bottom,
    black 55%,
    rgba(0,0,0,0.6) 78%,
    transparent 96%
  ),
  linear-gradient(
    to left,
    black 60%,
    rgba(0,0,0,0.4) 88%,
    transparent 100%
  );
  -webkit-mask-composite: source-in;
}

/* Gradient veil — glows from left, fading to transparent.
   Keeps the text area legible without hiding the tree overlap entirely. */
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      #f2f4ee 28%,
      rgba(242,244,238,0.82) 48%,
      rgba(242,244,238,0.28) 65%,
      transparent 80%
    );
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-block: 8rem;
}

.hero__text {
  max-width: 560px;
}

/* Thin green rule above eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--green-dark);
  flex-shrink: 0;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  font-weight: 700;
  line-height: 1.02;
  color: #0e1e10;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--green-dark);
}

/* Short accent rule under headline */
.hero__rule {
  width: 52px;
  height: 3px;
  background: linear-gradient(to right, var(--green-dark), var(--blue-dna));
  border: none;
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: 1.05rem;
  color: #3d4f3e;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 460px;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn--hero-primary {
  background: var(--green-dark);
  color: #fff;
  border: 2px solid var(--green-dark);
  box-shadow: 0 4px 20px rgba(42,92,46,0.25);
}
.btn--hero-primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #fff;
  box-shadow: 0 6px 28px rgba(42,92,46,0.32);
}

.btn--hero-ghost {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn--hero-ghost:hover {
  background: var(--green-dark);
  color: #fff;
}

.hero__note {
  font-size: 0.76rem;
  color: #4a5e4b;
  letter-spacing: 0.04em;
}

/* Animated scroll chevron — bottom center */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: clamp(2rem, 8vw, 7rem);
  width: 30px;
  height: 30px;
  color: rgba(42,92,46,0.7);
  animation: bob 2.4s ease-in-out infinite;
  transition: color var(--transition);
  z-index: 3;
}
.hero__scroll:hover { color: var(--green-dark); }
.hero__scroll svg { width: 100%; height: 100%; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ===========================
   MISSION
   =========================== */
.mission__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.mission-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.mission-card:hover {
  box-shadow: 0 8px 32px rgba(42,92,46,0.08);
  border-color: var(--green-light);
}

.mission-card__icon {
  width: 44px;
  height: 44px;
  color: var(--green-dark);
  margin-bottom: 1rem;
}
.mission-card__icon svg { width: 100%; height: 100%; }

.mission-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--color-text);
}

.mission-card p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ===========================
   PROCESS
   =========================== */
.process {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-inline: auto;
  counter-reset: none;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process__step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}

.process__step:last-child { padding-bottom: 0; }

.process__num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--green-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.process__body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  padding-top: 0.9rem;
  color: var(--color-text);
}

.process__body p {
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* ===========================
   LAW ENFORCEMENT
   =========================== */
.section--le .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.le__badge {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.le__intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.le__intro p {
  color: var(--color-muted);
  margin-bottom: 1.25rem;
  font-size: 0.97rem;
}

.le__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.le__list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.le__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.le__form-wrap {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.le__form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.form__note {
  font-size: 0.88rem;
  color: var(--color-muted);
  margin-bottom: 1.5rem;
}

.form__privacy {
  font-size: 0.82rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

/* ===========================
   FORMS (SHARED)
   =========================== */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-group label span {
  color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(61,122,66,0.12);
}

/* ===========================
   DONATE
   =========================== */
.section--donate {
  background: linear-gradient(160deg, #1a2e1c 0%, #1b3a4b 100%);
  color: #fff;
}

.donate__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}

.donate__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.donate__text p {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1rem;
  font-size: 0.97rem;
}

.donate__list {
  margin: 0.25rem 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.donate__list li {
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
}

.donate__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--green-light);
}

.donate__nonprofit-note {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.8) !important;
  font-style: italic;
}

.donate__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  text-align: center;
}

.donate__card__label {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.donate__card__sub {
  font-size: 0.9rem !important;
  color: rgba(255,255,255,0.88) !important;
  margin-bottom: 1.5rem !important;
}

.donate__card__alt {
  margin-top: 1rem;
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.82) !important;
  margin-bottom: 0 !important;
}

.donate__card__alt a {
  color: var(--green-light);
  text-decoration: underline;
}

/* ===========================
   ABOUT
   =========================== */
.about__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-dark);
  border: 1.5px solid var(--green-dark);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.about__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--color-muted);
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
}

.about__text p:last-child { margin-bottom: 0; }

.about__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}

/* ===========================
   CONTACT
   =========================== */
.contact__inner {
  max-width: 680px;
  margin-inline: auto;
}

.contact__inner .section__title { text-align: left; }
.contact__inner .section__lead { text-align: left; margin-inline: 0; }

.contact__direct {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}
.contact__direct a { text-decoration: underline; font-weight: 600; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.75);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-block: 3.5rem 2rem;
}

.footer__logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  max-width: 280px;
  line-height: 1.6;
}

.footer__address {
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-top: 1rem;
}
.footer__address a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}
.footer__address a:hover { color: #fff; }

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.footer__social a {
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__social a:hover { color: #fff; }

.footer__nav h4,
.footer__legal h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.85rem;
}

.footer__nav ul,
.footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav a,
.footer__legal a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__nav a:hover,
.footer__legal a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: 1.25rem;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  text-align: center;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .section--le .container,
  .donate__inner,
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero__tree {
    height: 80vh;
    right: -10%;
    top: auto;
    bottom: -5%;
    transform: none;
  }
  .hero__veil {
    background: linear-gradient(
      to bottom,
      #f2f4ee 30%,
      rgba(242,244,238,0.88) 55%,
      rgba(242,244,238,0.5) 75%,
      transparent 100%
    );
  }
}

@media (max-width: 680px) {
  .hero__tree {
    height: 60vh;
    right: -15%;
    bottom: 0;
  }
  .hero__text { max-width: 100%; }
  .hero__sub { max-width: 100%; }
  .hero__scroll { display: none; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section { padding-block: 4rem; }

  .process::before { display: none; }
}

/* ===========================
   ACTIVE CASE SPOTLIGHT (home)
   =========================== */
.section--case { background: var(--color-bg); }

.case-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27,106,170,0.1);
  color: var(--blue-dna);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.case-badge--light { background: rgba(255,255,255,0.14); color: #fff; }

.case-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.case-spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26,46,28,0.08);
}

.case-spotlight__body { padding: 2.75rem 2.5rem; }

.case-spotlight__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.case-spotlight__lead {
  color: var(--color-muted);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}

.case-facts-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-bottom: 1.75rem;
}
.case-facts-inline li {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-text);
}
.case-facts-inline span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.15rem;
}

.case-spotlight__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* "Watch her story" play-link — used on light and dark backgrounds */
.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dna);
}
.watch-link:hover { color: var(--green-dark); }
.watch-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(27,106,170,0.12);
  font-size: 0.6rem;
  padding-left: 2px;
}
.watch-link--light { color: #fff; }
.watch-link--light:hover { color: rgba(255,255,255,0.8); }
.watch-link--light .watch-link__icon { background: rgba(255,255,255,0.16); }

.case-spotlight__visual {
  background: linear-gradient(160deg, #1a2e1c 0%, #1b3a4b 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.75rem 2.25rem;
  font-family: var(--font-serif);
}
.case-spotlight__visual p { font-size: 1.15rem; color: rgba(255,255,255,0.72); }
.case-spotlight__visual-big {
  font-size: clamp(1.8rem, 3vw, 2.4rem) !important;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.15;
  margin-top: 0.4rem;
}

/* Donate card — second (recurring) button */
.donate__card .btn--donate + .btn--donate { margin-top: 0.75rem; }
.btn--donate-alt {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn--donate-alt:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ===========================
   CASE DETAIL PAGE
   =========================== */
.case-page-hero {
  background: linear-gradient(160deg, #1a2e1c 0%, #1b3a4b 100%);
  color: #fff;
  padding-block: 4.5rem;
}
.case-page-back {
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.case-page-back:hover { color: #fff; }
.case-page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.case-page-hero h1 span { color: rgba(255,255,255,0.55); font-style: italic; }
.case-page-hero__lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  margin-bottom: 2rem;
}
.case-page-hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn--donate-solid {
  background: var(--green-light);
  color: #0e1e10;
  border-color: var(--green-light);
  font-weight: 700;
}
.btn--donate-solid:hover {
  background: #6fb074;
  border-color: #6fb074;
  color: #0e1e10;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
}

.section__title--left { text-align: left; }

.case-prose { max-width: 720px; }
.case-prose .section__title { margin-bottom: 1.5rem; }
.case-prose p {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.case-prose p:last-child { margin-bottom: 0; }

.case-facts {
  max-width: 820px;
  margin-inline: auto;
}
.case-facts > div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--color-border);
}
.case-facts > div:last-child { border-bottom: none; }
.case-facts dt {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding-top: 0.15rem;
}
.case-facts dd { color: var(--color-text); }
.case-facts dd a { text-decoration: underline; }

.clothing-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.clothing-list li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--color-text);
  font-size: 1rem;
}
.clothing-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--blue-dna);
}

.tip-callout {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--blue-dna);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  max-width: 720px;
  margin-inline: auto;
}
.tip-callout h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.tip-callout p { color: var(--color-muted); margin-bottom: 1.25rem; }
.tip-callout__contacts { display: flex; flex-direction: column; gap: 0.6rem; }
.tip-callout__contacts li { display: flex; gap: 1rem; align-items: baseline; }
.tip-callout__contacts span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  width: 62px;
  flex-shrink: 0;
}
.tip-callout__contacts a { font-weight: 600; font-size: 1.05rem; }

p.tip-callout__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-top: 1.75rem;
  margin-bottom: 0.6rem;
}
p.tip-callout__note {
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}

.case-donate { text-align: center; max-width: 640px; margin-inline: auto; }
.case-donate h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.case-donate p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; }
.case-donate__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.case-share {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.case-share a { color: #fff; font-weight: 600; text-decoration: underline; }

@media (max-width: 820px) {
  .case-spotlight { grid-template-columns: 1fr; }
  .case-spotlight__body { padding: 2.25rem 1.75rem; }
  .case-facts > div { grid-template-columns: 1fr; gap: 0.25rem; }
  .case-facts dt { padding-top: 0; }
}

/* ===========================
   LEGAL PAGES
   =========================== */
.legal-hero {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding-block: 3.5rem;
}
/* Match the prose column width so the title aligns with the body text */
.legal-hero .container { max-width: 760px; }
.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}
.legal-hero__org {
  font-weight: 600;
  color: var(--green-dark);
  font-size: 0.95rem;
}
.legal-hero__meta {
  color: var(--color-muted);
  font-size: 0.88rem;
  margin-top: 0.15rem;
}

.legal-prose { max-width: 760px; }

.legal-prose h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-prose h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.legal-prose p {
  color: var(--color-muted);
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.legal-prose a { text-decoration: underline; }

.legal-prose ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.legal-prose li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--color-muted);
  line-height: 1.7;
}
.legal-prose li::before {
  content: '•';
  position: absolute;
  left: 0.25rem;
  color: var(--green-dark);
}

.legal-signature {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.9rem;
  color: var(--color-muted) !important;
}
