/* ============================================
   ESILA'YA UMUT OL · Bağış Sitesi
   Renk: SMA farkındalık moru
   ============================================ */

:root {
  --purple-900: #2A1554;
  --purple-800: #3D1F73;
  --purple-700: #5B21B6;
  --purple-600: #6D28D9;
  --purple-500: #7C3AED;
  --purple-400: #A78BFA;
  --purple-300: #C4B5FD;
  --purple-200: #DDD6FE;
  --purple-100: #EDE9FE;
  --purple-50:  #F5F3FF;

  --cream: #FBF8F4;
  --warm-white: #FFFCF7;
  --paper: #FFFFFF;

  --ink: #1A1033;
  --ink-soft: #3F2D6B;
  --muted: #6B5B95;
  --muted-2: #9888B7;
  --hairline: rgba(91, 33, 182, 0.12);
  --hairline-strong: rgba(91, 33, 182, 0.22);

  --gold: #E0A93B;
  --rose: #F472B6;

  --shadow-sm: 0 1px 2px rgba(42, 21, 84, 0.06), 0 2px 6px rgba(42, 21, 84, 0.04);
  --shadow-md: 0 4px 14px rgba(42, 21, 84, 0.08), 0 12px 32px rgba(42, 21, 84, 0.06);
  --shadow-lg: 0 12px 40px rgba(42, 21, 84, 0.16), 0 32px 80px rgba(42, 21, 84, 0.10);
  --shadow-purple: 0 12px 36px rgba(124, 58, 237, 0.28);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --font-display: "Lora", "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  body { padding-bottom: 88px; }
}

/* ============= ACCESSIBILITY ============= */
.skip-link {
  position: absolute;
  top: -40px;
  left: 12px;
  background: var(--purple-700);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 1000;
  transition: top .2s;
}
.skip-link:focus {
  top: 12px;
  outline: 3px solid var(--purple-300);
}

:focus-visible {
  outline: 3px solid var(--purple-400);
  outline-offset: 2px;
  border-radius: 4px;
}

@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;
  }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============= TYPE ============= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--purple-600);
  display: inline-block;
}

.section-title {
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 600;
  margin-top: 14px;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--purple-700);
  font-weight: 500;
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}

/* ============= LAYOUT ============= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  min-width: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple-700);
  display: grid;
  place-items: center;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-mark svg { width: 22px; height: 22px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}
.brand-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a {
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--purple-700); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-700);
  color: white;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--purple-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}
.nav-cta svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid var(--hairline-strong);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--purple-800);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 0 18px; gap: 10px; height: 64px; }
  .brand { font-size: 16px; gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-mark svg { width: 18px; height: 18px; }
  .brand-text small { font-size: 10.5px; }
  .nav-cta {
    padding: 10px 14px;
    font-size: 13px;
  }
  .nav-cta svg { width: 13px; height: 13px; }
}

@media (max-width: 380px) {
  .nav-cta-label { display: none; }
  .nav-cta { padding: 10px; width: 40px; height: 40px; justify-content: center; gap: 0; }
  .nav-cta svg { width: 16px; height: 16px; }
}

/* ============= MOBILE MENU ============= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(42, 21, 84, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-inner {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: var(--warm-white);
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 24px 60px rgba(42, 21, 84, 0.18);
  transform: translateY(-12px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.mobile-menu.open .mobile-menu-inner {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu-inner a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 12px;
  transition: background .2s;
}
.mobile-menu-inner a:hover,
.mobile-menu-inner a:active {
  background: var(--purple-50);
  color: var(--purple-800);
}
.mobile-menu-inner .mobile-menu-cta {
  margin-top: 12px;
  background: var(--purple-700);
  color: white;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 15.5px;
  box-shadow: var(--shadow-purple);
}
.mobile-menu-inner .mobile-menu-cta:hover,
.mobile-menu-inner .mobile-menu-cta:active {
  background: var(--purple-800);
  color: white;
}
.mobile-menu-inner .mobile-menu-cta svg { width: 18px; height: 18px; }

@media (min-width: 981px) {
  .mobile-menu { display: none; }
}

/* ============= HERO ============= */
.hero {
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(196, 181, 253, 0.35) 0%, transparent 60%),
    radial-gradient(70% 90% at 0% 100%, rgba(167, 139, 250, 0.25) 0%, transparent 55%),
    var(--warm-white);
}
@media (max-width: 720px) {
  .hero { padding: 40px 0 60px; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.22);
  color: var(--purple-700);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple-600);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(124, 58, 237, 0); }
}

h1.hero-title {
  font-size: clamp(34px, 5.8vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  word-break: break-word;
}
h1.hero-title em {
  font-style: italic;
  color: var(--purple-700);
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--muted);
  margin: 22px 0 36px;
  max-width: 52ch;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}
@media (max-width: 480px) {
  .hero-cta { gap: 10px; margin-bottom: 32px; }
  .hero-cta .btn { flex: 1 1 100%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  transition: all .22s ease;
  border: 1px solid transparent;
  text-align: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .btn { padding: 14px 22px; font-size: 14.5px; min-height: 48px; }
  .btn svg { width: 16px; height: 16px; }
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--purple-700);
  color: white;
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover {
  background: var(--purple-800);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.36);
}
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover {
  border-color: var(--purple-600);
  color: var(--purple-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* hero stats inline */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  max-width: 540px;
}
@media (max-width: 480px) {
  .hero-stats { gap: 16px; padding-top: 24px; }
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--purple-700);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* hero image card */
.hero-photo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 12px;
}
.hero-photo {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  position: relative;
}
.hero-photo .photo-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: var(--purple-100);
  box-shadow:
    0 32px 80px rgba(91, 33, 182, 0.25),
    0 0 0 12px rgba(255,255,255, 0.7),
    0 0 0 13px rgba(124, 58, 237, 0.18);
}
.hero-photo .photo-disc img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo svg.ring {
  position: absolute;
  inset: -36px;
  width: calc(100% + 72px);
  height: calc(100% + 72px);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
@media (max-width: 560px) {
  .hero-photo-wrap { padding: 0 24px; }
  .hero-photo svg.ring {
    inset: -22px;
    width: calc(100% + 44px);
    height: calc(100% + 44px);
  }
  .hero-photo .photo-disc {
    box-shadow:
      0 24px 50px rgba(91, 33, 182, 0.22),
      0 0 0 8px rgba(255,255,255, 0.7),
      0 0 0 9px rgba(124, 58, 237, 0.18);
  }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* floating ribbon badge */
.ribbon-badge {
  position: absolute;
  bottom: 18px;
  left: 0;
  background: var(--paper);
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.ribbon-badge .ico {
  width: 32px; height: 32px;
  background: var(--purple-700);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.ribbon-badge small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 1px;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .ribbon-badge {
    bottom: 8px;
    padding: 10px 14px 10px 12px;
    font-size: 11.5px;
    gap: 8px;
  }
  .ribbon-badge .ico { width: 26px; height: 26px; }
  .ribbon-badge small { font-size: 10px; }
}

.heart-float {
  position: absolute;
  color: var(--purple-500);
  opacity: 0;
  pointer-events: none;
  animation: floatHeart 6s ease-in infinite;
}
@keyframes floatHeart {
  0% { opacity: 0; transform: translateY(0) scale(0.6); }
  20% { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-220px) scale(1); }
}

/* ============= PROGRESS ============= */
.progress-section {
  background: linear-gradient(180deg, var(--purple-900) 0%, var(--purple-800) 100%);
  color: white;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.progress-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(196, 181, 253, 0.18) 0%, transparent 60%),
    radial-gradient(40% 50% at 10% 90%, rgba(167, 139, 250, 0.16) 0%, transparent 60%);
  pointer-events: none;
}
.progress-section .container {
  position: relative;
  z-index: 1;
}
.progress-section .eyebrow {
  color: var(--purple-300);
}
.progress-section .eyebrow::before {
  background: var(--purple-300);
}
.progress-section .section-title {
  color: white;
}
.progress-section .section-title em {
  color: var(--purple-300);
}
.progress-section .lead { color: rgba(255,255,255,0.7); }

.update-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}
.update-badge strong {
  color: white;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.update-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-300);
  box-shadow: 0 0 0 4px rgba(196, 181, 253, 0.18);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .update-badge { font-size: 12px; gap: 8px; padding: 8px 14px; }
}

.progress-bar-wrap {
  margin-top: 40px;
  padding: 36px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255, 0.06);
  border: 1px solid rgba(255,255,255, 0.10);
  backdrop-filter: blur(10px);
}
@media (max-width: 720px) {
  .progress-bar-wrap { margin-top: 28px; padding: 22px; border-radius: var(--radius-md); }
}
.progress-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 480px) {
  .progress-head { gap: 12px; margin-bottom: 18px; }
  .progress-pct { text-align: left; }
}
.progress-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}
.progress-amount .currency {
  font-size: 0.55em;
  color: var(--purple-300);
  margin-right: 8px;
  font-weight: 500;
}
.progress-of {
  font-size: 14px;
  color: rgba(255,255,255, 0.6);
  margin-top: 8px;
  font-weight: 500;
}
.progress-pct {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  color: var(--purple-300);
  line-height: 1;
  text-align: right;
}
.progress-pct small {
  font-size: 0.42em;
  color: rgba(255,255,255, 0.55);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

.bar-track {
  height: 14px;
  background: rgba(255,255,255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple-400), var(--purple-300), #fff);
  border-radius: 999px;
  width: 0;
  transition: width 1.6s cubic-bezier(.2,.8,.2,1);
  position: relative;
  box-shadow: 0 0 24px rgba(196, 181, 253, 0.6);
}
.bar-fill::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 8px; height: 100%;
  background: white;
  box-shadow: 0 0 16px rgba(255,255,255, 0.8);
}

.progress-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 720px) {
  .progress-meta { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; margin-top: 28px; }
}
@media (max-width: 380px) {
  .progress-meta { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .progress-meta .num { font-size: 22px; }
}
.progress-meta .item {
  padding: 16px 0;
  border-left: 1px solid rgba(255,255,255, 0.12);
  padding-left: 18px;
}
.progress-meta .item:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 720px) {
  .progress-meta .item { border-left: 0; padding-left: 0; }
}
.progress-meta .num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: white;
}
.progress-meta .lbl {
  font-size: 12.5px;
  color: rgba(255,255,255, 0.6);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

/* ============= STORY ============= */
.story {
  background: var(--warm-white);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
}
.story-photo {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--purple-100);
  box-shadow: var(--shadow-md);
}
@media (max-width: 980px) {
  .story-photo {
    position: static;
    aspect-ratio: 4/3;
    max-height: 480px;
  }
}
.story-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-photo .caption {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(255,255,255, 0.95);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple-700);
}

.story-body {
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.story-body p { margin-bottom: 22px; }
.story-body p.first::first-letter {
  font-family: var(--font-display);
  font-size: 4.5em;
  float: left;
  line-height: 0.85;
  margin: 6px 12px 0 0;
  color: var(--purple-700);
  font-weight: 600;
}
@media (max-width: 720px) {
  .story-body { font-size: 16px; line-height: 1.7; }
  .story-body p.first::first-letter { font-size: 3.6em; margin: 4px 10px 0 0; }
}
.story-body strong {
  color: var(--ink);
  font-weight: 600;
}
.story-body .pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--purple-700);
  border-left: 3px solid var(--purple-400);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-weight: 500;
}
@media (max-width: 720px) {
  .story-body .pullquote { font-size: 19px; padding: 6px 0 6px 18px; margin: 24px 0; }
}

/* ============= SMA INFO ============= */
.sma-info {
  background: linear-gradient(180deg, var(--cream) 0%, var(--purple-50) 100%);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 880px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--hairline);
  transition: all .25s;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-200);
}
.info-card .ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--purple-100);
  color: var(--purple-700);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.info-card .ico svg { width: 28px; height: 28px; }
.info-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}
.info-card p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* big stat row */
.sma-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) { .sma-stats { grid-template-columns: repeat(2, 1fr); gap: 32px 0; } }
.sma-stats .item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--hairline);
}
.sma-stats .item:last-child { border-right: 0; }
@media (max-width: 720px) { .sma-stats .item { border-right: 0; } }
.sma-stats .big {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: var(--purple-700);
  line-height: 1;
}
.sma-stats .desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 24ch;
  margin-left: auto; margin-right: auto;
}

/* ============= OFFICIAL ============= */
.official {
  background: var(--paper);
}
.official-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  background: var(--warm-white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.official-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
  pointer-events: none;
}
@media (max-width: 880px) {
  .official-card { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
.seal {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--purple-50);
  border: 2px solid var(--purple-300);
  display: grid; place-items: center;
  position: relative;
  flex-shrink: 0;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .seal { width: 88px; height: 88px; }
  .seal svg { width: 36px; height: 36px; }
}
.seal::before, .seal::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px dashed var(--purple-400);
}
.seal::after {
  inset: 12px;
  border-style: solid;
  border-color: var(--purple-200);
}
.seal svg { width: 48px; height: 48px; color: var(--purple-700); position: relative; z-index: 1; }

.official-text h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
@media (max-width: 720px) {
  .official-text { text-align: center; }
  .official-text h3 { font-size: 22px; }
}
.official-text p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.6;
}
.official-text .meta {
  display: flex;
  gap: 18px 24px;
  margin-top: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
@media (max-width: 720px) {
  .official-text .meta { justify-content: center; gap: 10px 18px; }
}
.official-text .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 500;
}
.official-text .meta strong {
  color: var(--purple-700);
  font-family: var(--font-body);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.official-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 720px) {
  .official-action { align-items: stretch; }
  .official-action .btn { justify-content: center; }
}

/* ============= OFFICIAL DOCUMENTS ============= */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) {
  .documents-grid { grid-template-columns: 1fr; }
}

.document-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 18px;
  cursor: pointer;
  transition: all .22s;
  text-align: left;
}
.document-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-300);
}
.document-thumb {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--purple-50);
  border: 1px solid var(--hairline);
  position: relative;
  flex-shrink: 0;
}
.document-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .35s ease;
}
.document-card:hover .document-thumb img { transform: scale(1.04); }
.document-zoom {
  position: absolute;
  inset: 0;
  background: rgba(91, 33, 182, 0.0);
  display: grid;
  place-items: center;
  color: white;
  opacity: 0;
  transition: all .25s;
}
.document-card:hover .document-zoom {
  background: rgba(91, 33, 182, 0.55);
  opacity: 1;
}
.document-zoom svg { width: 32px; height: 32px; }
.document-info { min-width: 0; }
.document-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: var(--purple-50);
  color: var(--purple-700);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.document-info h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.document-info p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
@media (max-width: 480px) {
  .document-card { grid-template-columns: 100px 1fr; gap: 14px; padding: 14px; }
  .document-thumb { width: 100px; height: 130px; }
  .document-info h4 { font-size: 16px; }
  .document-info p { font-size: 12.5px; }
}

/* ============= DONATE / IBAN ============= */
.donate {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--purple-50) 100%);
}
.iban-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
@media (max-width: 880px) { .iban-grid { grid-template-columns: 1fr; } }

.iban-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  position: relative;
  transition: all .22s;
  overflow: hidden;
}
.iban-card:hover {
  border-color: var(--purple-300);
  box-shadow: var(--shadow-md);
}
.iban-card .head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.iban-card .currency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--purple-50);
  color: var(--purple-700);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.iban-card .bank {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.iban-card .label {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}
.iban-card .number {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  word-break: keep-all;
  overflow-wrap: anywhere;
  margin-bottom: 18px;
  background: var(--purple-50);
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px dashed var(--purple-200);
}
@media (max-width: 480px) {
  .iban-card .number { font-size: 14px; padding: 10px 12px; }
}
.iban-card .recipient {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-weight: 500;
}
.iban-card .copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 14px;
  min-height: 48px;
  background: var(--purple-50);
  color: var(--purple-700);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  border: 1px solid var(--purple-100);
}
.iban-card .copy-btn:hover {
  background: var(--purple-700);
  color: white;
}
.iban-card .copy-btn.copied {
  background: #10B981;
  color: white;
}
.iban-card svg { width: 16px; height: 16px; }

/* alt channels */
.alt-channels {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) { .alt-channels { grid-template-columns: 1fr; } }
.channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  transition: all .22s;
}
.channel:hover {
  border-color: var(--purple-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.channel-logo {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  color: white;
}
.channel-logo.paypal { background: linear-gradient(135deg, #003087, #009CDE); }
.channel-logo.gofundme { background: #00B964; }
.channel-logo.taplink { background: linear-gradient(135deg, #6D28D9, #EC4899); }
.channel-text { flex: 1; }
.channel-text h4 { font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--ink); }
.channel-text p { font-size: 13px; color: var(--muted); margin-top: 2px; }
.channel svg.arrow { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.channel:hover svg.arrow { color: var(--purple-700); }

/* ============= CALCULATOR ============= */
.calculator {
  background: var(--paper);
}
.calc-card {
  background: linear-gradient(135deg, var(--purple-700), var(--purple-800));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 880px) {
  .calc-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 32px; }
}
.calc-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(196, 181, 253, 0.25), transparent 70%);
  pointer-events: none;
}
.calc-card .eyebrow { color: var(--purple-200); }
.calc-card .eyebrow::before { background: var(--purple-200); }
.calc-card h2 { color: white; font-size: clamp(28px, 3vw, 38px); margin-top: 12px; }
.calc-card h2 em { color: var(--purple-200); }
.calc-card p { color: rgba(255,255,255, 0.75); font-size: 15px; margin-top: 12px; line-height: 1.6; }

.calc-controls {
  position: relative;
  z-index: 1;
}
.calc-amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.calc-amount .currency { font-size: 0.5em; color: var(--purple-200); margin-right: 8px; }
.calc-impact {
  font-size: 14px;
  color: var(--purple-200);
  margin-bottom: 28px;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255, 0.16);
  outline: none;
  margin-bottom: 24px;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0, 0.2);
  border: 4px solid var(--purple-700);
}
.calc-slider::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  border: 4px solid var(--purple-700);
}
.calc-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.calc-presets button {
  padding: 10px 18px;
  min-height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255, 0.10);
  border: 1px solid rgba(255,255,255, 0.18);
  color: white;
  font-size: 13.5px;
  font-weight: 600;
  transition: all .2s;
}
.calc-presets button:hover, .calc-presets button.active {
  background: white;
  color: var(--purple-800);
  border-color: white;
}
.calc-card .btn-primary {
  background: white;
  color: var(--purple-800);
}
.calc-card .btn-primary:hover {
  background: var(--purple-100);
  color: var(--purple-900);
}

/* ============= GALLERY ============= */
.gallery {
  background: var(--cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 12px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-auto-rows: 140px; gap: 10px; }
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--purple-100);
  position: relative;
  cursor: pointer;
  transition: all .25s;
}
.gallery-item.video-item .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.95);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0,0,0, 0.28);
  transition: transform .2s;
}
.gallery-item.video-item:hover .video-play-icon {
  transform: translate(-50%, -50%) scale(1.08);
}
.gallery-item.video-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0, 0.05) 50%, rgba(42, 21, 84, 0.45) 100%);
  z-index: 1;
}
.gallery-item.video-item .video-play-icon svg {
  width: 22px;
  height: 22px;
  color: var(--purple-700);
  margin-left: 3px;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .placeholder {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--purple-100), var(--purple-200));
  color: var(--purple-700);
  position: relative;
}
.gallery-item .placeholder svg { width: 32px; height: 32px; opacity: 0.5; }
.gallery-item .placeholder small {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 12px;
  color: var(--purple-600);
  font-weight: 500;
}

/* ============= VIDEO ============= */
.video-section {
  background: var(--paper);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 880px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--purple-50);
  cursor: pointer;
  transition: all .25s;
  text-align: left;
  padding: 0;
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: inherit;
  color: inherit;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-300); }
.video-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--purple-300), var(--purple-700));
  background-size: cover;
  background-position: center;
  position: relative;
  display: grid; place-items: center;
}
.video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 21, 84, 0.0) 30%, rgba(42, 21, 84, 0.55) 100%);
}
.video-thumb .play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.95);
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0, 0.32);
  transition: transform .2s;
  position: relative;
  z-index: 1;
}
.video-card:hover .play { transform: scale(1.08); }
.video-thumb .play svg { width: 24px; height: 24px; color: var(--purple-700); margin-left: 3px; }
.video-info {
  padding: 18px 20px 22px;
}
.video-info h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 6px;
  color: var(--ink);
}
.video-info p {
  font-size: 13px;
  color: var(--muted);
}

/* ============= SOCIAL ============= */
.social {
  background: var(--purple-50);
}
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 880px) { .social-grid { grid-template-columns: 1fr; gap: 40px; } }
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
}
.ig-handle .ig-logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FEDA77, #F58529, #DD2A7B, #8134AF, #515BD4);
  display: grid; place-items: center;
}
.ig-handle .ig-logo svg { width: 18px; height: 18px; color: white; }
.ig-handle .text strong { display: block; font-size: 14.5px; color: var(--ink); }
.ig-handle .text small { font-size: 12px; color: var(--muted); }

.ig-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ig-mosaic .tile {
  aspect-ratio: 1;
  background: var(--purple-200);
  position: relative;
  overflow: hidden;
}
.ig-mosaic .tile img { width: 100%; height: 100%; object-fit: cover; }
.ig-mosaic .tile.placeholder {
  background: linear-gradient(135deg, var(--purple-200), var(--purple-300));
  display: grid; place-items: center;
}
.ig-mosaic .tile.placeholder svg { width: 24px; height: 24px; color: var(--purple-700); opacity: 0.6; }

/* ============= FAQ ============= */
.faq {
  background: var(--warm-white);
}
.faq-list {
  margin-top: 48px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 22px 8px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  transition: color .2s;
  line-height: 1.35;
  gap: 12px;
}
@media (max-width: 720px) {
  .faq-q { font-size: 16.5px; padding: 18px 4px; }
  .faq-a-inner { font-size: 15px; padding: 0 4px 22px; }
}
.faq-q:hover { color: var(--purple-700); }
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple-700);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-left: 16px;
  transition: all .25s;
}
.faq-item.open .faq-q .toggle {
  background: var(--purple-700);
  color: white;
  transform: rotate(45deg);
}
.faq-q svg { width: 14px; height: 14px; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a-inner {
  padding: 0 8px 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 80ch;
}

/* ============= CONTACT ============= */
.contact {
  background: linear-gradient(180deg, var(--warm-white), var(--purple-50));
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: all .22s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.contact-card:hover {
  border-color: var(--purple-300);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.contact-card .ico {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple-50);
  color: var(--purple-700);
  margin: 0 auto 18px;
  display: grid; place-items: center;
}
.contact-card .ico svg { width: 24px; height: 24px; }
.contact-card h4 { font-family: var(--font-body); font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: 0.04em; margin-bottom: 8px; text-transform: uppercase; }
.contact-card p { font-size: 17px; font-weight: 600; color: var(--ink); }

/* ============= FOOTER ============= */
.footer {
  background: var(--purple-900);
  color: rgba(255,255,255, 0.75);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255, 0.10);
}
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand .brand-mark { background: var(--purple-700); }
.footer-brand .brand-text { color: white; }
.footer-brand .brand-text small { color: rgba(255,255,255, 0.55); }
.footer p { font-size: 14px; line-height: 1.7; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul a { transition: color .2s; }
.footer ul a:hover { color: var(--purple-300); }

.footer-share {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-share a {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255, 0.08);
  border: 1px solid rgba(255,255,255, 0.10);
  transition: all .2s;
}
.footer-share a:hover {
  background: var(--purple-600);
  border-color: var(--purple-600);
  transform: translateY(-2px);
}
.footer-share a svg { width: 16px; height: 16px; color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 12.5px;
    line-height: 1.6;
  }
  .footer { padding: 56px 0 28px; }
  .footer-top { gap: 28px 24px; padding-bottom: 36px; }
  .footer h5 { margin-bottom: 14px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

/* ============= STICKY DONATE BAR (MOBILE) ============= */
.mobile-cta {
  display: none;
}
@media (max-width: 720px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 12px;
    right: 12px;
    z-index: 40;
    background: var(--purple-700);
    color: white;
    padding: 14px 20px;
    min-height: 52px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 12px 30px rgba(91, 33, 182, 0.35), 0 4px 12px rgba(0,0,0, 0.12);
  }
}
body.menu-open .mobile-cta { opacity: 0; pointer-events: none; transition: opacity .2s; }

/* ============= TOAST ============= */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: white;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: calc(100% - 32px);
}
@media (max-width: 720px) {
  .toast { bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast svg { width: 16px; height: 16px; color: #4ADE80; }

/* ============= LIGHTBOX ============= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 7, 35, 0.92);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  -webkit-tap-highlight-color: transparent;
}
.lightbox.open { display: flex; }
.lightbox-content {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0, 0.55);
  display: block;
  background: #000;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255, 0.14);
  border: 1px solid rgba(255,255,255, 0.22);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}
.lightbox-close { top: 16px; right: 16px; }
.lightbox-prev { top: 50%; left: 16px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 16px; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255, 0.26);
}
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255, 0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(0,0,0, 0.35);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

@media (max-width: 720px) {
  .lightbox { padding: 12px; }
  .lightbox-content img,
  .lightbox-content video { max-height: calc(100vh - 140px); }
  .lightbox-close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .lightbox-prev { left: 8px; width: 44px; height: 44px; }
  .lightbox-next { right: 8px; width: 44px; height: 44px; }
  .lightbox-counter { bottom: 12px; font-size: 12px; }
}

/* ============= GALLERY MORE BUTTON ============= */
.gallery-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* ============= PHONE CONTACT BLOCK ============= */
.phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  .phone-grid { grid-template-columns: 1fr; }
}
.phone-contact {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-decoration: none;
  transition: all .22s;
  gap: 6px;
}
.phone-contact:hover {
  border-color: var(--purple-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.phone-contact .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.phone-contact .number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--purple-800);
  letter-spacing: 0.01em;
}
.phone-contact .name {
  font-size: 13.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 480px) {
  .phone-contact .number { font-size: 19px; }
}

/* ============= REVEAL ANIM ============= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
