/* ============================================
   Together To Get Her – Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #D4AF37;
  --gold-dark: #B8860B;
  --black: #111111;
  --white: #FFFFFF;
  --cream: #FFF9EC;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.08);
  --shadow-md: 0 4px 20px rgba(17, 17, 17, 0.12);
  --shadow-lg: 0 8px 40px rgba(17, 17, 17, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --transition: 0.3s ease;
  --header-height: 80px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

ul {
  list-style: none;
}

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

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

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

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header .label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.section--dark .section-header p {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

/* --- Loading Screen --- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  width: auto;
  height: 80px;
  max-width: none;
  object-fit: contain;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: var(--gray-200);
  border-radius: 3px;
  margin-top: 1.5rem;
  overflow: hidden;
}

.loader__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 3px;
  animation: loadBar 1.5s ease-in-out infinite;
}

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

@keyframes loadBar {
  0% { width: 0; margin-left: 0; }
  50% { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--gold);
}

.btn--outline-dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

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

.btn--dark:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition);
}

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

.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--black);
  flex-shrink: 0;
  min-width: 0;
}

.site-logo {
  width: auto;
  height: 52px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: nowrap;
}

.nav__link {
  display: block;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold-dark);
  background: transparent;
}

.nav__link.active {
  font-weight: 600;
  position: relative;
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.65rem;
  right: 0.65rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Header actions: Donate + mobile toggle */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 1rem;
  border-left: 1px solid var(--gray-200);
}

.header__donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(184, 134, 11, 0.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

.header__donate:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.45);
}

.header__donate.active {
  background: var(--black);
  color: var(--gold);
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.25);
}

.header__donate.active:hover {
  background: var(--black);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Slider --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}

.hero__slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.78) 0%, rgba(17, 17, 17, 0.5) 50%, rgba(184, 134, 11, 0.35) 100%);
  z-index: 1;
}

.hero__text-panels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 750px;
  color: var(--white);
  padding: 2rem 1.25rem;
  margin: 0 auto;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s ease;
  pointer-events: none;
}

.hero__content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.hero__content .hero__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__content h1 {
  margin-bottom: 1.25rem;
}

.hero__content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.8;
}

.hero__content .btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

.hero__content .btn-group .btn {
  width: auto;
  flex: 0 0 auto;
}

.hero__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.hero__dot.active,
.hero__dot:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.2);
}

.hero__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 3;
  pointer-events: none;
}

.hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  pointer-events: all;
}

.hero__arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  margin-top: var(--header-height);
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--black) 0%, #2a2210 50%, var(--gold-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb span {
  opacity: 0.6;
}

/* --- About Preview --- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview__image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-preview__image--logo {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  padding: 3rem;
  border: 1px solid var(--gray-200);
}

.about-preview__image--logo .about-preview__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.about-preview__image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.3;
}

.about-preview__content .label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}

.about-preview__content h2 {
  margin-bottom: 1.25rem;
}

.about-preview__content p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* --- Vision / Mission Cards --- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.vm-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--cream), rgba(212, 175, 55, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.vm-card h3 {
  margin-bottom: 1rem;
  color: var(--gold-dark);
}

.vm-card p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* --- Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

.section--dark .stat-item__number {
  color: var(--gold);
}

/* --- Program Cards --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.program-card__icon {
  padding: 2rem 2rem 0;
  font-size: 2.5rem;
}

.program-card__body {
  padding: 1.5rem 2rem 2rem;
}

.program-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.program-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.program-card__link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.program-card__link:hover {
  gap: 0.6rem;
}

/* --- Testimonials Carousel --- */
.testimonials {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 1rem;
}

.testimonial-card__inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-card__quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.testimonial-card__text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-card__author {
  text-align: center;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.testimonials__btn:hover {
  background: var(--gold);
  color: var(--black);
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonials__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.testimonials__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* --- CTA Sections --- */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1508 40%, var(--gold-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* --- Donation Progress --- */
.donation-progress {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.donation-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}

.donation-progress__header h3 {
  font-size: 1.1rem;
}

.donation-progress__amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.donation-progress__bar {
  height: 12px;
  background: var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.donation-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 6px;
  width: 0;
  transition: width 2s ease;
}

.donation-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* --- Values Grid --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 4px solid var(--gold);
}

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

.value-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.value-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --- Founder --- */
.founder {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 2.5rem;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.founder__photo {
  height: 100%;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}

.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder__content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.founder__role {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.founder__content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.founder__link {
  display: inline-block;
  align-self: flex-start;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--gold-dark);
  border-bottom: 2px solid rgba(184, 134, 11, 0.35);
  padding-bottom: 0.15rem;
  transition: border-color var(--transition), color var(--transition);
}

.founder__link:hover {
  color: var(--black);
  border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
  .founder {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .founder__photo {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    min-height: 0;
  }

  .founder__content {
    text-align: left;
  }

  .founder__link {
    align-self: flex-start;
  }
}

/* --- Team Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-grid--leadership {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 920px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-200);
  position: relative;
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-card__info {
  padding: 1.25rem 1rem 1.5rem;
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), rgba(212, 175, 55, 0.2));
  font-size: 3rem;
  color: var(--gold);
}

.team-card h4,
.team-card__info h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.team-card span,
.team-card__info span {
  display: block;
  font-size: 0.82rem;
  color: var(--gold-dark);
  font-weight: 500;
  line-height: 1.4;
}

.team-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.team-note a {
  color: var(--gold-dark);
  font-weight: 600;
}

/* --- Program Detail --- */
.program-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--gray-200);
}

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

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

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

.program-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.program-detail__image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.program-detail__placeholder {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), rgba(212, 175, 55, 0.2));
  font-size: 4rem;
  border-radius: var(--radius-lg);
}

.content-loading {
  text-align: center;
  color: var(--gray-600);
  padding: 2rem 1rem;
  grid-column: 1 / -1;
}

.blog-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), rgba(212, 175, 55, 0.2));
  font-size: 2.5rem;
}

.program-detail__content h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.program-detail__content .objectives {
  margin: 1.5rem 0;
}

.program-detail__content .objectives h4,
.program-detail__content .impact h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.program-detail__content ul {
  list-style: none;
  padding: 0;
}

.program-detail__content ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--gray-600);
}

.program-detail__content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group label .required {
  color: #c0392b;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-control.error {
  border-color: #c0392b;
}

.form-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.35rem;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: none;
}

.form-success.visible {
  display: block;
}

/* --- Donation Cards --- */
.impact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.impact-card:hover,
.impact-card.selected {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.impact-card__amount {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.impact-card__desc {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.donation-card {
  background: linear-gradient(135deg, var(--black), #2a2210);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  margin: 0 auto;
}

.donation-card h3 {
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-align: center;
}

.donation-card__detail {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.donation-card__detail:last-of-type {
  border-bottom: none;
}

.donation-card__detail span:first-child {
  opacity: 0.7;
}

.donation-card__detail span:last-child {
  font-weight: 600;
  text-align: right;
}

.donation-card .btn-group {
  justify-content: center;
  margin-top: 2rem;
}

/* --- Gallery --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  padding: 0.6rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-full);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

.gallery-item.hidden {
  display: none;
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__close:hover {
  background: var(--gold);
  color: var(--black);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.25rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.lightbox__nav:hover {
  background: var(--gold);
  color: var(--black);
}

.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* --- Blog --- */
.blog-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

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

.blog-card__image {
  height: 200px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-card__body {
  padding: 1.5rem;
}

.blog-card__category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card h3 a {
  color: var(--black);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--gold-dark);
}

.blog-card__excerpt {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.blog-card.hidden {
  display: none;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--cream), rgba(212, 175, 55, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-info__text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-info__text p,
.contact-info__text a {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

.contact-map {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

.contact-map__caption {
  margin: 0;
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  background: var(--cream);
  border-top: 1px solid var(--gray-200);
}

.contact-map__caption a {
  color: var(--gold-dark);
  font-weight: 600;
}

.contact-map__caption a:hover {
  color: var(--black);
}

@media (max-width: 768px) {
  .contact-map iframe {
    height: 300px;
  }
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--black);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold-dark);
}

.faq-item__icon {
  font-size: 1.25rem;
  transition: transform var(--transition);
  color: var(--gold);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-item__answer p {
  color: var(--gray-600);
  margin: 0;
}

/* --- Newsletter --- */
.newsletter {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 3rem 0;
  text-align: center;
}

.newsletter h3 {
  color: var(--black);
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: rgba(17, 17, 17, 0.75);
  margin-bottom: 1.5rem;
}

.newsletter__form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.75rem;
}

.newsletter__form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-family: var(--font-body);
}

.newsletter__form input:focus {
  outline: 2px solid var(--black);
}

/* --- Get Involved --- */
.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.involve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.involve-card h3 {
  color: var(--gold-dark);
  margin-bottom: 1rem;
}

.fundraising-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.fundraising-item {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.fundraising-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.fundraising-item__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.fundraising-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.fundraising-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

/* --- Popup Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 550px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition);
  position: relative;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--gray-100);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.modal__close:hover {
  background: var(--gold);
}

.modal h3 {
  margin-bottom: 0.5rem;
  color: var(--gold-dark);
}

.modal--wide {
  max-width: 720px;
  padding: 2rem;
}

.detail-modal[hidden] {
  display: none !important;
}

.detail-modal.active[hidden] {
  display: flex !important;
}

.detail-modal__media {
  margin: -0.5rem -0.5rem 1.25rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.detail-modal__media img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}

.detail-modal__body {
  color: var(--gray-600);
  line-height: 1.7;
  text-align: left;
}

.detail-modal h4 {
  margin: 1.25rem 0 0.5rem;
  color: var(--gold-dark);
  font-size: 1rem;
}

.case-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.case-card__actions .btn {
  flex: 1 1 auto;
  text-align: center;
  justify-content: center;
}

.programs-grid--listing .program-card__body .btn {
  margin-top: 0.75rem;
}

.modal .objectives,
.modal .impact {
  text-align: left;
  margin-top: 1rem;
}

.modal .objectives ul,
.modal .impact ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--gray-600);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand .site-logo {
  width: auto;
  height: 64px;
  max-width: none;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

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

.footer__social-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

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

.footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer__contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer__contact li span:first-child {
  color: var(--gold);
  min-width: 20px;
}

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Why We Exist / Story --- */
.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.story-content p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: 0.75rem;
  color: var(--gold-dark);
  font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .impact-cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid--leadership { grid-template-columns: repeat(3, 1fr); max-width: none; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }
  .footer__grid > .footer__brand,
  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .fundraising-list { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }

  .header__logo-text { display: none; }
  .nav__link { padding: 0.4rem 0.5rem; font-size: 0.85rem; }
  .header__donate { padding: 0.55rem 1.15rem; font-size: 0.8rem; }
}

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

  .nav__toggle { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 5rem 1.5rem 2rem;
    transition: right var(--transition);
    z-index: 999;
    flex: none;
    display: block;
  }

  .nav.active { right: 0; }

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

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

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav__link {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .nav__link.active::after {
    display: none;
  }

  .nav__link.active {
    background: rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-sm);
  }

  .header__actions {
    margin-left: auto;
    padding-left: 0;
    border-left: none;
  }

  .header__donate {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .nav__toggle {
    flex-shrink: 0;
  }

  .about-preview,
  .vm-grid,
  .contact-grid,
  .involve-grid,
  .program-detail {
    grid-template-columns: 1fr;
  }

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

  .programs-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .impact-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-grid--leadership {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
    margin: 0 auto;
  }

  .team-grid--leadership .team-card:last-child:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 280px;
    justify-self: center;
  }
  .fundraising-list { grid-template-columns: 1fr; }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 1rem;
  }
  .footer__grid > .footer__brand,
  .footer__grid > div:last-child {
    grid-column: 1 / -1;
  }
  .footer__brand p {
    margin-bottom: 1rem;
  }
  .footer h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }
  .footer__links li {
    margin-bottom: 0.4rem;
  }
  .footer__links a {
    font-size: 0.85rem;
  }
  .footer__contact li {
    font-size: 0.85rem;
    gap: 0.5rem;
  }
  .form-row { grid-template-columns: 1fr; }

  .hero { min-height: 500px; }
  .hero__arrows { display: none; }

  .hero__content .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

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

  .newsletter__form {
    flex-direction: column;
  }

  .about-preview__image img { height: 300px; }
  .about-preview__image--logo { min-height: 300px; padding: 2rem; }
  .about-preview__image--logo .about-preview__logo { max-height: 220px; }
}

/* --- Help Cases --- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.case-card--featured { border-top: 4px solid var(--gold); }
.case-card--highlight { box-shadow: 0 0 0 3px var(--gold); }

.case-card__image {
  height: 200px;
  overflow: hidden;
  background: var(--cream);
}

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

.case-card__placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.case-card__body { padding: 1.5rem; }

.case-card__badge {
  display: inline-block;
  background: #fdecea;
  color: #c0392b;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: .25rem .65rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.case-card h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
  line-height: 1.4;
}

.case-card h3 a { color: var(--black); text-decoration: none; }
.case-card h3 a:hover { color: var(--gold-dark); }

.case-card p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 1rem;
}

.case-card__bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: .5rem;
}

.case-card__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
}

.case-card__amounts {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--gray-600);
}

.bank-details {
  max-width: 560px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
}

.bank-details__list {
  margin: 0;
}

.bank-details__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.bank-details__row:last-of-type {
  border-bottom: none;
}

.bank-details__row dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bank-details__row dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--black);
}

.bank-details__number {
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
}

.bank-details__note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.55;
}

.bank-details__note a {
  color: var(--gold-dark);
  font-weight: 600;
}

@media (max-width: 480px) {
  .bank-details {
    padding: 1.5rem 1.25rem;
  }

  .bank-details__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

.fundolar-embed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 0 2rem;
}

.fundolar-embed iframe {
  width: 420px;
  max-width: 100%;
  min-height: 720px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

@media (max-width: 480px) {
  .fundolar-embed iframe {
    min-height: 600px;
  }
}


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

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .impact-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--leadership {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }
  .hero__content .btn-group .btn { width: 100%; }
}
