/* Transform Creatively — brand palette from transformcreatively.org */
:root {
  --purple-primary: #be49df;
  --purple-dark: #6b1782;
  --purple-medium: #a42fc5;
  --purple-accent: #d762f8;
  --purple-light: #f0d4f7;
  --purple-lighter: #f4e1f9;
  --purple-soft: #ebc7f5;
  --purple-border: #d6badd;
  --text-dark: #272525;
  --text-muted: #413e3e;
  --text-light: #6b6b6b;
  --bg-white: #ffffff;
  --bg-light: #f2f2f2;
  --bg-section: #faf8fc;
  --shadow-sm: 0 2px 8px rgba(39, 37, 37, 0.06);
  --shadow-md: 0 8px 32px rgba(190, 73, 223, 0.12);
  --shadow-lg: 0 16px 48px rgba(107, 23, 130, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: "Source Sans 3", "Inter", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --header-h: 72px;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--purple-dark);
  color: var(--bg-white);
  font-weight: 600;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

.nonprofit-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--purple-dark);
  color: var(--bg-white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
  text-align: center;
}

.nonprofit-bar a {
  color: var(--purple-light);
}

.nonprofit-bar__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

body:has(.nonprofit-bar) {
  --nonprofit-bar-h: 36px;
}

body:has(.nonprofit-bar) .site-header {
  top: var(--nonprofit-bar-h);
}

body:has(.nonprofit-bar) .nav-mobile {
  top: calc(var(--header-h) + var(--nonprofit-bar-h));
}

body:has(.nonprofit-bar) .hero {
  padding-top: calc(var(--header-h) + var(--nonprofit-bar-h) + 3rem);
}

body:has(.nonprofit-bar) .page-hero {
  padding-top: calc(var(--header-h) + var(--nonprofit-bar-h) + 3rem);
}

body:has(.nonprofit-bar) .mission-statement {
  margin-top: calc(var(--header-h) + var(--nonprofit-bar-h));
}

.donate-panel {
  background: var(--bg-white);
  border: 2px solid var(--purple-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 640px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.donate-panel__note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 1.25rem;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.donate-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.content-list-plain {
  margin: 1rem 0 1rem 1.25rem;
  color: var(--text-muted);
}

.content-list-plain li {
  margin-bottom: 0.5rem;
}

.legal-page h1 {
  margin-bottom: 1rem;
}

.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.mission-statement {
  background: var(--bg-white);
  border-bottom: 1px solid var(--purple-border);
  padding: 1.25rem 0;
}

.mission-statement p {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 800px;
  margin-inline: auto;
}

.mission-statement strong {
  color: var(--purple-dark);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: left;
  max-width: 480px;
  margin: 1rem auto 0;
}

.newsletter-consent input {
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .donate-methods {
    grid-template-columns: 1fr;
  }
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--purple-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--purple-primary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--bg-section);
}

.section--purple {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 55%, var(--purple-accent) 100%);
  color: var(--bg-white);
}

.section--purple > .container > h2,
.section--purple > .container > p,
.section--purple .section-header h2,
.section--purple .section-header p {
  color: inherit;
}

.section__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-primary);
  margin-bottom: 0.75rem;
}

.section--purple .section__label {
  color: var(--purple-light);
}

.section__intro {
  max-width: 720px;
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.section--purple .section__intro {
  color: rgba(255, 255, 255, 0.9);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--purple-border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
}

.logo:hover {
  color: var(--purple-dark);
}

.logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-desktop a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.nav-desktop a:hover,
.nav-desktop a.is-active {
  color: var(--purple-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--purple-border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  box-shadow: var(--shadow-md);
}

.nav-mobile.is-open {
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--purple-primary);
  color: var(--bg-white);
  border-color: var(--purple-primary);
}

.btn--primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  color: var(--bg-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--purple-dark);
  border-color: var(--purple-primary);
}

.btn--outline:hover {
  background: var(--purple-lighter);
  color: var(--purple-dark);
}

.btn--white {
  background: var(--bg-white);
  color: var(--purple-dark);
  border-color: var(--bg-white);
}

.btn--white:hover {
  background: var(--purple-lighter);
  color: var(--purple-dark);
}

.btn--ghost-white {
  background: transparent;
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
}

/* Hero */
.hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 5rem;
  background: linear-gradient(160deg, var(--purple-lighter) 0%, var(--bg-white) 45%, var(--purple-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(190, 73, 223, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-white);
  border: 1px solid var(--purple-border);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-dark);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge strong {
  color: var(--purple-primary);
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--purple-primary);
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Feature cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--purple-border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--purple-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card__img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-card:hover .feature-card__img img {
  transform: scale(1.05);
}

.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--purple-border);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-card__img {
  height: 200px;
  margin: -2rem -2rem 1.5rem;
  overflow: hidden;
}

.impact-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-banner {
  position: relative;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
}

.section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107, 23, 130, 0.88), rgba(190, 73, 223, 0.75));
}

.section-banner .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.section-banner h2,
.section-banner p {
  color: inherit;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}

.photo-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-gallery__item:hover img {
  transform: scale(1.08);
}

.photo-gallery__item--wide {
  grid-column: span 2;
}

.photo-gallery__item--tall {
  grid-row: span 2;
}

.page-hero--image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.page-hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 37, 37, 0.55) 0%, rgba(107, 23, 130, 0.65) 100%);
}

.page-hero--image .container {
  position: relative;
  z-index: 2;
}

.page-hero--image.prism-animated .prism-bubbles,
.page-hero--prism-animated .prism-bubbles {
  z-index: 1;
}

.page-hero--image.prism-animated .container {
  position: relative;
  z-index: 2;
}

.page-hero--image h1,
.page-hero--image p {
  color: var(--bg-white);
}

.page-hero--image .section__label {
  color: var(--purple-light);
}

.mission-visual {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.mission-visual__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.mission-visual__grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 140px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.mission-visual__grid img:first-child {
  grid-column: span 2;
  height: 200px;
}

.support-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.support-banner__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.support-banner__visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.work-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--purple-border);
  box-shadow: var(--shadow-sm);
}

.work-card__img {
  min-height: 220px;
}

.work-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__body {
  padding: 2rem 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-visual,
  .support-banner {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-columns: 1fr;
  }

  .work-card__body {
    padding: 1.5rem 2rem 2rem;
  }
}

@media (max-width: 768px) {
  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .photo-gallery__item--wide,
  .photo-gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.feature-card h3 {
  color: var(--purple-dark);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Two-column content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.split--center {
  align-items: center;
}

/* Mission pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--purple-primary);
  box-shadow: var(--shadow-sm);
}

.pillar__img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.pillar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar h3 {
  color: var(--purple-dark);
}

.outcomes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.outcome-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--purple);
  box-shadow: var(--shadow-sm);
}

.outcome-item p {
  margin: 0;
  color: var(--text);
}

.contact-visuals {
  max-width: 560px;
  margin: 0 auto;
}

.who-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.who-visuals .media-frame {
  height: 200px;
}

.who-visuals .media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-banner__visual--accent {
  min-height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
}

/* Impact areas */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.impact-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--purple-border);
  overflow: hidden;
}

.impact-card h3 {
  color: var(--purple-primary);
  margin-bottom: 0.75rem;
}

/* School partners */
.schools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.school-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--purple-border);
  transition: transform var(--transition);
}

.school-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.school-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-lighter));
  overflow: hidden;
}

.school-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.school-card__body {
  padding: 1.5rem;
}

.school-card__location {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple-primary);
  margin-bottom: 0.5rem;
}

/* Leadership */
.leadership {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--purple-border);
}

.leadership__photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.leadership__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership__role {
  font-weight: 700;
  color: var(--purple-primary);
  margin-bottom: 0.25rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.testimonial {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--purple-border);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--purple-light);
  font-family: var(--font-serif);
}

.testimonial blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  padding-top: 2rem;
  margin-bottom: 1.25rem;
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--purple-dark);
  display: block;
}

.testimonial cite span {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--purple-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.stat__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Partner steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

/* Partner cards: light background needs dark text (not inherited white) */
.section--purple .step {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text-dark);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.section--purple .step h3 {
  color: var(--purple-dark);
}

.section--purple .step p {
  color: var(--text-muted);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  color: var(--purple-dark);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* Newsletter */
.newsletter {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--purple-border);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--purple-primary);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--purple-border);
}

.contact-card h3 {
  color: var(--purple-primary);
  margin-bottom: 0.5rem;
}

.contact-card a {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Page hero (inner pages) */
.page-hero {
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 3rem;
  background: linear-gradient(160deg, var(--purple-lighter), var(--bg-white));
  text-align: center;
}

.page-hero p {
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Work / about lists */
.content-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content-block {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--purple-border);
  box-shadow: var(--shadow-sm);
}

.content-block h3 {
  color: var(--purple-dark);
  margin-bottom: 0.75rem;
}

.content-block ul {
  margin: 1rem 0 0 1.25rem;
  color: var(--text-muted);
}

.content-block li {
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.site-footer p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-nav h4 {
  color: var(--purple-light);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-nav a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .features-grid,
  .outcomes-list,
  .who-visuals {
    grid-template-columns: 1fr;
  }

  .pillars,
  .impact-grid,
  .schools-grid,
  .testimonials,
  .steps,
  .stats,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leadership {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 768px) {
  .nav-desktop,
  .nav-actions .btn--outline {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .split,
  .features-grid,
  .outcomes-list,
  .who-visuals {
    grid-template-columns: 1fr;
  }

  .pillars,
  .impact-grid,
  .schools-grid,
  .testimonials,
  .steps,
  .stats,
  .contact-grid,
  .footer-grid,
  .leadership {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .section {
    padding: 3.5rem 0;
  }

  .leadership__photo {
    max-width: 280px;
    margin-inline: auto;
  }
}
