/* ============================================================
   HaqforHer — public site
   Typeface: Verdana (websafe, no webfont request needed)
   ============================================================ */

:root {
  --plum-900: #1b0614;
  --plum-800: #2a0a1e;
  --plum-700: #3a0c28;
  --plum-600: #490f34;
  --plum-500: #5d1443;
  --magenta:  #e4479a;
  --magenta-d:#c22f7f;
  --pink:     #ff86c4;
  --pink-100: #fdeef6;
  --pink-200: #f8d6e8;
  --gold:     #f0b43c;
  --ink:      #24101c;
  --ink-soft: #6b5260;
  --paper:    #ffffff;
  --line:     #eddbe6;
  --shadow:   0 10px 30px rgba(73,15,52,.10);
  --shadow-lg:0 24px 60px rgba(27,6,20,.24);
  --font:     Verdana, Geneva, "DejaVu Sans", Tahoma, sans-serif;
  --radius:   16px;
  --wrap:     1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  line-height: 1.25;
  margin: 0 0 .6rem;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: 1.16rem; }
p  { margin: 0 0 1rem; }
a  { color: var(--magenta-d); }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font); font-size: .87rem; font-weight: bold;
  padding: .82rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  background: var(--magenta); color: #fff; text-decoration: none;
  cursor: pointer; transition: transform .16s, background .16s, box-shadow .16s;
}
.btn:hover { background: var(--magenta-d); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(228,71,154,.32); }
.btn.ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn.ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn.outline { background: transparent; border-color: var(--magenta); color: var(--magenta-d); }
.btn.outline:hover { background: var(--magenta); color: #fff; }
.btn.sm { padding: .55rem 1.1rem; font-size: .8rem; }

/* ---------------- top utility bar ---------------- */
.topbar {
  background: var(--plum-800);
  color: #eccfe0;
  font-size: .76rem;
  border-bottom: 1px solid rgba(255,134,196,.18);
}
.topbar-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 42px; flex-wrap: wrap;
}
/* email sits in the left corner */
.topbar-mail { display: flex; align-items: center; margin-right: auto; }
.topbar-email { letter-spacing: .01em; }
/* quick links and the donation button sit on the right */
.topbar-group {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 1.1rem; flex-wrap: wrap; margin-left: auto;
}
.topbar a {
  color: #eccfe0; text-decoration: none; font-weight: normal;
  display: inline-flex; align-items: center; gap: .4rem;
}
.topbar a:hover { color: var(--pink); }
.topbar svg { flex: 0 0 auto; opacity: .85; }
.donate-btn {
  background: var(--magenta); color: #fff !important; border-radius: 999px;
  padding: .34rem 1rem; font-weight: normal; letter-spacing: .03em;
  transition: background .16s, transform .16s;
}
.donate-btn:hover { background: var(--gold); color: var(--plum-900) !important; transform: translateY(-1px); }

/* ---------------- header ---------------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-head .bar { display: flex; align-items: center; gap: 1.4rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand-mark {
  width: 50px; height: 50px; flex: 0 0 auto; border-radius: 50%;
  object-fit: contain; background: #fff;
}
.brand-text strong {
  display: block; font-size: 1.12rem; font-weight: bold; letter-spacing: .01em;
  color: var(--plum-600); line-height: 1.15; white-space: nowrap;
}
.brand-text strong em { font-style: normal; color: var(--magenta); }
.brand-text small {
  display: block; font-size: .58rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 2px;
}

.site-nav { margin-left: auto; display: flex; align-items: center; gap: 1.15rem; }
.site-nav > a,
.site-nav .sub-toggle {
  font-family: var(--font); font-size: .82rem; font-weight: normal;
  text-decoration: none; color: var(--ink); background: none; border: 0;
  padding: .3rem 0; cursor: pointer; white-space: nowrap;
  border-bottom: 2px solid transparent; display: inline-flex; align-items: center; gap: .3rem;
}
.site-nav > a:hover, .site-nav > a.active,
.site-nav .has-sub:hover .sub-toggle, .site-nav .has-sub.active .sub-toggle {
  color: var(--magenta-d); border-bottom-color: var(--magenta);
}
.site-nav .caret { font-size: .6rem; transition: transform .18s; }
.site-nav .has-sub { position: relative; }
.site-nav .has-sub:hover .caret { transform: rotate(180deg); }

.submenu {
  position: absolute; top: calc(100% + 14px); left: -14px; min-width: 208px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: .5rem; z-index: 70;
  opacity: 0; visibility: hidden; transform: translateY(-7px);
  transition: opacity .17s, transform .17s, visibility .17s;
}
.submenu::before {
  content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu, .submenu.open {
  opacity: 1; visibility: visible; transform: none;
}
.submenu a {
  display: block; padding: .6rem .8rem; border-radius: 8px; text-decoration: none;
  font-size: .82rem; font-weight: normal; color: var(--ink);
}
.submenu a:hover, .submenu a.active { background: var(--pink-100); color: var(--magenta-d); }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  padding: .5rem; color: var(--plum-600);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; }

/* ---------------- inner-page banner ---------------- */
.page-banner {
  position: relative; padding: clamp(2.8rem, 6vw, 4.4rem) 0;
  background: linear-gradient(120deg, var(--plum-700), var(--plum-800));
  color: #fff; background-size: cover; background-position: center;
}
.page-banner.has-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,5,15,.88), rgba(45,11,33,.62));
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: .5rem; }
.page-banner p { color: #f0d9e6; max-width: 62ch; margin-bottom: .9rem; }
.crumbs { font-size: .76rem; color: #dcbcd0; display: flex; gap: .45rem; align-items: center; }
.crumbs a { color: var(--pink); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ---------------- hero slider ---------------- */
.hero { position: relative; overflow: hidden; background: var(--plum-800); }
.hero-track { position: relative; min-height: clamp(460px, 74vh, 720px); }
.hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .85s ease;
  background-size: cover; background-position: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(20,5,15,.90) 0%, rgba(35,9,26,.72) 42%, rgba(45,11,33,.34) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 660px; padding: 3rem 0; color: #fff; }
.eyebrow {
  display: inline-block; font-size: .68rem; font-weight: bold; letter-spacing: .17em;
  text-transform: uppercase; color: var(--pink);
  border: 1px solid rgba(255,134,196,.45); border-radius: 999px;
  padding: .4rem .95rem; margin-bottom: 1.15rem;
}
.hero-inner h1 { color: #fff; margin-bottom: .9rem; }
.hero-inner p { color: #f0d9e6; font-size: 1.02rem; max-width: 56ch; margin-bottom: 1.7rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .7rem; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 1.1rem; display: grid; place-items: center;
  transition: background .18s;
}
.hero-arrow:hover { background: rgba(255,255,255,.28); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
.hero-dots { position: absolute; bottom: 26px; left: 0; right: 0; z-index: 5;
             display: flex; justify-content: center; gap: .5rem; }
.hero-dots button {
  width: 34px; height: 5px; border-radius: 3px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.34); padding: 0; transition: background .2s;
}
.hero-dots button.is-active { background: var(--magenta); }

/* ---------------- sections ---------------- */
.section { padding: clamp(3.4rem, 7vw, 5.6rem) 0; }
.section.tint { background: var(--pink-100); }
.section.dark { background: linear-gradient(150deg, var(--plum-600), var(--plum-800)); color: #fff; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark p { color: #eed3e2; }

.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: block; font-size: .69rem; font-weight: bold; letter-spacing: .18em;
  text-transform: uppercase; color: var(--magenta); margin-bottom: .6rem;
}
.section.dark .kicker { color: var(--pink); }
.lead { font-size: 1.03rem; color: var(--ink-soft); }
.section.dark .lead { color: #eed3e2; }

.grid { display: grid; gap: 1.4rem; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------------- cards ---------------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
}
.section.dark .card {
  background: rgba(255,255,255,.07); border-color: rgba(255,134,196,.24); box-shadow: none;
}
.card h3 { margin-bottom: .45rem; }
.card p:last-child { margin-bottom: 0; }

.pill {
  display: inline-block; font-size: .66rem; font-weight: bold; letter-spacing: .12em;
  text-transform: uppercase; color: var(--magenta-d); background: var(--pink-200);
  border-radius: 999px; padding: .3rem .75rem; margin-bottom: .7rem;
}
.section.dark .pill { background: rgba(255,134,196,.2); color: var(--pink); }

/* aims */
.aim { display: flex; gap: 1rem; align-items: flex-start; }
.aim .num {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--magenta); color: #fff; font-weight: bold; font-size: .9rem;
  display: grid; place-items: center;
}

/* founder */
.founder { display: grid; grid-template-columns: 300px 1fr; gap: 2.6rem; align-items: start; }
.founder-card { text-align: center; }
.founder-badge {
  width: 128px; height: 128px; margin: 0 auto 1rem; border-radius: 50%;
  background: linear-gradient(150deg, var(--magenta), var(--plum-600));
  color: #fff; font-size: 2.5rem; font-weight: bold; display: grid; place-items: center;
}

/* team */
.member { text-align: center; padding: 1.4rem 1rem; }
.member .avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto .85rem;
  object-fit: cover; border: 3px solid var(--pink-200); background: var(--pink-100);
}
.member .avatar.initials {
  display: grid; place-items: center; font-size: 1.5rem; font-weight: bold;
  color: #fff; background: linear-gradient(150deg, var(--magenta), var(--plum-500));
  border-color: rgba(255,255,255,.35);
}
.member strong { display: block; font-size: .96rem; }
.member span { font-size: .8rem; color: var(--ink-soft); }
.section.dark .member span { color: #e2bed3; }

/* events */
.event { display: grid; grid-template-columns: 88px 1fr; gap: 1.2rem; align-items: start; }
.event .date {
  background: var(--plum-600); color: #fff; border-radius: 12px; text-align: center;
  padding: .7rem .4rem;
}
.event .date b { display: block; font-size: 1.5rem; line-height: 1; }
.event .date span { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }

/* gallery */
.gal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gal figure {
  margin: 0; position: relative; border-radius: var(--radius); overflow: hidden;
  cursor: pointer; background: var(--plum-700); aspect-ratio: 4 / 3;
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gal figure:hover img { transform: scale(1.06); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.4rem .95rem .95rem;
  font-size: .77rem; line-height: 1.5; color: #fff; text-align: center;
  background: linear-gradient(transparent, rgba(20,5,15,.92));
  opacity: 0; transition: opacity .3s;
}
.gal figure:hover figcaption, .gal figure:focus-within figcaption { opacity: 1; }

/* videos */
.vid { border-radius: var(--radius); overflow: hidden; background: var(--plum-700); }
.vid .thumb { position: relative; aspect-ratio: 16 / 9; cursor: pointer; }
.vid .thumb img { width: 100%; height: 100%; object-fit: cover; }
.vid .play {
  position: absolute; inset: 0; margin: auto; width: 58px; height: 58px;
  border-radius: 50%; background: rgba(228,71,154,.94); color: #fff;
  display: grid; place-items: center; font-size: 1.2rem; border: 0; cursor: pointer;
}
.vid .meta { padding: 1rem 1.1rem; background: var(--paper); border: 1px solid var(--line); border-top: 0; }
.vid .meta strong { display: block; font-size: .92rem; }
.vid .meta span { font-size: .76rem; color: var(--ink-soft); }

/* blog */
.post-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.post-card .cover { aspect-ratio: 16 / 9; background: var(--pink-100); }
.post-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post-card h3 a { color: var(--ink); text-decoration: none; }
.post-card h3 a:hover { color: var(--magenta-d); }
.post-card .byline { font-size: .74rem; color: var(--ink-soft); margin-bottom: .7rem; }
.post-card .more { margin-top: auto; font-size: .82rem; font-weight: bold; text-decoration: none; }

/* article page */
.article { max-width: 780px; margin: 0 auto; }
.article .cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.article-body { font-size: 1rem; }
.article-body p { margin-bottom: 1.15rem; }
.reactions { display: flex; flex-wrap: wrap; gap: .6rem; margin: 2rem 0; }
.react {
  display: inline-flex; align-items: center; gap: .45rem; cursor: pointer;
  background: var(--pink-100); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1rem; font-family: var(--font); font-size: .82rem; color: var(--ink);
}
.react:hover { border-color: var(--magenta); color: var(--magenta-d); }
.react b { font-weight: bold; }
.comment { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.comment strong { font-size: .9rem; }
.comment .when { font-size: .73rem; color: var(--ink-soft); }

/* forms */
.field { margin-bottom: 1rem; }
label { display: block; font-size: .78rem; font-weight: bold; margin-bottom: .35rem; }
input, textarea, select {
  width: 100%; font-family: var(--font); font-size: .92rem; color: var(--ink);
  padding: .78rem .9rem; border: 1px solid var(--line); border-radius: 10px;
  background: var(--paper);
}
textarea { min-height: 128px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(228,71,154,.15);
}
.section.dark input, .section.dark textarea {
  background: rgba(255,255,255,.09); border-color: rgba(255,134,196,.3); color: #fff;
}
.section.dark label { color: #f6dcea; }
.form-note { font-size: .8rem; margin-top: .8rem; }
.form-note.ok  { color: #1f7a4d; }
.form-note.err { color: #c0324a; }
.section.dark .form-note.ok { color: #8ff0bd; }
.section.dark .form-note.err { color: #ffb0c0; }

/* contact details */
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li { display: flex; gap: .8rem; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-list b { display: block; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); }
.contact-list a { color: #fff; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* map band (sits directly above the footer) */
.map-band { line-height: 0; background: var(--plum-800); }
.map-band iframe {
  width: 100%; height: 380px; border: 0; display: block;
  filter: saturate(1.05);
}
@media (max-width: 720px) { .map-band iframe { height: 280px; } }

/* footer */
.site-foot { background: var(--plum-900); color: #d9bfd0; padding: 3rem 0 1.6rem; font-size: .86rem; }
.site-foot h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; }
.site-foot a { color: #d9bfd0; text-decoration: none; }
.site-foot a:hover { color: var(--pink); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.4rem; }
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { margin-bottom: .5rem; }
.foot-links a { font-weight: normal; }
.socials { display: flex; gap: .55rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.09); color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  transition: background .18s, transform .18s, border-color .18s;
}
.socials a:hover {
  background: var(--magenta); border-color: var(--magenta);
  transform: translateY(-2px); color: #fff;
}
.socials svg { display: block; }
.foot-base {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.2rem;
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .78rem;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(14,3,11,.94); padding: 3vh 4vw;
}
.lightbox.open { display: grid; place-items: center; }
.lightbox img { max-height: 78vh; max-width: 100%; border-radius: 10px; }
.lb-inner { text-align: center; max-width: 100%; }
.lightbox img, .lightbox iframe { margin-left: auto; margin-right: auto; }
.lightbox .cap {
  color: #f1d8e6; font-size: .86rem; line-height: 1.65;
  max-width: 760px; margin: 1.1rem auto 0;
  text-align: center;          /* captions centred when an image is opened */
  text-align-last: center;
}
.lightbox .x, .lightbox .nav {
  position: absolute; background: rgba(255,255,255,.14); border: 0; color: #fff;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
}
.lightbox .x { top: 18px; right: 20px; }
.lightbox .nav.p { left: 20px; top: 50%; }
.lightbox .nav.n { right: 20px; top: 50%; }
.lightbox iframe { width: min(960px, 92vw); aspect-ratio: 16/9; border: 0; border-radius: 10px; }

.empty-hint {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 1.6rem;
  color: var(--ink-soft); font-size: .88rem; background: var(--pink-100);
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s, transform .6s; }
.reveal.in { opacity: 1; transform: none; }

/* ---------------- responsive ---------------- */
@media (max-width: 980px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .founder { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .gal { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .topbar { font-size: .71rem; }
  .topbar-in { justify-content: center; gap: .7rem .9rem; padding-top: .45rem; padding-bottom: .45rem; }
  .topbar-mail, .topbar-group { margin: 0 auto; gap: .55rem .8rem; justify-content: center; }
  .donate-btn { padding: .3rem .8rem; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 74px; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem 22px 1.1rem; display: none; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav > a, .site-nav .sub-toggle {
    padding: .8rem 0; border-bottom: 1px solid var(--line); width: 100%;
    justify-content: space-between;
  }
  .site-nav .has-sub { width: 100%; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-bottom: 1px solid var(--line);
    border-radius: 0; padding: .2rem 0 .5rem .9rem; display: none;
  }
  .submenu.open { display: block; }
  .brand-text strong { font-size: .98rem; }
  .brand-mark { width: 42px; height: 42px; }
  .g2, .g3, .g4, .gal { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .event { grid-template-columns: 72px 1fr; }
  .hero-arrow { display: none; }
  .hero-track { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Landing page — richer blocks
   ============================================================ */

/* intro split with logo watermark */
.intro-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.intro-visual {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 330px;
  background: linear-gradient(150deg, var(--plum-600), var(--plum-800));
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.intro-visual img { width: 62%; max-width: 250px; opacity: .96; }
.intro-visual::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(228,71,154,.34), transparent 60%);
}


/* feature cards with an accent edge */
.feature { position: relative; padding-left: 1.7rem; }
.feature::before {
  content: ""; position: absolute; left: 0; top: .35rem; bottom: .35rem;
  width: 5px; border-radius: 3px; background: linear-gradient(var(--magenta), var(--gold));
}


/* closing CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--magenta), var(--plum-600));
  color: #fff; border-radius: 22px; padding: clamp(2rem, 4vw, 3rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.8rem; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: .4rem; }
.cta-band p { color: #ffe3f1; margin: 0; max-width: 60ch; }
.cta-band .btn { background: #fff; color: var(--magenta-d); }
.cta-band .btn:hover { background: var(--plum-900); color: #fff; }

/* section header with a "view all" link on the right */
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.4rem; margin-bottom: 2.2rem; }
.head-row .section-head { margin-bottom: 0; }
.head-row .more-link { font-size: .82rem; font-weight: bold; text-decoration: none; white-space: nowrap; }

/* founder page layout */
.founder-wide { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: start; }
.founder-photo { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.founder-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.pull-quote {
  border-left: 5px solid var(--magenta); padding: .3rem 0 .3rem 1.3rem;
  font-size: 1.08rem; color: var(--plum-600); margin: 1.6rem 0;
}
.section.dark .pull-quote { color: #ffd9ec; }


@media (max-width: 980px) {
  .intro-split, .founder-wide { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .head-row { flex-direction: column; align-items: flex-start; }
}

/* contact list on a light card */
.contact-list.contact-light li { border-bottom-color: var(--line); }
.contact-list.contact-light b { color: var(--magenta); }
.contact-list.contact-light a, .contact-list.contact-light span { color: var(--ink); }

.foot-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
@media (max-width: 980px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .foot-grid { grid-template-columns: 1fr; } }

/* donations page */
.bank-details {
  font-size: .92rem; line-height: 1.9; color: var(--ink);
  background: var(--pink-100); border-radius: 10px; padding: .9rem 1.1rem;
}
.hint-note {
  font-size: .82rem; color: var(--ink-soft); margin-top: 1rem;
  padding-left: .9rem; border-left: 3px solid var(--line);
}

/* uploaded photo in the intro slot (Home / About) */
.intro-photo {
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--pink-100);
}
.intro-photo img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
