/* ============================================================
   AssoGest 88 — Friendly community association
   Soft cream + sunny yellow + dark text
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #FFFEF0;
  --bg-soft: #FEFDB8;
  --bg-warm: #FCFB71;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --ink-mute: #6B6B6B;
  --rule: rgba(26, 26, 26, 0.12);
  --accent: #1F8A4D;
  --accent-deep: #156639;
  --container: 1200px;
  --gap: 28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'DM Serif Display', 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--bg-warm); color: var(--ink); }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.1; letter-spacing: -0.005em; }

/* Reveal animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  padding: 4px 10px 4px 0;
  isolation: isolate;
}
.eyebrow::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: eyebrowPulse 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  box-shadow: 0 0 0 4px rgba(31, 138, 77, 0.18);
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 22px;
  right: 0;
  bottom: 3px;
  height: 8px;
  background: var(--bg-warm);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 2px;
  animation: eyebrowSwipe 1.1s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
/* Eyebrows on dark backgrounds (hero, cta-band) get a brighter accent treatment */
.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--bg-warm);
}
.hero .eyebrow::before,
.cta-band .eyebrow::before {
  background: var(--bg-warm);
  box-shadow: 0 0 0 4px rgba(252, 251, 113, 0.18);
}
.hero .eyebrow::after,
.cta-band .eyebrow::after {
  background: rgba(252, 251, 113, 0.22);
}
@keyframes eyebrowPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.4); box-shadow: 0 0 0 8px rgba(31, 138, 77, 0); }
}
@keyframes eyebrowSwipe {
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .eyebrow::before { animation: none; }
  .eyebrow::after { transform: scaleX(1); animation: none; }
}

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gap);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-decoration: none;
}
.brand__asso { letter-spacing: -0.022em; }
.brand__gest {
  background: var(--bg-warm);
  color: var(--ink);
  padding: 2px 9px 3px;
  border-radius: 7px;
  display: inline-block;
  transform: rotate(-3deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.25s ease;
  letter-spacing: -0.018em;
  box-shadow: 0 2px 8px rgba(252, 251, 113, 0.4);
}
.brand:hover .brand__gest {
  transform: rotate(2deg) scale(1.05);
  background: var(--accent);
  color: var(--bg);
}
.brand__num {
  font-size: 0.9em;
  font-weight: 700;
  margin-left: 6px;
  position: relative;
  top: -0.35em;
  letter-spacing: 0.02em;
  color: var(--ink);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.brand:hover .brand__num {
  color: var(--accent);
  transform: rotate(8deg) scale(1.08);
  transform-origin: bottom left;
}
.site-footer .brand__num { color: var(--bg-warm); }
.site-footer .brand:hover .brand__num { color: #fff; }
.site-footer .brand__gest { background: var(--bg-warm); color: var(--ink); }
.site-footer .brand:hover .brand__gest { background: #fff; color: var(--ink); }
.brand__logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  font-style: normal;
  letter-spacing: 0;
}
.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.site-nav a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 0;
  position: relative;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a.is-current { color: var(--accent); }
.site-nav a.is-current::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
a.btn-donate,
.btn-donate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #FFFFFF;
  padding: 16px 52px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-donate:hover { background: var(--bg-warm); color: var(--ink); transform: translateY(-1px); }

/* Mobile menu */
.site-nav-trigger { display: none; }
.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
}
.nav-toggle__icon {
  display: inline-flex;
  flex-direction: column;
  position: relative;
  width: 24px;
  height: 18px;
  justify-content: space-between;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: opacity 0.2s var(--ease);
}
.nav-open .nav-toggle__bar { opacity: 0; }
.nav-open .nav-toggle__icon::before,
.nav-open .nav-toggle__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  background: currentColor;
}
.nav-open .nav-toggle__icon::before { transform: translateY(-50%) rotate(45deg); }
.nav-open .nav-toggle__icon::after  { transform: translateY(-50%) rotate(-45deg); }
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0);
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s var(--ease), background 0.3s var(--ease);
  z-index: 999;
}
.nav-open .nav-backdrop { background: rgba(0,0,0,0.5); opacity: 1; pointer-events: auto; }

/* Hero (full-bleed image background) */
.hero {
  position: relative;
  min-height: 78vh;
  min-height: 78dvh;
  padding: 140px var(--gap) 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.35) 0%, rgba(26,26,26,0.2) 40%, rgba(26,26,26,0.65) 100%);
}
.hero__inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-warm);
  margin: 0 0 24px;
}
.hero__title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35), 0 0 32px rgba(0,0,0,0.3);
}
.hero__lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.hero .btn-primary { background: var(--bg-warm); color: var(--ink); }
.hero .btn-primary:hover { background: #fff; color: var(--ink); }

/* ============ EPIC HERO ANIMATIONS ============ */
/* Ken Burns slow zoom on background */
.hero--epic .hero__bg img {
  animation: kenburns 18s ease-in-out infinite alternate;
  transform-origin: 60% 50%;
}
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, 1%); }
}

/* Replace the ::after gradient with a separate overlay div for layering */
.hero--epic .hero__bg::after { display: none; }
.hero--epic .hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 30%, rgba(252,251,113,0.18) 0%, rgba(252,251,113,0) 50%),
    linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.2) 40%, rgba(26,26,26,0.75) 100%);
  pointer-events: none;
}

/* Floating yellow blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  background: var(--bg-warm);
  filter: blur(60px);
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
}
.hero__blob--1 { width: 380px; height: 380px; top: -80px; left: -120px; animation: blob1 16s ease-in-out infinite; }
.hero__blob--2 { width: 280px; height: 280px; bottom: -80px; right: -60px; animation: blob2 22s ease-in-out infinite; }
.hero__blob--3 { width: 220px; height: 220px; top: 40%; right: 18%; opacity: 0.22; animation: blob3 19s ease-in-out infinite; }
@keyframes blob1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(80px, 60px) scale(1.15); }
  66%      { transform: translate(40px, -40px) scale(0.9); }
}
@keyframes blob2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-90px, -50px) scale(1.2); }
}
@keyframes blob3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-60px, 70px) scale(0.8); }
}

/* Marquee strip top */
.hero__marquee {
  position: absolute;
  top: 14px;
  left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bg-warm);
}
.hero__marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  padding-left: 28px;
}
.hero__marquee-track span { display: inline-block; }
.hero__marquee-dot { color: rgba(252,251,113,0.6); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Word-by-word stagger reveal for hero title */
.hero__title--anim .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  margin-right: 0.22em;
}
.hero__title--anim .word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: wordRise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero__title--anim .word:nth-of-type(1) > span { animation-delay: 0.2s; }
.hero__title--anim .word:nth-of-type(2) > span { animation-delay: 0.35s; }
.hero__title--anim .word:nth-of-type(3) > span { animation-delay: 0.5s; }
.hero__title--anim .word:nth-of-type(4) > span { animation-delay: 0.65s; }
.hero__title--anim .word:nth-of-type(5) > span { animation-delay: 0.8s; }
@keyframes wordRise {
  to { transform: translateY(0); opacity: 1; }
}
.hero__title-accent {
  position: relative;
}
.hero__title-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 18%;
  background: var(--bg-warm);
  opacity: 0.55;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: accentSwipe 1.1s cubic-bezier(0.65, 0, 0.35, 1) 1.3s forwards;
  border-radius: 4px;
}
@keyframes accentSwipe {
  to { transform: scaleX(1); }
}

/* Stats row */
.hero__stats {
  list-style: none;
  margin: 36px 0 40px;
  padding: 0;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  color: var(--bg-warm);
}
.hero__stats span {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

/* CTA with pulsing yellow glow */
.hero__cta {
  position: relative;
  isolation: isolate;
}
.hero__cta::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: var(--bg-warm);
  opacity: 0.5;
  z-index: -1;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}
.hero__scroll::after {
  content: '';
  position: absolute;
  top: -56px;
  left: 0;
  width: 100%;
  height: 56px;
  background: var(--bg-warm);
  animation: scrollDown 2.4s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
@keyframes scrollDown {
  0%   { top: -56px; }
  60%  { top: 56px; }
  100% { top: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero--epic .hero__bg img,
  .hero__blob,
  .hero__marquee-track,
  .hero__cta::before,
  .hero__scroll::after,
  .hero__title--anim .word > span,
  .hero__title-accent::after { animation: none !important; }
  .hero__title--anim .word > span { transform: none; opacity: 1; }
  .hero__title-accent::after { transform: scaleX(1); }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); }
.btn-primary::after { content: '→'; transition: transform 0.3s var(--ease); }
.btn-primary:hover::after { transform: translateX(4px); }

/* Sections */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 100px var(--gap);
}
.section--alt { background: var(--bg-soft); max-width: none; padding-left: 0; padding-right: 0; }
.section--alt > .section__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.section-head { text-align: center; margin-bottom: 64px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 720px;
}

/* 3-col features */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.feature {
  text-align: center;
}
.feature__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-warm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
}
.feature__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
  margin: 0 0 14px;
}
.feature__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* Editorial split */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.editorial--reverse .editorial__media { order: 2; }
.editorial__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
}
.editorial__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  margin: 18px 0 22px;
  color: var(--ink);
}
.editorial__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.editorial__body p { margin: 0 0 16px; }
.editorial__body p:last-child { margin-bottom: 0; }

/* Big closing CTA banner */
.cta-band {
  background: var(--ink);
  color: var(--bg);
  padding: 80px var(--gap);
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--bg);
}
.cta-band__lead {
  font-size: 16px;
  color: rgba(255, 248, 220, 0.78);
  max-width: 540px;
  margin: 0 auto 36px;
}
.cta-band .btn-primary { background: var(--bg-warm); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--bg); color: var(--ink); }

/* Page intro */
.page-intro {
  background: var(--bg-warm);
  padding: 90px var(--gap) 80px;
  text-align: center;
}
.page-intro__inner { max-width: 820px; margin: 0 auto; }
.page-intro__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  color: var(--ink);
  margin: 18px 0 22px;
}
.page-intro__lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto;
}

/* About page: full-bleed yellow so iframe Softr (yellow bg) blends seamlessly */
body.about-page { background: var(--bg-warm); }
body.about-page .site-header { background: var(--bg-warm); }
.members-iframe-wrap {
  background: var(--bg-warm);
  padding: 60px 0 80px;
  margin: 0;
  width: 100%;
  position: relative;
}
.members-iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: var(--bg-warm);
}
/* Mask the "Made with Softr" badge that sits at bottom-right of the iframe */
.softr-badge-mask {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 60px;
  background: var(--bg-warm);
  pointer-events: none;
  z-index: 5;
}

@media (max-width: 800px) {
  .members-iframe-wrap { padding: 32px 0 48px; }
  .members-iframe { min-height: 560px; }
  .softr-badge-mask {
    bottom: 36px;
    width: 160px;
    height: 48px;
  }
  body.about-page .hero { min-height: 56vh; min-height: 56dvh; padding: 100px var(--gap) 80px; }
  body.about-page .hero__title { font-size: clamp(34px, 9vw, 56px); }
}

/* Donate page */
.donate-form {
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 40px 36px;
}
.donate-form__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 14px;
}
.donate-form__group + .donate-form__group { margin-top: 28px; }
.donate-form__options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.donate-opt {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 14px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.donate-opt:hover { border-color: var(--ink); }
.donate-opt.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.donate-form__amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.donate-form__btn {
  margin-top: 36px;
  width: 100%;
  background: var(--ink);
  color: var(--bg);
  border: 0;
  border-radius: 999px;
  padding: 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.donate-form__btn:hover { background: var(--accent); }
.donate-form__lead {
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto 48px;
}

/* About long-text page */
.about-text {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px var(--gap) 100px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}
.about-text p { margin: 0 0 20px; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 60px var(--gap) 28px;
}
.site-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 248, 220, 0.15);
}
.site-footer .brand { color: var(--bg); }
.site-footer .brand__logo { background: var(--bg-warm); color: var(--ink); }
.site-footer__brand p {
  margin: 18px 0 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 248, 220, 0.65);
  max-width: 320px;
}
.site-footer__col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg-warm);
  margin: 0 0 18px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 10px; }
.site-footer__col a {
  font-size: 13px;
  color: rgba(255, 248, 220, 0.72);
}
.site-footer__col a:hover { color: var(--bg-warm); }
.site-footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 248, 220, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; gap: 56px; }
  .editorial, .editorial--reverse { grid-template-columns: 1fr; gap: 32px; }
  .editorial--reverse .editorial__media { order: 0; }
  .editorial__media img { max-width: 520px; margin: 0 auto; }
  .section { padding: 70px var(--gap); }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 800px) {
  .site-nav-trigger { display: block; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(82vw, 320px);
    height: 100vh; height: 100dvh;
    background: var(--bg);
    box-shadow: -8px 0 24px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 1000;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 32px;
    gap: 0;
  }
  .nav-open .site-nav { transform: translateX(0); }
  .site-nav a {
    padding: 18px 28px;
    border-bottom: 1px solid var(--rule);
    font-size: 14px;
  }
  .site-nav a.is-current::after { left: 28px; right: auto; bottom: 14px; width: 20px; }
  .btn-donate { display: none; }
  .nav-open { overflow: hidden; }
  .nav-open .site-header { z-index: 1000; }
  .nav-open .nav-toggle { position: fixed; top: 16px; right: 16px; z-index: 1100; }
}
@media (max-width: 540px) {
  .donate-form__amounts { grid-template-columns: repeat(2, 1fr); }
}
