:root {
  --bg: #120f13;
  --surface: #f6f1eb;
  --surface-strong: #fffaf5;
  --text: #f8f5f1;
  --text-dark: #241d1f;
  --muted: rgba(248, 245, 241, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --brand: #8f2230;
  --brand-deep: #5f1420;
  --brand-soft: rgba(143, 34, 48, 0.18);
  --accent: #d9b271;
  --shadow: 0 24px 70px rgba(8, 8, 12, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--text-dark);
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  padding: 1.75rem clamp(1.2rem, 3vw, 2.5rem) 3rem;
  color: var(--text);
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(217, 178, 113, 0.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(143, 34, 48, 0.2), transparent 34%),
    var(--bg);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image:
    linear-gradient(rgba(18, 15, 19, 0.34), rgba(18, 15, 19, 0.34)),
    url("https://images.unsplash.com/photo-1559027615-cd4628902d4a?auto=format&fit=crop&w=1600&q=80");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 9, 12, 0.5), rgba(9, 9, 12, 0.68)),
    linear-gradient(90deg, rgba(8, 8, 12, 0.52), rgba(8, 8, 12, 0.18));
}

.site-header,
.hero-content,
.scroll-indicator {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1260px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-logo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 250, 245, 0.96);
  padding: 0.26rem;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: translate(-2px, -3.5px) scale(1.40);
  transform-origin: center;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 0.95;
}

.brand-wordmark span:first-child {
  color: #ffffff;
}

.brand-wordmark span:last-child {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  padding: 0.95rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

.site-nav a {
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent);
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.nav-cta,
.primary-btn {
  background: linear-gradient(135deg, var(--brand), #b84152);
  color: #fffaf7;
  box-shadow: 0 16px 34px rgba(143, 34, 48, 0.35);
}

.nav-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  font-weight: 700;
}

.hero-content {
  max-width: 880px;
  margin: clamp(5rem, 12vh, 8rem) auto 0;
  text-align: center;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border: 1px solid rgba(217, 178, 113, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-content h1 {
  margin: 1.45rem 0 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(3rem, 8vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-content h1 span {
  display: block;
  color: var(--accent);
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.42rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin: 3.4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stats article {
  display: grid;
  gap: 0.3rem;
}

.hero-stats strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.hero-stats span {
  color: var(--muted);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 38px;
  height: 60px;
}

.scroll-indicator span {
  width: 22px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateX(-50%);
  animation: float 1.8s infinite;
}

main {
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.info-section,
.programs-section,
.impact-section,
.contact-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6.5rem) clamp(1.2rem, 3vw, 2.5rem);
}

.about-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: stretch;
}

.section-copy h2,
.section-heading h2,
.impact-panel h2,
.contact-copy h2 {
  margin: 1rem 0 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text-dark);
}

.section-copy p:last-child,
.section-heading,
.impact-panel p,
.contact-copy p {
  color: #5b5055;
  font-size: 1.05rem;
  line-height: 1.8;
}

.highlight-card,
.program-card,
.impact-list article,
.contact-card {
  background: var(--surface-strong);
  border: 1px solid rgba(95, 20, 32, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.highlight-card {
  padding: 2rem;
}

.highlight-card h3,
.program-card h3,
.impact-list h3,
.contact-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.45rem;
  color: var(--text-dark);
}

.highlight-card p,
.program-card p,
.impact-list p,
.contact-card p {
  color: #64595e;
  line-height: 1.75;
}

.highlight-card ul {
  margin: 1.2rem 0 0;
  padding-left: 1.2rem;
  color: #3d3136;
  line-height: 1.9;
}

.programs-section {
  background:
    linear-gradient(180deg, rgba(143, 34, 48, 0.03), transparent 32%),
    var(--surface);
}

.section-heading {
  max-width: 700px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.2rem;
}

.program-card {
  padding: 2rem;
}

.program-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.impact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.6rem;
  align-items: stretch;
}

.impact-panel {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--brand-deep), #8d2b39);
  color: #fff8f4;
}

.impact-panel h2,
.impact-panel p {
  color: inherit;
}

.impact-panel .section-label {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

.impact-list {
  display: grid;
  gap: 1rem;
}

.impact-list article {
  padding: 1.5rem 1.6rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.8rem;
  align-items: center;
}

.contact-card {
  padding: 2rem;
}

.contact-card .primary-btn {
  margin-top: 1rem;
}

.site-footer {
  padding: 1.4rem 1rem 2.2rem;
  text-align: center;
  color: #6d6167;
}

@keyframes float {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .about-section,
  .impact-section,
  .contact-section,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 1.1rem;
  }

  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    text-align: center;
  }

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

  .hero-content {
    margin-top: 4rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .brand-logo {
    width: 74px;
    height: 74px;
  }

  .brand-wordmark {
    font-size: 1.15rem;
  }
}

@media (max-width: 560px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .highlight-card,
  .program-card,
  .impact-panel,
  .impact-list article,
  .contact-card {
    border-radius: 24px;
  }
}
