:root {
  --ink: #201829;
  --muted: #665d6f;
  --paper: #fffdfb;
  --soft: #f7eff9;
  --line: #ead8ef;
  --plum: #6e247f;
  --magenta: #9b2f93;
  --deep-purple: #351042;
  --lavender: #f1e5f6;
  --gold: #d7a83f;
  --yellow: #f5c84c;
  --yellow-soft: #fff4c9;
  --shadow: 0 24px 70px rgba(37, 22, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 251, 0.92);
  border-bottom: 1px solid rgba(234, 221, 230, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 152px;
}

.brand img {
  width: 220px;
  height: 52px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  color: #3f3448;
}

.site-nav a:hover {
  color: var(--plum);
}

.site-nav .nav-cta {
  color: #fff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-cta,
.button.primary {
  background: var(--plum);
  color: #fff;
  box-shadow: 0 10px 24px rgba(110, 36, 127, 0.22);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--plum);
  padding: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 72px) 76px;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(25, 15, 31, 0.78), rgba(25, 15, 31, 0.36) 52%, rgba(25, 15, 31, 0.2)),
    linear-gradient(0deg, rgba(25, 15, 31, 0.7), rgba(25, 15, 31, 0.05) 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
h2 {
  margin: 0;
  font-family: Lora, Georgia, serif;
  font-weight: 700;
  line-height: 1.04;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(3rem, 9vw, 7.4rem);
}

.hero-lede {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-item {
  min-height: 138px;
  padding: 28px clamp(20px, 4vw, 56px);
  background: #fff;
}

.intro-item span {
  display: block;
  color: var(--plum);
  font-family: Lora, Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}

.intro-item p {
  max-width: 290px;
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.section,
.values-section,
.gallery-section,
.contact-section,
.founder-section {
  padding: 92px clamp(20px, 5vw, 72px);
}

.split,
.sdg-section,
.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
  padding: 96px clamp(20px, 5vw, 72px);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.section-copy,
.sdg-copy,
.partner-section p,
.founder-card p {
  color: var(--muted);
  font-size: 1.06rem;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  min-height: 620px;
  background: var(--soft);
}

.story-image-wrap {
  min-height: 420px;
}

.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel {
  align-self: center;
  padding: clamp(34px, 6vw, 72px);
}

.story-panel p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.impact {
  background: #fff;
}

.impact-grid,
.activity-list,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.impact-grid article,
.activity-list article,
.vision-mission article,
.contact-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.impact-grid strong,
.activity-list h3,
.vision-mission span,
.contact-grid span {
  color: var(--plum);
  font-size: 1.05rem;
  font-weight: 800;
}

.impact-grid p,
.activity-list p,
.vision-mission p {
  margin: 10px 0 0;
  color: var(--muted);
}

.values-section {
  background: linear-gradient(135deg, #fbf5ff, #efe0f7);
}

.vision-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.values-grid article {
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(110, 36, 127, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(58, 31, 66, 0.08);
}

.values-grid h3 {
  margin: 0;
  color: var(--plum);
  font-size: 1.04rem;
}

.values-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.activities {
  background: var(--paper);
}

.activity-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sdg-section {
  background: var(--yellow);
  color: var(--ink);
}

.sdg-section .section-kicker {
  color: var(--plum);
}

.sdg-section h2 {
  color: var(--deep-purple);
}

.sdg-copy p {
  color: #3e3048;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  background: linear-gradient(135deg, #fbf5ff, #ead8f1);
}

.founder-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}

.founder-card {
  max-width: 820px;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #eee;
}

.gallery-grid figure.wide {
  grid-column: span 2;
}

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

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(32, 24, 41, 0.74);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.partner-section {
  align-items: center;
  background: var(--plum);
  color: #fff;
}

.partner-section .section-kicker {
  color: #f1c965;
}

.partner-section p {
  color: rgba(255, 255, 255, 0.8);
}

.partner-section .button.primary {
  justify-self: end;
  background: #fff;
  color: var(--plum);
}

.contact-section {
  background: var(--soft);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid a {
  min-height: 138px;
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.contact-grid a:hover {
  border-color: rgba(110, 36, 127, 0.4);
  box-shadow: 0 12px 30px rgba(57, 29, 65, 0.08);
}

.contact-grid span {
  display: block;
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.site-footer img {
  width: 180px;
  height: 44px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 80px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .split,
  .sdg-section,
  .partner-section,
  .story-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

  .story-section {
    min-height: auto;
  }

  .impact-grid,
  .contact-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .partner-section .button.primary {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 176px;
    height: 44px;
  }

  .hero {
    min-height: 88svh;
    padding: 110px 20px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(25, 15, 31, 0.82), rgba(25, 15, 31, 0.32) 74%),
      linear-gradient(90deg, rgba(25, 15, 31, 0.6), rgba(25, 15, 31, 0.18));
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .impact-grid,
  .activity-list,
  .vision-mission,
  .contact-grid,
  .gallery-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .intro-item {
    min-height: 116px;
  }

  .section,
  .values-section,
  .gallery-section,
  .contact-section,
  .founder-section,
  .split,
  .sdg-section,
  .partner-section {
    padding: 66px 20px;
  }

  .story-image-wrap {
    min-height: 330px;
  }

  .story-panel {
    padding: 42px 20px 58px;
  }

  .gallery-grid {
    grid-auto-rows: 300px;
  }

  .gallery-grid figure.wide {
    grid-column: auto;
  }

  .contact-grid a {
    font-size: 0.9rem;
  }
}
