/* ============================================================
   Marche pour nos Anges — main.css  (Bootstrap 5 overrides)
   Mobile-first. Variables defined in style.css (:root).
   ============================================================ */

/* ── Base ────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; }
p { color: var(--text-secondary); }
a { color: var(--blue); text-underline-offset: 2px; }
a:hover { color: var(--blue-hover); }
img { max-width: 100%; height: auto; display: block; }

/* ── Top bar ─────────────────────────────────────────── */
.top-bar {
  background: var(--pink-50);
  border-bottom: 1px solid var(--border);
  padding-block: 6px;
  transition: all 0.3s ease;
}
.top-bar-menu {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: 0 20px;
}
.top-bar-menu a {
  font-size: .72rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
  white-space: nowrap;
}
.top-bar-menu a:hover { opacity: .7; }

/* ── Site Header ─────────────────────────────────────── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 1030;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header-transparent {
  background: linear-gradient(135deg, #fdf0f9 0%, #eef7fd 50%, #fdf0f9 100%);
  border-bottom-color: transparent;
  box-shadow: none;
}

.site-header-transparent .site-description,
.site-header-transparent .navbar-nav .nav-link {
  color: var(--text-dark);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

/* Extend gradient background through hero on homepage */
body.home {
  background: linear-gradient(135deg, #fdf0f9 0%, #eef7fd 50%, #fdf0f9 100%);
  background-attachment: fixed;
}

body.home .site-header-transparent {
  background-color: transparent;
  background-image: none;
}

.navbar { padding-block: 10px; }

/* Brand */
.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  max-width: 70%;
}
.site-branding img,
.site-branding .custom-logo { height: 18px; width: auto; }
@media (min-width: 768px) {
  .site-branding img,
  .site-branding .custom-logo { height: 21px; }
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.site-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 600;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.site-title span {
  color: var(--pink);
}
.site-description {
  font-size: .6rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.brand-fallback-icon {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; flex-shrink: 0;
}

/* Nav links */
.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  transition: color .15s, background .15s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--pink); background: var(--pink-50); }
.navbar-collapse { padding-block: 8px; }

/* Mobile nav styling */
@media (max-width: 991.98px) {
  .navbar-collapse { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 12px; }
  .navbar-nav .nav-link { padding: 12px 4px; border-radius: 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .navbar-nav .nav-link:last-child { border-bottom: none; }
}

/* Toggler custom */
.navbar-toggler {
  border-color: var(--border);
  padding: 6px 10px;
  border-radius: var(--radius-md);
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(205,103,175,.2); }
.navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234e3b4b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* Dropdown */
.dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 6px;
}
.dropdown-item {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  padding: 8px 14px;
}
.dropdown-item:hover { background: var(--pink-50); color: var(--pink); }

/* ── Buttons ─────────────────────────────────────────── */
.btn-marche {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  box-shadow: var(--shadow-pink);
  white-space: nowrap;
  min-height: 44px; /* touch target */
}
.btn-marche:hover, .btn-marche:focus { background: var(--pink-hover); color: #fff; }
.btn-marche-sm { padding: 8px 18px; font-size: .8125rem; min-height: 40px; }
.btn-marche-lg { padding: 14px 32px; font-size: 1rem; min-height: 52px; }
.btn-marche-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  box-shadow: none;
}
.btn-marche-outline:hover { background: var(--pink); color: #fff; }
.btn-marche-blue { background: var(--blue); box-shadow: 0 4px 16px rgba(6,147,227,.2); }
.btn-marche-blue:hover { background: var(--blue-hover); color: #fff; }
.btn-marche-full { width: 100%; }

/* ── Badges ──────────────────────────────────────────── */
.badge-marche {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  font-size: .6875rem;
  font-weight: 700;
  background: var(--pink-50);
  color: var(--pink);
  font-family: var(--font-body);
}
.badge-blue { background: var(--blue-50); color: var(--blue-hover); }

/* ── Section helpers ─────────────────────────────────── */
.section-label {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: .75rem;
  display: block;
}
.section-pink  { background: linear-gradient(160deg, var(--pink-50) 0%, var(--blue-50) 100%); }
.section-soft  { background: var(--bg-soft); }
.section-white { background: var(--white); }
.section-stats { background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%); }

/* ── Hero ────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-block: 60px 48px;
  background: linear-gradient(160deg, var(--pink-50) 0%, var(--blue-50) 100%);
}
@media (min-width: 768px) { .page-hero { padding-block: 80px 64px; } }
.page-hero--image {
  background-size: cover;
  background-position: center;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding-top: 0;
}
@media (min-width: 768px) { .page-hero--image { min-height: 300px; } }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,24,.78) 0%, rgba(26,18,24,.15) 60%);
}
.page-hero-content { position: relative; z-index: 1; padding-bottom: 40px; }
.page-hero--image .page-title { color: #fff; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 300;
  color: var(--text);
  margin: 0;
  line-height: 1.15;
}

.page-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Cards ───────────────────────────────────────────── */
.card-marche {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .18s, box-shadow .18s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-marche:hover { transform: translateY(-3px); box-shadow: var(--shadow-pink); }
.card-marche-thumbnail { aspect-ratio: 16/12; overflow: hidden; max-height: 200px; }
.card-marche-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.card-marche:hover .card-marche-thumbnail img { transform: scale(1.04); }
.card-marche-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
@media (min-width: 768px) { .card-marche-body { padding: 16px; } }
.card-marche-meta { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; flex-wrap: wrap; font-size: 0.8rem; }
.card-marche-title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.3;
}
.card-marche-title a { color: inherit; text-decoration: none; }
.card-marche-title a:hover { color: var(--pink); }
.card-marche-excerpt { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.5; margin: 0 0 auto; }
.card-marche-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-inline: 0;
}
.card-date { font-size: .75rem; color: var(--text-muted); }
.read-more { font-size: .8125rem; font-weight: 700; color: var(--pink); text-decoration: none; }
.read-more:hover { color: var(--pink-hover); }

/* ── Value cards ─────────────────────────────────────── */
.value-card {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border-top: 3px solid var(--pink);
  height: 100%;
}
.value-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── Stats banner ────────────────────────────────────── */
.stat-item { text-align: center; padding-block: 8px; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-label { font-size: .72rem; color: rgba(255,255,255,.8); font-weight: 600; margin-top: 4px; display: block; }

/* ── City cards ──────────────────────────────────────── */
.city-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  border-top: 4px solid var(--pink);
  height: 100%;
}
.city-card h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; }

/* ── Quote ───────────────────────────────────────────── */
.quote-marche {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  border-left: 3px solid var(--pink);
  padding-left: 24px;
  margin: 0;
  line-height: 1.6;
}

/* ── Entry content ───────────────────────────────────── */
.entry-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2em; margin-bottom: .6em; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.2em; list-style: revert; }
.entry-content img { border-radius: var(--radius-md); margin-block: 24px; max-width: 80%; height: auto; }
.entry-content a { color: var(--pink); }
.entry-content blockquote { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; color: var(--pink); border-left: 3px solid var(--pink); padding-left: 24px; }

/* ── Pagination ──────────────────────────────────────── */
.pagination { flex-wrap: wrap; gap: 6px; margin-top: 48px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 12px;
  border-radius: var(--radius-md);
  font-weight: 700; font-size: .875rem;
  text-decoration: none;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all .15s;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background: var(--pink); border-color: var(--pink); color: #fff;
}

/* ── Post navigation ─────────────────────────────────── */
.post-navigation { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.post-navigation .nav-link-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 20px; background: var(--bg-soft);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background .15s;
  height: 100%;
}
.post-navigation .nav-link-item:hover { background: var(--pink-50); }
.nav-subtitle-label { font-size: .72rem; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .08em; }
.nav-post-title { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); line-height: 1.3; }

/* ── 404 ─────────────────────────────────────────────── */
.error-icon { font-size: 3.5rem; color: var(--pink); opacity: .35; margin-bottom: 20px; }

/* ── Search ──────────────────────────────────────────── */
.search-form { display: flex; gap: 8px; }
.search-field {
  flex: 1; padding: 11px 16px; min-height: 44px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .875rem;
  color: var(--text-secondary); outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.search-field:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(205,103,175,.12); }
.search-submit {
  padding: 0 20px; min-height: 44px;
  background: var(--pink); color: #fff;
  border: none; border-radius: var(--radius-md);
  font-family: var(--font-body); font-weight: 700;
  cursor: pointer; transition: background .15s;
}
.search-submit:hover { background: var(--pink-hover); }

/* ── Footer ──────────────────────────────────────────── */
.site-footer { background: var(--dark); color: #d4c0cf; }
.footer-top { border-bottom: 1px solid var(--dark-mid); }
.footer-logo img, .footer-logo .custom-logo {
  height: 52px; width: auto;
  filter: brightness(0) invert(1) opacity(.8);
}
.footer-tagline { font-size: .8125rem; color: #8c7387; font-style: italic; margin: 0 0 10px; }
.footer-desc { font-size: .8125rem; line-height: 1.7; color: #d4c0cf; max-width: 280px; margin: 0; }
.footer-widget-title {
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #8c7387; margin-bottom: 14px;
  font-family: var(--font-body);
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .8125rem; color: #d4c0cf; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--pink); }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid #4e3b4b;
  display: flex; align-items: center; justify-content: center;
  color: #8c7387; font-size: .875rem;
  transition: border-color .15s, color .15s;
  text-decoration: none;
}
.social-icon:hover { border-color: var(--pink); color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--dark-mid); }
.footer-copy { font-size: .72rem; color: #6b5367; }
.footer-wp { font-size: .67rem; color: #4e3b4b; }
.footer-wp a { color: inherit; }

/* ── Widgets in footer ───────────────────────────────── */
.site-footer .widget a { font-size: .8125rem; color: #d4c0cf; text-decoration: none; display: block; margin-bottom: 7px; transition: color .15s; }
.site-footer .widget a:hover { color: var(--pink); }

/* ── Comments ────────────────────────────────────────── */
.comments-area { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--border); }
.comments-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 32px; }
.comment-body { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 20px; margin-bottom: 16px; }
.comment-author-name { font-weight: 700; font-size: .875rem; color: var(--text); }
.comment-time { font-size: .75rem; color: var(--text-muted); }
.comment-text { font-size: .9375rem; color: var(--text-secondary); line-height: 1.7; margin-top: 10px; }
.comment-reply-link { font-size: .8125rem; font-weight: 700; color: var(--pink); text-decoration: none; display: inline-block; margin-top: 8px; }
.comment-form input, .comment-form textarea {
  width: 100%; padding: 11px 14px; min-height: 44px;
  border: 1px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: .875rem;
  color: var(--text-secondary); outline: none;
  transition: border-color .15s; margin-bottom: 16px;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--pink); }

/* ── Dark Mode Toggle ───────────────────────────────────── */
.dark-mode-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 22px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  min-height: 40px;
  min-width: auto;
}

.dark-mode-toggle:hover {
  border-color: var(--pink);
  background: var(--pink-50);
}

.dark-mode-toggle:focus,
.dark-mode-toggle:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

/* Toggle track and thumb */
.toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 36px;
  height: 20px;
  background: var(--border);
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.toggle-thumb {
  position: absolute;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icon styling */
.toggle-icon {
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  transition: opacity 0.2s ease;
}

.toggle-icon-sun {
  opacity: 1;
  order: -1;
}

.toggle-icon-moon {
  opacity: 0.4;
  order: 1;
}

/* Dark mode state */
body.dark-mode .dark-mode-toggle {
  background: var(--white);
  border-color: var(--pink);
}

body.dark-mode .dark-mode-toggle:hover {
  background: var(--pink-50);
}

body.dark-mode .toggle-track {
  background: var(--pink);
}

body.dark-mode .toggle-thumb {
  left: 18px;
}

body.dark-mode .toggle-icon-sun {
  opacity: 0.4;
}

body.dark-mode .toggle-icon-moon {
  opacity: 1;
}

/* Desktop sizing */
@media (min-width: 992px) {
  .dark-mode-toggle {
    padding: 6px 10px;
    gap: 8px;
  }

  .toggle-track {
    width: 40px;
    height: 22px;
  }

  .toggle-thumb {
    width: 18px;
    height: 18px;
  }

  body.dark-mode .toggle-thumb {
    left: 20px;
  }

  .toggle-icon {
    font-size: 1rem;
    width: 20px;
    height: 20px;
  }
}

/* ── Floating CTA Buttons ───────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

@media (max-width: 576px) {
  .floating-cta {
    bottom: 20px;
    right: 16px;
    gap: 8px;
  }
}

.fcta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-decoration: none;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
  color: #fff;
}

.fcta-btn:hover,
.fcta-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.fcta-btn:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 2px;
}

.fcta-btn-don {
  background: linear-gradient(135deg, var(--pink), #b84d9a);
}

.fcta-btn-don:hover {
  background: linear-gradient(135deg, #d679b8, #c456a3);
}

.fcta-btn-join {
  background: var(--blue);
}

.fcta-btn-join:hover {
  background: #0583ce;
}

.fcta-icon {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.fcta-text {
  display: none;
}

@media (min-width: 768px) {
  .fcta-text {
    display: inline;
  }

  .fcta-btn {
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
}

body.dark-mode .fcta-btn {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

body.dark-mode .fcta-btn:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ── Accessibility ───────────────────────────────────── */
.skip-link { position: absolute; left: 6px; top: 7px; z-index: 9999; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; }

/* ══════════════════════════════════════════════════════
   HOMEPAGE SECTIONS (Design System Sync)
   ═════════════════════════════════════════════════════ */

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fdf0f9 0%, #eef7fd 50%, #fdf0f9 100%);
}
.hero-bg-orbs {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.35;
}
.orb-1 { width: 600px; height: 600px; background: var(--pink); top: -150px; right: -150px; }
.orb-2 { width: 500px; height: 500px; background: var(--blue); bottom: -100px; left: -100px; }
.orb-3 { width: 300px; height: 300px; background: var(--gold); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .2; }

.hero-stars {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.star {
  position: absolute; background: white; border-radius: 50%;
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(1); }
  50% { opacity: .9; transform: scale(1.4); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 120px 24px 80px;
  max-width: 780px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(205,103,175,0.12);
  border: 1px solid rgba(205,103,175,0.25);
  padding: 8px 20px; border-radius: 30px;
  font-size: 13px; font-weight: 600; color: var(--pink);
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 300; font-style: italic;
  color: var(--text-mid); margin-bottom: 20px;
}
.hero-desc {
  font-size: 17px; color: var(--text-mid);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  padding: 16px 36px; border-radius: 40px;
  background: linear-gradient(135deg, var(--pink), #b84d9a);
  color: #fff; font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 6px 30px rgba(205,103,175,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(205,103,175,0.45); }
.btn-secondary {
  padding: 16px 36px; border-radius: 40px;
  background: transparent;
  color: var(--blue); font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  border: 2px solid var(--blue); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all .2s;
}
.btn-secondary:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-soft); font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform: translateX(-50%) translateY(0)} 50%{transform: translateX(-50%) translateY(6px)} }
.hero-scroll svg { width: 20px; opacity: .5; }

/* ── SECTION BASE ── */
section { padding: 100px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--pink);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--pink);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--pink); }
.section-desc {
  font-size: 17px; color: var(--text-mid);
  max-width: 600px; line-height: 1.8;
}

/* ── STATS BAND ── */
#stats {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  padding: 60px 24px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 40px; text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 600; color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 14px; color: rgba(255,255,255,0.8);
  margin-top: 8px; font-weight: 600;
  letter-spacing: .03em;
}

/* ── ABOUT ── */
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--pink-pale), var(--blue-pale));
  padding: 60px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(205,103,175,0.12);
}
.about-symbol {
  font-size: 80px; margin-bottom: 20px; display: block;
}
.about-quote {
  font-family: var(--font-display);
  font-size: 22px; font-style: italic; font-weight: 300;
  color: var(--text-mid); line-height: 1.6;
}
.about-content {}
.about-content p { margin-bottom: 20px; font-size: 16px; color: var(--text-mid); line-height: 1.9; }
.about-values {
  margin-top: 32px; display: flex; flex-direction: column; gap: 16px;
}
.value-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.value-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), var(--blue-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.value-text strong { display: block; font-weight: 700; font-size: 14px; color: var(--text-dark); }
.value-text span { font-size: 13px; color: var(--text-soft); }

/* ── EVENT ── */
#event { background: var(--cream); }
.event-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.event-date-card {
  background: linear-gradient(135deg, var(--pink), var(--blue));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.event-date-card::after {
  content: '✦';
  position: absolute; bottom: -20px; right: 20px;
  font-size: 120px; opacity: .08; line-height: 1;
}
.event-year {
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; opacity: .8; margin-bottom: 16px;
}
.event-day {
  font-family: var(--font-display);
  font-size: 72px; font-weight: 300; line-height: 1;
  margin-bottom: 4px;
}
.event-month {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 300; font-style: italic;
  margin-bottom: 24px;
}
.event-location {
  background: rgba(255,255,255,0.2);
  padding: 10px 20px; border-radius: 20px;
  font-size: 14px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.event-info {}
.event-info h3 {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 300;
  color: var(--text-dark); margin-bottom: 16px;
}
.event-info p { color: var(--text-mid); margin-bottom: 20px; line-height: 1.8; }
.event-steps {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 28px;
}
.event-step {
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), var(--blue-pale));
  color: var(--pink); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-body strong { display: block; font-weight: 700; font-size: 14px; }
.step-body span { font-size: 13px; color: var(--text-soft); }

/* ── TESTIMONIALS ── */
#testimonials {
  background: linear-gradient(180deg, var(--white), var(--pink-pale) 60%, var(--white));
}
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
  border-top: 3px solid transparent;
  background-clip: padding-box;
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 80px; line-height: .8;
  color: var(--pink-light); opacity: .6;
  position: absolute; top: 20px; left: 24px;
}
.testimonial-card.blue-accent { border-top-color: var(--blue); }
.testimonial-card.pink-accent { border-top-color: var(--pink); }
.testimonial-card.gold-accent { border-top-color: var(--gold); }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 18px; font-style: italic; font-weight: 300;
  color: var(--text-mid); line-height: 1.7;
  margin-top: 30px; margin-bottom: 24px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 14px; }
.author-detail { font-size: 12px; color: var(--text-soft); }

/* ── RESOURCES ── */
#resources { background: var(--white); }
.resources-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 24px; margin-top: 48px;
}
.resource-card {
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-decoration: none;
  display: block;
  transition: transform .3s, box-shadow .3s;
  position: relative; overflow: hidden;
}
.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.resource-card.pink-card { background: var(--pink-pale); }
.resource-card.blue-card { background: var(--blue-pale); }
.resource-card.cream-card { background: var(--cream); border: 1px solid rgba(205,103,175,0.12); }
.resource-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.resource-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 8px;
}
.resource-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.resource-link {
  margin-top: 16px; font-size: 13px; font-weight: 700;
  color: var(--pink); display: flex; align-items: center; gap: 4px;
}

/* ── DONATION ── */
#donation {
  background: linear-gradient(135deg, var(--text-dark) 0%, #3d2f50 100%);
  position: relative; overflow: hidden;
}
#donation::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L32 20 L47 20 L35 29 L39 44 L30 35 L21 44 L25 29 L13 20 L28 20 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E") repeat;
}
.donation-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.donation-inner .section-label { justify-content: center; color: var(--pink-light); }
.donation-inner .section-label::before { background: var(--pink-light); }
.donation-inner .section-title { color: #fff; }
.donation-inner .section-desc { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.donation-amounts {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.amount-btn {
  padding: 12px 24px; border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent; color: #fff;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.amount-btn:hover, .amount-btn.active {
  background: var(--pink); border-color: var(--pink);
}
.donation-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}
.btn-don-main {
  padding: 18px 44px; border-radius: 40px;
  background: linear-gradient(135deg, var(--pink), #b84d9a);
  color: #fff; font-family: var(--font-body);
  font-size: 16px; font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  box-shadow: 0 8px 30px rgba(205,103,175,0.4);
  transition: transform .2s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-don-main:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(205,103,175,0.5); }
.btn-sub-main {
  padding: 18px 44px; border-radius: 40px;
  background: transparent;
  color: #fff; font-family: var(--font-body);
  font-size: 16px; font-weight: 700;
  border: 2px solid rgba(255,255,255,0.4); cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .2s;
}
.btn-sub-main:hover { background: rgba(255,255,255,0.1); }
.donation-reassurance {
  margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── PARTNERS ── */
#partners { background: var(--cream); padding: 60px 24px; }
.partners-title {
  text-align: center; font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: 32px;
}
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.partner-logo {
  width: 100px; height: 44px; border-radius: 8px;
  background: rgba(205,103,175,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--text-soft); font-weight: 600;
}

/* ── CONTACT ── */
#contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info p { color: var(--text-mid); margin-bottom: 28px; line-height: 1.8; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-pale), var(--blue-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 14px; }
.contact-item span { font-size: 14px; color: var(--text-soft); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  letter-spacing: .02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(205,103,175,0.2);
  background: var(--cream);
  font-family: var(--font-body); font-size: 15px; color: var(--text-dark);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(205,103,175,0.12);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-rgpd {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--text-soft);
}
.form-rgpd input { width: auto; margin-top: 3px; }
.form-submit {
  padding: 15px 36px; border-radius: 40px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: #fff; font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid, .event-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 70px 20px; }
  .hero-content { padding: 100px 20px 60px; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .event-day { font-size: 56px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
