/* ============================================
   HOPELAND CHARITABLE FOUNDATION
   Warm Humanitarian Elegance
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  /* Brand Colors */
  --teal: #2ABFBF;
  --teal-deep: #1E9E9E;
  --teal-dark: #178585;
  --teal-light: #7DD4D4;
  --teal-mist: #E8F7F7;

  --orange: #E8832A;
  --orange-deep: #D06F1A;
  --orange-light: #F5A85D;
  --orange-mist: #FEF3E8;

  --green: #6DB33F;
  --green-light: #8DC963;
  --green-mist: #EEF7E8;

  /* Neutrals */
  --cream: #FDFCFA;
  --cream-warm: #FAF8F5;
  --white: #FFFFFF;
  --text-dark: #2C3E3E;
  --text-mid: #4A5E5E;
  --text-light: #6B8080;
  --text-muted: #9BAEAE;
  --border-light: rgba(42, 191, 191, 0.15);

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Spacing - Compact for above-fold visibility */
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --header-height: 60px;

  /* Effects */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-soft: 0 4px 20px rgba(42, 191, 191, 0.08);
  --shadow-medium: 0 8px 40px rgba(42, 191, 191, 0.12);
  --shadow-strong: 0 16px 60px rgba(42, 191, 191, 0.16);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

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

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

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

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

.lead {
  font-size: 1.125rem;
  line-height: 1.8;
}

.small {
  font-size: 0.875rem;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-xl);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42, 191, 191, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 191, 191, 0.4);
}

.btn--secondary {
  background: var(--white);
  color: var(--teal-deep);
  border: 2px solid var(--teal);
}

.btn--secondary:hover {
  background: var(--teal-mist);
  border-color: var(--teal-deep);
}

.btn--orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(232, 131, 42, 0.3);
}

.btn--orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 131, 42, 0.4);
}

.btn--large {
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
}

/* ---------- Icons ---------- */
.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 32px; height: 32px; }
.icon--xl { width: 48px; height: 48px; }

/* ---------- Section Styles ---------- */
.section {
  padding: var(--space-lg) 0;
  position: relative;
}

.section--teal {
  background: linear-gradient(180deg, var(--teal-mist) 0%, var(--cream) 100%);
}

.section--cream {
  background: var(--cream-warm);
}

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

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

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: var(--space-sm);
}

.section__label::before,
.section__label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 2px;
}

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

.section__subtitle {
  color: var(--text-light);
  font-size: 1.0625rem;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(253, 252, 250, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-soft);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: none;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 0.25rem 0;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 2px;
  transition: width var(--transition-medium);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--teal-deep);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

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

.header__donate {
  display: none;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--teal-deep);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.header__menu-btn:hover {
  background: var(--teal-mist);
}

.header__menu-btn .icon {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-medium);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  border-radius: var(--radius-sm);
}

.mobile-nav__close:hover {
  background: var(--teal-mist);
  color: var(--teal-deep);
}

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

.mobile-nav__links a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav__links a:hover,
.mobile-nav__links a.active {
  color: var(--teal-deep);
}

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

.mobile-nav__cta .btn {
  width: 100%;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 62, 62, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-medium);
  z-index: 1000;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Hero Section ---------- */
.hero {
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + var(--space-sm));
  padding-bottom: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 20% 0%, rgba(42, 191, 191, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 100%, rgba(232, 131, 42, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(109, 179, 63, 0.03) 0%, transparent 70%);
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-1 8-8 15-16 16 8 1 15 8 16 16 1-8 8-15 16-16-8-1-15-8-16-16z' fill='%232ABFBF' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

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

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal-deep);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-md);
}

.hero__label svg {
  color: var(--orange);
}

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

.hero__title span {
  color: var(--teal-deep);
}

.hero__description {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: var(--space-md);
}

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

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-light);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--teal-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--text-light);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Wave Separator ---------- */
.wave-separator {
  position: relative;
  height: 40px;
  margin-top: -1px;
  overflow: hidden;
}

.wave-separator svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave-separator--teal svg { fill: var(--teal-mist); }
.wave-separator--cream svg { fill: var(--cream-warm); }
.wave-separator--white svg { fill: var(--white); }

/* ---------- About Preview ---------- */
.about-preview {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

.about-preview__visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--teal-mist) 0%, var(--white) 50%, var(--orange-mist) 100%);
  box-shadow: var(--shadow-medium);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5/3;
  overflow: hidden;
}

.about-preview__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(42, 191, 191, 0.15), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(232, 131, 42, 0.1), transparent 50%);
}

.visual-hands {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

.visual-hands__hand {
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}

.visual-hands__hand--left {
  transform: scaleX(-1);
  animation-delay: -0.5s;
}

.visual-hands__hand--right {
  animation-delay: -1.5s;
}

.visual-hands__heart {
  font-size: 4rem;
  color: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}

.visual-tagline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--teal-deep);
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.visual-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.visual-icon {
  font-size: 2rem;
  background: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition-fast);
}

.visual-icon:hover {
  transform: scale(1.1);
}

@keyframes float {
  0%, 100% { transform: translateY(0) scaleX(-1); }
  50% { transform: translateY(-8px) scaleX(-1); }
}

.visual-hands__hand--right {
  animation-name: float-right;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.about-preview__content {
  max-width: 540px;
}

.about-preview__motto {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: var(--space-md);
}

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

.about-preview__values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: var(--space-lg);
}

.about-preview__value {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.875rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--teal-deep);
}

.about-preview__value svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* ---------- Programs Grid ---------- */
.programs-grid {
  display: grid;
  gap: var(--space-sm);
}

.program-card {
  position: relative;
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-medium);
  overflow: hidden;
}

.program-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-medium);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: transparent;
}

.program-card:hover::before {
  transform: scaleX(1);
}

.program-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-mist);
  border-radius: var(--radius-md);
  color: var(--teal-deep);
  margin-bottom: var(--space-md);
  transition: all var(--transition-medium);
  font-size: 28px;
}

.program-card:hover .program-card__icon {
  background: var(--teal);
  transform: scale(1.1);
}

.program-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.program-card__description {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--teal-deep);
}

.program-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.program-card:hover .program-card__link svg {
  transform: translateX(4px);
}

/* ---------- Impact Section ---------- */
.impact {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23fff' stroke-opacity='0.05' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

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

.impact .section__label {
  color: var(--teal-light);
}

.impact .section__label::before,
.impact .section__label::after {
  background: linear-gradient(90deg, var(--teal-light), var(--orange-light));
}

.impact .section__title {
  color: var(--white);
}

.impact .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.impact__stats {
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.impact__stat {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.impact__stat-icon {
  font-size: 40px;
  margin: 0 auto var(--space-sm);
}

.impact__stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.impact__stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- CTA Section ---------- */
.cta {
  text-align: center;
}

.cta__box {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}

.cta__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--green));
}

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

.cta__text {
  max-width: 500px;
  margin: 0 auto var(--space-sm);
  color: var(--text-light);
}

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

/* ---------- Footer ---------- */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer__brand {
  max-width: 300px;
}

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

.footer__logo img {
  height: 50px;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange-light);
  margin-bottom: var(--space-sm);
}

.footer__description {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: var(--space-md);
}

.footer__links a {
  display: block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

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

.footer__contact-item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--teal-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-item a:hover {
  color: var(--white);
}

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

.footer__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer__social a:hover {
  background: var(--teal);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  text-align: center;
}

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

.footer__legal {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
}

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

/* ---------- Page Headers ---------- */
.page-header {
  padding: calc(var(--header-height) + var(--space-sm)) 0 var(--space-sm);
  background: linear-gradient(180deg, var(--teal-mist) 0%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-1 8-8 15-16 16 8 1 15 8 16 16 1-8 8-15 16-16-8-1-15-8-16-16z' fill='%232ABFBF' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.page-header__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.page-header__title {
  margin-bottom: var(--space-sm);
}

.page-header__subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ---------- About Page ---------- */
.about-section {
  padding: var(--space-lg) 0;
}

.about-content {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

.about-text h3 {
  color: var(--teal-deep);
  margin-bottom: var(--space-md);
}

.about-text p {
  margin-bottom: var(--space-md);
}

.vision-mission {
  display: grid;
  gap: var(--space-lg);
}

.vm-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.vm-card--vision {
  background: linear-gradient(135deg, var(--teal-mist), var(--white));
  border: 1px solid var(--border-light);
}

.vm-card--mission {
  background: linear-gradient(135deg, var(--orange-mist), var(--white));
  border: 1px solid rgba(232, 131, 42, 0.15);
}

.vm-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.vm-card--vision .vm-card__label { color: var(--teal-deep); }
.vm-card--mission .vm-card__label { color: var(--orange-deep); }

.vm-card__text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Core Values Grid */
.values-grid {
  display: grid;
  gap: var(--space-sm);
}

.value-card {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: var(--teal-light);
}

.value-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-mist);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  font-size: 24px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.value-card__text {
  font-size: 0.9375rem;
  color: var(--text-light);
}

/* Goals & Objectives */
.goals-section {
  background: var(--cream-warm);
}

.goals-grid {
  display: grid;
  gap: var(--space-sm);
}

.goal-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--teal);
}

.goal-item__number {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.goal-item__text {
  color: var(--text-mid);
  padding-top: 0.375rem;
}

/* ---------- Programs Page ---------- */
.programs-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

.program-detail {
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border-light);
}

.program-detail:last-child {
  border-bottom: none;
}

.program-detail__inner {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

.program-detail__icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-mist);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  font-size: 40px;
}

.program-detail__title {
  margin-bottom: var(--space-sm);
}

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

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

.program-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-mid);
}

.program-detail__feature svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Contact Page ---------- */
.page-header--compact {
  padding: calc(var(--header-height) + var(--space-xs)) 0 var(--space-xs);
}

.page-header--compact .page-header__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.25rem;
}

.page-header--compact .page-header__subtitle {
  font-size: 1rem;
}

.section--compact {
  padding: var(--space-sm) 0;
}

.contact-grid {
  display: grid;
  gap: var(--space-md);
}

.contact-info {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: var(--white);
}

.contact-info__title {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid rgba(255,255,255,0.2);
}

.contact-info__item {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-info__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  font-size: 16px;
}

.contact-info__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 0.125rem;
}

.contact-info__value {
  color: var(--white);
  font-size: 0.875rem;
  line-height: 1.4;
}

.contact-info__value a {
  color: var(--white);
  transition: color var(--transition-fast);
}

.contact-info__value a:hover {
  color: var(--orange-light);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

.contact-form__title {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--teal-mist);
}

.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 2px solid var(--cream);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42, 191, 191, 0.15);
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* ---------- Donate Page ---------- */
.donate-hero {
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--orange-mist), var(--cream));
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.donate-hero__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-soft);
  font-size: 40px;
}

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

.donate-hero__text {
  max-width: 500px;
  margin: 0 auto;
}

.donate-methods {
  display: grid;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.donate-method {
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-light);
  transition: all var(--transition-medium);
}

.donate-method:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-medium);
}

.donate-method__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.donate-method__text {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.donate-impact {
  padding: var(--space-md);
  background: var(--teal-mist);
  border-radius: var(--radius-xl);
}

.donate-impact__title {
  text-align: center;
  margin-bottom: var(--space-sm);
}

.donate-impact__grid {
  display: grid;
  gap: var(--space-md);
}

.impact-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--white);
  border-radius: var(--radius-md);
}

.impact-item__amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal-deep);
  white-space: nowrap;
}

.impact-item__text {
  color: var(--text-mid);
}

/* ---------- Animations ---------- */
/* Content visible by default, no hidden animations */

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(3, auto);
    justify-content: flex-start;
    gap: var(--space-xl);
  }

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .header__nav {
    display: block;
  }

  .header__donate {
    display: inline-flex;
  }

  .header__menu-btn {
    display: none;
  }

  .about-preview {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
  }

  .program-detail__inner {
    grid-template-columns: 1fr 1fr;
  }

  .program-detail:nth-child(even) .program-detail__inner {
    direction: rtl;
  }

  .program-detail:nth-child(even) .program-detail__inner > * {
    direction: ltr;
  }
}

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

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

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

  .donate-impact__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Print Styles ---------- */
@media print {
  .header,
  .footer,
  .mobile-nav,
  .mobile-nav-overlay {
    display: none;
  }

  .section {
    padding: 1rem 0;
  }

  .page-header {
    padding: 1rem 0;
  }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
