/* ============================================================
   Radiance Girl Africa — design system
   Palette (3 colors): white paper, rose pink #E99F9F (+shades),
   warm charcoal ink #1E1B1B.
   Typography: SF / system stack, Apple HIG-inspired scale.
   ============================================================ */

:root {
  --paper: #FFFFFF;
  --ink: #1E1B1B;
  --ink-soft: rgba(30, 27, 27, 0.64);
  --ink-faint: rgba(30, 27, 27, 0.38);
  --hairline: rgba(30, 27, 27, 0.10);

  --pink: #E99F9F;
  --pink-deep: #B05457;          /* contrast-safe pink for text/links on white */
  --pink-tint: #FBF3F2;          /* whisper-light wash for alternating sections */
  --pink-glow: rgba(233, 159, 159, 0.35);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;

  --ease-glide: cubic-bezier(0.22, 1, 0.36, 1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;

  --chrome-top: 20px;
  --logo-size: 52px;
  --chrome-control-top: 24px;
  --chrome-control-height: 44px;
  --chrome-inner-height: 34px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--pink-deep); text-decoration: none; }
a:hover { text-decoration: none; }

::selection { background: rgba(233, 159, 159, 0.22); }

/* ---------- type scale ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.12; letter-spacing: -0.018em; }
.display {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.lede { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--ink-soft); max-width: 46em; }
.muted { color: var(--ink-soft); }
p + p { margin-top: 1em; }

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
section { padding: clamp(72px, 10vw, 128px) 0; }
section.tight { padding: clamp(44px, 6vw, 76px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 4.5vw, 56px); }
.section-head p { color: var(--ink-soft); margin-top: 14px; }
.wash { background: var(--pink-tint); }

/* ============================================================
   Floating chrome: logo / pill nav / contact — liquid glass
   ============================================================ */
.glass {
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.floating-logo {
  position: fixed; top: var(--chrome-top); left: 28px; z-index: 1001;
  display: grid; place-items: center;
  width: var(--logo-size); height: var(--logo-size);
  transition: opacity 0.45s var(--ease-glide), transform 0.45s var(--ease-glide);
}
.floating-logo img {
  width: var(--logo-size); height: var(--logo-size); object-fit: contain;
  transition: transform 0.3s var(--ease-glide);
}
.floating-logo:hover img { transform: scale(1.06); }

#pillNav {
  position: fixed; top: var(--chrome-control-top); left: 50%; transform: translateX(-50%);
  z-index: 1000; pointer-events: none;
  transition: opacity 0.45s var(--ease-glide), transform 0.45s var(--ease-glide);
}
.pill-nav-track {
  pointer-events: all;
  display: flex; align-items: center; gap: 2px;
  height: var(--chrome-control-height); padding: 4px; box-sizing: border-box; border-radius: 100px;
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
}
.pill-nav-btn {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  display: flex; align-items: center;
  font-family: inherit; font-size: 0.88rem; font-weight: 600;
  line-height: 1;
  color: rgba(31, 31, 31, 0.75);
  height: var(--chrome-inner-height); padding: 0 16px; border-radius: 100px; white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.pill-nav-btn:hover { background: rgba(255, 255, 255, 0.7); color: var(--ink); }
.pill-nav-btn.active {
  background: rgba(255, 255, 255, 0.92);
  color: var(--pink-deep);
  font-weight: 700;
}

/* hide-on-scroll-down */
html.top-chrome-hidden #pillNav { opacity: 0; transform: translate(-50%, -130%); pointer-events: none; }
html.top-chrome-hidden #pillNav .pill-nav-track { pointer-events: none; }
html.top-chrome-hidden .floating-logo,
html.top-chrome-hidden .hamburger-btn { opacity: 0; transform: translateY(-130%); pointer-events: none; }

/* logo over dark hero → white */
.floating-logo.logo-on-dark img { filter: invert(1); }

/* ---------- mobile: hamburger + frosted dropdown ---------- */
.hamburger-btn {
  display: none;
  position: fixed; top: 18px; right: 20px; z-index: 1002;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; appearance: none;
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition: opacity 0.45s var(--ease-glide), transform 0.45s var(--ease-glide);
}
.hamburger-btn span {
  display: block; width: 18px; height: 2px; margin: 4px auto;
  background: var(--pink-deep); border-radius: 2px;
  transition: transform 0.3s var(--ease-glide), opacity 0.2s ease;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobileMenu {
  display: none;
  position: fixed; top: 80px; right: 20px; left: 20px; z-index: 1001;
  flex-direction: column; padding: 10px; border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  padding: 14px 18px; border-radius: 14px;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
#mobileMenu a:hover, #mobileMenu a.active { background: rgba(255,255,255,0.9); color: var(--pink-deep); }

/* hamburger is for PHONES only — tablets keep the pill nav */
@media (max-width: 700px) {
  #pillNav { display: none; }
  .hamburger-btn { display: block; }
}
@media (min-width: 701px) {
  .hamburger-btn, #mobileMenu { display: none !important; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding: 0 0 clamp(48px, 8vh, 96px);
}
.hero .hero-media {
  position: absolute; inset: 0; z-index: -1;
}
.hero .hero-media img,
.hero .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero .hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(20, 16, 16, 0.62) 0%, rgba(20, 16, 16, 0.28) 26%, rgba(20, 16, 16, 0) 50%);
}
.hero h1 { color: #fff; max-width: 15em; }
.hero .lede { color: rgba(255, 255, 255, 0.88); margin-top: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* compact hero for interior pages */
.page-hero {
  position: relative; min-height: 56svh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding: 140px 0 clamp(40px, 6vh, 72px);
}
.page-hero.short { min-height: 42svh; }
.page-hero .hero-media { position: absolute; inset: 0; z-index: -1; }
.page-hero .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero .hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(20, 16, 16, 0.74) 0%, rgba(20, 16, 16, 0.30) 55%, rgba(20, 16, 16, 0.22) 100%);
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255, 255, 255, 0.88); margin-top: 16px; }

/* plain (no photo) page head, white bg */
.page-head { padding: 168px 0 24px; }
.page-head .lede { margin-top: 16px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 26px; border-radius: 100px;
  font-weight: 700; font-size: 0.98rem; font-family: inherit;
  cursor: pointer; border: 0;
  transition: transform 0.25s var(--ease-glide), background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
/* PRIMARY buttons: pink with white text */
.btn-primary { background: var(--pink); color: #FFFFFF; }
.btn-primary:hover { background: #DE8F8F; color: #FFFFFF; }

/* SECONDARY: a plain underlined word; a liquid glass pill appears on hover */
.text-link {
  display: inline-block;
  background: transparent; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; color: var(--pink-deep); white-space: nowrap;
  text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px;
  padding: 7px 14px; margin-left: -14px; border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.text-link:hover {
  background: rgba(233, 159, 159, 0.18);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  border-color: rgba(233, 159, 159, 0.45);
}

/* hero CTAs: both are liquid glass pills — one pink, one transparent */
.hero .btn-primary, .page-hero .btn-primary {
  background: rgba(233, 159, 159, 0.55);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.hero .btn-primary:hover { background: rgba(233, 159, 159, 0.75); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.28); color: #fff; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease-glide);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-5px); }
.card .card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-glide); }
.card:hover .card-media img { transform: scale(1.045); }
.card .card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card .card-body p { color: var(--ink-soft); font-size: 0.98rem; }
.card .card-body .text-link { margin-top: auto; padding-top: 8px; }
.card-link { color: inherit; display: flex; flex-direction: column; flex: 1; }

/* feature split (media + text) — media stretches to EXACTLY match the text column height */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.split.reverse > .split-media { order: 2; }
.split.narrow-media { grid-template-columns: 0.85fr 1.15fr; }
.split-body { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.split-media {
  position: relative; min-height: 340px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.split-media img, .split-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.split-media img.face-top { object-position: 50% 14%; }
.split-body .lede { margin-top: 18px; }
.split-body p:not(.lede) { color: var(--ink-soft); margin-top: 18px; }
.split-body .btn, .split-body .text-link { margin-top: 18px; }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > .split-media { order: 0; }
}

/* pillars (icon-less, HIG-clean) */
.pillar { padding: 34px 30px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--hairline); }
.pillar .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--pink); margin-bottom: 20px; }
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }

/* stats band */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat .num {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--pink-deep); line-height: 1;
}
.stat .label { margin-top: 10px; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; }
@media (max-width: 880px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; } }

/* quote */
.quote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.3;
  max-width: 24em;
}
.quote .attr { display: block; margin-top: 18px; font-size: 1rem; font-weight: 600; color: var(--ink-soft); letter-spacing: 0; }
.quote::before { content: "“"; color: var(--pink); font-size: 1.4em; line-height: 0; vertical-align: -0.32em; margin-right: 2px; }

/* masonry gallery */
.masonry { columns: 3 300px; column-gap: 18px; }
.masonry img {
  width: 100%; margin-bottom: 18px; border-radius: var(--radius-md);
  break-inside: avoid;
  transition: transform 0.35s var(--ease-glide);
}
.masonry img:hover { transform: scale(1.015); }

/* value list */
.value-row { display: grid; grid-template-columns: 200px 1fr; gap: 24px; padding: 30px 0; border-top: 1px solid var(--hairline); }
.value-row:last-child { border-bottom: 1px solid var(--hairline); }
.value-row h3 { color: var(--pink-deep); }
.value-row p { color: var(--ink-soft); }
@media (max-width: 640px) { .value-row { grid-template-columns: 1fr; gap: 8px; } }

/* exhibitor cards — portrait, name, country flag all in one card */
.artist-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--paper); border: 1px solid var(--hairline);
  transition: transform 0.35s var(--ease-glide);
}
.artist-card:hover { transform: translateY(-5px); }
.artist-card .ac-photo { aspect-ratio: 1 / 1.08; overflow: hidden; }
.artist-card .ac-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-glide);
}
.artist-card:hover .ac-photo img { transform: scale(1.045); }
.artist-card .ac-body { padding: 24px 26px 28px; }
.artist-card .country {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--pink-deep);
  background: var(--pink-tint); border-radius: 100px; padding: 5px 14px; margin-bottom: 16px;
}
.artist-card h3 { margin-bottom: 4px; }
.artist-card .role { font-size: 0.92rem; font-weight: 600; color: var(--ink-faint); margin-bottom: 12px; }
.artist-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 88px) clamp(28px, 6vw, 80px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
}
.cta-banner h2 { color: #fff; max-width: 18em; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-top: 10px; max-width: 36em; }

/* ============================================================
   Forms (contact)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
label { font-weight: 600; font-size: 0.92rem; display: block; margin-bottom: 8px; }
input, textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 14px 18px; border-radius: 14px;
  border: 1.5px solid var(--hairline); background: var(--paper);
  transition: border-color 0.2s ease;
}
input:focus, textarea:focus {
  outline: none; border-color: var(--pink);
}
textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: 0.9rem; color: var(--ink-faint); margin-top: 14px; }

.contact-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; border-radius: var(--radius-md);
  border: 1px solid var(--hairline); background: var(--paper);
  color: var(--ink); font-weight: 600;
}
.contact-chip svg { flex: none; color: var(--pink-deep); }
.contact-chip:hover { border-color: var(--pink); }

/* ============================================================
   Footer
   ============================================================ */
footer {
  background: var(--ink); color: rgba(255, 255, 255, 0.82);
  margin-top: clamp(44px, 6vw, 84px);
}
footer .wrap { display: flex; flex-wrap: wrap; align-items: center; }
footer .band1 { display: flex; align-items: center; gap: 16px; padding: 24px 24px 20px 0; flex-wrap: wrap; flex: 1; min-width: 300px; }
footer .band1 img { width: 40px; height: 40px; filter: invert(1); }
footer .band1 p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.65); }
footer .band2 {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  padding: 24px 0 20px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6);
}
footer .foot-bottom { width: 100%; }
footer .band2 a { color: rgba(255, 255, 255, 0.6); }
footer .band2 a:hover { color: var(--pink); }
footer .foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 0 18px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.5);
}
footer .foot-bottom a { color: rgba(255, 255, 255, 0.75); }
footer .foot-bottom a:hover { color: var(--pink); }

/* ============================================================
   Photo cards (image-filled, title overlay, square)
   ============================================================ */
.photo-card {
  position: relative; display: block;
  border-radius: 30px; overflow: hidden;
  aspect-ratio: 1 / 1;
  transform: translateZ(0);
  transition: transform 0.35s var(--ease-glide);
  color: #fff;
}
.photo-card:hover { transform: translateY(-6px); }
.photo-card > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-glide);
}
.photo-card:hover > img { transform: scale(1.05); }
.photo-card::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,16,16,0.55) 0%, rgba(20,16,16,0.08) 34%, rgba(20,16,16,0) 55%);
}
.photo-card .pc-title {
  position: absolute; top: 26px; left: 28px; right: 28px; z-index: 2;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem); font-weight: 700; letter-spacing: -0.015em;
  color: #fff; line-height: 1.2;
}

/* ============================================================
   Values: soft band, alternating rows on shared rails
   ============================================================ */
.values-band { background: #FBF1EA; padding: clamp(28px, 4vw, 56px) 0; }
.vrow {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
  max-width: 1180px; margin: 0 auto;
  padding: clamp(24px, 3.5vw, 48px) 24px;
}
.vrow.flip .vart { order: 2; }
.vart { display: flex; justify-content: flex-start; }
.vrow.flip .vart { justify-content: flex-end; order: 2; }
.vart img { width: min(100%, 420px); height: auto; }
.vart img[src*="value-respect"] { width: min(100%, 330px); }
.vtxt h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: 10px; }
.vtxt p { color: var(--ink-soft); }
@media (max-width: 700px) {
  .vrow { grid-template-columns: 1fr; }
  .vrow.flip .vart { order: 0; }
}

/* ============================================================
   Quotes: giant pink mark watermarked behind the text
   ============================================================ */
.big-quote {
  position: relative;
  padding: clamp(32px, 5vw, 56px) 24px;
}
.big-quote::before {
  content: "\201D";
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -34%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12rem, 28vw, 21rem); line-height: 1;
  color: rgba(223, 163, 163, 0.26);
  pointer-events: none; z-index: 0;
}
.big-quote p {
  position: relative; z-index: 1; margin: 0 auto;
  max-width: 30em; text-align: center;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem); line-height: 1.5;
  font-style: italic;
  color: var(--ink);
}
.big-quote .attr {
  position: relative; z-index: 1; display: block;
  margin: 18px auto 0; max-width: 30em;
  text-align: right;
  font-weight: 600; font-size: 1rem; color: var(--pink-deep);
}
.big-quote.sm { padding: 28px 8px 12px; }
.big-quote.sm::before { font-size: 9rem; }
.big-quote.sm p { font-size: 1.05rem; text-align: left; max-width: none; }
.big-quote.sm .attr { max-width: none; margin-top: 12px; font-size: 0.9rem; }
.mini-quote { margin-top: 18px; font-style: italic; color: var(--ink-soft); }
.mini-quote .attr { display: block; margin-top: 8px; font-style: normal; font-weight: 700; font-size: 0.9rem; color: var(--pink-deep); }

/* why girl child education matters: centered, text-first */
.why-sec { text-align: center; }
.why-sec h2 { max-width: 18em; margin: 0 auto; }
.why-sec p { max-width: 40em; margin: 22px auto 0; color: var(--ink-soft); text-align: center; }
.why-sec p strong { color: var(--ink); }
.src-note {
  display: block; margin: 26px auto 0;
  font-size: 0.78rem; font-weight: 400; color: var(--ink-faint);
}

/* ============================================================
   Mission / Vision: white framed cards over Shades of Beauty
   ============================================================ */
.mv-wrap { position: relative; overflow: hidden; padding: 0; }
.mv-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.mv-cards {
  position: relative;
  min-height: 135svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(28px, 5vh, 56px);
  padding: clamp(48px, 8vh, 96px) 24px;
}
.mv-card {
  position: relative;
  background: var(--paper);
  max-width: 680px; width: 100%;
  padding: clamp(40px, 6vw, 64px) clamp(28px, 5vw, 56px);
  text-align: center;
}
.mv-card::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid var(--ink);
  pointer-events: none;
}
.mv-card h2 { margin-bottom: 14px; }
.mv-card p { color: var(--ink-soft); }

/* ============================================================
   Pink illustrated Africa map
   ============================================================ */
.map-section { padding-top: clamp(8px, 1.5vw, 24px); }
.tight-bottom { padding-bottom: clamp(24px, 3vw, 48px); }
.bold-title { font-weight: 800; letter-spacing: -0.025em; }
.map-num {
  font-size: clamp(3rem, 6.5vw, 5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  color: var(--pink-deep);
  font-variant-numeric: tabular-nums;
}
.africa-pink {
  position: relative;
  display: flex; justify-content: center;
  padding: 8px 24px 0;
}
.africa-pink .afp-svg {
  height: 70svh; min-height: 340px;
  width: auto; max-width: 100%;
  display: block; overflow: visible;
}
.africa-pink .ctry {
  transform-box: fill-box; transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.africa-pink .ctry:hover { transform: scale(1.07); }
.afp-tip {
  position: absolute; z-index: 3; pointer-events: none;
  background: var(--paper); border: 1px solid var(--hairline);
  color: var(--pink-deep); font-weight: 700; font-size: 0.9rem;
  padding: 6px 14px; border-radius: 100px; white-space: nowrap;
  opacity: 0; transform: translate(-50%, -130%) scale(0.96);
  transition: opacity 0.2s ease, transform 0.2s var(--ease-glide);
}
.afp-tip.show { opacity: 1; transform: translate(-50%, -145%) scale(1); }
@media (prefers-reduced-motion: reduce) {
  .africa-pink .ctry, .africa-pink .ctry:hover { transition: none; transform: none; }
}
.wm-caption {
  text-align: center;
  max-width: 860px; margin: 0 auto;
  padding: clamp(18px, 2.5vw, 30px) 24px 0;
}
.wm-big {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.02;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.wm-big .num { color: var(--pink-deep); }
.wm-sub { margin: 12px auto 0; font-size: clamp(1rem, 1.5vw, 1.15rem); color: var(--ink-soft); max-width: 40em; }
.wm-caption .btn { margin-top: 20px; }

/* liquid glass button, pink tinted */
.btn-glass-pink {
  background: rgba(233, 159, 159, 0.30);
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(233, 159, 159, 0.55);
  color: var(--ink);
}
.btn-glass-pink:hover { background: rgba(233, 159, 159, 0.48); }

/* ============================================================
   Marquee: JS-driven infinite gallery + flat transport controls
   ============================================================ */
.marquee { overflow: hidden; width: 100%; }
.marquee-track {
  display: flex; gap: 20px; width: max-content;
  will-change: transform;
}
.marquee-track img {
  flex: 0 0 auto;
  height: clamp(280px, 42vw, 460px); width: auto;
  border-radius: 28px;
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
}
.mq-head { margin-bottom: clamp(24px, 3vw, 40px); }
.mq-head p { margin-top: 10px; }
.marquee-controls {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 18px;
}
.mq-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  appearance: none; cursor: pointer;
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--hairline);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.mq-btn:hover { background: var(--pink-tint); border-color: var(--pink); color: var(--pink-deep); }
.mq-btn svg { display: block; }
.mq-btn .ic-play { display: none; }
.mq-btn.paused .ic-pause { display: none; }
.mq-btn.paused .ic-play { display: block; }

/* ============================================================
   Language switcher: frosted chip, top right
   ============================================================ */
.lang-switch {
  position: fixed; top: var(--chrome-control-top); right: 28px; z-index: 1001;
  display: flex; align-items: center; gap: 2px;
  height: var(--chrome-control-height); padding: 4px; box-sizing: border-box; border-radius: 100px;
  background: rgba(255, 255, 255, 0.52);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  transition: opacity 0.45s var(--ease-glide), transform 0.45s var(--ease-glide);
}
.lang-switch button {
  appearance: none; border: 0; cursor: pointer; background: transparent;
  font-family: inherit; font-size: 0.86rem; font-weight: 700;
  line-height: 1;
  color: rgba(31,31,31,0.7);
  display: flex; align-items: center; justify-content: center;
  min-width: 42px; height: var(--chrome-inner-height); padding: 0 12px; border-radius: 100px;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-switch button:hover { background: rgba(255,255,255,0.7); color: var(--ink); }
.lang-switch button.active {
  background: rgba(255,255,255,0.92); color: var(--pink-deep);
}
html.top-chrome-hidden .lang-switch { opacity: 0; transform: translateY(-130%); pointer-events: none; }
@media (max-width: 700px) {
  .lang-switch { right: 74px; top: 18px; height: 44px; padding: 4px; }
  .lang-switch button { min-width: 0; height: 36px; padding: 0 12px; font-size: 0.8rem; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-glide), transform 0.7s var(--ease-glide); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
