:root {
  --bg: #faf7f2;
  --fg: #301c24;
  --muted: #7c6670;
  --line: #e4d6d9;
  --card: #fffdf9;
  --primary: #973056;
  --primary-dark: #35131f;
  --accent: #da8367;
  --soft: #f1e8e3;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(250, 247, 242, .92);
  border-bottom: 1px solid rgba(151, 48, 86, .14);
  backdrop-filter: blur(12px);
}
.brand {
  color: var(--primary);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--fg); }
.nav-cta {
  color: #fff !important;
  background: var(--primary);
  padding: 9px 18px;
  border-radius: 999px;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--fg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(39, 12, 24, .72), rgba(39, 12, 24, .34), var(--bg));
}
.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 80px;
  color: white;
}
.hero-content > p { max-width: 610px; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.hero h1 {
  max-width: 720px;
  margin: 12px 0 22px;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: .86;
  font-weight: 500;
}
.hero h1 span {
  display: block;
  color: #f4b29d;
  font-style: italic;
  font-weight: 600;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 700;
}
.primary { background: var(--primary); color: #fff; }
.secondary { background: var(--soft); color: var(--fg); }
.ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.13);
}
.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 7vw, 80px);
  align-items: center;
}
.eyebrow {
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: .95;
}
h2 span { display: block; font-style: italic; }
.section-text p, .center p { color: var(--muted); }
.facts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: .86rem;
}
.image-card { position: relative; }
.image-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(80, 20, 36, .16);
}
.image-card strong,
.image-card small {
  position: absolute;
  left: -18px;
  background: var(--primary);
  color: #fff;
}
.image-card strong {
  bottom: 56px;
  padding: 12px 20px 0;
  border-radius: 14px 14px 0 0;
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}
.image-card small {
  bottom: 0;
  width: 165px;
  padding: 0 20px 16px;
  border-radius: 0 0 14px 14px;
}
.impact, .testimonials, .contact {
  width: 100%;
  padding-left: max(20px, calc((100% - 1120px) / 2));
  padding-right: max(20px, calc((100% - 1120px) / 2));
}
.impact {
  background: var(--primary);
  color: #fff;
}
.impact .eyebrow, .impact .center p, .impact small { color: rgba(255,255,255,.68); }
.center { max-width: 690px; margin: 0 auto 56px; text-align: center; }
.stats, .cards, .program-grid, .posts-grid, .support-cards {
  display: grid;
  gap: 22px;
}
.stats { grid-template-columns: repeat(4, 1fr); margin-bottom: 48px; }
.stats article { text-align: center; }
.stats strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: .9;
}
.stats span { display: block; font-weight: 700; }
.cards, .program-grid { grid-template-columns: repeat(3, 1fr); }
.cards article, .program-grid article, .post-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 28px;
}
.impact .cards article {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
}
h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.1;
}
.program-grid article:nth-child(1) { background: #fbf1df; }
.program-grid article:nth-child(3) { background: #edf7f6; }
.program-grid .featured {
  border-color: rgba(151, 48, 86, .4);
  background: #fbedf1;
  box-shadow: 0 16px 42px rgba(80, 20, 36, .1);
}
.program-grid p, .program-grid li, .cards p { color: var(--muted); }
.cards-gray p { color: #b3b3b3; }
.program-grid ul { padding-left: 20px; margin: 18px 0 0; }
.testimonials {
  background: var(--primary-dark);
  color: #fff;
}
.testimonials .eyebrow { color: #f0a992; }
.testimonial {
  max-width: 780px;
  min-height: 260px;
  margin: 0 auto;
  text-align: center;
}
.testimonial p {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-style: italic;
  line-height: 1.3;
}
.testimonial small { display: block; color: rgba(255,255,255,.52); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 26px; }
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  cursor: pointer;
}
.testimonial-dots button.active { width: 28px; background: var(--accent); }
.gallery-grid {
  columns: 3 260px;
  column-gap: 16px;
}
.gallery-item {
  position: relative;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
  break-inside: avoid;
}
.gallery-item img { width: 100%; border-radius: 16px; transition: transform .45s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 16px 14px;
  color: #fff;
  text-align: left;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  opacity: 0;
  transition: opacity .25s ease;
}
.gallery-item:hover span { opacity: 1; }
.posts-grid { grid-template-columns: repeat(4, 1fr); }
.post-card {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
}
.post-card:first-child {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.post-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.post-card:first-child img { height: 100%; min-height: 340px; }
.post-body { padding: 24px; }
.tag {
  display: inline-block;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(151, 48, 86, .1);
  color: var(--primary);
  padding: 4px 10px;
  font-size: .75rem;
  font-weight: 800;
}
.post-body p, .post-body small { color: var(--muted); }
.support { width: min(1120px, calc(100% - 40px)); }
.support-cards .button { width: 100%; margin-top: 16px; }
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  background: var(--primary-dark);
  color: #fff;
}
.contact .eyebrow { color: #f0a992; }
.contact-info p { color: rgba(255,255,255,.65); }
.contact-info a, .contact-info span {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.78);
}
.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  padding: 28px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: .84rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  color: #fff;
  padding: 12px 14px;
}
.contact-form option { color: #111; }
.form-message { margin: 0; color: #f0c1b2; }
.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: #241019;
  color: rgba(255,255,255,.58);
  font-size: .85rem;
}
.footer strong {
  color: rgba(255,255,255,.86);
  font-family: var(--serif);
  font-size: 1.2rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 70px 20px;
  background: rgba(0,0,0,.92);
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-height: 76vh;
  border-radius: 16px;
  object-fit: contain;
}
.lightbox p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.8);
  text-align: center;
}
.lightbox button {
  position: absolute;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
}
.lightbox-close { top: 22px; right: 22px; width: 42px; height: 42px; font-size: 2rem; }
.lightbox-prev, .lightbox-next { top: 50%; width: 48px; height: 48px; font-size: 2.8rem; line-height: 0; }
.lightbox-prev { left: 22px; }
.lightbox-next { right: 22px; }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 860px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 11px 0; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .split, .contact, .post-card:first-child { grid-template-columns: 1fr; }
  .stats, .cards, .program-grid, .posts-grid { grid-template-columns: 1fr; }
  .post-card:first-child { grid-column: auto; }
  .post-card:first-child img { min-height: auto; height: 250px; }
  .section, .impact, .testimonials, .contact { padding-top: 72px; padding-bottom: 72px; }
  .image-card strong, .image-card small { left: 12px; }
}

@media (max-width: 560px) {
  .hero-content { padding-top: 120px; }
  .hero h1 { font-size: 4rem; }
  .hero-actions .button { width: 100%; }
  .footer { display: grid; }
  .lightbox-prev, .lightbox-next { top: auto; bottom: 28px; }
}
