/*
Theme Name: Women of Pearls
Theme URI: https://womenofpearlscaf.org
Description: Custom theme for Women of Pearls Community Action Foundation
Author: Women of Pearls CAF
Version: 1.0
*/

/* =============================================
   CSS CUSTOM PROPERTIES
============================================= */
:root {
  --rose:        #C94080;
  --rose-deep:   #8B2252;
  --rose-light:  #F2C4D8;
  --green:       #3D6B2C;
  --green-light: #6A9B58;
  --pearl:       #F7F3EE;
  --pearl-dark:  #EDE5DC;
  --gold:        #C9A55A;
  --gold-light:  #EDD89A;
  --dark:        #2A1F2D;
  --text:        #3D3240;
  --text-light:  #7A6B7D;
  --white:       #FFFFFF;
  --shadow-sm:   0 2px 8px rgba(42,31,45,0.08);
  --shadow-md:   0 6px 24px rgba(42,31,45,0.12);
  --shadow-lg:   0 16px 48px rgba(42,31,45,0.16);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s ease;
}

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--rose); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--rose-deep); }

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-light);
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
}
.btn-primary:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,64,128,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--rose);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #b08a3e;
  border-color: #b08a3e;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,165,90,0.4);
}

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

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--gold); }

.top-bar-social { display: flex; gap: 1rem; }

/* =============================================
   HEADER & NAVIGATION
============================================= */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-logo img {
  height: 80px;
  width: auto;
}

.site-logo .logo-text { display: none; }

.site-logo .logo-text-inner {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--rose);
  line-height: 1.2;
}

.site-logo .logo-text-sub {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

/* NAV */
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav ul li { position: relative; }

.site-nav ul li a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
  border-radius: var(--radius);
  white-space: nowrap;
}

.site-nav ul li a:hover,
.site-nav ul li.current-menu-item > a {
  color: var(--rose);
  background: rgba(201,64,128,0.06);
}

/* Donate button in nav */
.site-nav ul li.menu-donate a,
.site-nav ul li a[href*="donate"] {
  background: var(--rose);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
}

.site-nav ul li.menu-donate a:hover,
.site-nav ul li a[href*="donate"]:hover {
  background: var(--rose-deep) !important;
  color: var(--white) !important;
}

/* Dropdown */
.site-nav ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius);
  min-width: 200px;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  border-top: 3px solid var(--rose);
  padding: 0.5rem 0;
}

.site-nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav ul li ul li a {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  border-radius: 0;
  color: var(--text);
}

.site-nav ul li ul li a:hover {
  color: var(--rose);
  background: var(--pearl);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 2px;
}

/* =============================================
   HERO SECTION
============================================= */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, #4A1E3A 50%, var(--rose-deep) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,64,128,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(61,107,44,0.2) 0%, transparent 50%);
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}

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

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-light);
}

.hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll span { width: 1px; height: 40px; background: rgba(255,255,255,0.3); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   MISSION STRIP
============================================= */
.mission-strip {
  background: var(--pearl);
  padding: 4rem 0;
  border-top: 4px solid var(--rose);
}

.mission-strip .container {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}

.mission-strip .divider-v {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--rose-light), transparent);
  margin: 0 auto;
}

.mission-item .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.mission-item h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.mission-item p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =============================================
   ABOUT / MISSION SECTION
============================================= */
.about-section {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--rose);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text h2 { margin-bottom: 1rem; }

.about-text .lead { margin-bottom: 1.5rem; }

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.value-item .check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: white;
  font-size: 0.7rem;
}

.value-item span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

/* =============================================
   CAUSES / PROGRAMS
============================================= */
.causes-section {
  background: var(--pearl);
}

.causes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.cause-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(201,64,128,0.08);
}

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

.cause-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.cause-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cause-card-image .cause-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.cause-card-body {
  padding: 1.75rem;
}

.cause-card-body .tag {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.cause-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.cause-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.cause-progress {
  margin-bottom: 1.25rem;
}

.cause-progress-bar {
  height: 6px;
  background: var(--pearl-dark);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.cause-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 3px;
  transition: width 1s ease;
}

.cause-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-light);
}

.cause-progress-labels strong { color: var(--rose); }

/* =============================================
   STATS SECTION
============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, #4A1E3A 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::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='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
}

.stat-item {
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* =============================================
   EVENTS SECTION
============================================= */
.events-section { background: var(--white); }

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

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--pearl-dark);
  display: flex;
  flex-direction: column;
}

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

.event-card-date {
  background: var(--rose);
  color: white;
  padding: 1rem;
  text-align: center;
  min-width: 70px;
}

.event-card-date .month {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.event-card-date .day {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--pearl-dark), var(--pearl));
  overflow: hidden;
}

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

.event-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-body .event-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.event-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.event-meta span { display: flex; align-items: center; gap: 0.5rem; }

.event-card-body .btn { margin-top: auto; align-self: flex-start; }

/* =============================================
   ZINA MOVEMENT / FEATURE SECTION
============================================= */
.feature-section {
  background: var(--pearl);
  padding: 6rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-content { }

.feature-content h2 { margin-bottom: 1.25rem; }

.feature-content .lead { margin-bottom: 1.5rem; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--rose);
}

.feature-list-item .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-list-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.feature-list-item p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

.feature-image-stack {
  position: relative;
  height: 500px;
}

.feature-image-stack img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.feature-image-stack .img-main {
  width: 80%;
  height: 380px;
  object-fit: cover;
  top: 0;
  right: 0;
}

.feature-image-stack .img-accent {
  width: 55%;
  height: 240px;
  object-fit: cover;
  bottom: 0;
  left: 0;
  border: 4px solid var(--white);
}

/* =============================================
   DONATE CTA SECTION
============================================= */
.donate-cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donate-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E") repeat;
  background-size: 120px;
}

.donate-cta .container { position: relative; }

.donate-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.donate-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.donate-tiers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.donate-tier {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.donate-tier:hover,
.donate-tier.active {
  background: var(--white);
  color: var(--rose);
  border-color: var(--white);
}

.donate-cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =============================================
   BOARD MEMBERS SECTION
============================================= */
.board-section { background: var(--white); }

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

.board-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid transparent;
}

.board-card:hover {
  background: var(--pearl);
  border-color: var(--pearl-dark);
  transform: translateY(-4px);
}

.board-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  border: 4px solid var(--pearl-dark);
  transition: var(--transition);
}

.board-card:hover .board-avatar {
  border-color: var(--rose-light);
}

.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.board-card .role {
  font-size: 0.82rem;
  color: var(--rose);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.board-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =============================================
   TESTIMONIALS
============================================= */
.testimonials-section {
  background: var(--pearl);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--rose-light);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonial-author .desc {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =============================================
   NEWSLETTER SECTION
============================================= */
.newsletter-section {
  background: var(--green);
  padding: 4rem 0;
  text-align: center;
}

.newsletter-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255,255,255,0.95);
  color: var(--text);
}

/* =============================================
   PARTNERS SECTION
============================================= */
.partners-section {
  background: var(--white);
  padding: 4rem 0;
  border-top: 1px solid var(--pearl-dark);
}

.partners-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: var(--transition);
}

.partners-logos:hover { opacity: 0.9; filter: grayscale(20%); }

.partners-logos img { height: 40px; width: auto; }

/* =============================================
   CONTACT SECTION
============================================= */
.contact-section { background: var(--white); }

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

.contact-info h2 { margin-bottom: 1rem; }
.contact-info .lead { margin-bottom: 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: var(--pearl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--rose);
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.15rem;
}

.contact-item p { font-size: 0.95rem; margin: 0; }

/* Contact Form */
.contact-form {
  background: var(--pearl);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
}

.form-group { margin-bottom: 1.5rem; }

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--pearl-dark);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,64,128,0.1);
}

.form-group textarea { height: 140px; resize: vertical; }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #4A1E3A 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { opacity: 0.4; }

/* =============================================
   GENERAL PAGE CONTENT
============================================= */
.page-content {
  padding: 5rem 0;
}

.page-content h2 { margin-bottom: 1rem; }
.page-content h3 { margin-bottom: 0.75rem; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 0 3rem;
}

.footer-brand .footer-logo {
  height: 70px;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--rose);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--rose);
  display: inline-block;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--rose);
  font-weight: bold;
}

.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
}

.footer-contact-item .icon { color: var(--rose); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--rose); }

/* =============================================
   BOARD MEMBERS PAGE
============================================= */
.bm-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 1rem;
}

.bm-grid--officers {
  grid-template-columns: repeat(3, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

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

.bm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--pearl-dark);
}

.bm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--rose-light);
}

.bm-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 5px solid var(--white);
  outline: 3px solid var(--rose-light);
  box-shadow: 0 8px 24px rgba(201,64,128,0.18);
  transition: var(--transition);
}

.bm-card:hover .bm-avatar {
  outline-color: var(--rose);
  box-shadow: 0 12px 32px rgba(201,64,128,0.28);
  transform: scale(1.04);
}

.bm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bm-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}

.bm-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--dark);
}

.bm-role {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
}

@media (max-width: 1100px) {
  .bm-grid--officers { grid-template-columns: repeat(3, 1fr); }
  .bm-grid--chairs   { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .bm-grid--officers,
  .bm-grid--chairs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .bm-grid--officers,
  .bm-grid--chairs { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .causes-grid,
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(even) { border-bottom: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .mission-strip .container { grid-template-columns: 1fr; }
  .mission-strip .divider-v { display: none; }
}

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

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 100vw);
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 5rem 2rem 2rem;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .site-nav.open { right: 0; }

  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav ul li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: var(--pearl);
    border-radius: var(--radius);
    margin-top: 0.5rem;
    display: none;
  }
  .site-nav ul li.open > ul { display: flex; }

  .about-grid,
  .feature-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-image-badge { bottom: 1rem; right: 1rem; }

  .causes-grid,
  .events-grid,
  .testimonials-grid,
  .board-grid { grid-template-columns: 1fr; }

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

  .footer-main { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom-inner { flex-direction: column; gap: 0.75rem; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .form-row { grid-template-columns: 1fr; }

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

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .feature-image-stack { height: 280px; }
  .feature-image-stack .img-main { width: 100%; height: 280px; position: relative; }
  .feature-image-stack .img-accent { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* =============================================
   UTILITY CLASSES
============================================= */
.text-center { text-align: center; }
.text-rose    { color: var(--rose); }
.text-green   { color: var(--green); }
.text-gold    { color: var(--gold); }
.text-light   { color: var(--text-light); }
.bg-pearl     { background: var(--pearl); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }
.hidden { display: none; }

/* Overlay for mobile nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.open { opacity: 1; visibility: visible; }
