:root {
  --bg: #fff8fd;
  --bg-soft: #fff1fa;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #251427;
  --muted: #6c566d;
  --border: rgba(148, 70, 131, 0.18);
  --primary: #c5349d;
  --primary-deep: #8f206f;
  --secondary: #f36db7;
  --highlight: #ffd3ef;
  --shadow: 0 24px 60px rgba(111, 26, 87, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(243, 109, 183, 0.24),
      transparent 32%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(197, 52, 157, 0.2),
      transparent 22%
    ),
    linear-gradient(180deg, #fff7fc 0%, #fffafd 40%, #fff2fb 100%);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  font-family: "Space Grotesk", sans-serif;
}

.page-shell {
  overflow: hidden;
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 253, 0.78);
  border-bottom: 1px solid rgba(197, 52, 157, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-weight: 600;
}

.site-nav a {
  color: #4f3451;
}

.nav-cta {
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.two-column,
.impact-grid,
.join-grid,
.footer-grid,
.intro-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.hero h1,
.section-heading h2,
.intro-band h2,
.join-section h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.section-heading h2,
.intro-band h2,
.join-section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.hero-text {
  margin-top: 1.4rem;
  max-width: 60ch;
  font-size: 1.07rem;
}

.hero-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 18px 36px rgba(197, 52, 157, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.visual-panel,
.stat-card,
.info-card,
.program-card,
.impact-card,
.quote-card,
.join-grid,
.intro-band,
.nav-cta {
  box-shadow: var(--shadow);
}

.main-panel {
  position: absolute;
  inset: 0 2.5rem 3rem 0;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 234, 247, 0.88)
    ),
    linear-gradient(135deg, rgba(197, 52, 157, 0.12), transparent 65%);
  border: 1px solid rgba(197, 52, 157, 0.12);
}

.main-panel h2 {
  font-size: 2rem;
  margin: 1rem 0;
}

.panel-tag,
.program-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: rgba(255, 211, 239, 0.7);
}

.stat-card {
  position: absolute;
  max-width: 250px;
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
}

.stat-card strong,
.impact-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 2rem;
  font-family: "Space Grotesk", sans-serif;
  color: var(--primary-deep);
}

.card-a {
  right: 0;
  bottom: 3.5rem;
}

.card-b {
  left: 2rem;
  bottom: 0;
}

.intro-band {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(197, 52, 157, 0.08);
  border-bottom: 1px solid rgba(197, 52, 157, 0.08);
}

.intro-grid,
.two-column,
.impact-grid,
.join-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 720px;
}

.centered {
  text-align: center;
  margin: 0 auto 2rem;
}

.pillars,
.program-grid,
.testimonial-grid,
.impact-cards {
  display: grid;
  gap: 1.3rem;
}

.pillars,
.program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.program-card,
.quote-card,
.impact-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
}

.info-card h3,
.program-card h3,
.quote-card footer,
.site-footer h3,
.site-footer h4 {
  margin-bottom: 0.7rem;
}

.accent-card {
  background: linear-gradient(
    135deg,
    rgba(197, 52, 157, 0.98),
    rgba(243, 109, 183, 0.88)
  );
  color: #fff;
}

.accent-card p,
.accent-card h3 {
  color: #fff;
}

.program-card {
  min-height: 240px;
}

.program-number {
  margin-bottom: 1rem;
}

.impact-section {
  position: relative;
}

.impact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.impact-card {
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92),
    rgba(255, 234, 247, 0.9)
  );
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.join-section {
  padding-bottom: 6rem;
}

.join-grid {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    135deg,
    rgba(255, 228, 243, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  border: 1px solid rgba(197, 52, 157, 0.14);
}

.site-footer {
  padding: 2.4rem 0 1.5rem;
  background: #2d0f27;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer p,
.site-footer h3,
.site-footer h4 {
  color: inherit;
}

.footer-bottom {
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ─── Vision & Mission ─────────────────────────────────── */
.vm-section {
  background: linear-gradient(
    160deg,
    rgba(255, 228, 244, 0.45),
    rgba(255, 255, 255, 0.2)
  );
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

.vm-card {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 52, 157, 0.14);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vision-card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.96),
    rgba(255, 234, 247, 0.88)
  );
}

.mission-card {
  background: linear-gradient(
    135deg,
    rgba(197, 52, 157, 0.96),
    rgba(243, 109, 183, 0.9)
  );
  color: #fff;
}

.mission-card .eyebrow,
.mission-card h3,
.mission-card p {
  color: #fff;
}

.mission-card .eyebrow {
  opacity: 0.85;
}

.vm-icon {
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1;
}

.mission-card .vm-icon {
  color: rgba(255, 255, 255, 0.7);
}

.vm-card h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.15;
}

/* ─── Objectives ───────────────────────────────────────── */
.objectives-section {
  background: rgba(255, 248, 253, 0.6);
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 2rem;
}

.objective-item {
  display: flex;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  align-items: flex-start;
}

.obj-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ─── Footer link styles ───────────────────────────────── */
.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: #fff;
}

/* ─── Partners ─────────────────────────────────────────── */
.partners-section .section-heading p {
  max-width: 56ch;
  margin: 0.5rem auto 0;
}

.partner-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2.6rem;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  padding: 2rem 2.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(197, 52, 157, 0.16);
  box-shadow: var(--shadow);
  max-width: 540px;
  width: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
}

.partner-card:hover,
.partner-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px rgba(111, 26, 87, 0.2);
}

.partner-logo-wrap {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 32px rgba(197, 52, 157, 0.3);
}

.partner-initials {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.partner-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.partner-info h3 {
  font-size: 1.35rem;
  color: var(--text);
}

.partner-full {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.4;
}

.partner-location {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.partner-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.partner-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-deep);
  letter-spacing: 0.02em;
}

/* ─── Reveal animation ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .impact-grid,
  .join-grid,
  .footer-grid,
  .intro-grid,
  .pillars,
  .program-grid,
  .testimonial-grid,
  .impact-cards,
  .vm-grid,
  .objectives-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

  .main-panel {
    position: relative;
    inset: auto;
  }

  .card-a,
  .card-b {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1.5rem;
    left: 1.5rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .brand-text small {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--container));
  }

  .section {
    padding: 4.2rem 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1,
  .section-heading h2,
  .intro-band h2,
  .join-section h2 {
    line-height: 1.04;
  }

  .main-panel,
  .join-grid,
  .info-card,
  .program-card,
  .quote-card,
  .impact-card {
    padding: 1.25rem;
  }
}
