/* Zephyr Seven Homes — best-in-class nonprofit styles
   Brand: yellow #f7db07, black/near-black, white, subtle grays */

:root {
  --yellow: #f7db07;
  --yellow-hover: #ffe44a;
  --yellow-soft: #fff8c4;
  --yellow-dark: #b89f04;
  --black: #121212;
  --near-black: #0a0a0a;
  --ink: #1a1a1a;
  --white: #ffffff;
  --gray: #5c5a5a;
  --gray-muted: #6b6969;
  --gray-light: #e8e6e6;
  --gray-bg: #f7f6f3;
  --green: #6aad28;
  --focus: #f7db07;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-ui: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1100px;
  --max-narrow: 720px;
  --max-wide: 1200px;
  --header-h: 80px;
  --header-h-compact: 64px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 6px 16px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 22px 56px rgba(0, 0, 0, 0.14);
  --space: clamp(1.25rem, 3vw, 2rem);
  --space-section: clamp(3.25rem, 7.5vw, 5.5rem);
  --card-gap: clamp(1.25rem, 2.5vw, 1.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-z: 200;
  --drawer-z: 220;
  --backdrop-z: 210;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-tap-highlight-color: transparent;
}

a, button, input, select, textarea, summary, [role="button"] {
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button, input, textarea, select { font: inherit; }

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

::selection {
  background: rgba(247, 219, 7, 0.35);
  color: #000;
}

/* ========== Skip link ========== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  z-index: 10000;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ========== HEADER ========== */
/* Sticky chrome wraps header + nav. No backdrop-filter here (or on any
   ancestor of .site-nav) — filters create a containing block that traps
   position:fixed and collapses the mobile drawer into the header bar. */
.site-chrome {
  position: sticky;
  top: 0;
  /* Must sit above .nav-backdrop (--backdrop-z: 210) so the drawer and
     toggle remain clickable; fixed descendants still paint in this context. */
  z-index: var(--drawer-z);
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: visible;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-chrome.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  border-bottom-color: rgba(247, 219, 7, 0.18);
}

.site-header {
  background: transparent;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.header-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  overflow: visible;
}


.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex-shrink: 0;
  overflow: visible;
}
.brand:hover { opacity: 1; }

.brand-logo {
  height: 66px;
  width: auto;
  flex-shrink: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border: none;
  outline: none;
}

.brand-tagline {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.4;
  color: #bdbdbd;
  max-width: 220px;
  font-weight: 400;
}

.nav-wrap {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

/* Hamburger — mobile only */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 44px;
  min-height: 44px;
  background: var(--yellow);
  border: none;
  color: var(--black);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.5rem 0.85rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  z-index: calc(var(--drawer-z) + 5);
  position: relative;
  transition: background 0.15s ease, transform 0.15s ease;
}
.nav-toggle:hover { background: var(--yellow-hover); }

.nav-toggle-bars {
  display: inline-block;
  width: 18px;
  height: 12px;
  position: relative;
  background:
    linear-gradient(var(--black), var(--black)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--black), var(--black)) 0 5px / 100% 2px no-repeat,
    linear-gradient(var(--black), var(--black)) 0 10px / 100% 2px no-repeat;
  transition: transform 0.2s var(--ease);
}

/* Desktop nav — clean text links + yellow Donate CTA.
   Nav lives outside <header> (sibling under .site-chrome) so mobile
   position:fixed is never clipped by a header containing block. */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 961px) {
  .site-nav {
    position: absolute;
    top: 50%;
    right: max(1.25rem, calc((100% - min(100%, var(--max-wide))) / 2 + 1.25rem));
    transform: translateY(-50%);
    z-index: 2;
  }
}

.site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem;
}

.site-nav a.nav-link,
.site-nav .nav-drop > button {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.45rem 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #e8e8e8;
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}

.site-nav a.nav-link:hover,
.site-nav .nav-drop > button:hover,
.site-nav .nav-drop.open > button {
  color: var(--yellow);
  background: rgba(247, 219, 7, 0.08);
  opacity: 1;
}

.site-nav a.nav-link[aria-current="page"] {
  color: var(--yellow);
}
.site-nav a.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
}

/* Donate CTA — distinct yellow filled button */
.site-nav a.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1.25rem;
  margin-left: 0.35rem;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}
.site-nav a.nav-cta:hover {
  background: var(--yellow-hover);
  color: var(--black);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.site-nav a.nav-cta[aria-current="page"] {
  box-shadow: inset 0 0 0 2px var(--black);
}

/* More dropdown */
.nav-drop { position: relative; }
.nav-drop > button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.4rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}
.nav-drop-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 220px;
  background: var(--near-black);
  border: 1px solid rgba(247, 219, 7, 0.35);
  border-radius: var(--radius);
  z-index: 50;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  padding: 0.4rem;
}
.nav-drop-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 1.25rem;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 8px solid rgba(247, 219, 7, 0.35);
}
.nav-drop.open .nav-drop-menu,
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { display: block; }

.nav-drop-menu a {
  display: block;
  color: #f0f0f0;
  background: transparent;
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 500;
  font-size: 0.9rem;
  min-height: 44px;
  line-height: 1.3;
}
.nav-drop-menu a:hover,
.nav-drop-menu a[aria-current="page"] {
  background: var(--yellow);
  color: var(--black);
  opacity: 1;
}
.nav-drop-label {
  display: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  padding: 0.75rem 0.95rem 0.35rem;
}

/* Drawer chrome (mobile) */
.nav-drawer-head,
.nav-drawer-cta { display: none; }
.nav-backdrop { display: none; }

/* ========== MOBILE NAV — overlay drawer ========== */
@media (max-width: 960px) {
  .header-inner {
    padding: 0.6rem 1rem;
    min-height: 56px;
  }
  .brand-logo { height: 58px; }
  .brand-tagline { display: none; }
  .nav-wrap {
    flex: 0 0 auto;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-label { display: none; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars {
    background: linear-gradient(var(--black), var(--black)) 0 5px / 100% 2px no-repeat;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 5px;
    height: 2px;
    background: var(--black);
    transform: rotate(90deg);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: var(--backdrop-z);
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s var(--ease), visibility 0.28s var(--ease);
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 92vw);
    max-width: 100%;
    z-index: var(--drawer-z);
    margin: 0;
    padding: 0;
    background: var(--near-black);
    border-left: 2px solid var(--yellow);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform 0.32s var(--ease), visibility 0.32s var(--ease);
  }
  .site-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    background: var(--near-black);
    z-index: 2;
  }
  .nav-drawer-head .drawer-title {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--yellow);
    margin: 0;
  }
  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    background: transparent;
    border: 1px solid #444;
    color: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.35rem;
    line-height: 1;
    padding: 0;
  }
  .nav-close:hover {
    border-color: var(--yellow);
    color: var(--yellow);
  }

  .nav-drawer-cta {
    display: block;
    padding: 1rem 1.15rem 0.5rem;
  }
  .nav-drawer-cta .nav-cta {
    display: flex !important;
    width: 100%;
    margin: 0;
    min-height: 48px;
    font-size: 0.9rem;
  }

  .site-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    padding: 0.75rem 1rem 1.5rem;
  }

  .site-nav a.nav-link,
  .site-nav .nav-drop > button {
    width: 100%;
    min-height: 48px;
    text-align: left;
    justify-content: flex-start;
    border-radius: var(--radius-sm);
    color: #f0f0f0;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
  }
  .site-nav a.nav-link:hover,
  .site-nav a.nav-link[aria-current="page"],
  .site-nav .nav-drop > button:hover,
  .site-nav .nav-drop.open > button {
    background: rgba(247, 219, 7, 0.12);
    color: var(--yellow);
  }
  .site-nav a.nav-link[aria-current="page"]::after { display: none; }

  /* Hide desktop Donate CTA in nav-links row; drawer CTA is used */
  .site-nav .nav-links > a.nav-cta { display: none; }

  /* Flatten More dropdown into regular drawer links (no broken accordion) */
  .nav-drop > button {
    display: none !important;
  }
  .nav-drop-menu {
    display: block !important;
    position: static;
    min-width: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
    padding: 0;
    overflow: visible;
  }
  .nav-drop-menu::before { display: none; }
  .nav-drop-label {
    display: block;
    padding: 0.85rem 1rem 0.25rem;
    color: #888;
  }
  .nav-drop-menu a {
    width: 100%;
    min-height: 48px;
    text-align: left;
    justify-content: flex-start;
    border-radius: var(--radius-sm);
    color: #f0f0f0;
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    background: transparent;
  }
  .nav-drop-menu a:hover,
  .nav-drop-menu a[aria-current="page"] {
    background: rgba(247, 219, 7, 0.12);
    color: var(--yellow);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav,
  .nav-backdrop,
  .site-chrome,
  .site-header,
  .header-inner,
  .brand-logo {
    transition: none !important;
  }
}

/* ========== MAIN ========== */
main { flex: 1 0 auto; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}
.container-wide {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--space);
}

/* Hero */
.hero {
  position: relative;
  background: #111;
  overflow: hidden;
}
.hero-slides {
  position: relative;
  min-height: 380px;
  max-height: 640px;
  aspect-ratio: 16 / 9;
}
@media (max-width: 700px) {
  .hero-slides {
    aspect-ratio: unset;
    min-height: 300px;
    height: min(68vh, 460px);
    max-height: 460px;
  }
  .hero-card {
    padding: 1.25rem 1.2rem;
    margin: 0.75rem;
    max-width: min(380px, calc(100% - 1.5rem));
  }
  .hero-card h2 {
    font-size: clamp(1.4rem, 6vw, 1.9rem);
  }
  .hero-card p { font-size: 0.95rem; margin: 0.35rem 0; }
  .hero-card .btn { margin-top: 0.85rem; padding: 0.7rem 1.2rem; }
  .hero-dots { bottom: 0.75rem; }
  .hero-counter { bottom: 0.75rem; right: 0.85rem; }
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  background: #222 center/cover no-repeat;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.hero-dismissed .hero-overlay {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 100%);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.hero-overlay.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-card {
  position: relative;
  pointer-events: auto;
  background: rgba(10, 10, 10, 0.92);
  border: 1.5px solid rgba(247, 219, 7, 0.85);
  color: var(--white);
  padding: 2.15rem 2.1rem 2rem;
  max-width: 460px;
  text-align: center;
  margin: 1rem;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-kicker {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ccc;
  font-family: var(--font-ui);
}
.hero-card .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.7rem;
  border-radius: var(--radius-pill);
}
.hero-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  margin: 0.3rem 0;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-card p {
  margin: 0.4rem 0;
  font-family: var(--font-ui);
  color: #ececec;
}
.hero-card .btn { margin-top: 1.1rem; }

.hero-card-close {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #f5f5f5;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: color 0.15s ease, background 0.15s ease;
}
.hero-card-close:hover,
.hero-card-close:focus-visible {
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.1);
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.hero-counter {
  position: absolute;
  bottom: 1.1rem;
  right: 1.25rem;
  z-index: 3;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}
.hero-dots {
  position: absolute;
  bottom: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.hero-dots button:hover { transform: scale(1.15); }
.hero-dots button.active {
  background: var(--yellow);
  border-color: var(--yellow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  min-height: 48px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn:hover {
  background: var(--yellow-hover);
  color: var(--black);
  border-color: var(--yellow-hover);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn:active {
  transform: translateY(0) scale(0.98);
  opacity: 0.95;
}
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn-dark {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}
.btn-dark:hover {
  background: #222;
  color: var(--yellow);
  border-color: #222;
}
.btn-footer-donate {
  margin-top: 1.1rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  font-size: 0.78rem;
}

/* Sections */
.section { padding: var(--space-section) 0; }
.section-yellow { background: var(--yellow); }
.section-dark { background: var(--near-black); color: var(--white); }
.section-muted { background: var(--gray-bg); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  font-weight: 650;
  margin: 0 0 1rem;
  text-align: center;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.section-title.left { text-align: left; }

.lead {
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: #333;
  line-height: 1.7;
}
.lead.left { text-align: left; margin-left: 0; }
.lead a {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.lead a:hover { color: var(--yellow-dark); opacity: 1; }

/* Mission */
.mission {
  text-align: center;
  padding: var(--space-section) var(--space);
}
.mission h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.95rem, 3.5vw, 2.8rem);
  margin: 0 0 1.4rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}
.mission p {
  max-width: 700px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 2.2vw, 1.15rem);
  color: #333;
  line-height: 1.8;
}

/* Feature cards */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  padding: 0.5rem 0;
}
.feature {
  text-align: center;
  padding: 2.15rem 1.6rem 1.9rem;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid transparent;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--yellow);
}
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  object-fit: contain;
  padding: 0.85rem;
  background: var(--gray-bg);
  border-radius: 50%;
  border: 1px solid var(--gray-light);
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0 0 0.8rem;
  color: var(--black);
}
.feature p {
  font-size: 0.98rem;
  color: var(--gray);
  margin: 0 0 0.5rem;
  flex: 1;
}
.feature .btn { margin-top: 1.15rem; }
@media (max-width: 800px) {
  .features { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* Quote */
.quote-block {
  background: var(--near-black);
  color: var(--white);
  padding: var(--space-section) var(--space);
  text-align: left;
  position: relative;
}
.quote-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  background: var(--yellow);
  border-radius: 2px;
}
.quote-block blockquote {
  margin: 0 auto;
  max-width: 780px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}
.quote-block blockquote::before {
  content: "“";
  font-family: var(--font-display);
  font-style: normal;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--yellow);
  opacity: 0.45;
  position: absolute;
  left: -0.15rem;
  top: -1.6rem;
  pointer-events: none;
}
.quote-block cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: var(--font-ui);
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

/* Page banner */
.page-banner {
  background: var(--yellow);
  padding: clamp(2.75rem, 6vw, 4.25rem) var(--space);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  font-weight: 650;
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--black);
}
.page-banner.dark {
  background: var(--near-black);
  color: var(--yellow);
}
.page-banner.dark h1 { color: var(--yellow); }

/* Content */
.prose {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--space) clamp(2.75rem, 6vw, 3.75rem);
}
.prose p { margin: 0 0 1.25rem; color: #2f2f2f; }
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 650;
  margin: 2.2rem 0 0.9rem;
  letter-spacing: -0.02em;
}

.content-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--space) clamp(3rem, 6vw, 4rem);
}
.content-split img {
  width: 100%;
  object-fit: cover;
  max-height: 440px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
@media (max-width: 760px) {
  .content-split { grid-template-columns: 1fr; }
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0.5rem var(--space) clamp(3rem, 6vw, 4rem);
}
.team-card {
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 0.85rem 0.85rem 1.35rem;
  box-shadow: var(--shadow-sm);
  display: block;
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-6px);
  opacity: 1;
  box-shadow: var(--shadow-md);
  border-color: rgba(247, 219, 7, 0.55);
}
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 0.9rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color 0.15s ease;
}
.team-card:hover img { border-color: var(--yellow); }
.team-card h3 {
  font-family: var(--font-ui);
  font-size: 1rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--black);
}
.team-card p {
  font-size: 0.8rem;
  color: var(--gray-muted);
  margin: 0;
  line-height: 1.4;
}

/* Bio */
.bio {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--space) clamp(3rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.bio img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.bio h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin: 0 0 0.4rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.bio .role {
  color: var(--gray-muted);
  font-weight: 700;
  margin: 0 0 1.4rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}
.bio p { color: #2f2f2f; }
@media (max-width: 700px) {
  .bio { grid-template-columns: 1fr; }
  .bio img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
  }
}

/* Forms */
.form-card {
  max-width: 540px;
  margin: 0 auto;
  padding: 0.5rem var(--space) clamp(3rem, 6vw, 4rem);
}
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.form-group label .req { color: #c6280a; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1.5px solid #d8d6d6;
  background: #fff;
  color: var(--black);
  border-radius: var(--radius-sm);
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  min-height: 52px;
  font-size: 1rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(247, 219, 7, 0.45);
}
.form-group textarea { min-height: 168px; resize: vertical; }

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.95rem 1.1rem;
  background: #eef6d8;
  border: 1px solid var(--green);
  color: var(--black);
  border-radius: var(--radius-sm);
}
.form-status.error { background: #f8d7d0; border-color: #c6280a; }
.form-status.show { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--space) clamp(3rem, 6vw, 4rem);
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 650;
  margin: 0 0 0.45rem;
  letter-spacing: -0.01em;
}
.contact-info p { margin: 0 0 1.4rem; color: #333; }
.contact-info a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
.contact-info a:hover { color: var(--yellow-dark); opacity: 1; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: 1.75rem; }
}

/* Donate */
.donate-cta {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--space);
  max-width: 760px;
  margin: 0 auto;
}
.donate-cta h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 650;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}
.donate-box {
  background: var(--yellow);
  padding: 2.25rem 1.75rem;
  margin: 2.25rem auto 0;
  max-width: 500px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.donate-box h2 {
  font-family: var(--font-heading);
  margin: 0 0 1.15rem;
  font-size: 1.5rem;
  font-weight: 650;
  color: var(--black);
}
.donate-box .btn {
  min-width: 200px;
  min-height: 52px;
  font-size: 0.95rem;
}
.donate-note {
  font-size: 0.9rem;
  color: #2a2a2a;
  margin-top: 1.25rem;
  line-height: 1.55;
}
.donate-note a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.donate-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
}

/* Fundraiser */
.fundraiser-hero {
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) var(--space) clamp(2.5rem, 5vw, 3.5rem);
  background: #000;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.fundraiser-hero img {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.fundraiser-hero h1 {
  color: var(--yellow);
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

/* Subscribe */
.subscribe-hero {
  text-align: center;
  padding: clamp(2.75rem, 6vw, 4rem) var(--space) 0.75rem;
}
.subscribe-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 650;
  letter-spacing: -0.025em;
  margin: 0 0 0.55rem;
}
.subscribe-hero .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--near-black);
  color: #e2e2e2;
  padding: clamp(3rem, 6vw, 4rem) var(--space) 1.75rem;
  margin-top: auto;
  border-top: 2px solid var(--yellow);
}
.footer-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr 0.9fr;
  gap: 2.25rem 2rem;
  align-items: start;
}
.footer-brand .footer-logo {
  height: 64px;
  width: auto;
}
.footer-mission {
  font-size: 0.95rem;
  color: #b0b0b0;
  margin: 0.85rem 0 0;
  max-width: 300px;
  line-height: 1.6;
}
.footer-col h3,
.footer-inner h3 {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin: 0 0 1rem;
  font-weight: 700;
}
.footer-contact p,
.footer-inner p,
.footer-inner a {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}
.footer-address {
  margin-top: 0.75rem !important;
  color: #c4c4c4;
}
.footer-contact p + p {
  margin-top: 0.75rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.footer-links a {
  color: #d8d8d8;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.2rem 0;
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--yellow);
  opacity: 1;
}
.footer-inner a:hover { color: var(--yellow); opacity: 1; }

.socials {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.socials a,
.social-link {
  display: inline-flex;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 50%;
  border: 1px solid #333;
  color: var(--yellow);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}
.socials a:hover,
.social-link:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  opacity: 1;
}
.socials svg,
.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.socials img { width: 20px; height: 20px; }

.footer-bottom {
  max-width: var(--max-wide);
  margin: 2.5rem auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.84rem;
  color: #8f8f8f;
  letter-spacing: 0.01em;
}
.footer-bottom p { margin: 0; }
.footer-bottom a {
  color: #b0b0b0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(247, 219, 7, 0.35);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.footer-bottom a:hover {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 560px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .footer-brand { grid-column: auto; }
  .footer-mission { margin-left: auto; margin-right: auto; }
  .socials { justify-content: center; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.65rem;
  }
  .footer-links { align-items: center; }
  .btn-footer-donate { margin-left: auto; margin-right: auto; }
}

@media (max-width: 700px) {
  .quote-block { text-align: center; }
  .quote-block::before { display: none; }
  .quote-block blockquote {
    padding-left: 0;
    padding-top: 1.75rem;
  }
  .quote-block blockquote::before {
    left: 50%;
    transform: translateX(-50%);
    top: -0.35rem;
  }
}


@media (max-width: 600px) {
  body { font-size: 1rem; line-height: 1.7; }
  .lead { font-size: 1.05rem; }
  .section-title { margin-bottom: 0.85rem; }
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
