/* ============================================================
   HEART CREATIONS NPC — Design System
   "Heart of Worship" Palette | Fraunces + Lato
   Die Moot, Pretoria, South Africa | 2026
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Backgrounds */
  --bg-cream: #FFFAF5;
  --bg-stone: #F5EDE3;
  --bg-card: #FFFFFF;
  --bg-golden: #FDF6EE;
  --bg-nav: rgba(255, 250, 245, 0.92);

  /* Brand */
  --brand-purple: #6B3FA0;
  --brand-purple-dark: #55307F;
  --brand-blue: #3B7DD8;
  --brand-blue-dark: #2E65B0;
  --brand-gold: #C8963E;

  /* Functional */
  --text-body: #2C3E50;
  --text-muted: #6B7B8D;
  --text-light: #8EA0B0;
  --cta-orange: #E0733A;
  --cta-orange-dark: #C05C26;
  --hope-green: #5C914E;
  --hope-green-dark: #49753E;

  /* Utility */
  --border-warm: #E8DDD2;
  --error: #C0392B;
  --warning: #F39C12;
  --success: #27AE60;

  /* Typography */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', 'Segoe UI', Arial, sans-serif;
  --font-fallback: 'Fraunces-Fallback', Georgia, serif;
  --soft-axis: 30;

  /* Type Scale (1.250 Major Third) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.563rem;
  --text-2xl: 1.953rem;
  --text-3xl: 2.441rem;
  --text-4xl: 3.052rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --section-gap: clamp(3rem, 8vw, 6rem);

  /* Layout */
  --max-width: 1200px;
  --content-width: 68ch;
  --header-height: 72px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(44, 62, 80, 0.04);
  --shadow-md: 0 2px 8px rgba(44, 62, 80, 0.06);
  --shadow-lg: 0 4px 16px rgba(44, 62, 80, 0.08);
  --shadow-xl: 0 8px 32px rgba(44, 62, 80, 0.10);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 200ms;
  --dur-base: 350ms;
  --dur-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg-cream);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-body);
}

h1 {
  font-size: clamp(var(--text-2xl), 5vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  font-size: clamp(var(--text-xl), 4vw, var(--text-3xl));
  line-height: 1.15;
}

h3 {
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  line-height: 1.2;
}

h4 {
  font-size: var(--text-lg);
  font-weight: 500;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-purple);
}

.lead {
  font-size: var(--text-md);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: var(--content-width);
}

.section-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-purple);
  margin-bottom: var(--space-sm);
}

/* ---- Layout Utilities ---- */
.wrap {
  width: min(var(--max-width), calc(100% - var(--space-xl)));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-gap);
}

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

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

.section-header .lead {
  margin-inline: auto;
}

/* Alternating section backgrounds */
.bg-stone {
  background: var(--bg-stone);
}

.bg-golden {
  background: var(--bg-golden);
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--brand-purple);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
}

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

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-warm);
  height: var(--header-height);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-lg);
}

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

.brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}

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

.brand strong {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-md);
  color: var(--brand-purple);
}

.brand small {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 400;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.main-nav a {
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--dur-fast), background var(--dur-fast);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brand-purple);
  background: rgba(107, 63, 160, 0.06);
}

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

.btn-donate-nav {
  background: var(--cta-orange);
  color: #fff;
  padding: var(--space-xs) var(--space-lg);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  white-space: nowrap;
  transition: background var(--dur-fast), transform var(--dur-fast);
}

.btn-donate-nav:hover {
  background: var(--cta-orange-dark);
  transform: translateY(-1px);
}

.btn-whatsapp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #128c4a;
  transition: transform var(--dur-fast), background var(--dur-fast);
  flex-shrink: 0;
}

.btn-whatsapp-nav:hover {
  transform: translateY(-1px);
  background: rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-nav::before,
.whatsapp-fab::before,
.whatsapp-cta::before {
  content: "";
  width: 18px;
  height: 18px;
  display: inline-block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-9 8.4 8.6 8.6 0 0 1-3.8-.9L3 20l1.4-4.4A8.5 8.5 0 1 1 21 11.5Z'/%3E%3Cpath d='M8.8 9.2c.2-.4.4-.5.7-.5h.5c.2 0 .4.1.5.4l.7 1.6c.1.3.1.5-.1.7l-.4.5c.5.9 1.2 1.6 2.2 2.1l.6-.5c.2-.2.4-.2.7-.1l1.5.7c.3.1.4.3.4.6v.5c0 .3-.1.5-.4.7-.5.3-1.2.4-1.8.3-2.8-.4-5.3-2.8-5.7-5.6-.1-.5 0-1 .1-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 11.5a8.4 8.4 0 0 1-9 8.4 8.6 8.6 0 0 1-3.8-.9L3 20l1.4-4.4A8.5 8.5 0 1 1 21 11.5Z'/%3E%3Cpath d='M8.8 9.2c.2-.4.4-.5.7-.5h.5c.2 0 .4.1.5.4l.7 1.6c.1.3.1.5-.1.7l-.4.5c.5.9 1.2 1.6 2.2 2.1l.6-.5c.2-.2.4-.2.7-.1l1.5.7c.3.1.4.3.4.6v.5c0 .3-.1.5-.4.7-.5.3-1.2.4-1.8.3-2.8-.4-5.3-2.8-5.7-5.6-.1-.5 0-1 .1-1.4Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.lang-switch {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  padding: var(--space-xs);
  transition: color var(--dur-fast);
}

.lang-switch:hover {
  color: var(--brand-purple);
}

.menu-toggle {
  display: none;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-body);
  padding: var(--space-xs) var(--space-sm);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-xl);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-base);
  transition: background var(--dur-fast), transform var(--dur-fast), box-shadow var(--dur-fast);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--cta-orange);
  color: #fff;
  border-color: var(--cta-orange);
}

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

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

.btn-secondary:hover {
  background: var(--brand-purple);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-purple);
  border-color: transparent;
}

.btn-ghost:hover {
  background: rgba(107, 63, 160, 0.08);
}

.btn-white {
  background: #fff;
  color: var(--brand-purple);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--text-md);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
}

/* ---- Hero ---- */
.home-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-cross {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: min(65vw, 900px);
  height: auto;
  color: var(--brand-purple);
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-content .eyebrow {
  margin-bottom: var(--space-md);
}

.hero-content h1 {
  margin-bottom: var(--space-lg);
}

.hero-content .lead {
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.hero-visual {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 320px;
  margin-top: var(--space-xl);
}

@media (min-width: 900px) {
  .home-hero {
    min-height: 70vh;
  }
  .home-hero .wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
    align-items: center;
  }
  .hero-cross {
    left: calc(50% - 280px);
    width: min(45vw, 600px);
    top: 5%;
  }
  .hero-visual {
    display: block;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-top: 0;
    max-height: none;
    border: 1px solid var(--border-warm);
    box-shadow: var(--shadow-xl);
  }
  .hero-visual img {
    object-position: 70% center;
  }
}

/* ---- Trust Bar ---- */
.trust-bar {
  background: var(--bg-stone);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: var(--space-md) 0;
}

.trust-bar-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-md) var(--space-xl);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.trust-bar-grid span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.trust-bar-grid .trust-icon {
  color: var(--hope-green);
  font-size: var(--text-md);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-bar-grid .trust-icon::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' fill='none'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' fill='none'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- Impact Stats ---- */
.impact-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

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

.impact-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 5vw, var(--text-3xl));
  font-weight: 700;
  color: var(--brand-purple);
  line-height: 1;
}

.impact-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.4;
}

/* ---- Placeholder Images ---- */
.placeholder-img {
  background: linear-gradient(135deg, var(--bg-stone) 0%, var(--border-warm) 50%, var(--bg-stone) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.placeholder-img::after {
  content: attr(data-label);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--text-light);
  text-align: center;
  padding: var(--space-sm);
}

.placeholder-img.portrait {
  aspect-ratio: 3/4;
}

.placeholder-img.square {
  aspect-ratio: 1/1;
}

.placeholder-img.wide {
  aspect-ratio: 16/9;
}

/* ---- Cards ---- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

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

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

.card-body {
  padding: var(--space-lg);
}

.card-body h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
}

.card-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Program Pillars ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

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

.pillar-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

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

.pillar-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}

.pillar-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.15;
  transition: opacity var(--dur-base);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08);
}

.pillar-card:hover .pillar-icon::after {
  opacity: 0.3;
}

.pillar-icon.food { background: rgba(92, 145, 78, 0.12); color: var(--hope-green); }
.pillar-icon.clothing { background: rgba(59, 125, 216, 0.12); color: var(--brand-blue); }
.pillar-icon.prayer { background: rgba(107, 63, 160, 0.12); color: var(--brand-purple); }
.pillar-icon.evangelism { background: rgba(107, 63, 160, 0.12); color: var(--brand-purple); }
.pillar-icon.rehab { background: rgba(224, 115, 58, 0.12); color: var(--cta-orange); }

.pillar-icon::before,
.contact-icon {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  background: currentColor;
}

.pillar-icon.food::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3v7a4 4 0 0 0 8 0V3'/%3E%3Cpath d='M8 3v18'/%3E%3Cpath d='M17 3v18'/%3E%3Cpath d='M17 3a4 4 0 0 1 4 4v3h-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3v7a4 4 0 0 0 8 0V3'/%3E%3Cpath d='M8 3v18'/%3E%3Cpath d='M17 3v18'/%3E%3Cpath d='M17 3a4 4 0 0 1 4 4v3h-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pillar-icon.clothing::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.4 7.1 16 4l-2 2h-4L8 4 3.6 7.1 6 11v9h12v-9l2.4-3.9Z'/%3E%3Cpath d='M10 6c.7.7 1.3 1 2 1s1.3-.3 2-1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.4 7.1 16 4l-2 2h-4L8 4 3.6 7.1 6 11v9h12v-9l2.4-3.9Z'/%3E%3Cpath d='M10 6c.7.7 1.3 1 2 1s1.3-.3 2-1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pillar-icon.prayer::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M6 8h12'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M6 8h12'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pillar-icon.evangelism::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19.5A2.5 2.5 0 0 1 6.5 17H20'/%3E%3Cpath d='M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pillar-icon.rehab::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.pillar-card h3 {
  margin-bottom: var(--space-sm);
}

.pillar-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Manifesto ---- */
.manifesto-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

.manifesto-split.reverse .manifesto-visual {
  order: -1;
}

@media (min-width: 768px) {
  .manifesto-split.reverse .manifesto-visual {
    order: 0;
  }
}

.manifesto-text h2 {
  margin-bottom: var(--space-md);
}

.manifesto-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.manifesto-visual .placeholder-img {
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
}

/* Manifesto Collage Layout */
.manifesto-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  margin-top: var(--space-xl);
  padding: 8px;
}

@media (min-width: 768px) {
  .manifesto-collage {
    margin-top: 0;
  }
}

.manifesto-collage-img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), z-index var(--dur-base) var(--ease-out);
}

.manifesto-collage-img.img-1 {
  width: 65%;
  height: 85%;
  left: 8px;
  top: 8px;
  z-index: 1;
}

.manifesto-collage-img.img-2 {
  width: 58%;
  height: 72%;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  border: 6px solid var(--bg-stone);
}

/* Hover effects (translating inward/scaling to avoid screen edge overflow) */
.manifesto-collage:hover .manifesto-collage-img.img-1 {
  transform: scale(1.03) translate(4px, 4px);
  box-shadow: var(--shadow-xl);
}

.manifesto-collage:hover .manifesto-collage-img.img-2 {
  transform: scale(1.04) translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

/* ---- Stories Grid ---- */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

@media (min-width: 500px) and (max-width: 899px) {
  .story-card:first-child {
    grid-column: span 2;
  }
}

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

.story-card .card-img {
  aspect-ratio: 1/1;
}

.story-card .card-body .story-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.story-card .card-body .story-teaser {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.text-link {
  font-weight: 600;
  color: var(--brand-purple);
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: gap var(--dur-fast);
}

.text-link:hover {
  gap: var(--space-sm);
}

/* ---- Bento Grid / Impact Mosaic ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
}

@media (min-width: 900px) {
  .bento-grid {
    grid-auto-rows: 200px;
  }
}

.bento-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.bento-item.tall {
  grid-row: span 2;
}

.bento-item.wide {
  grid-column: span 2;
}

.bento-item .placeholder-img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

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

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

.donate-cta-section .lead {
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.impact-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

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

.impact-tier {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
}

.impact-tier .amount {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--brand-purple);
  display: block;
  margin-bottom: var(--space-xs);
}

.impact-tier .tier-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--text-body);
  color: #fff;
  padding: var(--space-4xl) 0 var(--space-xl);
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: start;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: var(--space-3xl);
  }
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 30ch;
  margin-top: var(--space-md);
}

.footer-col h4 {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  padding: var(--space-xs) 0;
  transition: color var(--dur-fast);
}

.footer-col a:hover {
  color: #fff;
}

.footer-trust {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-xl);
  margin-top: var(--space-2xl);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
}

.footer-trust span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.gold-separator {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-gold);
  margin: var(--space-xl) 0;
  opacity: 0.3;
}

/* ---- WhatsApp FAB ---- */
.whatsapp-fab {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.16);
  color: #128c4a;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 140, 74, 0.22);
  box-shadow: 0 4px 14px rgba(58, 42, 31, 0.12);
  transition: transform var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.24);
  box-shadow: 0 6px 18px rgba(58, 42, 31, 0.16);
}

/* ---- Scroll Reveal ---- */
.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

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

/* ---- Page Header (non-home) ---- */
.page-hero {
  padding: clamp(2rem, 5vw, 4rem) 0;
  text-align: center;
  background: var(--bg-stone);
  border-bottom: 1px solid var(--border-warm);
}

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

.page-hero .lead {
  margin-inline: auto;
}

/* ---- Page Content ---- */
.page-content {
  padding-block: var(--section-gap);
}

.page-content .wrap {
  max-width: var(--content-width);
}

/* ---- About Page ---- */
.about-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

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

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

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.value-card h3 {
  color: var(--brand-purple);
  margin-bottom: var(--space-xs);
  font-size: var(--text-md);
}

.value-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.registration-details {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.registration-details dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm) var(--space-md);
  font-size: var(--text-sm);
}

.registration-details dt {
  font-weight: 700;
  color: var(--text-body);
}

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

/* ---- Outreach Page ---- */
.outreach-streams {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.stream-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.stream-card .stream-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.stream-card .stream-icon.blue { background: rgba(59, 125, 216, 0.12); color: var(--brand-blue); }
.stream-card .stream-icon.green { background: rgba(92, 145, 78, 0.12); color: var(--hope-green); }
.stream-card .stream-icon.purple { background: rgba(107, 63, 160, 0.12); color: var(--brand-purple); }
.stream-card .stream-icon.orange { background: rgba(224, 115, 58, 0.12); color: var(--cta-orange); }

.stream-card .stream-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background: currentColor;
}

.stream-card .stream-icon.green::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3v7a4 4 0 0 0 8 0V3'/%3E%3Cpath d='M8 3v18'/%3E%3Cpath d='M17 3v18'/%3E%3Cpath d='M17 3a4 4 0 0 1 4 4v3h-4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3v7a4 4 0 0 0 8 0V3'/%3E%3Cpath d='M8 3v18'/%3E%3Cpath d='M17 3v18'/%3E%3Cpath d='M17 3a4 4 0 0 1 4 4v3h-4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stream-card .stream-icon.blue::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.4 7.1 16 4l-2 2h-4L8 4 3.6 7.1 6 11v9h12v-9l2.4-3.9Z'/%3E%3Cpath d='M10 6c.7.7 1.3 1 2 1s1.3-.3 2-1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20.4 7.1 16 4l-2 2h-4L8 4 3.6 7.1 6 11v9h12v-9l2.4-3.9Z'/%3E%3Cpath d='M10 6c.7.7 1.3 1 2 1s1.3-.3 2-1'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stream-card .stream-icon.purple::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M6 8h12'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v18'/%3E%3Cpath d='M6 8h12'/%3E%3Cpath d='M8 21h8'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stream-card .stream-icon.orange::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 11 9-8 9 8'/%3E%3Cpath d='M5 10v10h14V10'/%3E%3Cpath d='M9 20v-6h6v6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.stream-card h3 {
  margin-bottom: var(--space-sm);
}

.stream-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-warm);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-xl);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 3px);
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-purple);
  border: 2px solid var(--bg-cream);
}

.timeline-date {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brand-purple);
  margin-bottom: var(--space-xs);
}

.timeline-item h4 {
  margin-bottom: var(--space-xs);
}

.timeline-item p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ---- Stories Page ---- */
.story-full {
  max-width: 800px;
}

.story-full .story-hero {
  margin-bottom: var(--space-2xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.story-beat {
  margin-bottom: var(--space-2xl);
}

.story-beat h3 {
  color: var(--brand-purple);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.story-beat p {
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text-body);
}

.story-beat .story-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.story-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--brand-purple);
  margin: var(--space-2xl) 0;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--brand-gold);
}

.story-cta {
  text-align: center;
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: var(--bg-golden);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-warm);
}

.story-cta h3 {
  margin-bottom: var(--space-sm);
}

.story-cta p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: var(--text-sm);
}

/* ---- Donate Page ---- */
.donate-page .page-hero {
  background: var(--bg-golden);
}

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

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

.banking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.banking-card h3 {
  color: var(--brand-purple);
  margin-bottom: var(--space-lg);
}

.bank-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-warm);
  font-size: var(--text-sm);
}

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

.bank-detail .label {
  font-weight: 600;
  color: var(--text-body);
}

.bank-detail .value {
  color: var(--text-muted);
  font-family: monospace;
  font-size: var(--text-sm);
}

.btn-copy {
  font-size: var(--text-xs);
  padding: 2px var(--space-sm);
  border-radius: var(--radius-sm);
  background: var(--bg-stone);
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--dur-fast);
}

.btn-copy:hover {
  background: var(--border-warm);
}

.donate-info {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.donate-info h3 {
  color: var(--brand-purple);
  margin-bottom: var(--space-md);
}

.donate-info ol {
  list-style: decimal;
  padding-left: var(--space-xl);
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.8;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(37, 211, 102, 0.14);
  color: #128c4a;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  margin-top: var(--space-lg);
  transition: transform var(--dur-fast);
}

.whatsapp-cta:hover {
  transform: translateY(-2px);
}

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

.snapscan-section .qr-placeholder {
  width: 200px;
  height: 200px;
  margin: var(--space-lg) auto;
  background: var(--bg-stone);
  border: 1px dashed var(--border-warm);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--text-light);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-body);
}

.form-group input,
.form-group textarea,
.form-group select,
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-body);
  background: var(--bg-card);
  transition: border-color var(--dur-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(107, 63, 160, 0.1);
}

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

.form-note {
  width: 100%;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-item h4 {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-body);
  margin-bottom: var(--space-xs);
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-purple);
  flex: 0 0 auto;
}

.contact-icon.phone,
.contact-icon.whatsapp {
  color: #128c4a;
}

.contact-icon.phone {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.7 19.7 0 0 1-8.6-3.1 19.3 19.3 0 0 1-6-6A19.7 19.7 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.7 19.7 0 0 1-8.6-3.1 19.3 19.3 0 0 1-6-6A19.7 19.7 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 1.9.7 2.8a2 2 0 0 1-.5 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.2a2 2 0 0 1 2.1-.5c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon.mail {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2Z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon.location {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 6-8 12-8 12S4 16 4 10a8 8 0 1 1 16 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon.clock {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon.globe {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 0 20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 0 0 20'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 0 20'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 0 0 20'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon.user {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-icon.users {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21a6 6 0 0 0-12 0'/%3E%3Ccircle cx='10' cy='8' r='4'/%3E%3Cpath d='M22 21a5 5 0 0 0-4-4.8'/%3E%3Cpath d='M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21a6 6 0 0 0-12 0'/%3E%3Ccircle cx='10' cy='8' r='4'/%3E%3Cpath d='M22 21a5 5 0 0 0-4-4.8'/%3E%3Cpath d='M16 3.1a4 4 0 0 1 0 7.8'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-item p,
.contact-item a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--brand-purple);
}

/* ---- Gallery Page ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.gallery-grid .gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
}

/* ---- 18A Certificate Note ---- */
.tax-note {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: rgba(92, 145, 78, 0.08);
  color: var(--hope-green);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* ---- Blog Page ---- */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

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

.blog-card .card-body .blog-date {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-bottom: var(--space-xs);
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  padding: var(--space-sm) 0;
  font-size: var(--text-xs);
  color: var(--text-light);
}

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

.breadcrumbs a:hover {
  color: var(--brand-purple);
}

/* ---- Responsive ---- */
@media (max-width: 899px) {
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-warm);
    flex-direction: column;
    padding: var(--space-md);
    gap: 0;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-md);
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn-donate-nav,
  .nav-actions .btn-whatsapp-nav,
  .nav-actions .lang-switch {
    display: none;
  }
}

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

  .hero-cross {
    display: none;
  }

  .js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---- PayFast Donation Form ---- */
.donate-form-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 768px) {
  .donate-form-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

.donate-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.donate-form-card h2 {
  margin-bottom: var(--space-xs);
}

.donate-form-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
}

/* Toggle: One-time / Monthly */
.donate-toggle {
  display: flex;
  background: var(--bg-stone);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: var(--space-xl);
  border: 1px solid var(--border-warm);
}

.toggle-btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: all var(--dur-fast);
  text-align: center;
  cursor: pointer;
}

.toggle-btn.active {
  background: var(--brand-purple);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.toggle-btn:not(.active):hover {
  color: var(--text-body);
}

/* Amount Grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.amount-btn,
.rehab-amount-btn {
  padding: var(--space-md);
  border: 2px solid var(--border-warm);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-body);
  background: var(--bg-card);
  cursor: pointer;
  transition: all var(--dur-fast);
  text-align: center;
}

.amount-btn:hover,
.rehab-amount-btn:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
  background: rgba(107, 63, 160, 0.04);
}

.amount-btn.active,
.rehab-amount-btn.active {
  border-color: var(--brand-purple);
  background: rgba(107, 63, 160, 0.08);
  color: var(--brand-purple);
  box-shadow: 0 0 0 1px var(--brand-purple);
}

/* Custom Amount */
.custom-amount-group {
  margin-bottom: var(--space-lg);
}

.custom-amount-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-body);
  margin-bottom: var(--space-xs);
  display: block;
}

.currency-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--brand-purple);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
}

.currency-prefix {
  padding: var(--space-sm) var(--space-md);
  background: rgba(107, 63, 160, 0.06);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-purple);
  border-right: 1px solid var(--border-warm);
}

.currency-input input {
  flex: 1;
  border: none;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-body);
  outline: none;
  background: transparent;
  -moz-appearance: textfield;
}

.currency-input input::-webkit-outer-spin-button,
.currency-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Monthly Info Banner */
.monthly-info {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(107, 63, 160, 0.06);
  border: 1px solid rgba(107, 63, 160, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
}

.monthly-info-icon {
  color: var(--brand-purple);
  font-size: var(--text-lg);
  flex-shrink: 0;
  line-height: 1;
}

.monthly-info p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Donation Impact Text */
.donation-impact {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  background: rgba(92, 145, 78, 0.06);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--hope-green);
}

.donation-impact strong {
  color: var(--hope-green);
  font-family: var(--font-heading);
  font-size: var(--text-md);
}

/* Donate Submit Button */
.btn-donate-submit {
  width: 100%;
  font-size: var(--text-md);
  padding: var(--space-md) var(--space-xl);
}

/* Secure Note */
.donate-secure-note {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-top: var(--space-md);
  text-align: center;
  justify-content: center;
}

.lock-icon {
  font-size: var(--text-sm);
}

/* Right Panel: Impact & Trust */
.donate-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.impact-tiers-vertical {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.impact-tiers-vertical h3 {
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  color: var(--brand-purple);
}

.impact-tier-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-warm);
}

.impact-tier-row:last-child {
  border-bottom: none;
}

.impact-tier-row .amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--brand-purple);
  min-width: 60px;
  flex-shrink: 0;
}

.impact-tier-row p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.4;
}

/* Trust Badges */
.donate-trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.trust-badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(92, 145, 78, 0.12);
  color: var(--hope-green);
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.trust-badge-icon::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ---- Checklist Utilities ---- */
.check-list {
  list-style: none;
  padding: 0 !important;
}

.check-list li {
  position: relative;
  padding-left: var(--space-xl) !important;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
  display: block !important;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--hope-green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.trust-badge strong {
  font-size: var(--text-sm);
  display: block;
}

.trust-badge p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---- Thank You Page ---- */
.thank-you-icon {
  font-size: 4rem;
  color: var(--brand-purple);
  margin-bottom: var(--space-lg);
  animation: heartPulse 1.5s ease-in-out infinite;
}

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

/* ---- Utility: visually hidden ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   HEART CREATIONS NPC — Legal, Sitemap & Cookie Banner Styles
   ============================================================ */

/* ---- Legal Content Pages ---- */
.legal-content {
  max-width: var(--content-width);
  margin-inline: auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  color: var(--brand-purple);
  font-size: var(--text-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-warm);
  padding-bottom: var(--space-xs);
}

.legal-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.legal-content li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
}

.legal-content li strong {
  color: var(--text-body);
}

.legal-content em {
  color: var(--text-light);
}

/* ---- Sitemap Redesign ---- */
.sitemap-container {
  max-width: var(--content-width);
  margin-inline: auto;
}

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

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

.sitemap-section {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

.sitemap-section h2 {
  font-family: var(--font-heading);
  color: var(--brand-purple);
  font-size: var(--text-lg);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid var(--brand-gold);
  padding-bottom: var(--space-xs);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.sitemap-item a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-weight: 600;
  text-decoration: none;
  font-size: var(--text-sm);
  background: transparent;
  transition: color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}

.sitemap-item a:hover {
  color: var(--brand-purple);
  background: rgba(107, 63, 160, 0.06);
  transform: translateX(4px);
}

.sitemap-icon {
  font-size: var(--text-base);
  color: var(--brand-gold);
  flex-shrink: 0;
}

/* ---- About Page Redesign ---- */

/* Hero Banner */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: url('../images/homepage/img-20260622-wa0004.webp') center/cover no-repeat;
  overflow: hidden;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(85, 48, 127, 0.85) 0%, rgba(107, 63, 160, 0.75) 50%, rgba(200, 150, 62, 0.6) 100%);
  z-index: 1;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: var(--space-4xl) 0;
}

.about-hero-content h1 {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

/* Origin Story */
.about-origin {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.about-origin-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.about-origin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}

.about-origin-image:hover img {
  transform: scale(1.03);
}

.about-origin-text h2 {
  margin-bottom: var(--space-lg);
}

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

.about-pullquote {
  margin: var(--space-xl) 0 0;
  padding: var(--space-lg) var(--space-xl);
  border-left: 4px solid var(--brand-gold);
  background: linear-gradient(135deg, var(--bg-golden) 0%, var(--bg-cream) 100%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--brand-purple-dark);
  font-variation-settings: "SOFT" 50;
}

.about-pullquote p {
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 900px) {
  .about-origin {
    flex-direction: row;
    align-items: center;
  }
  .about-origin-image {
    flex: 0 0 45%;
    aspect-ratio: 4/5;
  }
  .about-origin-text {
    flex: 1;
  }
}

/* Mission Section */
.about-mission-section {
  position: relative;
  background: var(--bg-stone);
  padding: var(--section-gap) 0;
  overflow: hidden;
  text-align: center;
}

.about-mission-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(70vw, 600px);
  opacity: 0.04;
  pointer-events: none;
  color: var(--brand-purple);
  mix-blend-mode: multiply;
}

.about-mission-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
}

.about-mission-content h2 {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.about-mission-vision {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  text-align: left;
}

.about-mv-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(232, 221, 210, 0.6);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.about-mv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.about-mv-card h3 {
  color: var(--brand-purple);
  margin-bottom: var(--space-sm);
  font-size: var(--text-lg);
}

@media (min-width: 640px) {
  .about-mission-vision {
    grid-template-columns: 1fr 1fr;
  }
}

/* Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.about-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}

.about-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-gold);
}

.about-value-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-md);
  color: var(--brand-purple);
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.08) 0%, rgba(200, 150, 62, 0.08) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base);
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(107, 63, 160, 0.15) 0%, rgba(200, 150, 62, 0.15) 100%);
}

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

.about-value-card h3 {
  color: var(--brand-purple-dark);
  margin-bottom: var(--space-sm);
}

.about-value-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

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

@media (min-width: 960px) {
  .about-values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Who We Serve Grid */
.about-serve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.about-serve-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.about-serve-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.about-serve-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  color: var(--cta-orange);
  background: rgba(224, 115, 58, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-serve-icon svg {
  width: 30px;
  height: 30px;
}

.about-serve-card h3 {
  color: var(--text-body);
  margin-bottom: var(--space-sm);
}

.about-serve-card p {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

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

/* Transparency Card */
.about-transparency-card {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-sm);
}

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

.about-reg-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.about-reg-item dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 700;
}

.about-reg-item dd {
  font-size: var(--text-base);
  color: var(--text-body);
  font-weight: 600;
}

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

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

/* About CTA Section */
.about-cta-section {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-dark) 60%, #3d2266 100%);
  color: #fff;
}

.about-cta-section .section-label {
  color: var(--brand-gold);
}

.about-cta-section h2 {
  color: #fff;
}

.about-cta-section .lead {
  color: rgba(255, 255, 255, 0.85);
}

.about-cta-section .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.about-cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* ---- Cookie Consent Banner ---- */
.cookie-banner {
  position: fixed;
  bottom: -250px; /* Hidden initially, slides up */
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - var(--space-xl)), 560px);
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-top: 3px solid var(--brand-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-banner.show {
  bottom: 24px;
}

.cookie-content {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-content a {
  color: var(--brand-purple);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-content a:hover {
  color: var(--brand-purple-dark);
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-md);
  align-items: center;
}

.btn-sm {
  padding: var(--space-xs) var(--space-lg);
  font-size: var(--text-sm);
}

