/* She Can Foundation - NGO theme (purple, pink, white) */

:root {
  --purple: #6b21a8;
  --purple-light: #9333ea;
  --pink: #db2777;
  --pink-light: #f472b6;
  --white: #ffffff;
  --off-white: #faf5ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --text: #1f2937;
  --text-muted: #6b7280;
  --danger: #dc2626;
  --gradient: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
  --gradient-soft: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
  --shadow: 0 10px 40px rgba(107, 33, 168, 0.12);
  --shadow-sm: 0 4px 14px rgba(107, 33, 168, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--purple);
  transition: color 0.2s ease;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 16px;
  background: var(--purple);
  color: var(--white);
  border-radius: 8px;
  z-index: 999;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  left: 16px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-900);
}

.brand-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--purple);
  background: var(--off-white);
}

.nav-link-cta {
  background: var(--gradient);
  color: var(--white) !important;
}

.nav-link-cta:hover {
  opacity: 0.92;
  background: var(--gradient);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  margin: 0 auto;
}

.nav-toggle-lines {
  position: relative;
  top: 0;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(107, 33, 168, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(219, 39, 119, 0.35);
}

.btn-outline {
  background: var(--white);
  color: var(--purple);
  border: 2px solid var(--purple-light);
}

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

.btn-full {
  width: 100%;
}

.btn:active {
  transform: translateY(0);
}

.btn.is-loading {
  cursor: progress;
  opacity: 0.85;
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
  display: none;
}

.btn.is-loading .btn-spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 60px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(219, 39, 119, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  background: rgba(107, 33, 168, 0.1);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
}

.hero-subtitle {
  margin: 0 0 28px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  aspect-ratio: 7 / 5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-badge-num {
  font-size: 28px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-soft {
  background: var(--gradient-soft);
}

.section-label {
  display: inline-block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.9);
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--gray-900);
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 56ch;
}

.section-head.centered {
  text-align: center;
  margin: 0 auto 48px;
}

.section-head.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

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

.about-image img {
  width: 100%;
  aspect-ratio: 6 / 7;
  object-fit: cover;
}

.about-content h2 {
  margin: 0 0 20px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
}

.about-content p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 15px;
}

.about-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 15px;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

/* Mission banner */
.mission-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

.mission-banner img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 30%;
}

.mission-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(107, 33, 168, 0.85), transparent 60%);
}

.mission-banner-text p {
  margin: 0;
  color: var(--white);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  max-width: 40ch;
  line-height: 1.4;
}

/* Mission cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(107, 33, 168, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.mission-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient-soft);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--purple);
}

.mission-icon svg {
  width: 26px;
  height: 26px;
}

.mission-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.mission-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stats */
.stats-section {
  position: relative;
  padding: 80px 0;
  color: var(--white);
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  z-index: 0;
}

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

.stats-heading {
  color: var(--white) !important;
}

.stats-desc {
  color: rgba(255, 255, 255, 0.9) !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-box {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.stat-number {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  line-height: 1;
}

.stat-suffix {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}

/* Quote */
.quote-section {
  padding: 60px 0;
  background: var(--gray-50);
}

.quote-card {
  margin: 0;
  padding: 40px 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--purple);
  box-shadow: var(--shadow-sm);
}

.quote-card p {
  margin: 0 0 24px;
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.7;
}

.quote-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  color: var(--purple);
}

.quote-card footer span {
  font-size: 14px;
  color: var(--text-muted);
}

/* Contact */
.section-contact {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
}

.info-card h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.info-card h4 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  margin-bottom: 16px;
}

.contact-details strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-details a {
  font-weight: 600;
  text-decoration: none;
  word-break: break-all;
}

.info-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 24px 0;
}

.info-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.info-list li {
  margin-bottom: 8px;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}

.field {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--purple-light);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.15);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.field-error {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--danger);
  min-height: 18px;
}

.form-actions {
  margin-top: 8px;
}

.form-note {
  margin: 12px 0 0;
  font-size: 13px;
  text-align: center;
}

.muted {
  color: var(--text-muted);
}

/* Toast */
.toast {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.toast.show {
  display: block;
  animation: toastIn 0.3s ease;
}

.toast-error {
  background: #fef2f2;
  border-color: #fecaca;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #10b981;
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.toast-error .toast-icon {
  background: var(--danger);
}

.toast-text {
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-200);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-500);
  max-width: 28ch;
}

.footer-credit {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink-light);
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--pink-light);
}

.social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: var(--pink-light);
}

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

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Impact Stories */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.story-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-body {
  padding: 22px;
}

.story-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--purple);
  background: var(--off-white);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.story-body h3 {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--gray-900);
}

.story-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.testimonial-card::before {
  content: "\201C";
  font-size: 48px;
  line-height: 1;
  color: var(--pink-light);
  font-weight: 800;
}

.testimonial-text {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card footer strong {
  font-size: 15px;
  color: var(--purple);
}

.testimonial-card footer span {
  font-size: 13px;
  color: var(--text-muted);
}

/* Campaigns */
.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.campaign-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.campaign-progress {
  height: 8px;
  background: var(--gray-100);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}

.campaign-bar {
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
  transition: width 1s ease;
}

.campaign-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--off-white);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.campaign-status-new {
  color: var(--pink);
  background: #fce7f3;
}

.campaign-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--gray-900);
}

.campaign-card p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.campaign-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
}

.campaign-meta span {
  color: var(--purple);
}

.campaign-link {
  text-decoration: none;
  font-weight: 700;
  color: var(--pink);
}

.campaign-link:hover {
  color: var(--purple);
}

/* Volunteer section */
.section-volunteer {
  background: var(--gradient-soft);
}

.volunteer-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.volunteer-intro h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
}

.volunteer-intro > p {
  color: var(--text-muted);
  margin: 0 0 20px;
}

.volunteer-perks {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.volunteer-perks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 15px;
}

.volunteer-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gradient);
}

.volunteer-side-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Page loader overlay */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  display: grid;
  place-items: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.loader-spinner {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 4px solid var(--gray-200);
  border-top-color: var(--purple);
  animation: spin 0.8s linear infinite;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .volunteer-layout {
    grid-template-columns: 1fr;
  }

  .stories-grid,
  .testimonials-grid,
  .campaigns-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: var(--shadow);
    min-width: 200px;
  }

  .hero {
    padding: 40px 0 60px;
  }

  .section {
    padding: 56px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .quote-card {
    padding: 28px 24px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
