/* ==================================================
   01. ROOT TOKENS
   02. RESET / BASE
   03. TYPOGRAPHY
   04. LAYOUT
   05. UTILITIES
   06. TOP BAR
   07. HEADER / NAVIGATION
   08. BUTTONS
   09. PAGE SECTIONS
   10. COMPONENTS
   11. FOOTER
   12. RESPONSIVE
   ================================================== */


/* ==================================================
   01. ROOT TOKENS
   --------------------------------------------------
   Purpose
   - direct design values
   - easy color access
   - semantic aliases for faster styling
   ================================================== */

:root {
  /* ----------------------------------
     BRAND COLORS
     Direct-use brand values
     ---------------------------------- */
  --brand-blue: #2a317d;
  --brand-blue-dark: #202660;
  --brand-red: #ca3727;
  --brand-red-dark: #a92d20;

  /* ----------------------------------
     NEUTRALS
     ---------------------------------- */
  --white: #ffffff;
  --off-white: #efefef;
  --soft-white: #f7f7f7;
  --rich-black: #111111;
  --text-gray: #666666;
  --muted-gray: #8a8a8a;
  --line-gray: #d9d9d9;
  --line-soft: #e8e8e8;

  /* ----------------------------------
     RGB VALUES
     For rgba() use
     ---------------------------------- */
  --brand-blue-rgb: 42, 49, 125;
  --brand-red-rgb: 202, 55, 39;
  --rich-black-rgb: 17, 17, 17;
  --white-rgb: 255, 255, 255;

  /* ----------------------------------
     DIRECT COLOR HELPERS
     Easy pick-up colors
     ---------------------------------- */
  --blue-5: rgba(var(--brand-blue-rgb), 0.05);
  --blue-10: rgba(var(--brand-blue-rgb), 0.10);
  --blue-15: rgba(var(--brand-blue-rgb), 0.15);
  --blue-20: rgba(var(--brand-blue-rgb), 0.20);

  --red-5: rgba(var(--brand-red-rgb), 0.05);
  --red-10: rgba(var(--brand-red-rgb), 0.10);
  --red-15: rgba(var(--brand-red-rgb), 0.15);

  --black-5: rgba(var(--rich-black-rgb), 0.05);
  --black-8: rgba(var(--rich-black-rgb), 0.08);
  --black-10: rgba(var(--rich-black-rgb), 0.10);
  --black-15: rgba(var(--rich-black-rgb), 0.15);

  /* ----------------------------------
     SEMANTIC COLORS
     Use when you want meaning, not guessing
     ---------------------------------- */
  --bg-page: var(--white);
  --bg-surface: var(--white);
  --bg-surface-soft: var(--soft-white);

  --text-primary: var(--rich-black);
  --text-body: var(--text-gray);
  --text-muted: var(--muted-gray);
  --text-on-dark: var(--white);

  --link-color: var(--brand-blue);
  --link-hover: var(--brand-blue-dark);

  --border-color: var(--line-gray);
  --border-soft: var(--line-soft);

  --button-primary-bg: var(--brand-red);
  --button-primary-bg-hover: var(--brand-red-dark);
  --button-primary-text: var(--white);

  --button-secondary-bg: var(--white);
  --button-secondary-text: var(--brand-blue);
  --button-secondary-border: var(--brand-blue);

  /* ----------------------------------
     TYPOGRAPHY
     ---------------------------------- */
  --font-primary: "Source Sans 3", sans-serif;
  --font-code: "Source Code Pro", monospace;

  --font-size-base: 18px;
  --line-height-base: 1.6;
  --line-height-heading: 1.15;

  /* ----------------------------------
     LAYOUT
     ---------------------------------- */
  --container-max: 1200px;
  --container-pad: 24px;
  --section-pad: 72px;

  /* ----------------------------------
     SPACING SCALE
     ---------------------------------- */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* ----------------------------------
     RADII
     ---------------------------------- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* ----------------------------------
     SHADOWS
     ---------------------------------- */
  --shadow-sm: 0 2px 10px var(--black-8);
  --shadow-md: 0 8px 24px var(--black-10);
  --shadow-lg: 0 18px 48px var(--black-15);

  /* ----------------------------------
     TRANSITIONS
     ---------------------------------- */
  --transition-fast: 180ms ease;
  --transition-base: 260ms ease;
  --transition-slow: 360ms ease;

  /* ----------------------------------
     Z-INDEX
     ---------------------------------- */
  --z-topbar: 900;
  --z-header: 1000;
  --z-nav-panel: 1100;

  /* ----------------------------------
     BREAKPOINTS
     Documentation only
     Use literal values in media queries
     ---------------------------------- */
  --bp-mobile: 1000px;
  --bp-small: 560px;
}

/* ==================================================
   02. RESET / BASE
   ================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-body);
  background: var(--bg-page);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--link-hover);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

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

/* ==================================================
   03. TYPOGRAPHY
   ================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-primary);
  line-height: var(--line-height-heading);
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

p {
  color: var(--text-body);
}

small {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==================================================
   04. LAYOUT
   ================================================== */

.container {
  width: min(100% - (var(--container-pad) * 2), var(--container-max));
  margin-inline: auto;
}

.page-section {
  padding: var(--section-pad) 0;
}

/*
.section {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (min-width: 1180px) {
  .section {
    padding-left: 32px;
    padding-right: 32px;
  }
}

*/
/* ==================================================
   05. UTILITIES
   --------------------------------------------------
   Quick classes for text and backgrounds
   ================================================== */

.text-primary { color: var(--text-primary); }
.text-body { color: var(--text-body); }
.text-muted { color: var(--text-muted); }
.text-blue { color: var(--brand-blue); }
.text-red { color: var(--brand-red); }
.text-white { color: var(--white); }

.bg-page { background: var(--bg-page); }
.bg-surface { background: var(--bg-surface); }
.bg-surface-soft { background: var(--bg-surface-soft); }
.bg-blue { background: var(--brand-blue); }
.bg-red { background: var(--brand-red); }
.bg-white { background: var(--white); }

.border-blue { border-color: var(--brand-blue); }
.border-red { border-color: var(--brand-red); }
.border-soft { border-color: var(--border-color); }

/* ==================================================
   06. TOP BAR
   --------------------------------------------------
   Full-width bar
   Visible only when page is at top
   ================================================== */

.site-topbar {
  position: sticky;
  top: 0;
  z-index: var(--z-topbar);
  background: var(--brand-blue);
  color: var(--text-on-dark);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.site-topbar.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-topbar__text {
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-on-dark);
}

.site-topbar__text a {
  color: inherit;
}

.site-topbar__text a:hover,
.site-topbar__text a:focus {
  color: inherit;
  text-decoration: underline;
}

/* ==================================================
   07. HEADER / NAVIGATION
   --------------------------------------------------
   Full-width shell
   Inner content stays aligned by container
   ================================================== */

.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	background: var(--bg-surface);
	border-bottom: solid 3px var(--brand-blue);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  min-height: 86px;
}

/* ----------------------------------
   Brand
   ---------------------------------- */
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  color: var(--text-primary);
}

.site-brand:hover,
.site-brand:focus {
  color: var(--text-primary);
}

.site-brand__mark {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
}

.site-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-brand__text, .site-footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.site-brand__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.site-brand__tagline {
  font-size: 0.9rem;
  color: var(--brand-red);
}

/* ----------------------------------
   Desktop nav
   ---------------------------------- */
.site-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link:focus,
.site-nav__link.is-active,
.site-nav__item:hover > .site-nav__link,
.site-nav__item:focus-within > .site-nav__link {
  color: var(--brand-blue);
  background: var(--blue-5);
}

/* dropdown panel */
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  min-width: 260px;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
}

.site-nav__item:hover .site-nav__dropdown,
.site-nav__item:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* keep final dropdowns inside viewport */
.site-nav__item:last-child .site-nav__dropdown,
.site-nav__item:nth-last-child(2) .site-nav__dropdown {
  right: 0;
  left: auto;
}

.site-nav__sublink {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.98rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav__sublink:hover,
.site-nav__sublink:focus {
  color: var(--brand-blue);
  background: var(--blue-5);
}

/* ----------------------------------
   Segmented CTA pill
   ----------------------------------
   Purpose
   - connected campaign CTA control
   - solid red Donate segment
   - outlined Get Involved segment
   - clean vertical seam between both sides
   ---------------------------------- */
.site-cta {
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 auto;
  background: transparent;
}

.site-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

/* left segment */
.site-cta__link--donate {
  background: var(--brand-red);
  color: var(--white);
  border: 0;
  border-radius: 9999px 0 0 9999px;
}

.site-cta__link--donate:hover,
.site-cta__link--donate:focus {
  background: var(--brand-red-dark);
  color: var(--white);
}

/* right segment */
.site-cta__link--involved {
  background: var(--white);
  color: var(--brand-blue);
  border-top: 3px solid var(--brand-blue);
  border-right: 3px solid var(--brand-blue);
  border-bottom: 3px solid var(--brand-blue);
  border-left: 0;
  border-radius: 0 9999px 9999px 0;
}

.site-cta__link--involved:hover,
.site-cta__link--involved:focus {
  background: var(--blue-5);
  color: var(--brand-blue-dark);
}

/* ----------------------------------
   Mobile toggle
   ---------------------------------- */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 50px;
  height: 50px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: var(--bg-surface);
  color: var(--text-primary);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ----------------------------------
   Mobile nav
   ----------------------------------
   Purpose
   - stacked mobile navigation
   - main items expand to reveal secondary links
   - secondary links are visually distinct
   ---------------------------------- */
.mobile-nav {
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-md);
}

.mobile-nav__inner {
  padding: 0.75rem 0 1.25rem;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--border-soft);
}

.mobile-nav__link,
.mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 0;
  border: 0;
  background: transparent;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus,
.mobile-nav__toggle:hover,
.mobile-nav__toggle:focus {
  color: var(--brand-blue);
}

.mobile-nav__item--has-children .mobile-nav__toggle::after {
  content: "+";
  color: var(--brand-blue);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.mobile-nav__item.is-open .mobile-nav__toggle::after {
  content: "–";
}

.mobile-nav__submenu {
  display: none;
  padding: 0 0 0.75rem 0;
}

.mobile-nav__item.is-open .mobile-nav__submenu {
  display: block;
}

.mobile-nav__sublink {
  display: block;
  margin: 0 0 0.45rem 1rem;
  padding: 0.8rem 1rem;
  border-left: 3px solid var(--brand-blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--blue-5);
  color: var(--brand-blue);
  font-size: 0.95rem;
  font-weight: 600;
}

.mobile-nav__sublink:hover,
.mobile-nav__sublink:focus {
  background: var(--blue-10);
  color: var(--brand-blue-dark);
}

.mobile-nav__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1rem;
}

.mobile-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.mobile-nav__button--donate {
  background: var(--brand-red);
  color: var(--white);
}

.mobile-nav__button--involved {
  border: 1px solid var(--brand-blue);
  background: var(--white);
  color: var(--brand-blue);
}

/* ==================================================
   12. RESPONSIVE
   --------------------------------------------------
   Rule
   - phones and tablets use mobile navigation
   - desktop navigation only appears on larger screens
   - iPads should not show the cramped desktop header
   ================================================== */

@media (max-width: 1180px) {
  .site-nav,
  .site-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    min-height: 74px;
    gap: 1rem;
  }
}

@media (min-width: 1181px) {
  .mobile-nav {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .site-brand__tagline {
    display: none;
  }

  .site-brand__name {
    font-size: 0.95rem;
  }

  .site-brand__mark {
    width: 44px;
    height: 44px;
  }
}

/* ==================================================
   HERO
   --------------------------------------------------
   Bullet-proof hero system
   - desktop landscape mode
   - portrait mobile/tablet mode
   - compact landscape mode for phones/tablets
   - all core hero content visible in landscape
   ================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-page);
}

#home-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0;
}

/* ----------------------------------
   Background media
   ---------------------------------- */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg picture,
.hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center center;
}

/* lower white fade */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(var(--white-rgb), 0) 66%,
      rgba(var(--white-rgb), 0.72) 88%,
      rgba(var(--white-rgb), 1) 100%
    );
}

/* readability wash */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
    linear-gradient(
      90deg,
      rgba(var(--white-rgb), 0.88) 0%,
      rgba(var(--white-rgb), 0.68) 24%,
      rgba(var(--white-rgb), 0.26) 52%,
      rgba(var(--white-rgb), 0.04) 100%
    );*/
}

/* ----------------------------------
   Portrait image framing
   Adjust image downward so face clears header
   ---------------------------------- */
@media (max-width: 1180px) and (orientation: portrait) {
  .hero-bg img {
    object-position: center 15%;
  }
}

/* ----------------------------------
   Content wrapper
   ---------------------------------- */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 50rem;
  min-height: 700px;
  padding: 0;
}

/* ----------------------------------
   Carousel text area
   ---------------------------------- */
.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 46rem;
  min-height: 15rem;
  margin-bottom: 1rem;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-title {
  margin-bottom: 0.75rem;
  color: var(--brand-blue);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow:
    0 2px 10px rgba(255, 255, 255, 0.55),
    0 0 22px rgba(255, 255, 255, 0.35);
}

.hero-copy {
  max-width: 42rem;
  color: var(--text-body);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
  text-shadow: 0 1px 6px rgba(255, 255, 255, 0.4);
}

/* ----------------------------------
   CTA area
   Same language as header
   ---------------------------------- */
.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.hero-cta-pill {
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 auto;
  background: transparent;
}

.hero-cta-pill__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.hero-cta-pill__link--donate {
  background: var(--brand-red);
  color: var(--white);
  border: 0;
  border-radius: 9999px 0 0 9999px;
}

.hero-cta-pill__link--donate:hover,
.hero-cta-pill__link--donate:focus {
  background: var(--brand-red-dark);
  color: var(--white);
}

.hero-cta-pill__link--involved {
  background: var(--white);
  color: var(--brand-blue);
  border-top: 3px solid var(--brand-blue);
  border-right: 3px solid var(--brand-blue);
  border-bottom: 3px solid var(--brand-blue);
  border-left: 0;
  border-radius: 0 9999px 9999px 0;
}

.hero-cta-pill__link--involved:hover,
.hero-cta-pill__link--involved:focus {
  background: var(--blue-5);
  color: var(--brand-blue-dark);
}

/* ----------------------------------
   Dots
   ---------------------------------- */
.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 2px solid var(--brand-blue);
  border-radius: 50%;
  background: var(--white);
  box-shadow: none;
  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.hero-dot:hover,
.hero-dot:focus {
  background: var(--blue-10);
}

.hero-dot.is-active {
  background: var(--brand-blue);
  transform: scale(1.06);
}

/* ----------------------------------
   Portrait tablets and phones
   ---------------------------------- */
@media (max-width: 1180px) and (orientation: portrait) {
  #home-hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    min-height: 760px;
    justify-content: flex-start;
    padding-top: 18rem;
    padding-bottom: 2rem;
  }

  .hero-carousel {
    max-width: 38rem;
    min-height: 12.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    margin-bottom: 0.6rem;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-primary);
  }

  .hero-actions {
    width: 100%;
    margin-top: 0.75rem;
    margin-bottom: 1rem;
  }

  .hero-cta-pill {
    width: 100%;
  }

  .hero-cta-pill__link {
    flex: 1 1 50%;
    min-height: 50px;
    padding: 0 1rem;
    font-size: 1rem;
  }

  .hero-overlay {
   /* background:
      linear-gradient(
        180deg,
        rgba(var(--white-rgb), 0.04) 0%,
        rgba(var(--white-rgb), 0.12) 38%,
        rgba(var(--white-rgb), 0.78) 76%,
        rgba(var(--white-rgb), 1) 100%
      );*/
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(var(--white-rgb), 0) 66%,
        rgba(var(--white-rgb), 0.72) 88%,
        rgba(var(--white-rgb), 1) 100%
      );
  }

  .hero-dots {
    gap: 0.55rem;
  }

  .hero-dot {
    width: 11px;
    height: 11px;
  }
}

/* ----------------------------------
   Landscape phones and tablets
   Compact desktop-like mode
   Everything visible without scrolling
   ---------------------------------- */
@media (max-width: 1180px) and (orientation: landscape) {
  #home-hero {
    min-height: 520px;
    align-items: center;
  }

  .hero-bg img {
    object-position: center 22%;
  }

  .hero-overlay {
   /* background:
      linear-gradient(
        90deg,
        rgba(var(--white-rgb), 0.9) 0%,
        rgba(var(--white-rgb), 0.7) 28%,
        rgba(var(--white-rgb), 0.24) 58%,
        rgba(var(--white-rgb), 0.03) 100%
      );*/
  }

  .hero-bg::after {
    background:
      linear-gradient(
        180deg,
        rgba(var(--white-rgb), 0) 76%,
        rgba(var(--white-rgb), 0.52) 91%,
        rgba(var(--white-rgb), 1) 100%
      );
  }

  .hero-content {
    max-width: 36rem;
    min-height: 520px;
    justify-content: center;
    padding: 1.25rem 0 11rem;
  }

  .hero-carousel {
    max-width: 34rem;
    min-height: 6.0rem;
    margin-bottom: 0.45rem;
  }

  .hero-title {
    font-size: clamp(1.95rem, 4.3vw, 2.9rem);
    margin-bottom: 0.35rem;
  }

  .hero-copy {
    max-width: 32rem;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions {
    display: flex;
    margin-top: 0.55rem;
    margin-bottom: 0.55rem;
  }

  .hero-cta-pill {
    display: inline-flex;
    width: auto;
  }

  .hero-cta-pill__link {
    min-height: 44px;
    padding: 0 1.2rem;
    font-size: 0.92rem;
  }

  .hero-dots {
    display: flex;
    gap: 0.45rem;
  }

  .hero-dot {
    width: 10px;
    height: 10px;
  }
}

/* ----------------------------------
   Large desktop refinement
   ---------------------------------- */
@media (min-width: 1181px) {
  #home-hero {
    min-height: 700px;
  }

  .hero-content {
    min-height: 700px;
  }
}

/* ==================================================
   SECTION SYSTEM (UNIVERSAL)
   --------------------------------------------------
   Shared section foundation for all major page areas.
   Use this for:
   - intro sections
   - priorities
   - movement
   - vision sections
   - campaign sections
   - connect sections
   Excludes hero and footer unless needed later.
   ================================================== */

/* ----------------------------------
   Base section wrapper
   Gives every section a consistent
   vertical rhythm across the site
   ---------------------------------- */
.section {
  position: relative;
  padding: var(--space-3xl) 0;
}

/* Slightly tighter section option */
.section--tight {
  padding: var(--space-2xl) 0;
}

/* Slightly looser section option */
.section--loose {
  padding: 5rem 0;
}

/* ----------------------------------
   Section inner wrapper
   Keeps content centered and controlled
   ---------------------------------- */
.section__inner {
  width: min(100% - (var(--container-pad) * 2), var(--container-max));
  margin-inline: auto;
}

/* Global safe horizontal breathing */
.section,
.hero-content,
.mobile-nav__inner {
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

@media (max-width: 560px) {
  :root {
    --container-pad: 18px;
  }
}

/* ----------------------------------
   Section header wrapper
   Used for eyebrow + title + intro
   Centered by default
   ---------------------------------- */
.section__head {
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}

/* Left-aligned section header option */
.section__head--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

/* Wider header option for larger copy */
.section__head--wide {
  max-width: 860px;
}

/* Narrower header option for compact sections */
.section__head--narrow {
  max-width: 640px;
}

/* ----------------------------------
   Eyebrow
   Small uppercase label above title
   ---------------------------------- */
.section-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-xs);
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Brand blue eyebrow variant */
.section-eyebrow--blue {
  color: var(--brand-blue);
}

/* ----------------------------------
   Section title
   Primary heading inside a section
   ---------------------------------- */
.section-title {
  margin: 0 0 var(--space-sm);
  color: var(--brand-blue);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;

  position: relative;
}

.section__head--wide .section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: var(--brand-red);
}

/* Slightly smaller title option */
.section-title--sm {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

/* Slightly larger title option */
.section-title--lg {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

/* ----------------------------------
   Section intro
   Lead paragraph beneath the title
   ---------------------------------- */
.section-intro {
  margin: 0;
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Stronger / darker intro if needed */
.section-intro--strong {
  color: var(--text-primary);
}

/* Narrow intro text option */
.section-intro--narrow {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Left-aligned narrow intro */
.section__head--left .section-intro--narrow {
  margin-left: 0;
  margin-right: 0;
}

/* ----------------------------------
   Section body
   Main content zone after header
   ---------------------------------- */
.section__body {
  position: relative;
}

/* ----------------------------------
   Section footer
   Optional area for actions below content
   ---------------------------------- */
.section__foot {
  margin-top: var(--space-xl);
}

/* ----------------------------------
   Shared action row
   For buttons or links inside sections
   ---------------------------------- */
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: var(--space-lg);
}

/* Left-aligned section actions */
.section-actions--left {
  justify-content: flex-start;
}

/* ----------------------------------
   Section background variants
   ---------------------------------- */

/* Pure white — merges with hero */
.section--plain {
  background: #ffffff;
}

/* Default soft background */
.section--alt {
  background: var(--bg-surface-soft);
}

/* Optional subtle separation */
.section--soft {
  background: var(--bg-surface);
}

/* ----------------------------------
   Responsive adjustments
   ---------------------------------- */
@media (max-width: 900px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .section--loose {
    padding: 4rem 0;
  }

  .section__head {
    margin-bottom: var(--space-xl);
  }

  .section-title {
    font-size: clamp(1.85rem, 6vw, 2.6rem);
  }

  .section-intro {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 2.75rem 0;
  }

  .section--tight {
    padding: 2.25rem 0;
  }

  .section--loose {
    padding: 3.5rem 0;
  }

  .section__head {
    margin-bottom: 1.5rem;
  }

  .section-title {
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.12;
  }

  .section-intro {
    font-size: 0.98rem;
  }

  .section-actions {
    align-items: stretch;
    justify-content: stretch;
  }

  .section-actions > * {
    width: 100%;
  }
}

/* ==================================================
   LAYOUT SYSTEM (UNIVERSAL)
   --------------------------------------------------
   Shared layout patterns for arranging content inside
   sections. Use these instead of section-specific
   grids whenever possible.
   ================================================== */

/* ----------------------------------
   Vertical stack
   Keeps content flowing in one column
   with consistent spacing
   ---------------------------------- */
.layout-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.layout-stack--sm {
  gap: var(--space-md);
}

.layout-stack--lg {
  gap: var(--space-xl);
}

/* ----------------------------------
   Grid
   Universal card/grid layout
   ---------------------------------- */
.layout-grid {
  display: grid;
  gap: var(--space-lg);
}

.layout-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.layout-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.layout-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ----------------------------------
   Split layout
   Main content + secondary panel
   ---------------------------------- */
.layout-split {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
}

.layout-split--balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.layout-split--reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

/* ----------------------------------
   Cluster
   Good for buttons, tags, links,
   smaller repeated items
   ---------------------------------- */
.layout-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.layout-cluster--md {
  gap: var(--space-md);
}

.layout-cluster--lg {
  gap: var(--space-lg);
}

/* ----------------------------------
   Sidebar layout
   Stronger separation for content + aside
   ---------------------------------- */
.layout-sidebar {
  display: grid;
  gap: var(--space-2xl);
  align-items: start;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
}

/* ----------------------------------
   Responsive breakdown
   These rules keep all layout patterns
   graceful on tablet and mobile
   ---------------------------------- */
@media (max-width: 1000px) {
  .layout-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .layout-split,
  .layout-split--balanced,
  .layout-split--reverse,
  .layout-sidebar {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 680px) {
  .layout-grid--2,
  .layout-grid--3,
  .layout-grid--4 {
    grid-template-columns: 1fr;
  }

  .layout-stack--lg {
    gap: var(--space-lg);
  }
}

/* ==================================================
   SURFACE / BLOCK SYSTEM (UNIVERSAL)
   --------------------------------------------------
   Shared visual containers for cards, panels,
   callouts, CTA boxes, and grouped content.
   ================================================== */

/* ----------------------------------
   Surface
   Base container style
   ---------------------------------- */
.surface {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
}

.surface--soft {
  background: var(--bg-surface-soft);
  border-color: var(--border-soft);
}

.surface--raised {
  background: var(--bg-surface);
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.surface--outline {
  background: transparent;
  border-color: var(--border-color);
}

.surface--accent {
  background: var(--bg-surface);
  border-left: 3px solid var(--brand-red);
}

.surface--center {
  text-align: center;
}

/* ----------------------------------
   Block
   Generic content module
   ---------------------------------- */
.block {
  padding: var(--space-lg);
}

.block--sm {
  padding: var(--space-md);
}

.block--lg {
  padding: var(--space-xl);
}

.block--xl {
  padding: var(--space-2xl);
}

/* ----------------------------------
   Card
   Reusable card unit
   ---------------------------------- */
.block-card {
	position: relative;
	height: 100%;
	padding: var(--space-lg);
	background: var(--bg-surface);
	border: 1px solid var(--border-soft);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
}


.block-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-blue-rgb), 0.25);
}

.block-card__title {
  margin: 0 0 var(--space-xs);
  color: var(--brand-blue);
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  line-height: 1.2;
  font-weight: 800;
}

.block-card__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.75;
}

.block-card__meta {
  display: inline-block;
  margin-bottom: var(--space-sm);
  color: var(--brand-red);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.block-card__link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-md);
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

/* ----------------------------------
   Panel
   Stronger informational box
   ---------------------------------- */
.panel {
  padding: var(--space-lg);
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.panel__title {
  margin: 0 0 var(--space-sm);
  color: var(--brand-blue);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
}

.panel__text {
  color: var(--text-body);
  line-height: 1.75;
}

.panel__list {
  margin-top: var(--space-sm);
}

.panel__list li {
  margin-bottom: 0.6rem;
  color: var(--text-body);
}

/* ----------------------------------
   Callout
   For emphasis blocks and quote-like areas
   ---------------------------------- */
.callout {
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-surface);
  border-radius: var(--radius-md);
}

.callout--accent {
  border-left: 3px solid var(--brand-red);
}

.callout--soft {
  background: var(--bg-surface-soft);
}

.callout--center {
  text-align: center;
}

.callout__text {
  margin: 0;
  color: var(--text-primary);
  line-height: 1.75;
}

/* ----------------------------------
   CTA box
   Shared action-focused module
   ---------------------------------- */
.cta-box {
  padding: var(--space-2xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cta-box__title {
  margin: 0 0 var(--space-sm);
  color: var(--brand-blue);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  font-weight: 800;
}

.cta-box__text {
  max-width: 64ch;
  margin: 0 auto;
  color: var(--text-body);
  line-height: 1.75;
}

/* ----------------------------------
   List wrappers
   For grouped link/event blocks
   ---------------------------------- */
.list-wrap {
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.list-wrap--padded {
  padding: var(--space-md) var(--space-lg);
}

/* ----------------------------------
   Responsive adjustments
   ---------------------------------- */
@media (max-width: 900px) {
  .block,
  .block-card,
  .panel {
    padding: var(--space-md);
  }

  .cta-box {
    padding: var(--space-xl);
  }

  .block-card__title,
  .panel__title {
    font-size: clamp(1.2rem, 3vw, 1.75rem);
  }
}

@media (max-width: 560px) {
  .block--lg,
  .block--xl,
  .cta-box {
    padding: var(--space-lg);
  }

  .cta-box__title {
    font-size: clamp(1.6rem, 8vw, 2.3rem);
  }

  .cta-box__text,
  .block-card__text,
  .panel__text,
  .callout__text {
    line-height: 1.65;
  }
}

/* ==================================================
   LIST / UTILITY COMPONENTS (UNIVERSAL)
   --------------------------------------------------
   Shared smaller pieces used across sections:
   - event lists
   - link lists
   - numbered rows
   - dividers
   - text links
   - inline metadata
   ================================================== */

/* ----------------------------------
   Text link
   ---------------------------------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus {
  color: var(--brand-blue-dark);
}

/* ----------------------------------
   Divider
   ---------------------------------- */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-soft);
}

.divider--space-sm {
  margin: var(--space-sm) 0;
}

.divider--space-md {
  margin: var(--space-md) 0;
}

.divider--space-lg {
  margin: var(--space-lg) 0;
}

/* ----------------------------------
   Generic list
   ---------------------------------- */
.list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.list__item {
  color: var(--text-body);
  line-height: 1.7;
}

/* ----------------------------------
   Bullet list
   ---------------------------------- */
.list--bullets .list__item {
  position: relative;
  padding-left: 1.1rem;
}

.list--bullets .list__item::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand-red);
}

/* ----------------------------------
   Link list
   Good for social/media/resources
   ---------------------------------- */
.list--links {
  gap: 0;
}

.list--links .list__item + .list__item {
  border-top: 1px solid var(--border-soft);
}

.list-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1rem 0;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
}

.list-link:hover,
.list-link:focus {
  color: var(--brand-blue);
}

/* ----------------------------------
   Event / timeline style rows
   ---------------------------------- */
.list--events {
  gap: 0;
}

.list--events .list__item + .list__item {
  border-top: 1px solid var(--border-soft);
}

.event-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: var(--space-md);
  padding: 1rem 0;
  align-items: start;
}

.event-row__meta {
  color: var(--brand-red);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.event-row__title {
  margin: 0 0 0.25rem;
  color: var(--brand-blue);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.event-row__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.65;
}

/* ----------------------------------
   Numbered rows
   ---------------------------------- */
.number-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.number-row__count {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue-5);
  color: var(--brand-blue);
  font-size: 1rem;
  font-weight: 800;
}

.number-row__title {
  margin: 0 0 0.3rem;
  color: var(--brand-blue);
  font-size: 1.08rem;
  font-weight: 700;
}

.number-row__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.7;
}

/* ----------------------------------
   Timeline
   ---------------------------------- */
.timeline {
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.timeline__item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: var(--space-xl);
  padding: 2rem 2rem;
  align-items: start;
}

.timeline__item + .timeline__item {
  border-top: 1px solid var(--border-soft);
}

.timeline__year {
  color: var(--brand-red);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.timeline__body h3 {
  margin: 0 0 0.65rem;
  color: var(--text-primary);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.timeline__body p {
  margin: 0;
  max-width: 68ch;
  color: var(--text-body);
  font-size: 1.02rem;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .timeline__item {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: var(--space-lg);
    padding: 1.5rem 1.5rem;
  }

  .timeline__body h3 {
    font-size: clamp(1.35rem, 4vw, 1.8rem);
  }
}

@media (max-width: 560px) {
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.25rem 1.25rem;
  }

  .timeline__year {
    font-size: 0.95rem;
  }

  .timeline__body h3 {
    font-size: 1.55rem;
  }

  .timeline__body p {
    font-size: 0.98rem;
    line-height: 1.65;
  }
}

/* ----------------------------------
   Inline metadata / tags
   ---------------------------------- */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta__item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ----------------------------------
   Responsive
   ---------------------------------- */
@media (max-width: 560px) {
  .event-row,
  .number-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .number-row__count {
    width: 46px;
    height: 46px;
  }

  .list-link {
    padding: 0.9rem 0;
  }
}

/* ----------------------------------
   Stat Card (Leadership / Highlights)
   ---------------------------------- */
.stat-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  text-align: center;

  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.stat-card__value {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--brand-blue);
  line-height: 1;
}

.stat-card__title {
  margin: 0 0 var(--space-xs);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.stat-card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* responsive */
@media (max-width: 1000px) {
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .stat-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   CARD BADGES / FEATURE MARKERS
   --------------------------------------------------
   Shared top badges for numbered cards and icon cards
   ================================================== */

.card-badge {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background: var(--blue-5);
  color: var(--brand-blue);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.card-badge--number {
  font-size: 1rem;
  font-weight: 800;
}

.card-badge--icon {
  font-size: 1.1rem;
}

/* ==================================================
   ISSUE PAGE CARD LANGUAGE
   Clean, controlled card system for Economy and Education
   ================================================== */

.economy-signal,
.education-path {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.economy-signal::before,
.education-path::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--brand-blue);
  opacity: 0.95;
}

.economy-signal:hover,
.education-path:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--brand-blue-rgb), 0.18);
}

.economy-signal__top,
.education-path__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.economy-signal__number,
.education-path__number {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  flex: 0 0 auto;
}

.economy-signal__badge,
.education-path__badge {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-5);
  color: var(--brand-blue);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.08);
  flex: 0 0 auto;
  margin-left: auto;
}

.economy-signal__badge svg,
.education-path__badge svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
}

.economy-signal__body,
.education-path__body {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.economy-signal__label,
.education-path__label {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.economy-signal__title,
.education-path__title {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.16;
  font-weight: 800;
}

.economy-signal__text,
.education-path__text {
  margin: 0;
  color: var(--text-body);
  line-height: 1.78;
}

.economy-signal__foot,
.education-path__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
}

.economy-signal__line,
.education-path__line {
  display: block;
  flex: 0 0 46px;
  height: 1px;
  background: rgba(var(--brand-blue-rgb), 0.18);
}

.economy-signal__prompt,
.education-path__prompt {
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 680px) {
  .economy-signal,
  .education-path {
    padding: 1.25rem;
  }

  .economy-signal__badge,
  .education-path__badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .economy-signal__title,
  .education-path__title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .economy-signal__text,
  .education-path__text {
    line-height: 1.72;
  }
}

/* ==================================================
   HEALTHCARE PAGE
   Softer, more human, more editorial
   ================================================== */

.healthcare-hero {
  align-items: center;
}

.healthcare-intro {
  max-width: 62ch;
}

.healthcare-hero-panel {
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.healthcare-statement {
  max-width: 78ch;
  padding: 1.75rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background: var(--bg-surface);
  box-shadow: var(--shadow-soft);
}

.healthcare-statement__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--brand-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.healthcare-statement__title {
  margin: 0 0 0.9rem;
  color: var(--brand-blue);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1.16;
  font-weight: 800;
}

.healthcare-statement__text {
  margin: 0;
  max-width: 62ch;
  color: var(--text-body);
  line-height: 1.8;
}

.healthcare-list {
  display: grid;
  gap: 1rem;
}

.healthcare-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--border-soft);
}

.healthcare-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.healthcare-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.healthcare-item__number {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.healthcare-item__icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--blue-5);
  color: var(--brand-blue);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.08);
}

.healthcare-item__icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.1;
}

.healthcare-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.healthcare-item__label {
  margin: 0;
  color: var(--brand-red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.healthcare-item__title {
  margin: 0;
  color: var(--brand-blue);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.18;
  font-weight: 800;
}

.healthcare-item__text {
  margin: 0;
  max-width: 62ch;
  color: var(--text-body);
  line-height: 1.8;
}

.healthcare-meaning {
  gap: var(--space-xl);
}

.panel--softlift {
  box-shadow: var(--shadow-soft);
}

@media (max-width: 760px) {
  .healthcare-item {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .healthcare-item__meta {
    flex-direction: row;
    align-items: center;
  }

  .healthcare-statement {
    padding: 1.35rem;
  }
}

/* =========================================
   FOOTER — CORE STYLES
   ========================================= */

.site-footer {
  background: #071826;
  color: rgba(255,255,255,0.82);
  padding: 3rem 0 2rem;
}

.site-footer a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

/* layout */
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 2.5rem;
}

/* brand */
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__logo-mark img {
  height: 42px;
}

.site-footer__name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
}

.site-footer__tag {
  font-size: 0.9rem;
  opacity: 0.7;
}

.site-footer__copy {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 32ch;
}

/* CTA (fallback buttons if used) */
.site-footer__actions {
  display: flex;
  gap: 0.75rem;
}

/* nav groups */
.site-footer__navs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.site-footer__group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer__heading {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__list li {
  margin-bottom: 0.45rem;
}

.site-footer__list a {
  font-size: 0.95rem;
}

/* mid notice */
.site-footer__mid {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.site-footer__notice {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* bottom */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.site-footer__meta {
  font-size: 0.8rem;
  opacity: 0.6;
}

.site-footer__legal {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.site-footer__legal a {
  font-size: 0.85rem;
  opacity: 0.75;
}

.site-footer .hero-cta-pill__link--involved {
  color: var(--brand-blue);
  background: #ffffff;
}

.site-footer .hero-cta-pill__link--involved:hover {
  color: var(--brand-blue-dark) !important;
  background: var(--off-white);
}
/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__navs {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .site-footer__navs {
    grid-template-columns: 1fr;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* =========================================
   FORM — MODERN UPGRADE
   ========================================= */

.input,
textarea,
input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #ffffff;
  color: var(--text-body);

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

/* spacing */
form.layout-stack > * + * {
  margin-top: 0.85rem;
}

/* textarea refinement */
textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* focus state (THIS is where the magic is) */
.input:focus,
textarea:focus,
input:focus {
  outline: none;
  border-color: rgba(var(--brand-blue-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--brand-blue-rgb), 0.12);
  background: #ffffff;
}

/* subtle hover */
.input:hover,
textarea:hover,
input:hover {
  border-color: rgba(0,0,0,0.2);
}

/* placeholder tone */
::placeholder {
  color: rgba(0,0,0,0.45);
  font-size: 0.9rem;
}

/* =========================================
   BUTTON — CLEAN + CAMPAIGN FEEL
   ========================================= */

button.button-primary {
  margin-top: 0.5rem;
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;

  background: var(--brand-blue);
  color: #ffffff;

  cursor: pointer;

  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

button.button-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(var(--brand-blue-rgb), 0.25);
}

/* =========================================
   PANEL UPGRADE (SOFT ELEVATION)
   ========================================= */

.panel form {
  padding-top: 0.25rem;
}

.panel {
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.site-nav__link.is-active,
.site-nav__sublink.is-active,
.mobile-nav__link.is-active,
.mobile-nav__sublink.is-active {
  color: var(--brand-red);
}

.site-nav__item.is-active > .site-nav__link {
  color: var(--brand-red);
}

/* =========================================
   GALLERY PAGE
   ========================================= */

.gallery-card__media {
  margin-bottom: 1rem;
}

.gallery-card__media--wide .gallery-card__placeholder,
.gallery-card--featured .gallery-card__placeholder {
  aspect-ratio: 16 / 9;
}

.gallery-card__placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, var(--blue-5) 0%, rgba(var(--brand-red-rgb), 0.06) 100%);
  overflow: hidden;
}

.gallery-card__placeholder::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(var(--brand-blue-rgb), 0.18);
  border-radius: calc(var(--radius-lg) - 6px);
}

.gallery-card__placeholder-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(var(--white-rgb), 0.88);
  color: var(--brand-blue);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.gallery-card--featured .block-card__title {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

/* =========================================
   COMMUNITY VOICES
   ========================================= */

.testimonial-media__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: linear-gradient(
    135deg,
    var(--blue-5) 0%,
    rgba(var(--brand-red-rgb), 0.06) 100%
  );
  color: var(--text-muted);
  font-weight: 600;
}

.donate-placeholder {
  margin-top: 2rem;
  text-align: center;
}

.donate-placeholder__inner {
  padding: 1.25rem;
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  font-weight: 600;
}

.donate-card {
  text-align: center;
}

.donate-placeholder {
  margin-top: 2rem;
  text-align: center;
}

.donate-placeholder__inner {
  padding: 1.25rem;
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--bg-surface-soft);
  font-weight: 600;
}

.donate-placeholder__text {
  margin: 0;
  color: var(--text-body);
}

/* =========================================
   ENDORSEMENTS
   ========================================= */

.endorsement-feature__placeholder,
.endorsement-logos__placeholder {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  border: 2px dashed var(--border-soft);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  text-align: center;
  font-weight: 600;
}

.endorsement-card__author {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--brand-red);
}

.endorsement-card__author span {
  display: block;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================
   WhatsApp Button (Footer + Global)
   ========================================== */

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;

  background-color: #25D366;
  color: #ffffff;

  border: 1px solid #25D366;
  border-radius: 999px;

  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;

  transition: all 0.2s ease;
}

.btn--whatsapp:hover {
  background-color: #1ebe5d;
  border-color: #1ebe5d;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn--whatsapp svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}