:root {
  --bg: #f5f3ee;
  --surface: #fffaf4;
  --ink: #22201d;
  --muted: #5f5a53;
  --primary: #e15d44;
  --secondary: #1a7a66;
  --accent: #f2b542;
  --line: #e3dacd;
  --shadow: 0 24px 60px rgba(34, 32, 29, 0.12);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(225, 93, 68, 0.12), transparent 22%),
    radial-gradient(circle at 88% 10%, rgba(26, 122, 102, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f0e6 0%, #f3f6f2 42%, #f4efe8 100%);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  filter: blur(18px);
  opacity: 0.65;
}

.bg-shape-1 {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -40px;
  background: #ef7d5f;
  border-radius: 37% 63% 55% 45% / 45% 46% 54% 55%;
}

.bg-shape-2 {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -90px;
  background: #59b8a3;
  border-radius: 61% 39% 66% 34% / 39% 44% 56% 61%;
}

.site-header {
  max-width: 1120px;
  margin: 20px auto 0;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 244, 0.78);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 10px;
  z-index: 10;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.lang-btn {
  border: 0;
  background: transparent;
  padding: 7px 11px;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
  color: var(--muted);
  cursor: pointer;
}

.lang-btn.is-active {
  background: var(--secondary);
  color: #fff;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 188px;
  max-width: 32vw;
  height: auto;
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 600;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

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

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 24px;
}

.hero {
  padding-top: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-media {
  margin: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(242, 181, 66, 0.2);
  color: #8d5c04;
  font-weight: 700;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.15rem, 6vw, 4.5rem);
  line-height: 1.03;
  max-width: 12.5ch;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  margin-bottom: 14px;
}

.hero-copy {
  margin-top: 18px;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.button {
  background: linear-gradient(140deg, var(--primary), #d7543e);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 14px;
  padding: 13px 20px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(225, 93, 68, 0.3);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(225, 93, 68, 0.34);
}

.button-sm {
  padding: 10px 14px;
}

.button-ghost {
  background: transparent;
  color: var(--secondary);
  box-shadow: inset 0 0 0 1.5px rgba(26, 122, 102, 0.36);
}

.button-ghost:hover {
  box-shadow: inset 0 0 0 1.5px rgba(26, 122, 102, 0.8);
}

.stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 14px;
}

.stats article {
  background: rgba(255, 250, 244, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.stats strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.93rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

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

.split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}

.program-list {
  display: grid;
  gap: 16px;
}

.section-photo {
  margin: 18px 0 0;
}

.section-photo img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  object-fit: cover;
  max-height: 280px;
  box-shadow: var(--shadow);
}

.program-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #fffaf2, #f8fdf9);
  padding: 20px;
}

.program-card p {
  color: var(--muted);
  margin-top: 8px;
}

.program-card a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  color: var(--secondary);
}

.impact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 18px;
}

.impact-quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(170deg, #fff7ef, #f7fbf6);
}

.impact-quote p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.impact-quote span {
  margin-top: 14px;
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.impact-highlights {
  display: grid;
  gap: 14px;
}

.impact-highlights article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.impact-highlights h3 {
  margin-bottom: 6px;
}

.impact-highlights p {
  color: var(--muted);
}

.gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(145deg, rgba(89, 184, 163, 0.16), rgba(225, 93, 68, 0.13));
}

.cta p {
  max-width: 65ch;
  margin: 10px auto 24px;
  color: #473f37;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.contact-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(150deg, #fff9f1, #f2faf7);
}

.contact-copy p {
  color: var(--muted);
  margin-bottom: 18px;
}

.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: #39342f;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  background: #fff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(26, 122, 102, 0.75);
  box-shadow: 0 0 0 3px rgba(26, 122, 102, 0.12);
}

.full-row {
  grid-column: 1 / -1;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}

.consent input {
  margin-top: 3px;
}

.form-status {
  margin: 0;
  min-height: 1.4em;
  color: var(--secondary);
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  border-radius: 999px;
  padding: 11px 16px;
  text-decoration: none;
  font-weight: 800;
  background: #1faa59;
  color: #fff;
  box-shadow: 0 12px 26px rgba(31, 170, 89, 0.34);
}

.floating-wa:hover {
  transform: translateY(-1px);
}

.site-footer {
  max-width: 1120px;
  margin: 40px auto 40px;
  padding: 30px 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    border-radius: 18px;
    margin: 8px 12px 0;
    top: 8px;
  }

  .nav {
    display: none;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

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

  .split,
  .impact-layout,
  .hero-grid,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .section {
    padding: 72px 16px;
  }

  .hero {
    padding-top: 62px;
  }

  .grid-3,
  .stats {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .floating-wa {
    left: 14px;
    right: 14px;
    bottom: 12px;
    text-align: center;
  }

  h1 {
    max-width: 100%;
  }
}
