/* ============================================================
   DHUN — Healing Through Music. Restoring Through Sound.
   ============================================================ */

:root {
  --cream:      #FAF4E9;
  --cream-deep: #F3E9D6;
  --ink:        #2B2138;
  --ink-soft:   #574c63;
  --plum:       #4A2E5D;
  --plum-deep:  #321f42;
  --gold:       #C99A3F;
  --gold-soft:  #e3c074;
  --teal:       #4E8579;
  --rose:       #C87E5F;
  --white:      #ffffff;

  --maxw: 1140px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(43, 33, 56, 0.07);
  --shadow-md: 0 18px 50px rgba(43, 33, 56, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--plum); }
h3 { font-size: 1.35rem; color: var(--plum); }
em { font-style: italic; }

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.kicker--light { color: var(--gold-soft); }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.section__head { margin-bottom: 3rem; max-width: 720px; }
.section__head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}
.btn--primary {
  background: var(--plum);
  color: var(--cream);
  box-shadow: 0 10px 26px rgba(74, 46, 93, 0.32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(74, 46, 93, 0.42); background: var(--plum-deep); }
.btn--ghost {
  background: transparent;
  color: var(--plum);
  border-color: rgba(74, 46, 93, 0.35);
}
.btn--ghost:hover { background: rgba(74, 46, 93, 0.07); transform: translateY(-3px); border-color: var(--plum); }
.btn--block { width: 100%; margin-top: 0.5rem; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 1.1rem 0;
}
.nav.scrolled {
  background: rgba(250, 244, 233, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(43, 33, 56, 0.08);
  padding: 0.6rem 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; color: var(--plum); }
.brand__mark { color: var(--gold); display: flex; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.16em; }

.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-weight: 500; font-size: 0.95rem; color: var(--ink-soft); position: relative; transition: color .25s; }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--plum); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: var(--plum); color: var(--cream) !important;
  padding: 0.6rem 1.3rem; border-radius: 999px; font-weight: 600;
  transition: transform .3s var(--ease), background .3s;
}
.nav__cta:hover { transform: translateY(-2px); background: var(--plum-deep); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2.4px; background: var(--plum); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(8rem, 16vw, 12rem) 0 clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 154, 63, 0.16), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(78, 133, 121, 0.14), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero__waves { position: absolute; inset: auto 0 0 0; height: 60%; opacity: 0.5; pointer-events: none; }
.hero__waves svg { width: 100%; height: 100%; }
.wave { opacity: 0.5; }
.wave--1 { fill: rgba(78, 133, 121, 0.20); animation: drift 16s ease-in-out infinite; }
.wave--2 { fill: rgba(201, 154, 63, 0.18); animation: drift 20s ease-in-out infinite reverse; }
.wave--3 { fill: rgba(74, 46, 93, 0.12); animation: drift 24s ease-in-out infinite; }
@keyframes drift { 0%,100% { transform: translateX(0); } 50% { transform: translateX(-28px); } }

.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow { color: var(--gold); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.82rem; margin-bottom: 1.4rem; }
.hero__title { font-size: clamp(2.7rem, 7vw, 5rem); color: var(--plum); margin-bottom: 1.5rem; }
.hero__title em { color: var(--gold); }
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); max-width: 680px; margin-bottom: 2.2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 5vw, 4rem);
  list-style: none; padding: 1.8rem 0; border-top: 1px solid rgba(74,46,93,0.14);
  border-bottom: 1px solid rgba(74,46,93,0.14);
}
.hero__stats li { display: flex; flex-direction: column; }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--plum); line-height: 1; }
.stat__label { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.4rem; }

.hero__measure { margin-top: 1.6rem; font-size: 0.98rem; color: var(--ink-soft); max-width: 620px; }
.hero__measure strong { color: var(--teal); }

/* ============================================================
   About
   ============================================================ */
.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 3rem; align-items: start; }
.lede { font-family: var(--serif); font-size: 1.45rem; color: var(--plum); line-height: 1.45; margin-bottom: 1.4rem; }
.about__lead p { color: var(--ink-soft); margin-bottom: 1.1rem; }

.about__quote {
  position: relative;
  background: linear-gradient(160deg, var(--plum), var(--plum-deep));
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem 2.2rem;
  box-shadow: var(--shadow-md);
}
.about__quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--gold-soft); line-height: 0.6; display: block; }
.about__quote p { font-family: var(--serif); font-size: 1.3rem; font-style: italic; line-height: 1.45; margin-top: 0.6rem; }

/* ============================================================
   Founder
   ============================================================ */
.founder { background: var(--cream-deep); }
.founder__grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }

.founder__portrait { position: sticky; top: 110px; text-align: center; }
.founder__avatar {
  position: relative; width: 100%; max-width: 280px; margin-inline: auto; aspect-ratio: 1;
  border-radius: 50%; box-shadow: var(--shadow-md); overflow: hidden;
}
.founder__initials {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-size: 4rem; font-weight: 600; color: var(--plum-deep);
}
.founder__credits { margin-top: 1.4rem; color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }

.founder__role { color: var(--gold); font-weight: 600; font-size: 1.05rem; margin-top: 0.4rem; }
.founder__body p { color: var(--ink-soft); margin-bottom: 1.1rem; }

.founder__message {
  margin-top: 2rem; padding: 2rem 2.2rem; border-left: 4px solid var(--gold);
  background: rgba(255,255,255,0.55); border-radius: 0 var(--radius) var(--radius) 0;
}
.founder__message p { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--plum); line-height: 1.5; margin-bottom: 1rem; }
.founder__message cite { font-style: normal; font-weight: 600; color: var(--ink); }

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy { background: var(--cream); }
.philosophy__grid {
  list-style: none; display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}
.philo-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(74,46,93,0.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.philo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.philo-card__icon { font-size: 1.8rem; color: var(--gold); display: block; margin-bottom: 0.8rem; }
.philo-card h3 { margin-bottom: 0.4rem; }
.philo-card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ============================================================
   Impact
   ============================================================ */
.impact {
  background: linear-gradient(165deg, var(--plum), var(--plum-deep));
  color: var(--cream);
  position: relative;
}
.impact h2 { color: var(--cream); }
.impact__grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(4, 1fr);
}
.impact__item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 2.2rem 1.6rem; text-align: center;
  backdrop-filter: blur(4px);
  transition: transform .4s var(--ease), background .4s;
}
.impact__item:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.impact__item--wide { grid-column: 1 / -1; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.impact__num { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 600; color: var(--gold-soft); display: block; line-height: 1; }
.impact__num--word { font-size: clamp(2rem, 4vw, 2.8rem); }
.impact__item p { font-size: 0.95rem; color: rgba(250,244,233,0.8); margin-top: 0.7rem; }

/* ============================================================
   What We Do
   ============================================================ */
.work { background: var(--cream); }
.work__grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(3, 1fr); }
.work-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(74,46,93,0.06);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.work-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.work-card__top { padding: 2.2rem 2rem 1.6rem; }
.work-card__badge {
  display: inline-grid; place-items: center; width: 58px; height: 58px; font-size: 1.7rem;
  background: linear-gradient(150deg, var(--cream-deep), #fff); border-radius: 16px;
  box-shadow: var(--shadow-sm); margin-bottom: 1.2rem;
}
.work-card__top h3 { margin-bottom: 0.7rem; }
.work-card__top p { color: var(--ink-soft); font-size: 0.98rem; }
.work-card__list { padding: 1.4rem 2rem 2.2rem; margin-top: auto; border-top: 1px solid rgba(74,46,93,0.08); }
.work-card__list-title { font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; margin-bottom: 0.8rem; }
.work-card__list ul { list-style: none; }
.work-card__list li { position: relative; padding-left: 1.5rem; color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 0.5rem; }
.work-card__list li::before { content: "♪"; position: absolute; left: 0; color: var(--teal); }

/* ============================================================
   Why Music Works
   ============================================================ */
.why {
  position: relative; text-align: center;
  background: linear-gradient(160deg, var(--teal), #3a6960);
  color: var(--cream); overflow: hidden;
}
.why__waves { position: absolute; inset: 0; color: rgba(255,255,255,0.18); display: grid; place-items: center; }
.why__waves svg { width: 130%; }
.why__inner { position: relative; z-index: 2; max-width: 760px; margin-inline: auto; }
.why__body { font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.7; margin: 1.5rem 0 2.5rem; color: rgba(250,244,233,0.95); }
.why__tagline { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; }
.why__tagline em { color: var(--gold-soft); }

/* ============================================================
   Voices
   ============================================================ */
.voices { background: var(--cream); }
.voices__grid { display: grid; gap: 1.8rem; grid-template-columns: repeat(3, 1fr); }
.voice {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.4rem 2rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(74,46,93,0.06);
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.voice:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.voice::before { content: "“"; font-family: var(--serif); font-size: 4rem; color: var(--gold-soft); line-height: 0.4; display: block; margin-bottom: 0.8rem; }
.voice blockquote { font-family: var(--serif); font-size: 1.22rem; font-style: italic; color: var(--plum); line-height: 1.5; }
.voice figcaption { margin-top: 1.4rem; font-weight: 600; font-size: 0.9rem; color: var(--gold); letter-spacing: 0.04em; }

/* ============================================================
   Partner
   ============================================================ */
.partner { background: var(--cream-deep); }
.partner__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.partner__intro h2 { margin: 0.4rem 0 1rem; }
.partner__intro p { color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 460px; }
.partner__list { list-style: none; display: grid; gap: 1rem; }
.partner__list li {
  background: var(--white); padding: 1.1rem 1.4rem; border-radius: 14px;
  box-shadow: var(--shadow-sm); font-weight: 500; color: var(--plum);
  position: relative; padding-left: 3rem; transition: transform .3s var(--ease);
}
.partner__list li:hover { transform: translateX(6px); }
.partner__list li::before {
  content: "✓"; position: absolute; left: 1.2rem; color: var(--teal); font-weight: 700;
}

/* ============================================================
   Support
   ============================================================ */
.support {
  background: linear-gradient(165deg, var(--plum-deep), var(--plum));
  color: var(--cream); text-align: center;
}
.support h2 { color: var(--cream); }
.support__lede { max-width: 640px; margin: 0 auto; color: rgba(250,244,233,0.85); }
.support__list {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem;
  margin: 2.5rem auto; max-width: 820px;
}
.support__list li {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  padding: 0.75rem 1.4rem; border-radius: 999px; font-size: 0.95rem;
}
.support__list li span { color: var(--gold-soft); margin-right: 0.4rem; }
.support__cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.support__cta p { color: rgba(250,244,233,0.8); font-style: italic; font-family: var(--serif); font-size: 1.1rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__intro h2 { margin: 0.4rem 0 1rem; }
.contact__intro > p { color: var(--ink-soft); margin-bottom: 2rem; max-width: 440px; }
.contact__details { list-style: none; display: grid; gap: 1.1rem; }
.contact__details li { display: flex; align-items: center; gap: 1rem; font-size: 1.05rem; color: var(--ink); }
.contact__details a:hover { color: var(--gold); }
.contact__icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--plum); box-shadow: var(--shadow-sm); font-size: 1.1rem;
}

.contact__form {
  background: var(--white); border-radius: var(--radius-lg); padding: 2.4rem;
  box-shadow: var(--shadow-md); border: 1px solid rgba(74,46,93,0.06);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--plum); margin-bottom: 0.45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.98rem; color: var(--ink);
  padding: 0.85rem 1rem; border: 1.5px solid rgba(74,46,93,0.16); border-radius: 12px;
  background: var(--cream); transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,154,63,0.16); background: #fff;
}
.form__note { margin-top: 1rem; font-size: 0.92rem; color: var(--teal); font-weight: 600; min-height: 1.2em; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--plum-deep); color: var(--cream); padding-top: 3.5rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
.brand--footer { color: var(--cream); }
.brand--footer .brand__mark { color: var(--gold-soft); }
.footer__brand p { margin-top: 0.8rem; color: rgba(250,244,233,0.7); font-family: var(--serif); font-style: italic; }
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a { color: rgba(250,244,233,0.8); font-size: 0.95rem; transition: color .25s; }
.footer__nav a:hover { color: var(--gold-soft); }
.footer__social p { color: rgba(250,244,233,0.8); margin-bottom: 1rem; font-size: 0.95rem; }
.footer__icons { display: flex; gap: 0.7rem; }
.footer__icons a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--cream); font-weight: 600; font-size: 0.95rem;
  transition: background .3s, transform .3s var(--ease);
}
.footer__icons a:hover { background: var(--gold); color: var(--plum-deep); transform: translateY(-3px); }
.footer__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  padding-top: 1.6rem; padding-bottom: 1.6rem; margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(250,244,233,0.55);
}

/* ============================================================
   Founder photo (real image replaces SVG monogram)
   ============================================================ */
.founder__avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: 50%;
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery { background: var(--cream-deep); }
.gallery__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  align-items: stretch;
}
.gallery__col { display: flex; flex-direction: column; gap: 1rem; }
.gallery__item {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); flex: 1;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.gallery__item:hover { transform: scale(1.015); box-shadow: var(--shadow-md); }
.gallery__item--tall { height: 100%; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 220px;
}

/* ============================================================
   Book
   ============================================================ */
.book { background: var(--cream); }
.book__grid {
  display: grid; grid-template-columns: 340px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.book__cover {
  position: relative;
}
.book__cover img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(43, 33, 56, 0.22), 0 8px 20px rgba(43, 33, 56, 0.12);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.book__cover:hover img { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 40px 90px rgba(43, 33, 56, 0.28); }
.book__byline { color: var(--gold); font-weight: 600; font-size: 1.05rem; margin-top: 0.4rem; }
.book__body p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.book__cta { margin-top: 2rem; display: inline-flex; }

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

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .about__grid, .founder__grid, .partner__grid, .contact__grid, .book__grid { grid-template-columns: 1fr; }
  .founder__portrait { position: static; margin-bottom: 1rem; }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .work__grid, .voices__grid { grid-template-columns: 1fr; }
  .book__cover { max-width: 280px; margin-inline: auto; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--tall { grid-column: 1 / -1; max-height: 340px; }

  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem; background: var(--cream);
    box-shadow: -10px 0 40px rgba(43,33,56,0.18);
    transform: translateX(100%); transition: transform .4s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.15rem; }
  .nav__toggle { display: flex; z-index: 101; }
}

@media (max-width: 560px) {
  .impact__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .contact__form { padding: 1.6rem; }
  .footer__inner { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__col { flex-direction: row; }
}

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