/* ========================================
   DESIGN TOKENS / CSS VARIABLES
   ======================================== */
:root {
  /* Primary Colors */
  --color-primary: #7F30BC;
  --color-primary-dark: #6A28A0;
  --color-bow-purple: #8552EB;
  --color-orchid: #A966F4;
  
  /* Backgrounds */
  --color-lavender-mist: #EFD7F9;
  --color-warm-white: #FFFCFF;
  --color-mist-gray: #E7E7EE;
  
  /* Neutrals */
  --color-ink: #15121A;
  --color-charcoal: #1B1B1F;
  
  /* Accent */
  --color-golden: #F4C95D;
  
  /* Typography */
  --font-headline: 'Alice', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-ink);
  background-color: var(--color-warm-white);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-bow-purple);
  text-decoration: underline;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headline);
  font-weight: 500;
  line-height: 1.15;
  color: var(--color-ink);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

.micro-headline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  max-width: none;
}

p {
  max-width: 65ch;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #4A4A52;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

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

.section--lavender {
  background-color: var(--color-lavender-mist);
}

.section--charcoal {
  background-color: var(--color-charcoal);
  color: var(--color-warm-white);
}

.section--charcoal h2,
.section--charcoal h3 {
  color: var(--color-warm-white);
}

.section--charcoal .micro-headline {
  color: var(--color-orchid);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: start;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 48, 188, 0.3);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus {
  background-color: var(--color-lavender-mist);
  color: var(--color-primary);
}

.btn--white {
  background-color: white;
  color: var(--color-primary);
  border-color: white;
}

.btn--white:hover,
.btn--white:focus {
  background-color: var(--color-lavender-mist);
  border-color: var(--color-lavender-mist);
  color: var(--color-primary);
}

/* Button Size Variants */
.btn--sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Donate Button Animation */
.btn--donate {
  position: relative;
}

@media (prefers-reduced-motion: no-preference) {
  .btn--donate {
    animation: donatePulse 2.4s ease-in-out infinite;
  }

  @keyframes donatePulse {
    0%, 100% { 
      transform: scale(1);
      box-shadow: 0 2px 8px rgba(127, 48, 188, 0.25), 0 0 0 0 rgba(127, 48, 188, 0);
    }
    50% { 
      transform: scale(1.04);
      box-shadow: 0 6px 24px rgba(127, 48, 188, 0.4), 0 0 20px rgba(133, 82, 235, 0.3);
    }
  }

  .btn--donate:hover {
    animation: none;
    transform: scale(1.05);
  }
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1010;
  background: rgba(255, 252, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-mist-gray);
  transition: all var(--transition-base);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

/* Default logo styling */
.logo__image {
  height: 48px;
  width: auto;
}

@media (min-width: 900px) {
  .logo__image {
    height: 56px;
  }
}

/* Custom logo (uploaded via Customizer) styling - aggressive selectors */
.logo .custom-logo-link {
  display: flex;
  align-items: center;
}

/* Target all possible image selectors within logo */
.logo img,
.logo .custom-logo,
.logo .custom-logo-link img,
.site-header .logo img,
.site-header .custom-logo-link img,
.site-header__inner .logo img {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  max-height: 48px !important;
  object-fit: contain !important;
}

@media (min-width: 900px) {
  .logo img,
  .logo .custom-logo,
  .logo .custom-logo-link img,
  .site-header .logo img,
  .site-header .custom-logo-link img,
  .site-header__inner .logo img {
    height: 56px !important;
    max-height: 56px !important;
    max-width: 240px !important;
  }
}

/* Ensure the link wrapper doesn't expand */
.logo a,
.logo .custom-logo-link {
  display: inline-flex !important;
  align-items: center !important;
  max-height: 48px !important;
}

@media (min-width: 900px) {
  .logo a,
  .logo .custom-logo-link {
    max-height: 56px !important;
  }
}

.main-nav {
  display: none;
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
  }
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__list li {
  margin: 0;
  padding: 0;
}

/* Style all nav links - both direct class and WordPress generated */
.main-nav__link,
.main-nav__list a,
.main-nav__list li a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
  transition: color var(--transition-fast);
}

.main-nav__link::after,
.main-nav__list a::after,
.main-nav__list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-base);
}

.main-nav__link:hover::after,
.main-nav__list a:hover::after,
.main-nav__list li a:hover::after {
  width: 100%;
}

.main-nav__link:hover,
.main-nav__list a:hover,
.main-nav__list li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Current page highlighting */
.main-nav__list .current-menu-item > a,
.main-nav__list .current_page_item > a,
.main-nav__list li.current-menu-item a,
.main-nav__list li.current_page_item a {
  color: var(--color-primary);
}

.main-nav__list .current-menu-item > a::after,
.main-nav__list .current_page_item > a::after,
.main-nav__list li.current-menu-item a::after,
.main-nav__list li.current_page_item a::after {
  width: 100%;
}

.header-cta .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1025;
  position: relative;
  width: 44px;
  height: 44px;
}

.mobile-menu-toggle span,
.mobile-menu-toggle .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger to X animation when open */
body.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-warm-white);
  z-index: 1020;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

body.mobile-menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Also support aria-hidden for accessibility */
.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Menu Header */
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border-bottom: 1px solid var(--color-mist-gray);
  flex-shrink: 0;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
}

.mobile-menu__logo img {
  max-height: 50px;
  width: auto;
}

.mobile-menu__logo .custom-logo {
  max-height: 50px;
  width: auto;
}

/* Close button */
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-ink);
}

.mobile-menu__close:hover {
  color: var(--color-primary);
}

.mobile-menu__close svg {
  display: block;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.mobile-menu__nav {
  flex: 1;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__list li {
  border-bottom: 1px solid var(--color-mist-gray);
}

.mobile-menu__list li:last-child {
  border-bottom: none;
}

.mobile-menu__list a {
  display: block;
  padding: var(--space-md) 0;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-ink);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-menu__list a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Current page highlighting in mobile menu */
.mobile-menu__list .current-menu-item > a,
.mobile-menu__list .current_page_item > a {
  color: var(--color-primary);
}

.mobile-menu__cta {
  padding-top: var(--space-md);
  flex-shrink: 0;
}

.mobile-menu__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 1.25rem 2rem;
  font-size: 1.125rem;
}

.mobile-menu__social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.mobile-menu__social a {
  width: 48px;
  height: 48px;
  background: var(--color-lavender-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.mobile-menu__social a:hover {
  background: var(--color-primary);
}

.mobile-menu__social svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.mobile-menu__social a:hover svg {
  color: white;
}

.mobile-menu__info {
  margin-top: var(--space-lg);
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .mobile-menu {
    display: none;
  }
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-xl);
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-lavender-mist) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -8%;
  width: 50%;
  height: 75%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 180' xmlns='http://www.w3.org/2000/svg'%3E%3C!-- Left loop --%3E%3Cpath d='M100 90 C85 75 50 55 25 70 C5 82 5 110 25 125 C50 142 85 115 100 90' fill='none' stroke='%238552EB' stroke-width='2' stroke-linecap='round' opacity='0.15'/%3E%3C!-- Right loop --%3E%3Cpath d='M100 90 C115 75 150 55 175 70 C195 82 195 110 175 125 C150 142 115 115 100 90' fill='none' stroke='%238552EB' stroke-width='2' stroke-linecap='round' opacity='0.15'/%3E%3C!-- Left ribbon tail --%3E%3Cpath d='M100 90 Q85 120 75 160' fill='none' stroke='%238552EB' stroke-width='2' stroke-linecap='round' opacity='0.15'/%3E%3C!-- Right ribbon tail --%3E%3Cpath d='M100 90 Q115 120 125 160' fill='none' stroke='%238552EB' stroke-width='2' stroke-linecap='round' opacity='0.15'/%3E%3C!-- Center knot --%3E%3Cellipse cx='100' cy='90' rx='12' ry='10' fill='none' stroke='%238552EB' stroke-width='2' opacity='0.15'/%3E%3C/svg%3E") no-repeat center top;
  background-size: contain;
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4A4A52;
  margin-bottom: var(--space-lg);
  max-width: 540px;
}

.hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(127, 48, 188, 0.15);
}

.hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero__image-placeholder {
  background: linear-gradient(135deg, var(--color-lavender-mist) 0%, #e0c8ed 100%);
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image-placeholder-content {
  text-align: center;
  color: var(--color-primary);
  opacity: 0.5;
}

.hero__image-placeholder-content svg {
  margin-bottom: 0.5rem;
}

.hero__image-placeholder-content span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Ribbon accent */
.hero__ribbon {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 150px;
  height: 150px;
  opacity: 0.6;
}

/* ========================================
   IMPACT STATS SECTION
   ======================================== */
.impact-stats {
  padding: var(--space-xl) 0;
  background: white;
  border-bottom: 1px solid var(--color-mist-gray);
}

.impact-stats__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.impact-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  text-align: center;
}

.impact-stats__grid--four {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .impact-stats__grid--four {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat__number {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 1rem;
  color: #666;
  max-width: 220px;
  margin: 0 auto;
}

/* Section Divider - subtle line between sections */
.section-divider {
  height: 0;
  border: 0;
  border-bottom: 1px solid var(--color-mist-gray);
  margin: 0;
}

/* Section divider between light sections - ensure visibility */
.get-support-section + .section-divider {
  background: transparent;
}

/* Stat card variation (for homepage) */
.impact-stats-section {
  background: white;
  border-bottom: 1px solid var(--color-mist-gray);
}

.impact-stats-section .micro-headline {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.impact-stats-section .impact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
}

.impact-stats-section .impact-stats.impact-stats--four {
  grid-template-columns: repeat(4, 1fr);
}

.impact-stats-section .impact-stats.impact-stats--many {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .impact-stats-section .impact-stats.impact-stats--four,
  .impact-stats-section .impact-stats.impact-stats--many {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .impact-stats-section .impact-stats,
  .impact-stats-section .impact-stats.impact-stats--four,
  .impact-stats-section .impact-stats.impact-stats--many {
    grid-template-columns: 1fr;
  }
}

.stat-card {
  padding: var(--space-md);
  text-align: center;
}

.stat-card__number {
  display: block;
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card__label {
  display: block;
  font-size: 1rem;
  color: #444;
  max-width: 220px;
  margin: 0 auto;
}

/* ========================================
   WHY IT MATTERS SECTION
   ======================================== */
.why-matters-section {
  background: var(--color-warm-white);
}

.why-matters__centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.why-matters__centered h2 {
  margin-bottom: var(--space-md);
}

.why-matters__centered p {
  font-size: 1.125rem;
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.why-matters__emphasis {
  margin-top: var(--space-lg);
  font-size: 1.25rem;
  color: var(--color-ink);
}

/* ========================================
   OUR MODEL SECTION
   ======================================== */
.model-section {
  background: var(--color-lavender-mist);
}

.model-section__header,
.model__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.model-section__header h2,
.model__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.model-section__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.model__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 700px;
  margin: var(--space-md) auto 0;
}

.model__cta {
  text-align: center;
  margin-top: var(--space-xl);
}

.pillars,
.model-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 992px) {
  .pillars,
  .model-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pillars,
  .model-pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(127, 48, 188, 0.15);
}

.pillar__icon {
  width: 56px;
  height: 56px;
  background: var(--color-lavender-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.pillar__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.pillar__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-ink);
}

.pillar__text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* ========================================
   STORY HIGHLIGHTS SECTION
   ======================================== */
.stories-section {
  background: white;
}

.stories__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.stories__header h2 {
  margin-left: auto;
  margin-right: auto;
}

/* Featured single story layout */
.story-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.1);
}

/* Full-bleed variant: image fills full height and bleeds to card edges */
.story-feature--full-bleed {
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
}

.story-feature--full-bleed .story-feature__image {
  aspect-ratio: unset;
  min-height: 100%;
  height: 100%;
  border-radius: 0;
  /* Image should extend to the very edge of the card */
  margin: 0;
}

.story-feature--full-bleed .story-feature__image img {
  /* Ensure image covers full container with no gaps */
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.story-feature--full-bleed .story-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--space-2xl);
}

@media (max-width: 768px) {
  .story-feature {
    grid-template-columns: 1fr;
  }
  
  .story-feature--full-bleed .story-feature__image {
    aspect-ratio: 4/3;
    height: auto;
  }
  
  .story-feature--full-bleed .story-feature__image img {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .story-feature--full-bleed .story-feature__content {
    padding: var(--space-lg);
    /* Top-align content on mobile to reduce whitespace */
    justify-content: flex-start;
  }
}

.story-feature__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-lavender-mist);
}

.story-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-feature__content {
  padding: var(--space-xl);
}

@media (max-width: 768px) {
  .story-feature__content {
    padding: var(--space-lg);
  }
}

.story-feature__title {
  font-family: var(--font-headline);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}

.story-feature__quote {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.story-feature__attribution {
  font-size: 0.9375rem;
  color: #666;
  font-style: normal;
  margin-bottom: var(--space-md);
}

.story-feature__text {
  font-size: 1rem;
  color: #666;
  margin-bottom: var(--space-lg);
}

.story-feature__link {
  font-weight: 500;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
}

.story-feature__link:hover {
  color: var(--color-bow-purple);
  text-decoration: underline;
}

.stories__more {
  text-align: center;
  margin-top: var(--space-xl);
}

/* Story cards grid (for multiple stories) */
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 992px) {
  .story-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .story-cards {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all var(--transition-base);
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(127, 48, 188, 0.15);
}

.story-card__link-wrap {
  display: block;
  text-decoration: none;
  color: inherit;
}

.story-card__link-wrap:hover {
  text-decoration: none;
  color: inherit;
}

.story-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-lavender-mist);
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-card:hover .story-card__image img {
  transform: scale(1.05);
}

.story-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-lavender-mist) 0%, #d4b8e8 100%);
}

.story-card__placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--color-primary);
  opacity: 0.5;
}

.story-card__content {
  padding: var(--space-md);
}

.story-card__quote {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.story-card__text {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: var(--space-sm);
}

.story-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.story-card__link:hover {
  gap: 0.75rem;
}

.story-card__cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition-fast);
}

.story-card:hover .story-card__cta {
  gap: 0.75rem;
}

/* ========================================
   WAYS TO HELP SECTION
   ======================================== */
.ways-to-help {
  background: var(--color-charcoal);
  color: white;
}

.ways-to-help__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.ways-to-help__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.ways-to-help h2 {
  color: white;
}

.ways-to-help .micro-headline {
  color: var(--color-orchid);
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.help-cards.help-cards--four {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .help-cards,
  .help-cards.help-cards--four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .help-cards,
  .help-cards.help-cards--four {
    grid-template-columns: 1fr;
  }
}

.help-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.help-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.help-card__icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.help-card__icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.help-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.help-card__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-md);
}

.help-card .btn {
  width: 100%;
}

/* ========================================
   UPCOMING EVENTS SECTION
   ======================================== */
.events-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--color-mist-gray);
  transition: all var(--transition-base);
}

.event-card:hover {
  box-shadow: 0 12px 24px -8px rgba(127, 48, 188, 0.15);
  border-color: var(--color-lavender-mist);
}

.event-card__image {
  aspect-ratio: 2/1;
  overflow: hidden;
  background: var(--color-lavender-mist);
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__content {
  padding: var(--space-md);
}

.event-card__date {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.event-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-card__location {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: var(--space-sm);
}

.event-card__cta {
  display: flex;
  gap: var(--space-sm);
}

.event-card__cta .btn {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.event-card__description {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.event-card__status {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  background: var(--color-lavender-mist);
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bow-purple) 100%);
  color: white;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.cta-band h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-band p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0 auto var(--space-lg);
  max-width: 500px;
}

.cta-band .btn-group {
  justify-content: center;
}

/* ========================================
   GET SUPPORT SECTION
   ======================================== */
.get-support-section {
  background: #FFFFFF;
}

.get-support__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .get-support__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.get-support__content {
  max-width: 500px;
}

.get-support__text {
  font-size: 1.125rem;
  color: #4A4A52;
  margin-bottom: var(--space-lg);
}

.get-support__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.get-support__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.get-support__step-number {
  width: 32px;
  height: 32px;
  background: var(--color-lavender-mist);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.get-support__step-text {
  font-size: 1rem;
  color: var(--color-ink);
}

.get-support__visual {
  display: flex;
  justify-content: center;
}

.get-support__card {
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  max-width: 360px;
}

.get-support__card-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.get-support__card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.get-support__card h3 {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.get-support__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.get-support__list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #4A4A52;
  font-size: 0.9375rem;
}

.get-support__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* ========================================
   BOW SOCIETY SECTION
   ======================================== */
.bow-society-section {
  background: var(--color-charcoal);
  color: white;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.bow-society__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.bow-society__content {
  text-align: left;
}

.bow-society__content .micro-headline {
  color: var(--color-orchid);
  margin-bottom: var(--space-sm);
}

.bow-society__content h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.bow-society__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.bow-society__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
}

.bow-society__benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.625rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.bow-society__benefits li svg {
  width: 20px;
  height: 20px;
  color: var(--color-orchid);
  flex-shrink: 0;
  margin-top: 2px;
}

.bow-society__stat {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.bow-society__stat strong {
  color: var(--color-orchid);
  font-weight: 600;
}

.bow-society__card {
  background: #2A2A30;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bow-society__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.bow-society__header h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  color: white;
  margin: 0;
}

.bow-society__note {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-md);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
  background: var(--color-warm-white);
}

.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__inner h2 {
  margin-bottom: var(--space-sm);
}

.newsletter__inner p {
  color: #666;
  margin: 0 auto var(--space-lg);
  max-width: none;
}

.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  max-width: 500px;
  margin: var(--space-xl) auto 0;
}

.newsletter-form__input {
  flex: 1;
  min-width: 280px;
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-mist-gray);
  border-radius: var(--radius-md);
  background: white;
  transition: all var(--transition-fast);
}

.newsletter-form__input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(127, 48, 188, 0.1);
}

.newsletter-form__input::placeholder {
  color: #999;
}

.newsletter-form .btn {
  white-space: nowrap;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer__brand {
  max-width: 350px;
}

.footer__logo-text {
  display: block;
  margin-bottom: var(--space-md);
  text-decoration: none;
}

.footer__logo-text:hover {
  text-decoration: none;
}

.footer__org-name {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 500;
  color: white;
  line-height: 1.2;
}

.footer__org-subname {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.9375rem;
  font-weight: 400;
  color: white;
  line-height: 1.4;
  margin-top: 0.25rem;
}

.footer__tagline {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-md);
}

.footer__links h4,
.footer__newsletter h4 {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__links a:hover {
  color: white;
}

.footer__newsletter-text {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__newsletter p {
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.footer-newsletter-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.footer-newsletter-form .newsletter-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9375rem;
}

.footer-newsletter-form .newsletter-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter-form .btn {
  align-self: flex-start;
}

.footer__consent {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 var(--space-md);
}

.footer__consent a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
}

.footer__consent a:hover {
  color: white;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  min-width: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  text-decoration: none;
}

/* Ensure all social icons are visible on mobile */
@media (max-width: 768px) {
  .footer__social {
    justify-content: flex-start;
    gap: var(--space-sm);
  }
  
  .footer__social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
}

.footer__social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-base);
}

.footer__social-link:hover svg {
  color: white;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.footer__ein {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   PAGE HERO (Interior Pages)
   ======================================== */
.page-hero {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-lg);
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-lavender-mist) 100%);
  text-align: center;
}

@media (min-width: 900px) {
  .page-hero {
    padding-top: calc(80px + var(--space-2xl));
    padding-bottom: var(--space-2xl);
  }
}

.page-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.page-hero__title {
  margin-bottom: var(--space-md);
}

.page-hero__subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4A4A52;
  margin: 0 auto;
  max-width: 600px;
}

/* Left-aligned variant (used for Legal pages like Privacy Policy) */
.page-hero--left {
  text-align: left;
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-md);
}

@media (min-width: 900px) {
  .page-hero--left {
    padding-top: calc(80px + var(--space-lg));
    padding-bottom: var(--space-lg);
  }
}

.page-hero--left .page-hero__content {
  margin: 0;
  max-width: 700px;
}

.page-hero__meta {
  font-size: 0.9375rem;
  color: #666;
}

/* ========================================
   LEGAL PAGES (Privacy Policy, etc.)
   ======================================== */
.legal-content {
  background: white;
  padding-bottom: var(--space-2xl);
}

.legal-content__inner {
  max-width: 750px;
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  color: #4A4A52;
}

.legal-content ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
  color: #4A4A52;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

/* ========================================
   ORIGIN STORY SECTION (About Page)
   ======================================== */
.origin-story {
  background: white;
}

.origin-story__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .origin-story__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.origin-story__content h2 {
  margin-bottom: var(--space-md);
}

.origin-story__text {
  font-size: 1.0625rem;
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.origin-story__text:last-of-type {
  margin-bottom: 0;
}

.origin-story__visual {
  display: flex;
  justify-content: center;
}

.origin-story__image {
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.origin-story__image-placeholder {
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--color-primary);
  opacity: 0.6;
}

.origin-story__image-placeholder svg {
  width: 48px;
  height: 48px;
}

.origin-story__image-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ========================================
   MADDY'S FIGHT SECTION (About Page)
   ======================================== */
.maddys-fight {
  background: white;
  padding-top: 0;
}

.maddys-fight__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.maddys-fight__content h2 {
  margin-bottom: var(--space-md);
}

.maddys-fight__content p {
  font-size: 1.125rem;
  color: #4A4A52;
  margin: 0 auto var(--space-md);
  max-width: 700px;
}

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

/* ========================================
   THE BOW SECTION (About Page)
   ======================================== */
.the-bow {
  background: var(--color-lavender-mist);
  text-align: center;
}

.the-bow__inner {
  max-width: 700px;
  margin: 0 auto;
}

.the-bow__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
}

.the-bow h2 {
  margin-bottom: var(--space-md);
}

.the-bow__text {
  font-size: 1.125rem;
  color: #4A4A52;
  margin: 0 auto var(--space-md);
}

/* ========================================
   MISSION SECTION (About Page)
   ======================================== */
.mission-section {
  background: var(--color-charcoal);
  color: white;
}

.mission-section__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-section .micro-headline {
  color: var(--color-orchid);
}

.mission-section h2 {
  color: white;
  margin-bottom: var(--space-lg);
}

.mission-statement {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.4;
  color: white;
  max-width: none;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  text-align: left;
}

.mission-value {
  padding: var(--space-md);
  border-left: 3px solid var(--color-primary);
}

.mission-value h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.mission-value p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  max-width: none;
}

/* ========================================
   FOUNDERS SECTION (About Page)
   ======================================== */
.founders-section {
  background: white;
}

.founders-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.founders-section__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.founders-section__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.founder-card__image {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-lavender-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card__image svg {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  opacity: 0.4;
}

.founder-card__name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.founder-card__role {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.founder-card__bio {
  font-size: 1rem;
  color: #4A4A52;
  max-width: 400px;
  margin: 0 auto;
}

/* ========================================
   TIMELINE SECTION (About Page)
   ======================================== */
.timeline-section {
  background: var(--color-lavender-mist);
}

.timeline-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.timeline-section__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-primary);
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: var(--space-lg);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item__marker {
  position: absolute;
  left: 8px;
  top: 4px;
  width: 24px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 50%;
  border: 4px solid var(--color-lavender-mist);
}

.timeline-item__year {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.timeline-item__title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.timeline-item__text {
  font-size: 0.9375rem;
  color: #666;
}

/* ========================================
   DONATION MODAL (Placeholder)
   ======================================== */
.donate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(21, 18, 26, 0.8);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.donate-modal.is-open {
  display: flex;
}

.donate-modal__content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.donate-modal__header {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-mist-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donate-modal__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
}

.donate-modal__close {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-mist-gray);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.donate-modal__close:hover {
  background: var(--color-lavender-mist);
}

.donate-modal__body {
  padding: var(--space-lg);
}

.donate-modal__placeholder {
  text-align: center;
  padding: var(--space-xl);
  color: #666;
}

.donate-modal__placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* ========================================
   DARK MODE OVERRIDE
   Force light mode colors regardless of OS preference
   This ensures our brand colors display correctly
   ======================================== */
@media (prefers-color-scheme: dark) {
  /* Force light mode on body and main containers */
  :root {
    color-scheme: light;
  }
  
  body {
    background-color: var(--color-warm-white);
    color: var(--color-ink);
  }

  /* Sections that should stay light - be specific, exclude dark sections */
  .hero,
  .impact-section,
  .why-matters,
  .model-section,
  .stories-section,
  #events,
  .newsletter-section {
    background-color: var(--color-warm-white);
    color: var(--color-ink);
  }

  /* Keep Get Support pure white for contrast against warm-white sections */
  .get-support-section {
    background-color: #FFFFFF;
    color: var(--color-ink);
  }

  /* Lavender sections stay lavender */
  .model-section {
    background-color: var(--color-lavender-mist);
  }

  /* Cards in LIGHT sections need explicit light backgrounds */
  .story-card,
  .event-card,
  .pillar {
    background-color: white;
    color: var(--color-ink);
  }

  /* Get Support card stays lavender */
  .get-support__card {
    background-color: var(--color-lavender-mist) !important;
    color: var(--color-ink);
  }

  .get-support__card h3 {
    color: var(--color-ink);
  }

  .get-support__list li {
    color: #4A4A52;
  }

  .story-card__content,
  .event-card__content {
    background-color: white;
  }

  .story-card__quote,
  .event-card__title {
    color: var(--color-ink);
  }

  .story-card__text,
  .event-card__location,
  .event-card__description,
  .pillar__text {
    color: #666;
  }

  /* Ensure micro-headlines stay purple in light sections */
  .why-matters .micro-headline,
  .model-section .micro-headline,
  .stories-section .micro-headline,
  #events .micro-headline,
  .get-support-section .micro-headline {
    color: var(--color-primary);
  }

  /* Headlines in light sections */
  .hero h1,
  .why-matters h2,
  .model-section h2,
  .stories-section h2,
  #events h2,
  .get-support-section h2 {
    color: var(--color-ink);
  }

  /* DARK SECTIONS - Explicitly preserve their dark styling */
  .ways-to-help {
    background-color: var(--color-charcoal) !important;
    color: white !important;
  }

  .ways-to-help h2,
  .ways-to-help .micro-headline {
    color: var(--color-orchid) !important;
  }

  .ways-to-help h2 {
    color: white !important;
  }

  .help-card {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }

  .help-card__title {
    color: white !important;
  }

  .help-card__text {
    color: rgba(255, 255, 255, 0.7) !important;
  }

  .cta-band {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bow-purple) 100%) !important;
    color: white !important;
  }

  .cta-band h2,
  .cta-band p {
    color: white !important;
  }

  /* Bow Society section keeps its dark charcoal design */
  .bow-society-section {
    background-color: var(--color-charcoal) !important;
    color: white !important;
  }

  .bow-society__content h2,
  .bow-society__header h3 {
    color: white !important;
  }

  .bow-society__content .micro-headline {
    color: var(--color-orchid) !important;
  }

  .bow-society__text {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .bow-society__benefits li {
    color: rgba(255, 255, 255, 0.9) !important;
  }

  .bow-society__card {
    background-color: #2A2A30 !important;
  }

  .footer {
    background-color: var(--color-charcoal) !important;
    color: rgba(255, 255, 255, 0.7) !important;
  }

  /* Input and form elements */
  input,
  textarea,
  select {
    background-color: white;
    color: var(--color-ink);
    border-color: var(--color-mist-gray);
  }

  /* Placeholder styling */
  .story-card__placeholder {
    background: linear-gradient(135deg, var(--color-lavender-mist) 0%, #d4b8e8 100%);
  }

  .event-card__image {
    background-color: var(--color-lavender-mist);
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

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

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  .section {
    padding: var(--space-xl) 0;
  }

  .hero {
    padding-top: calc(70px + var(--space-xl));
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-group .btn {
    width: 100%;
  }

  .events-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bow-society__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .bow-society__content {
    text-align: center;
    padding: 0 var(--space-sm);
  }

  .bow-society__benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: var(--space-md);
  }

  .bow-society__benefits li {
    justify-content: flex-start;
    text-align: left;
  }

  .bow-society__stat {
    display: inline-flex;
    justify-content: center;
    margin: 0 auto;
  }

  .bow-society__card {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

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

  .footer__social {
    justify-content: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .bow-society__content {
    padding: 0;
  }

  .bow-society__content h2 {
    font-size: 1.75rem;
  }

  .bow-society__text {
    font-size: 1rem;
  }

  .bow-society__benefits li {
    font-size: 0.9375rem;
  }

  .bow-society__card {
    padding: var(--space-lg);
  }
}

/* ========================================
   OUR MODEL PAGE
   ======================================== */

/* Differentiator Section */
.differentiator {
  background: var(--color-warm-white);
}

.differentiator__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.differentiator__content {
  max-width: 540px;
}

.differentiator__text {
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}

.differentiator__highlight {
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-lavender-mist);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.differentiator__highlight p {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  color: var(--color-ink);
  margin: 0;
  max-width: none;
}

/* Comparison Card */
.comparison-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.comparison-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-mist-gray);
}

.comparison-card__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.comparison-card__row:first-child {
  padding-top: 0;
}

.comparison-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #666;
  margin-bottom: 0.25rem;
}

.comparison-card__value {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.comparison-card__value--muted {
  color: #999;
}

.comparison-card__value--highlight {
  color: var(--color-primary);
}

/* Pillars Section */
.pillars-section {
  background: var(--color-lavender-mist);
}

.pillars-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.pillars-section__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.pillars-section__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

/* Pillar Detail - Alternating Zigzag Layout */
.pillar-detail {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.pillar-detail:last-child {
  margin-bottom: 0;
}

.pillar-detail__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .pillar-detail__inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Alternating layout - even items have icon on left */
  .pillar-detail:nth-child(even) .pillar-detail__content {
    order: 2;
  }

  .pillar-detail:nth-child(even) .pillar-detail__visual {
    order: 1;
  }
}

.pillar-detail__content {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar-detail__number {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-lavender-mist);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.pillar-detail__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.pillar-detail__text {
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.pillar-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pillar-detail__list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #4A4A52;
}

.pillar-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}

.pillar-detail__visual {
  background: var(--color-lavender-mist);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-detail__icon {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(127, 48, 188, 0.15);
}

.pillar-detail__icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--color-primary);
}

/* Process Section */
.process-section {
  background: var(--color-warm-white);
}

.process-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.process-timeline {
  max-width: 700px;
  margin: 0 auto;
}

.process-timeline .process-step {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  position: relative;
}

.process-timeline .process-step:last-child {
  margin-bottom: 0;
}

.process-timeline .process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 56px;
  width: 2px;
  height: calc(100% - 16px);
  background: var(--color-lavender-mist);
}

.process-timeline .process-step__marker {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.process-timeline .process-step__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.process-timeline .process-step__content p {
  color: var(--color-ink);
  margin: 0;
}

/* Quote Section */
.quote-section {
  background: var(--color-lavender-mist);
}

.quote-section__inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.quote-section__inner::before {
  content: '\201C';
  font-family: var(--font-headline);
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.2;
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.quote-section__text {
  font-family: var(--font-headline);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  font-style: italic;
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  line-height: 1.55;
}

.quote-section__attribution {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Our Model Page Responsive */
@media (max-width: 968px) {
  .differentiator__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .differentiator__content {
    max-width: none;
  }

  .pillar-detail__inner {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .pillar-detail__visual {
    order: -1;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .comparison-card__row {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-timeline .process-step {
    gap: var(--space-md);
  }

  .process-timeline .process-step__marker {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .process-timeline .process-step:not(:last-child)::after {
    left: 19px;
    top: 48px;
  }

  .pillar-detail {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
  }

  .pillar-detail__inner {
    display: block;
  }

  .pillar-detail__content {
    padding: var(--space-lg);
  }

  /* Hide the visual/icon section on mobile */
  .pillar-detail__visual {
    display: none;
  }

  .pillar-detail__number {
    font-size: 2rem;
  }

  .pillar-detail__title {
    font-size: 1.25rem;
  }

  .pillar-detail__text {
    font-size: 0.9375rem;
  }

  .pillar-detail__list li {
    font-size: 0.9375rem;
    padding-left: 1.5rem;
  }

  .pillar-detail__list li::before {
    width: 8px;
    height: 8px;
    top: 0.7rem;
  }
}

/* ========================================
   IMPACT PAGE
   ======================================== */

/* Impact Stats Hero */
.impact-hero-stats {
  background: var(--color-charcoal);
  padding: var(--space-xl) 0;
}

.impact-hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .impact-hero-stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.impact-stat {
  text-align: center;
}

.impact-stat__number {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.impact-stat__label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 180px;
  margin: 0 auto;
}

/* What We Fund Section */
.what-we-fund {
  background: white;
}

.what-we-fund__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.what-we-fund__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.what-we-fund__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.funding-breakdown {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .funding-breakdown {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .funding-breakdown {
    grid-template-columns: repeat(3, 1fr);
  }
}

.funding-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.funding-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(127, 48, 188, 0.15);
}

.funding-item__icon {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.funding-item__icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
}

.funding-item__title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.funding-item__description {
  font-size: 0.9375rem;
  color: #4A4A52;
  max-width: 250px;
  margin: 0 auto;
}

/* Bells Rung Section */
.bells-section {
  background: var(--color-lavender-mist);
  text-align: center;
}

.bells-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.bells-section__icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(127, 48, 188, 0.15);
}

.bells-section__icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.bells-section__number {
  font-family: var(--font-headline);
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.bells-section h2 {
  margin-bottom: var(--space-md);
}

.bells-section__text {
  font-size: 1.125rem;
  color: #4A4A52;
  margin: 0 auto;
}

/* Stories Section - Impact Page variant */
.stories-section--impact {
  background: white;
}

.stories-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.stories-section__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stories-section--impact .story-card {
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.stories-section--impact .story-card__image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bow-purple) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stories-section--impact .story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__image-placeholder {
  color: white;
  opacity: 0.5;
  text-align: center;
}

.story-card__image-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.story-card__image-placeholder span {
  display: block;
  font-size: 0.875rem;
}

.stories-section--impact .story-card__content {
  padding: var(--space-lg);
}

.story-card__quote {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}

.story-card__attribution {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* Map Section */
.map-section {
  background: var(--color-charcoal);
  color: white;
}

.map-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .map-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.map-section__content .micro-headline {
  color: var(--color-orchid);
}

.map-section__content h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.map-section__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
  max-width: none;
}

.states-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.state-tag {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: white;
}

.map-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* US Map Container */
.us-map {
  width: 100%;
  max-width: 550px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

/* Centered layout for reach section */
.map-section__centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.map-section__centered h2 {
  margin-bottom: var(--space-md);
  color: white;
}

.map-section__centered .map-section__text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-lg);
}

.states-list--centered {
  justify-content: center;
}

/* Reach Visual - Alternative to map */
.reach-visual {
  background: linear-gradient(135deg, rgba(127, 48, 188, 0.15) 0%, rgba(133, 82, 235, 0.1) 100%);
  border: 1px solid rgba(133, 82, 235, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 400px;
}

.reach-visual__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bow-purple) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reach-visual__icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.reach-visual__number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bow-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.reach-visual__label {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-lg);
  font-weight: 500;
}

.reach-visual__states {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  justify-content: center;
}

.reach-state {
  background: rgba(127, 48, 188, 0.3);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(133, 82, 235, 0.4);
}

/* Transparency Section */
.transparency-section {
  background: white;
}

.transparency-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.transparency-section__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.transparency-section__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 600px;
  margin: var(--space-sm) auto 0;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .transparency-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.transparency-item {
  text-align: center;
  padding: var(--space-lg);
}

.transparency-item__number {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.transparency-item__label {
  font-size: 0.9375rem;
  color: #666;
}

/* Impact Page Responsive */
@media (max-width: 768px) {
  .impact-hero-stats__grid {
    gap: var(--space-md);
  }
  
  .impact-stat__number {
    font-size: 2rem;
  }
  
  .impact-stat__label {
    font-size: 0.8125rem;
  }
  
  .bells-section__number {
    font-size: 4rem;
  }
  
  .map-section__grid {
    gap: var(--space-lg);
  }
  
  .us-map {
    max-width: 350px;
  }
}

/* ========================================
   EVENTS PAGE STYLES
   ======================================== */

/* Events Hero */
.page-hero--events {
  background: var(--color-charcoal);
  min-height: 50vh;
  position: relative;
}

.page-hero--events .page-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--events .page-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--events .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 27, 31, 0.9) 0%, rgba(127, 48, 188, 0.7) 100%);
  z-index: 1;
}

.page-hero--events .page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero--events .page-hero__title,
.page-hero--events h1 {
  color: white !important;
}

.page-hero--events .page-hero__subtitle,
.page-hero--events p:not(.micro-headline) {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Upcoming Events */
.upcoming-events {
  background: white;
}

.upcoming-events__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.upcoming-events__header h2 {
  margin-bottom: var(--space-sm);
}

.upcoming-events__intro {
  font-size: 1.125rem;
  color: #4A4A52;
  max-width: 600px;
  margin: 0 auto;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.event-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-lavender-mist) 0%, #e0c5f0 100%);
}

.event-card__date-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: white;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.event-card__date-badge .month {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card__date-badge .day {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1;
}

.event-card__content {
  padding: var(--space-lg);
}

.event-card__title {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.event-card__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: #666;
}

.event-card__meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.event-card__description {
  font-size: 0.9375rem;
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.event-card__status {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(127, 48, 188, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Events Newsletter */
.events-newsletter {
  background: var(--color-lavender-mist);
  text-align: center;
}

.events-newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
}

.events-newsletter__icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 16px rgba(127, 48, 188, 0.15);
}

.events-newsletter__icon svg {
  width: 40px;
  height: 40px;
  color: var(--color-primary);
}

.events-newsletter h2 {
  margin-bottom: var(--space-sm);
}

.events-newsletter__text {
  font-size: 1.125rem;
  color: #4A4A52;
  margin: 0 auto var(--space-lg);
}

.events-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 450px;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .events-newsletter .newsletter-form {
    flex-direction: row;
  }
}

.events-newsletter .newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid white;
  border-radius: var(--radius-md);
  background: white;
  transition: border-color var(--transition-fast);
}

.events-newsletter .newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
}

.events-newsletter .newsletter-form .btn {
  white-space: nowrap;
}

/* Past Events */
.past-events {
  background: white;
}

.past-events__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.past-events__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.past-event {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-mist-gray);
}

.past-event:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .past-event {
    grid-template-columns: 1fr 1fr;
  }

  .past-event:nth-child(even) .past-event__images {
    order: 2;
  }
}

.past-event__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.past-event__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.past-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-event__image--large {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.past-event__content h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-sm);
}

.past-event__date {
  font-size: 0.9375rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.past-event__description {
  font-size: 1rem;
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.past-event__stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-md);
}

.past-event__stat {
  text-align: center;
}

.past-event__stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.past-event__stat-label {
  font-size: 0.8125rem;
  color: #666;
  margin-top: 0.25rem;
}

.past-event__highlight {
  background: var(--color-lavender-mist);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

.past-event__highlight p {
  font-size: 0.9375rem;
  font-style: italic;
  color: #4A4A52;
  margin: 0;
  max-width: none;
}

.past-event__highlight cite {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0.5rem;
  font-style: normal;
}

/* Host an Event */
.host-event {
  background: var(--color-charcoal);
  color: white;
}

.host-event__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .host-event__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.host-event__content .micro-headline {
  color: var(--color-orchid);
}

.host-event__content h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.host-event__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.host-event__ideas {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.host-event__ideas li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.host-event__ideas li:last-child {
  border-bottom: none;
}

.host-event__ideas li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--color-orchid);
  border-radius: 50%;
}

.host-event__visual {
  display: flex;
  justify-content: center;
}

.host-event__image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.host-event__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Event Card Title Link */
.event-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.event-card__title a:hover {
  color: var(--color-primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-bow-purple) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-section p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin: 0 auto var(--space-lg);
  max-width: 500px;
}

.cta-section .btn-group {
  justify-content: center;
}

.btn--outline-white {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* ========================================
   SINGLE EVENT PAGE
   ======================================== */
.event-hero {
  background: var(--color-charcoal);
  color: white;
  padding: var(--space-2xl) 0;
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 27, 31, 0.95) 0%, rgba(127, 48, 188, 0.8) 100%);
  z-index: 1;
}

.event-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.event-hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
  color: white;
}

.event-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
}

.event-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.event-hero__meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-orchid);
  flex-shrink: 0;
}

.event-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.event-content {
  background: white;
}

.event-content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .event-content__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.event-content__image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.event-content__text h2 {
  margin-bottom: var(--space-md);
}

.event-content__text p {
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

/* ========================================
   GET INVOLVED PAGE
   ======================================== */

/* Ways to Give */
.ways-to-give {
  background: white;
}

.ways-to-give__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.giving-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .giving-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.giving-option {
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.giving-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(127, 48, 188, 0.15);
}

.giving-option__icon {
  width: 72px;
  height: 72px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 12px rgba(127, 48, 188, 0.1);
}

.giving-option__icon svg {
  width: 36px;
  height: 36px;
  color: var(--color-primary);
}

.giving-option__title {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.giving-option__description {
  color: #4A4A52;
  margin: 0 auto var(--space-lg);
  max-width: 300px;
}

/* Bow Society Full Section */
.bow-society-full {
  background: var(--color-charcoal);
  color: white;
  position: relative;
  overflow: hidden;
}

.bow-society-full::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 175' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 87.5 C80 70 37.5 50 20 70 C5 87.5 5 120 25 135 C50 155 87.5 125 100 87.5' stroke='%238552EB' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3Cpath d='M100 87.5 C120 70 162.5 50 180 70 C195 87.5 195 120 175 135 C150 155 112.5 125 100 87.5' stroke='%238552EB' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3Cpath d='M100 87.5 Q87.5 125 80 162.5' stroke='%238552EB' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3Cpath d='M100 87.5 Q112.5 125 120 162.5' stroke='%238552EB' stroke-width='2' stroke-linecap='round' fill='none'/%3E%3Cellipse cx='100' cy='87.5' rx='15' ry='12.5' stroke='%238552EB' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
}

.bow-society-full__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .bow-society-full__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bow-society-full__content .micro-headline {
  color: var(--color-golden);
}

.bow-society-full__content h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.bow-society-full__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.bow-society-full__benefits {
  list-style: none;
  margin: var(--space-lg) 0;
}

.bow-society-full__benefits li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bow-society-full__benefits li:last-child {
  border-bottom: none;
}

.bow-society-full__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-golden);
  border-radius: 50%;
}

.bow-society-full__form-inner {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.bow-society-full__form-inner h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  text-align: center;
}

/* Fundraise Section */
.fundraise-section {
  background: var(--color-lavender-mist);
}

.fundraise-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .fundraise-section__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fundraise-section__content h2 {
  margin-bottom: var(--space-md);
}

.fundraise-section__text {
  color: #4A4A52;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.fundraise-ideas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.fundraise-idea {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
}

.fundraise-idea__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.fundraise-idea__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
}

.fundraise-section__visual {
  display: flex;
  justify-content: center;
}

.fundraise-section__image {
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-xl);
}

.fundraise-image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: white;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  opacity: 0.5;
}

.fundraise-image-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}

.fundraise-image-placeholder span {
  font-size: 0.875rem;
}

/* Other Ways Section */
.other-ways {
  background: white;
}

.other-ways__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.other-ways-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .other-ways-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .other-ways-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.other-way {
  text-align: center;
  padding: var(--space-lg);
}

.other-way__icon {
  width: 64px;
  height: 64px;
  background: var(--color-lavender-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.other-way__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.other-way__title {
  font-size: 1.125rem;
  margin-bottom: var(--space-xs);
}

.other-way__description {
  font-size: 0.9375rem;
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.other-way__cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.other-way__social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.other-way__social a {
  width: 40px;
  height: 40px;
  background: var(--color-lavender-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.other-way__social a:hover {
  background: var(--color-primary);
}

.other-way__social a:hover svg {
  color: white;
}

.other-way__social svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  transition: color var(--transition-base);
}

/* Corporate Section */
.corporate-section {
  background: var(--color-lavender-mist);
}

.corporate-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .corporate-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.corporate-section__content h2 {
  margin-bottom: var(--space-md);
}

.corporate-section__text {
  color: #4A4A52;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.corporate-options {
  list-style: none;
  margin: var(--space-lg) 0;
}

.corporate-options li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid rgba(127, 48, 188, 0.15);
}

.corporate-options li:last-child {
  border-bottom: none;
}

.corporate-options li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--color-primary);
  font-weight: 600;
}

.corporate-section__visual {
  display: flex;
  justify-content: center;
}

.corporate-logos-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/3;
  background: white;
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  opacity: 0.5;
}

.corporate-logos-placeholder svg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);
}

.corporate-logos-placeholder span {
  font-size: 0.875rem;
}

/* Other Way CTA Buttons - Bordered Style */
.other-way__cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
}

.other-way__cta:hover {
  background-color: var(--color-primary);
  color: white;
  text-decoration: none;
}

/* ========================================
   BLOG ARCHIVE PAGE
   ======================================== */

/* Category Filters */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--space-lg);
}

.category-filter {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  background: white;
  border: 1px solid var(--color-mist-gray);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.category-filter:hover,
.category-filter--active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  text-decoration: none;
}

/* Featured Post */
.featured-post {
  background: white;
  padding-top: var(--space-xl);
  padding-bottom: 0;
}

.featured-post__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  /* Stretch items so the image can fully bleed vertically on desktop */
  align-items: stretch;
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

@media (min-width: 900px) {
  .featured-post__inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.featured-post__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

@media (min-width: 900px) {
  /* Let the image stretch to match the content height on desktop */
  .featured-post__image {
    aspect-ratio: auto;
    height: 100%;
  }
}

.featured-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post__content {
  padding: var(--space-lg);
}

@media (min-width: 900px) {
  .featured-post__content {
    align-self: center;
    padding: var(--space-xl);
    padding-left: 0;
  }
}

.featured-post__badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.featured-post__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-sm);
}

.featured-post__title a {
  color: var(--color-ink);
  text-decoration: none;
}

.featured-post__title a:hover {
  color: var(--color-primary);
}

.featured-post__excerpt {
  color: #4A4A52;
  margin-bottom: var(--space-md);
}

.featured-post__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: #666;
}

.featured-post__author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.featured-post__author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Blog Grid */
.blog-grid-section {
  background: white;
  padding-top: var(--space-xl);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Two-column variant for impact page */
.blog-grid--two {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .blog-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .blog-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
  }
}

.post-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-mist-gray);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(127, 48, 188, 0.12);
  border-color: var(--color-lavender-mist);
}

.post-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-lavender-mist);
  display: block;
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.post-card:hover .post-card__image img {
  transform: scale(1.05);
}

.post-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.post-card__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.post-card__title a {
  color: var(--color-ink);
  text-decoration: none;
}

.post-card__title a:hover {
  color: var(--color-primary);
}

.post-card__excerpt {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #666;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-mist-gray);
}

.post-card__author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  flex-shrink: 0;
}

.post-card__author-name {
  font-weight: 500;
  color: var(--color-ink);
}

.post-card__date {
  color: #999;
  margin-left: auto;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-xl);
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #666;
  background: white;
  border: 1px solid var(--color-mist-gray);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.pagination__link:hover {
  background: var(--color-lavender-mist);
  border-color: var(--color-lavender-mist);
  color: var(--color-primary);
  text-decoration: none;
}

.pagination__link--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.pagination__link--active:hover {
  background: var(--color-primary-dark);
  color: white;
}

.pagination__link--arrow {
  font-size: 1.25rem;
}

.pagination__link--disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* Blog Newsletter Section */
.blog-newsletter {
  /* Differentiate from the dark footer while keeping a branded feel */
  background: var(--color-lavender-mist);
  color: var(--color-ink);
}

.blog-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .blog-newsletter__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-newsletter__content h2 {
  color: var(--color-ink);
  margin-bottom: var(--space-sm);
}

.blog-newsletter__text {
  color: #4A4A52;
  font-size: 1.0625rem;
}

.blog-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 500px) {
  .blog-newsletter__form {
    flex-direction: row;
  }
}

.blog-newsletter__form input[type="email"] {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  border: 2px solid var(--color-mist-gray);
  border-radius: var(--radius-md);
  background: white;
  color: var(--color-ink);
  transition: border-color var(--transition-fast);
}

.blog-newsletter__form input[type="email"]::placeholder {
  color: #666;
}

.blog-newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(127, 48, 188, 0.1);
  background: white;
}

.blog-newsletter__form .btn {
  white-space: nowrap;
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: var(--space-2xl);
  color: #666;
}

/* ========================================
   SINGLE POST / ARTICLE
   ======================================== */

/* Article Header */
.article-header {
  padding-top: calc(80px + var(--space-xl));
  padding-bottom: var(--space-2xl);
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-lavender-mist) 100%);
}

.article-header__inner {
  /* Match the featured image width so the header content aligns left consistently */
  max-width: 900px;
  margin: 0 auto;
}

.article-header__category {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.article-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: var(--space-md);
}

.article-header__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.article-header__author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
}

.article-header__author-name {
  font-weight: 600;
  color: var(--color-ink);
}

.article-header__date {
  color: #666;
}

/* Featured Image */
.article-featured-image {
  margin-top: calc(-1 * var(--space-2xl));
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 10;
}

.article-featured-image img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Article Content */
.article-content {
  padding-bottom: var(--space-xl);
}

.article-content__inner {
  max-width: 700px;
  margin: 0 auto;
}

.article-content p {
  margin-bottom: 1.5em;
  max-width: none;
}

.article-content h2 {
  margin-top: 2em;
  margin-bottom: 0.75em;
}

.article-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

.article-content li {
  margin-bottom: 0.5em;
}

.article-content blockquote {
  margin: 2em 0;
  padding: var(--space-lg);
  background: var(--color-lavender-mist);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.article-content blockquote p {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 0.5em;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-content blockquote cite {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  font-style: normal;
}

.article-content img {
  margin: 2em 0;
  border-radius: var(--radius-lg);
}

.article-content a {
  text-decoration: underline;
}

/* Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-mist-gray);
}

.article-tag {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #666;
  background: var(--color-mist-gray);
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.article-tag:hover {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
}

/* Share */
.article-share {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.article-share__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666;
}

.article-share__links {
  display: flex;
  gap: 0.5rem;
}

.article-share__link {
  width: 36px;
  height: 36px;
  background: var(--color-mist-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.article-share__link:hover {
  background: var(--color-primary);
}

.article-share__link svg {
  width: 18px;
  height: 18px;
  color: #666;
  transition: color var(--transition-fast);
}

.article-share__link:hover svg {
  color: white;
}

/* Inline Donation CTA */
.article-cta-inline {
  margin-top: var(--space-xl);
}

.article-cta-inline__box {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(135deg, #7F30BC 0%, #A966F4 100%);
  border-radius: 40px;
  text-align: center;
  opacity: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.article-cta-inline h3 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.article-cta-inline p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  margin: 0 auto var(--space-md);
  max-width: 400px;
}

.article-cta-inline .btn {
  text-decoration: none;
}

.article-cta-inline .btn:hover {
  text-decoration: none;
}

/* Related Posts */
.related-posts {
  background: var(--color-lavender-mist);
}

.related-posts__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .related-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.related-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(127, 48, 188, 0.12);
}

.related-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}

.related-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.related-card:hover .related-card__image img {
  transform: scale(1.05);
}

.related-card__content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card__category {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: var(--color-primary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

.related-card__title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.related-card__title a {
  color: var(--color-ink);
  text-decoration: none;
}

.related-card__title a:hover {
  color: var(--color-primary);
}

.related-card__excerpt {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.related-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #666;
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-mist-gray);
}

.related-card__author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.5rem;
  font-weight: 600;
  flex-shrink: 0;
}

.related-card__author-name {
  font-weight: 500;
  color: var(--color-ink);
}

.related-card__date {
  color: #999;
  margin-left: auto;
}

/* Placeholder Image */
.placeholder-image {
  width: 100%;
  height: 100%;
  background: var(--color-lavender-mist);
}

/* ========================================
   HUBSPOT IMPORT CLEANUP
   ======================================== */
/* Remove any boxes/borders from HubSpot imported content */
.article-content__inner div,
.article-content__inner table,
.article-content__inner td,
.article-content__inner tr,
.article-content__inner tbody,
.article-content__inner [style*="border"],
.article-content__inner [style*="background"] {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Reset HubSpot table layouts */
.article-content__inner table {
  width: 100% !important;
  display: block !important;
}

.article-content__inner td {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
}

/* Fix images that may have inline styles */
.article-content__inner img {
  max-width: 100% !important;
  height: auto !important;
  margin: 1.5em auto !important;
  display: block !important;
}

/* Preserve blockquote styling (override the reset above) */
.article-content blockquote {
  background: var(--color-lavender-mist) !important;
  border-left: 4px solid var(--color-primary) !important;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin: 2em 0;
}

/* ========================================
   CONTACT PAGE
   ======================================== */

/* Contact Section */
.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form */
.contact-form {
  background: var(--color-warm-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-mist-gray);
}

.contact-form h2 {
  margin-bottom: var(--space-md);
}

.contact-form .form-group {
  margin-bottom: var(--space-md);
}

.contact-form .form-group label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-mist-gray);
  border-radius: var(--radius-md);
  background: white;
  transition: border-color var(--transition-fast);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.contact-form .form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A4A52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.application-form .form-group select[multiple] {
  background-image: none;
  padding-right: 1rem;
  min-height: 140px;
}


.contact-form .btn {
  width: 100%;
  margin-top: var(--space-sm);
}

.contact-form__status {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.contact-form__status--success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid #A5D6A7;
}

.contact-form__status--error {
  background: #FFF3E0;
  color: #E65100;
  border: 1px solid #FFCC80;
}

/* Contact Info */
.contact-info h2 {
  margin-bottom: var(--space-lg);
}

.contact-info__item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--color-lavender-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.contact-info__content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-info__content p {
  color: #4A4A52;
  font-size: 0.9375rem;
}

.contact-info__content a {
  color: var(--color-primary);
}

/* Contact Social */
.contact-social {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-mist-gray);
}

.contact-social h3 {
  margin-bottom: var(--space-md);
}

.contact-social__links {
  display: flex;
  gap: var(--space-sm);
}

.contact-social__link {
  width: 48px;
  height: 48px;
  background: var(--color-lavender-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.contact-social__link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.contact-social__link svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

.contact-social__link:hover svg {
  color: white;
}

/* FAQ Teaser */
.faq-teaser {
  background: var(--color-lavender-mist);
}

.faq-teaser__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.faq-teaser h2 {
  margin-bottom: var(--space-sm);
}

.faq-teaser p {
  color: #4A4A52;
  margin: 0 auto var(--space-lg);
  max-width: 500px;
}

.faq-teaser__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   GET SUPPORT PAGE
   ======================================== */

/* Who We Help */
.who-we-help {
  background: white;
}

.who-we-help__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .who-we-help__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.who-we-help__item {
  text-align: center;
  padding: var(--space-lg);
}

.who-we-help__icon {
  width: 64px;
  height: 64px;
  background: var(--color-lavender-mist);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.who-we-help__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.who-we-help__item h3 {
  margin-bottom: var(--space-sm);
}

.who-we-help__item p {
  color: #4A4A52;
  font-size: 1rem;
  max-width: none;
}

/* What We Support */
.what-we-support {
  background: var(--color-lavender-mist);
}

.what-we-support__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.what-we-support__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.support-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-md);
}

.support-category {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.support-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(127, 48, 188, 0.1);
}

.support-category__icon {
  width: 48px;
  height: 48px;
  background: var(--color-lavender-mist);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
}

.support-category__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.support-category__label {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--color-ink);
}

/* How It Works */
.how-it-works {
  background: white;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.how-it-works__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step__number {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto var(--space-md);
}

.process-step__title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: 0.9375rem;
  color: #666;
  max-width: 220px;
  margin: 0 auto;
}

/* Connector lines on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: var(--color-mist-gray);
  }
}

/* Application Section */
.application-section {
  background: var(--color-charcoal);
  color: white;
}

.application__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .application__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  /* Keep the left-hand copy visible while scrolling through a long form */
  .application__content {
    position: sticky;
    top: 120px; /* below fixed header */
    align-self: start;
  }

  .application__form-container {
    align-self: start;
  }
}


.application__content h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.application__content .micro-headline {
  color: var(--color-orchid);
}

.application__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  max-width: none;
}

.application__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  max-width: none;
}

.application__form-container {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
}

.application-form h3 {
  color: var(--color-ink);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.application-form .form-group {
  margin-bottom: var(--space-md);
}

.application-form .form-group > label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.5rem;
}

.application-form .form-group input:not([type="checkbox"]):not([type="radio"]),
.application-form .form-group select,
.application-form .form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-mist-gray);
  border-radius: var(--radius-md);
  background: white;
  transition: all var(--transition-fast);
}

.application-form .form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.application-form .form-group select:focus,
.application-form .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(127, 48, 188, 0.1);
}

.application-form .form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.application-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234A4A52' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-note {
  font-size: 0.8125rem;
  color: #666;
  margin-top: var(--space-sm);
}

.form-alert {
  margin: 0 0 var(--space-md);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-mist-gray);
  background: white;
  font-size: 0.95rem;
  color: var(--color-ink);
}

.form-alert--success {
  border-color: rgba(127, 48, 188, 0.28);
  background: rgba(127, 48, 188, 0.10);
  color: var(--color-ink);
}

.form-alert--error {
  border-color: rgba(211, 47, 47, 0.25);
  background: rgba(211, 47, 47, 0.08);
  color: var(--color-ink);
}

.form-alert p {
  margin: 0;
}

/* Multi-select (checkbox group) */
.mj-multiselect {
  width: 100%;
  padding: 0.35rem 0.5rem;
  border: 2px solid var(--color-mist-gray);
  border-radius: var(--radius-md);
  background: white;
  max-height: 240px;
  overflow-y: auto;
}

.mj-multiselect:focus-within {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(127, 48, 188, 0.1);
}

.mj-multiselect__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.55rem;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  margin: 0; /* override any inherited label spacing */
  font-weight: 500;
  font-size: 1rem;
}

.mj-multiselect__option:hover {
  background: rgba(127, 48, 188, 0.06);
}

.mj-multiselect__option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}

.mj-multiselect__option input[type="checkbox"]:focus {
  outline: 2px solid rgba(127, 48, 188, 0.35);
  outline-offset: 2px;
}

.mj-multiselect__label {
  line-height: 1.35;
  color: var(--color-ink);
}

.mj-multiselect__option input[type="checkbox"]:checked + .mj-multiselect__label {
  font-weight: 600;
}


.form-field-hint {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #666;
}

/* FAQ Section */
.faq-section {
  background: var(--color-lavender-mist);
}

.faq-section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.faq-section__header h2 {
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--space-md);
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-ink);
  transition: all var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-sm);
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md);
  color: #666;
  display: none;
}

.faq-answer p {
  max-width: none;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Support Contact Section */
.support-contact-section {
  background: white;
  text-align: center;
}

.support-contact-section h2 {
  margin-bottom: var(--space-sm);
}

.support-contact-section p {
  color: #666;
  margin: 0 auto var(--space-lg);
  max-width: 500px;
}

.contact-email {
  font-size: 1.25rem;
  font-weight: 600;
}

/* ========================================
   404 PAGE
   ======================================== */
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-lavender-mist) 100%);
  text-align: center;
}

.error-page__content {
  max-width: 600px;
}

.error-page__logo {
  height: 160px;
  width: auto;
  margin: 0 auto var(--space-lg);
  opacity: 0.4;
}

.error-page__code {
  font-family: var(--font-headline);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 300;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.2;
}

.error-page__title {
  margin-bottom: var(--space-sm);
}

.error-page__message {
  font-size: 1.125rem;
  color: #4A4A52;
  margin-bottom: var(--space-xl);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
}

.error-page__links {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(127, 48, 188, 0.2);
}

.error-page__links h2 {
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  color: #666;
}

.error-page__link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.error-page__link {
  padding: 0.5rem 1rem;
  background: white;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink);
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.error-page__link:hover {
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(127, 48, 188, 0.2);
}

/* ========================================
   STYLE GUIDE PAGE
   ======================================== */
.style-guide .sg-hero {
  background: linear-gradient(180deg, var(--color-warm-white) 0%, var(--color-lavender-mist) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.style-guide .sg-hero h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-ink);
}

.style-guide .sg-hero__desc {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.style-guide .sg-nav {
  background: white;
  border-bottom: 1px solid var(--color-mist-gray);
  padding: var(--space-sm) var(--space-md);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.style-guide .sg-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.style-guide .sg-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  text-decoration: none;
}

.style-guide .sg-nav__link:hover {
  background: var(--color-lavender-mist);
  text-decoration: none;
}

.style-guide .sg-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  border-bottom: 1px solid var(--color-mist-gray);
}

.style-guide .sg-section:last-child {
  border-bottom: none;
}

.style-guide .sg-section__header {
  margin-bottom: var(--space-xl);
}

.style-guide .sg-section__title {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.style-guide .sg-section__desc {
  color: #666;
  font-size: 1rem;
}

.style-guide .sg-subsection {
  margin-bottom: var(--space-xl);
}

.style-guide .sg-subsection:last-child {
  margin-bottom: 0;
}

.style-guide .sg-subsection__title {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--color-lavender-mist);
}

.style-guide .sg-example {
  background: #FAFAFA;
  border: 1px solid var(--color-mist-gray);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.style-guide .sg-code {
  background: var(--color-charcoal);
  color: #E7E7EE;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.8125rem;
  line-height: 1.5;
  overflow-x: auto;
}

.style-guide .sg-grid {
  display: grid;
  gap: var(--space-md);
}

.style-guide .sg-grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.style-guide .sg-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.style-guide .sg-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

/* Color Swatches */
.style-guide .sg-swatch {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-mist-gray);
}

.style-guide .sg-swatch__color {
  height: 100px;
}

.style-guide .sg-swatch__info {
  padding: var(--space-sm);
  background: white;
}

.style-guide .sg-swatch__name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.style-guide .sg-swatch__value {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.75rem;
  color: #666;
}

.style-guide .sg-swatch__var {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.6875rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

/* Typography Specimens */
.style-guide .sg-type-specimen {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-mist-gray);
}

.style-guide .sg-type-specimen:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.style-guide .sg-type-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  font-size: 0.75rem;
  color: #666;
}

.style-guide .sg-type-meta span {
  background: var(--color-lavender-mist);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

/* Spacing Visualization */
.style-guide .sg-spacing-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
}

.style-guide .sg-spacing-bar {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-orchid) 100%);
  height: 24px;
  border-radius: 4px;
}

.style-guide .sg-spacing-label {
  min-width: 120px;
  font-size: 0.875rem;
}

.style-guide .sg-spacing-label code {
  background: var(--color-lavender-mist);
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  font-size: 0.8125rem;
}

.style-guide .sg-spacing-value {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.75rem;
  color: #666;
}

/* Blockquote Component */
.style-guide .blockquote {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-ink);
  border-left: 4px solid var(--color-primary);
  padding-left: var(--space-md);
  margin: 0;
}

.style-guide .blockquote__attribution {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-style: normal;
  color: #666;
  margin-top: var(--space-sm);
}

/* Body text styles for style guide */
.style-guide .body-large {
  font-size: 1.125rem;
  line-height: 1.7;
}

.style-guide .caption {
  font-size: 0.8125rem;
  color: #666;
}

.style-guide .h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Style Guide Logo Cards */
.style-guide .sg-logo-card {
  background: white;
  border: 1px solid var(--color-mist-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.style-guide .sg-logo-card__preview {
  background: #FAFAFA;
  padding: var(--space-lg);
  text-align: center;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.style-guide .sg-logo-card__preview img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

.style-guide .sg-logo-card__info {
  padding: var(--space-md);
}

.style-guide .sg-logo-card__info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.style-guide .sg-logo-card__info .btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  margin-top: var(--space-sm);
}

/* Style Guide Copy Buttons */
.style-guide .sg-copy-btn {
  background: transparent;
  border: 1px solid var(--color-mist-gray);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--color-ink);
}

.style-guide .sg-copy-btn:hover {
  background: var(--color-lavender-mist);
  border-color: var(--color-primary);
}

.style-guide .sg-swatch__value .sg-copy-btn {
  margin-left: 0.5rem;
}

.style-guide .sg-code-inline-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  padding: var(--space-sm);
  background: #f5f5f5;
  border-radius: var(--radius-sm);
}

.style-guide .sg-code-inline-wrap code {
  font-family: 'Monaco', 'Menlo', monospace;
  font-size: 0.8125rem;
  color: var(--color-primary-dark);
  flex: 1;
}

/* Style Guide Color Ratio */
.style-guide .sg-color-ratio__bar {
  display: flex;
  height: 40px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.style-guide .sg-color-ratio__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #666;
}

/* Style Guide Swatch Usage */
.style-guide .sg-swatch__usage {
  font-size: 0.6875rem;
  color: #888;
  margin-top: 0.25rem;
}

/* Style Guide Button in swatch */
.style-guide .sg-swatch__value {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.style-guide .sg-swatch__value button {
  font-size: 0.6875rem;
  padding: 0.125rem 0.375rem;
}

/* Partner Logos Grid */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  justify-items: center;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
  min-height: 80px;
  width: 100%;
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.85;
  transition: all var(--transition-base);
  display: block;
  margin: 0 auto;
}

.partner-logo:hover img,
.partner-logo a:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .partner-logos {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .partner-logo {
    min-height: 100px;
    width: 100%;
    max-width: 300px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }

  .partner-logo img {
    max-height: 80px;
    max-width: 200px;
    margin: 0 auto !important;
    display: block;
  }

  .partner-logo a {
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 100%;
  }

  /* Center the whole corporate visual on mobile */
  .corporate-section__visual {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}

/* ========================================
   GOOGLE MAPS - IMPACT PAGE
   ======================================== */
.mj-google-map {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-section__container {
  margin: var(--space-xl) 0;
  position: relative;
}

.map-section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.map-section__header h2 {
  margin-bottom: var(--space-sm);
}

.map-section__legend {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-ink);
}

.map-legend__marker {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.map-legend__marker--hospital {
  background: var(--color-orchid);
  border-radius: 50%;
  transform: none;
}

/* Info window styling override */
.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
}

.gm-style .gm-style-iw-tc::after {
  background: white !important;
}

/* States list below map */
.states-list--centered {
  justify-content: center;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .mj-google-map {
    height: 400px;
  }
  
  .map-section__legend {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 480px) {
  .mj-google-map {
    height: 300px;
    border-radius: var(--radius-lg);
  }
}

/* Map Section Dark Mode */
.map-section--dark {
  background: var(--color-charcoal);
  color: white;
}

.map-section--dark h2 {
  color: white;
}

.map-section--dark .map-section__text {
  color: rgba(255, 255, 255, 0.85);
}

.map-section--dark .micro-headline {
  color: var(--color-orchid);
}

/* Updated Legend with Emojis */
.map-legend__emoji {
  font-size: 1.25rem;
  line-height: 1;
}

.map-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--color-ink);
}

/* State tags on dark background */
.map-section--dark .state-tag {
  background: rgba(127, 48, 188, 0.2);
  color: white;
  border-color: rgba(127, 48, 188, 0.5);
}

.map-section--dark .state-tag:hover {
  background: rgba(127, 48, 188, 0.4);
}

/* Taller Google Map */
.mj-google-map {
  height: 600px;
}

@media (max-width: 768px) {
  .mj-google-map {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .mj-google-map {
    height: 450px;
  }
}

/* Ensure map markers are clickable */
.mj-google-map img[src*="data:image"] {
  cursor: pointer !important;
}

/* ==========================================================================
   Resource Hub Page Styles
   ========================================================================== */

/* Resource Hub Hero */
.page-hero--resource-hub {
  position: relative;
  min-height: 350px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-purple) 0%, var(--color-bow-purple) 100%) !important;
  padding: var(--space-2xl) 0 !important;
  padding-top: calc(80px + var(--space-2xl)) !important;
}

.page-hero--resource-hub .page-hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero--resource-hub .page-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--resource-hub .page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(127, 48, 188, 0.7);
  z-index: 1;
}

.page-hero--resource-hub .page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero--resource-hub .micro-headline {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: var(--space-sm);
}

.page-hero--resource-hub .page-hero__title {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-md);
}

.page-hero--resource-hub .page-hero__subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Intro Section */
.resource-hub-intro {
  padding: var(--space-2xl) 0;
}

.resource-hub-intro .section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.resource-hub-intro .intro-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-ink);
  max-width: 700px;
  margin: 0 auto;
}

.resource-hub-intro .intro-text p {
  margin-bottom: var(--space-md);
}

.resource-hub-intro .intro-text p:last-child {
  margin-bottom: 0;
}

/* Videos Section */
.resource-hub-videos {
  padding: var(--space-2xl) 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.video-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.video-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink);
  padding: var(--space-md) var(--space-md) var(--space-xs);
  margin: 0;
}

.video-card__description {
  font-size: 0.9375rem;
  color: var(--color-ink);
  opacity: 0.8;
  padding: 0 var(--space-md) var(--space-md);
  margin: 0;
  line-height: 1.5;
}

/* Resource Categories Section */
.resource-hub-resources {
  padding: var(--space-2xl) 0;
}

.resource-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.resource-category {
  background: var(--color-lavender-mist);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.resource-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.resource-category__header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.resource-category__icon {
  font-size: 2rem;
  line-height: 1;
}

.resource-category__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0;
}

.resource-category__description {
  font-size: 0.9375rem;
  color: var(--color-ink);
  opacity: 0.85;
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.resource-category__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.resource-category__links li {
  margin-bottom: var(--space-xs);
}

.resource-category__links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary-purple);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.resource-category__links a:hover {
  color: var(--color-bow-purple);
  text-decoration: underline;
}

.resource-category__links .external-icon {
  opacity: 0.6;
  flex-shrink: 0;
}

/* Blog Grid */
.resource-hub-blog {
  padding: var(--space-2xl) 0;
}

.resource-hub-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.resource-hub-blog .blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.resource-hub-blog .blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.resource-hub-blog .blog-card__image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.resource-hub-blog .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.resource-hub-blog .blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.resource-hub-blog .blog-card__content {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-hub-blog .blog-card__date {
  font-size: 0.8125rem;
  color: var(--color-primary-purple);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.resource-hub-blog .blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: var(--space-xs) 0 var(--space-sm);
}

.resource-hub-blog .blog-card__title a {
  color: var(--color-ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.resource-hub-blog .blog-card__title a:hover {
  color: var(--color-primary-purple);
}

.resource-hub-blog .blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--color-ink);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  flex: 1;
}

.resource-hub-blog .blog-card__link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary-purple);
  text-decoration: none;
  transition: color 0.2s ease;
}

.resource-hub-blog .blog-card__link:hover {
  color: var(--color-bow-purple);
  text-decoration: underline;
}

/* Downloads Section */
.resource-hub-downloads {
  padding: var(--space-2xl) 0;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.download-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-lavender-mist);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.download-card__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-purple);
}

.download-card__content {
  flex: 1;
  min-width: 0;
}

.download-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0 0 var(--space-xs);
}

.download-card__description {
  font-size: 0.875rem;
  color: var(--color-ink);
  opacity: 0.8;
  line-height: 1.5;
  margin: 0 0 var(--space-xs);
}

.download-card__size {
  font-size: 0.75rem;
  color: var(--color-ink);
  opacity: 0.6;
}

.download-card__btn {
  flex-shrink: 0;
  align-self: center;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile styles for download cards */
@media (max-width: 768px) {
  .downloads-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-sm);
  }

  .download-card__icon {
    margin-bottom: var(--space-xs);
  }

  .download-card__content {
    width: 100%;
  }

  .download-card__btn {
    margin-top: var(--space-sm);
    width: 100%;
    justify-content: center;
  }
}

/* CTA Section */
.resource-hub-cta {
  padding: var(--space-2xl) 0 !important;
  background: linear-gradient(135deg, var(--color-primary-purple) 0%, var(--color-bow-purple) 100%) !important;
  color: white !important;
}

.resource-hub-cta .cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 var(--space-md);
  color: white;
}

.resource-hub-cta .cta-text {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.95;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.resource-hub-cta .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.resource-hub-cta .btn--white {
  background: white;
  color: var(--color-primary-purple);
  border: 2px solid white;
}

.resource-hub-cta .btn--white:hover {
  background: transparent;
  color: white;
}

.resource-hub-cta .btn--white-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.resource-hub-cta .btn--white-outline:hover {
  background: white;
  color: var(--color-primary-purple);
}

/* Sponsor Section */
.resource-hub-sponsor {
  padding: var(--space-xl) 0;
  background: var(--color-warm-white);
  border-top: 1px solid var(--color-mist-gray);
}

.sponsor-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 var(--space-sm);
}

.sponsor-text {
  font-size: 0.9375rem;
  color: var(--color-ink);
  opacity: 0.7;
  margin-bottom: var(--space-md);
}

.sponsor-logo {
  display: inline-block;
}

.sponsor-logo img {
  max-width: 200px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.sponsor-logo a:hover img {
  opacity: 1;
}

/* Responsive adjustments for Resource Hub */
@media (max-width: 991px) {
  .resource-hub-blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero--resource-hub {
    min-height: 280px;
    padding: var(--space-xl) 0;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-hub-blog .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-categories {
    grid-template-columns: 1fr;
  }
  
  .downloads-grid {
    grid-template-columns: 1fr;
  }
  
  .download-card {
    flex-direction: column;
    text-align: center;
  }
  
  .download-card__icon {
    margin: 0 auto var(--space-sm);
  }
  
  .download-card__btn {
    align-self: stretch;
    margin-top: var(--space-sm);
  }
  
  .resource-hub-cta .cta-title {
    font-size: 1.75rem;
  }
  
  .resource-hub-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .video-card__title {
    font-size: 1.125rem;
  }
  
  .resource-category {
    padding: var(--space-md);
  }
  
  .resource-category__icon {
    font-size: 1.5rem;
  }
  
  .resource-category__title {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   Utility Classes for Resource Hub
   ========================================================================== */

/* Section padding utility */
.section-padding {
  padding: var(--space-2xl) 0;
}

/* Background utilities */
.bg-lavender {
  background-color: var(--color-lavender-mist);
}

.bg-purple {
  background: linear-gradient(135deg, var(--color-primary-purple) 0%, var(--color-bow-purple) 100%);
}

/* Text alignment */
.text-center {
  text-align: center;
}

/* Container narrow variant */
.container--narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-md);
  padding-right: var(--space-md);
}

/* Section header styles */
.section-header {
  margin-bottom: var(--space-lg);
}

.section-header .section-title {
  margin-bottom: var(--space-sm);
}

.section-header .section-intro {
  font-size: 1.0625rem;
  color: var(--color-ink);
  opacity: 0.85;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Trusted Partners Section - Resource Hub
   ========================================================================== */

.trusted-partners-section {
  background: linear-gradient(135deg, #7F30BC 0%, #8552EB 100%);
  padding: 5rem 0;
}

.trusted-partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.trusted-partners-header h2 {
  color: white;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.trusted-partners-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.trusted-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.partner-card__logo {
  height: 60px;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.partner-card__logo img {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
}

.partner-card__name {
  margin-bottom: 1rem;
}

.partner-card__name h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  color: #15121A;
  margin: 0;
}

.partner-card__description {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.6;
  margin: 0 0 1rem;
  flex: 1;
}

.partner-card__spacer {
  flex: 1;
}

.partner-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #7F30BC;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.partner-card__button:hover {
  background: #8552EB;
  color: white;
}

.partner-card__button svg {
  flex-shrink: 0;
}

/* Responsive adjustments for partner cards */
@media (max-width: 768px) {
  .trusted-partners-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .trusted-partners-section {
    padding: 3rem 0;
  }
}

/* ==========================================================================
   Post Card adjustments for Resource Hub context
   ========================================================================== */

/* Ensure post-cards on lavender background stand out */
.section .blog-grid .post-card {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Logo Size Override (High Specificity)
   Ensures custom logos are properly constrained regardless of upload size
   ========================================================================== */

html body .site-header .site-header__inner .logo img,
html body .site-header .logo .custom-logo-link img,
html body .site-header .logo img.custom-logo,
html body header .logo img {
  height: 48px !important;
  max-height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain !important;
}

@media (min-width: 900px) {
  html body .site-header .site-header__inner .logo img,
  html body .site-header .logo .custom-logo-link img,
  html body .site-header .logo img.custom-logo,
  html body header .logo img {
    height: 56px !important;
    max-height: 56px !important;
    max-width: 240px !important;
  }
}

/* ==========================================================================
   Trusted Partners Grid (Resource Hub)
   ========================================================================== */

.trusted-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  justify-items: center;
}

.trusted-partners-grid .partner-card {
  text-align: center;
}

@media (max-width: 768px) {
  .trusted-partners-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .trusted-partners-grid .partner-card {
    max-width: 100%;
  }
}

/* ========================================
   BACKPACKS WITH BARBARA PAGE
   ======================================== */

/* About Section */
.bp-about {
  background: white;
}

.bp-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 900px) {
  .bp-about__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.bp-about__content h2 {
  margin-bottom: var(--space-md);
}

.bp-about__text {
  font-size: 1.0625rem;
  color: #4A4A52;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.bp-about__text:last-of-type {
  margin-bottom: 0;
}

.bp-about__visual {
  display: flex;
  justify-content: center;
}

.bp-about__image {
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 420px;
  object-fit: cover;
}

.bp-about__image-placeholder {
  background: var(--color-lavender-mist);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--color-primary);
  opacity: 0.6;
}

.bp-about__image-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Press / Featured In */
.bp-press__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.bp-press__header h2 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4A4A52;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bp-press__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .bp-press__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bp-press__card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-decoration: none;
  color: var(--color-ink);
  transition: all var(--transition-base);
  border: 1px solid rgba(127, 48, 188, 0.08);
  box-shadow: 0 2px 8px rgba(127, 48, 188, 0.04);
}

.bp-press__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(127, 48, 188, 0.12);
  color: var(--color-ink);
}

.bp-press__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.bp-press__logo {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all var(--transition-base);
}

.bp-press__card:hover .bp-press__logo {
  filter: grayscale(0%);
  opacity: 1;
}

.bp-press__outlet {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
}

.bp-press__title {
  font-family: var(--font-headline);
  font-size: 1.0625rem;
  line-height: 1.45;
  color: var(--color-ink);
}

.bp-press__arrow {
  color: var(--color-orchid);
  opacity: 0.4;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.bp-press__card:hover .bp-press__arrow {
  opacity: 1;
}

/* Program Details */
.bp-details {
  background: white;
}

.bp-details__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.bp-details__header h2 {
  margin-top: var(--space-xs);
}

.bp-details__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .bp-details__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .bp-details__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.bp-details__card {
  background: var(--color-warm-white);
  border: 1px solid rgba(127, 48, 188, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.bp-details__card:hover {
  box-shadow: 0 4px 20px rgba(127, 48, 188, 0.08);
  transform: translateY(-2px);
}

.bp-details__card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.bp-details__card-title {
  font-family: var(--font-headline);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-ink);
}

.bp-details__card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4A4A52;
}

/* Bag Features */
.bp-bag-features__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.bp-bag-features__header h2 {
  margin-top: var(--space-xs);
}

.bp-bag-features__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  max-width: 960px;
  margin: 0 auto var(--space-xl);
}

.bp-bag-features__row:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .bp-bag-features__row {
    grid-template-columns: 1fr 1fr;
  }

  .bp-bag-features__row--reverse .bp-bag-features__image-wrap {
    order: 2;
  }

  .bp-bag-features__row--reverse .bp-bag-features__text {
    order: 1;
  }
}

.bp-bag-features__img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  max-height: 380px;
}

.bp-bag-features__img-placeholder {
  background: white;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-sm);
  color: var(--color-primary);
  opacity: 0.5;
}

.bp-bag-features__img-placeholder span {
  font-size: 0.875rem;
  font-weight: 500;
}

.bp-bag-features__text h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-ink);
}

.bp-bag-features__text p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #4A4A52;
}

/* Video Explainer Section */
.bp-video {
  background: var(--color-charcoal);
}

.bp-video .micro-headline {
  color: var(--color-orchid);
}

.bp-video h2 {
  color: white;
}

.bp-video__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.bp-video__header h2 {
  margin-top: var(--space-xs);
}

.bp-video__wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.bp-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.bp-video__embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* FAQ overrides for backpacks page (white background variant) */
.bp-faq {
  background: white;
}

.bp-faq .faq-item {
  background: #F9F5FC;
  border: 1px solid rgba(127, 48, 188, 0.12);
  box-shadow: 0 2px 8px rgba(127, 48, 188, 0.05);
}

.bp-faq .faq-item:hover {
  border-color: rgba(127, 48, 188, 0.22);
  box-shadow: 0 4px 12px rgba(127, 48, 188, 0.08);
}

.bp-faq .faq-question {
  background: #F9F5FC;
}

