/* =========================================================
   HandZ Up Nevada — Unified Stylesheet
   assets/css/styles.css
   ========================================================= */

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

/* =========================================================
   CSS VARIABLES
   ========================================================= */
:root {
  --teal:        #1e7a80;
  --teal-dark:   #145558;
  --teal-mid:    #2a9aa0;
  --teal-light:  #d0eaeb;
  --teal-faint:  #f0f8f9;
  --navy:        #182836;
  --gold:        #c8973a;
  --gold-light:  #f5e9d4;
  --ivory:       #faf8f4;
  --cream:       #f4f1eb;
  --white:       #ffffff;
  --text:        #1c2b34;
  --text-mid:    #4a5e68;
  --text-light:  #7a9099;
  --border:      #dde8e9;
  --footer-bg:   #0f1a22;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.11);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);

  /* Font aliases */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body:  'Outfit', system-ui, sans-serif;
}

/* =========================================================
   ACCESSIBILITY — WCAG 2.1 AA BASELINE
   ========================================================= */

/* Skip to main content */
.skip-link,
.skip-to-main {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: top 0.2s;
  width: auto;
  height: auto;
  overflow: visible;
}
.skip-link:focus,
.skip-to-main:focus { top: 16px; }

/* Visible focus — keyboard only */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

.hero :focus-visible,
.cta-banner :focus-visible,
.site-footer :focus-visible { outline-color: #fff; }

.btn-gold:focus-visible,
.btn-teal:focus-visible,
.btn-nav-donate:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero { background-attachment: scroll !important; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Windows High Contrast */
@media (forced-colors: active) {
  .btn-gold, .btn-teal, .btn-outline-teal, .btn-ghost-white,
  .btn-primary, .btn-outline, .btn-dark {
    border: 2px solid ButtonText;
  }
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 5rem 0; }

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.eyebrow,
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.req { color: #dc2626; margin-left: 2px; }

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221,232,233,0.6);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.09); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.nav-brand img { height: 52px; width: auto; }

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.01em;
}
.nav-brand-sub {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--teal);
  background: var(--teal-faint);
}

/* Dropdown arrow */
.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  opacity: 0.55;
  transition: transform 0.2s;
}
.has-dropdown:hover > a::after { transform: rotate(180deg); }

/* Dropdown panel */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  z-index: 300;
}
.dropdown-inner,
.dropdown > ul,
ul.dropdown {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 210px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown-inner a,
.dropdown > ul > li > a,
ul.dropdown > li > a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--text-mid);
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
}
.dropdown-inner a:hover,
.dropdown > ul > li > a:hover,
ul.dropdown > li > a:hover {
  background: var(--teal-faint);
  color: var(--teal);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

/* Donate button */
.btn-nav-donate,
.nav-donate-btn {
  margin-left: 0.5rem;
  padding: 0.55rem 1.4rem !important;
  background: var(--teal) !important;
  color: #fff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.87rem !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
  border: none !important;
}
.btn-nav-donate:hover,
.nav-donate-btn:hover {
  background: var(--teal-dark) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(30,122,128,0.3) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

/* =========================================================
   HERO — Homepage (Parallax)
   ========================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-color: var(--teal-dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,85,88,0.3) 0%, rgba(24,40,54,0.0) 40%),
    linear-gradient(0deg, rgba(20,85,88,0.88) 0%, rgba(24,40,54,0.68) 55%, rgba(0,0,0,0.12) 100%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 7rem 2rem 6rem;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.75rem;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-style: italic;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
  letter-spacing: -0.01em;
}
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  letter-spacing: 0.03em;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), rgba(255,255,255,0));
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--ivory);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 2;
}

/* =========================================================
   PAGE HERO — Inner pages
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--teal), var(--navy));
  padding: 4rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-serif);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.page-hero p,
.page-hero-subtitle {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  font-weight: 300;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  text-align: center;
}
.btn-gold,
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover,
.btn-primary:hover {
  background: #a87a2c;
  border-color: #a87a2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,151,58,0.4);
}
.btn-ghost-white,
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost-white:hover,
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,122,128,0.35);
}
.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: #0f1e27;
  transform: translateY(-2px);
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 300;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--teal-mid));
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* =========================================================
   MISSION STRIP — Homepage
   ========================================================= */
.mission-strip {
  background: var(--ivory);
  padding: 4.5rem 0 3.5rem;
}
.mission-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
.mission-inner::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--teal-light);
  display: block;
  margin-bottom: 0.5rem;
}
.mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
  margin-bottom: 1.5rem;
}
.mission-quote strong { color: var(--teal); font-style: normal; font-weight: 700; }
.mission-sub { font-size: 0.95rem; color: var(--text-mid); font-weight: 300; }

/* =========================================================
   STATS BAR — Homepage
   ========================================================= */
.stats-bar {
  background: var(--navy);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(30,122,128,0.25) 0%, transparent 65%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =========================================================
   SERVICES — Homepage
   ========================================================= */
.services-section {
  background: var(--white);
  padding: 6rem 0;
  position: relative;
}
.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, var(--teal), var(--gold), var(--teal-mid));
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img-wrap {
  display: flex;
  justify-content: center;
  padding-top: 2.25rem;
  position: relative;
  z-index: 1;
}
.service-img-circle,
.service-icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 6px 24px rgba(30,122,128,0.2);
  background: var(--teal-light);
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}
.service-img-circle img,
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body {
  padding: 1.5rem 1.75rem 2.25rem;
  text-align: center;
}
.service-body h3,
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.65rem; color: var(--navy); }
.service-body p,
.service-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; font-weight: 300; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal), var(--teal-mid));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::after { opacity: 1; }

/* =========================================================
   IMPACT SECTION — Homepage
   ========================================================= */
.impact-section {
  background: var(--cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: 'HOPE';
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(30,122,128,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.impact-image { position: relative; }
.impact-image-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.impact-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 36px rgba(30,122,128,0.4);
  min-width: 180px;
  text-align: center;
}
.impact-accent-card .accent-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.impact-accent-card .accent-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}
.impact-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1.25rem; }
.impact-text p { color: var(--text-mid); font-size: 0.97rem; margin-bottom: 1rem; font-weight: 300; line-height: 1.75; }
.impact-list { margin: 1.5rem 0 2rem; }
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.impact-list .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.impact-list .check::after {
  content: '';
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

/* =========================================================
   INTRO STRIP
   ========================================================= */
.intro-strip {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.intro-strip p {
  font-size: 1.15rem;
  color: var(--text-mid);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
}
.intro-strip strong { color: var(--teal); font-weight: 600; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 5.5rem 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(30,122,128,0.4) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(200,151,58,0.12) 0%, transparent 55%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 80px
  );
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 auto 2.25rem;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.content-split.reverse { grid-template-columns: 1.4fr 1fr; }
.content-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.content-img img { width: 100%; height: 380px; object-fit: cover; }
.content-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.content-text p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.97rem; }
.content-list { margin: 1rem 0 1.5rem 0; }
.content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-mid);
  font-size: 0.97rem;
}
.content-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}
.mission-vision {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.mv-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: var(--teal); }
.mv-card p { color: var(--text-mid); font-size: 0.97rem; margin-bottom: 0.75rem; }
.mv-card ul { margin-top: 0.75rem; }
.mv-card ul li {
  padding: 0.4rem 0;
  color: var(--text-mid);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.mv-card ul li:last-child { border-bottom: none; }

/* =========================================================
   LYN SMITH PAGE
   ========================================================= */
.founder-section { max-width: 900px; margin: 0 auto; }
.founder-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
.founder-photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  position: sticky;
  top: 100px;
}
.founder-photo img { width: 100%; height: 380px; object-fit: cover; object-position: top; }
.founder-bio h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 0.3rem; }
.founder-bio .founder-title {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  display: block;
}
.founder-bio p { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.97rem; }

/* =========================================================
   PROFESSIONAL SERVICES PAGE
   ========================================================= */
.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px 1fr;
}
.partner-img img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.partner-info { padding: 2.5rem; }
.partner-info h2 { font-size: 1.5rem; margin-bottom: 1rem; }
.partner-info p { color: var(--text-mid); font-size: 0.97rem; margin-bottom: 1rem; }
.partner-services { margin: 1.25rem 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}
.contact-info h2 { font-size: 1.7rem; margin-bottom: 0.5rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--teal);
}
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact-detail-text a { color: var(--teal); font-weight: 500; transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--teal-dark); }
.service-area {
  margin-top: 2rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}
.service-area strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.service-area p { color: var(--text-mid); font-size: 0.95rem; }
.map-embed { margin-top: 1.5rem; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 220px; display: block; border: none; }

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form-wrap h2 { font-size: 1.6rem; margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--text-mid); font-size: 0.93rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--ivory);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,122,128,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-fieldset {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.form-fieldset legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  padding: 0 0.25rem;
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--teal);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Form success/error banners */
.form-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
}
.form-banner i { font-size: 1.25rem; flex-shrink: 0; }
.form-banner--success {
  background: #d1fae5;
  border-left: 4px solid #10b981;
  color: #065f46;
}
.form-banner--error {
  background: #fee2e2;
  border-left: 4px solid #ef4444;
  color: #991b1b;
}
.form-banner--error a { color: #991b1b; text-decoration: underline; }

/* =========================================================
   DONATE PAGE
   ========================================================= */
.donate-hero { text-align: center; max-width: 620px; margin: 0 auto; }
.donate-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.donate-hero p { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 2.5rem; }
.donate-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.donate-method {
  background: var(--ivory);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.donate-method:hover { border-color: var(--teal); transform: translateY(-3px); }
.donate-method .method-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.donate-method h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--navy); }
.donate-method p { color: var(--text-mid); font-size: 0.9rem; }
.donate-email-box {
  background: var(--teal);
  color: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}
.donate-email-box p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 0.5rem; }
.donate-email-box .email-address { font-size: 1.4rem; font-weight: 700; letter-spacing: 0.01em; }
.donate-note {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: var(--text-mid);
  font-size: 0.93rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2.5rem;
}
.footer-inner,
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand img { height: 60px; width: auto; opacity: 0.95; }
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.1;
}
.footer-tagline { font-size: 0.82rem; font-style: italic; color: var(--teal-mid); opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
.footer-col ul a:hover { color: var(--teal-mid); padding-left: 4px; }
.footer-bottom {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-reg { font-size: 0.76rem; color: rgba(255,255,255,0.22); font-style: italic; }

/* =========================================================
   404 PAGE
   ========================================================= */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}
.error-page .error-number {
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-page h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.error-page p { color: var(--text-mid); max-width: 400px; margin: 0 auto 2rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .services-grid,
  .impact-grid,
  .footer-inner,
  .footer-grid,
  .content-split,
  .content-split.reverse,
  .mv-grid,
  .founder-grid,
  .partner-card,
  .contact-grid { grid-template-columns: 1fr; }

  .services-grid { max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:last-child { border-right: 1px solid rgba(255,255,255,0.1); }
  .impact-accent-card { display: none; }
  .impact-image-main { height: 320px; }
  .founder-photo { position: static; }
  .partner-img img { min-height: 220px; }
  .donate-methods { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 2px solid var(--teal-light);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    z-index: 300;
  }
  .nav-links.open { display: flex; }

  .nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav-links > li:last-child > a { border-bottom: none; }
  .nav-links > li > a:hover,
  .nav-links > li > a.active { color: var(--teal); background: none; }

  .has-dropdown > a::after {
    content: '›';
    font-size: 1.3rem;
    line-height: 1;
    opacity: 0.5;
    transition: transform 0.25s;
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
  }
  .has-dropdown.mobile-open > a::after { transform: rotate(90deg); opacity: 1; color: var(--teal); }

  .has-dropdown .dropdown { display: none; position: static; padding: 0; width: 100%; }
  .has-dropdown.mobile-open .dropdown { display: block; }

  .has-dropdown .dropdown .dropdown-inner,
  .has-dropdown .dropdown > ul,
  .has-dropdown ul.dropdown {
    background: var(--teal-faint);
    border: none;
    border-radius: 0;
    box-shadow: none;
    min-width: unset;
  }
  .has-dropdown .dropdown .dropdown-inner a,
  .has-dropdown .dropdown > ul > li > a,
  .has-dropdown ul.dropdown > li > a {
    padding: 0.9rem 1.5rem 0.9rem 2.5rem;
    font-size: 0.93rem;
    color: var(--text-mid);
    border-bottom: 1px solid rgba(30,122,128,0.1);
  }
  .has-dropdown .dropdown .dropdown-inner a:last-child,
  .has-dropdown .dropdown > ul > li:last-child > a,
  .has-dropdown ul.dropdown > li:last-child > a { border-bottom: none; }
  .has-dropdown .dropdown .dropdown-inner a:hover,
  .has-dropdown .dropdown > ul > li > a:hover,
  .has-dropdown ul.dropdown > li > a:hover { color: var(--teal); background: rgba(30,122,128,0.07); }

  .btn-nav-donate,
  .nav-donate-btn {
    display: block !important;
    margin: 0.75rem 1.5rem 0 !important;
    text-align: center !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.95rem !important;
    border-bottom: none !important;
    border-radius: 50px !important;
  }

  /* Kill CSS hover on mobile */
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown { display: none; }
  .has-dropdown.mobile-open .dropdown { display: block; }

  .hero h1 { font-size: 3.5rem; }
  .hero::after { height: 50px; }
  .hero-actions, .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .mission-inner::before { font-size: 5rem; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* =========================================================
   HOW IT WORKS — Step number circles
   ========================================================= */
.step-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(30,122,128,0.3);
  flex-shrink: 0;
  margin: 0 auto 1.5rem;
}
.step-circle span {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* =========================================================
   SUCCESS / FAILURE CARDS — transformation section
   ========================================================= */
.outcome-success {
  border-color: var(--teal-light) !important;
  background: var(--teal-faint) !important;
}
.outcome-success h3 { color: var(--teal) !important; }
.outcome-failure {
  border-color: #fde8e8 !important;
  background: #fff9f9 !important;
}
.outcome-failure h3 { color: #b91c1c !important; }
.outcome-failure li { color: #6b2a2a !important; }
