/* ===== Design tokens ===== */
:root {
  --bg: #fffdf7;
  --bg-alt: #fff6e9;
  --ink: #2c2a3f;
  --ink-soft: #5c5a70;
  --brand: #ff9f43;
  --brand-deep: #f7791d;
  --accent: #6c5ce7;
  --accent-soft: #a29bfe;
  --mint: #26c6a5;
  --pink: #ff7aa2;
  --card: #ffffff;
  --line: #f0e6d6;
  --shadow: 0 18px 40px -20px rgba(70, 50, 20, .35);
  --radius: 20px;
  --font: "Segoe UI", "Be Vietnam Pro", system-ui, -apple-system, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { width: min(1120px, 92%); margin-inline: auto; }
h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4em; padding: .8em 1.5em; border-radius: 999px;
  font-weight: 700; font-size: .98rem; cursor: pointer;
  border: 2px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff; box-shadow: 0 10px 24px -8px rgba(247, 121, 29, .6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -8px rgba(247,121,29,.65); }
.btn-ghost { background: transparent; color: var(--brand-deep); border-color: var(--brand); }
.btn-ghost:hover { background: var(--brand); color: #fff; }
.btn-nav { background: var(--accent); color: #fff; padding: .55em 1.1em; font-size: .9rem; }
.btn-nav:hover { background: var(--accent-soft); }
.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 253, 247, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 0; }
.logo { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; font-size: 1.25rem; }
.logo-mark {
  display: grid; place-items: center; width: 2rem; height: 2rem;
  background: linear-gradient(135deg, var(--brand), var(--pink));
  color: #fff; border-radius: 50%; font-size: 1.1rem;
}
.logo-text { color: var(--brand-deep); }
.nav-links { display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 600; color: var(--ink-soft); font-size: .95rem; transition: color .2s; }
.nav-links a:hover { color: var(--brand-deep); }
.nav-links a.btn-nav { color: #fff; }

/* ===== Hero ===== */
.hero { padding: 4.5rem 0 5rem; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand-deep);
  background: #ffefdb; padding: .35em .8em; border-radius: 999px; margin-bottom: 1.1rem;
}
.eyebrow-dark { color: var(--accent); background: #efecff; }
.hero h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; }
.hl { color: var(--brand-deep); position: relative; white-space: nowrap; }
.hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .3em;
  background: #ffd9a1; z-index: -1; border-radius: 4px;
}
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 34ch; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-stats { display: flex; gap: 2.2rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 1.7rem; color: var(--brand-deep); }
.hero-stats span { font-size: .85rem; color: var(--ink-soft); }

/* Hero art */
.hero-art { position: relative; min-height: 380px; display: grid; place-items: center; }
.blob {
  position: absolute; inset: 0; margin: auto; width: 320px; height: 320px;
  background: linear-gradient(135deg, var(--brand), var(--pink) 60%, var(--accent-soft));
  border-radius: 46% 54% 60% 40% / 52% 42% 58% 48%;
  animation: morph 9s ease-in-out infinite; filter: blur(2px); opacity: .95;
}
@keyframes morph {
  0%,100% { border-radius: 46% 54% 60% 40% / 52% 42% 58% 48%; }
  50% { border-radius: 60% 40% 42% 58% / 40% 58% 42% 60%; }
}
.sun { position: absolute; font-size: 6rem; filter: drop-shadow(0 8px 20px rgba(247,121,29,.5)); animation: spin 20s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.card-float {
  position: absolute; background: #fff; padding: .6rem .9rem; border-radius: 14px;
  box-shadow: var(--shadow); font-weight: 600; font-size: .88rem; display: flex; align-items: center; gap: .5rem;
  animation: bob 4s ease-in-out infinite;
}
.card-float span { color: var(--ink-soft); }
.card-1 { top: 6%; left: -4%; animation-delay: 0s; }
.card-2 { bottom: 14%; left: -6%; animation-delay: .8s; }
.card-3 { top: 22%; right: -8%; animation-delay: 1.6s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.section-sub { color: var(--ink-soft); margin-top: .7rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-2 h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.grid-2 p { color: var(--ink-soft); margin-bottom: 1rem; }

.check-list { list-style: none; margin-top: 1.2rem; display: grid; gap: .7rem; }
.check-list li { position: relative; padding-left: 2rem; font-weight: 600; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 1.4rem; height: 1.4rem; background: var(--mint); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .8rem;
}

/* Values */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.value-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; transition: transform .2s, box-shadow .2s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-ic { font-size: 1.8rem; margin-bottom: .6rem; }
.value-card h3 { font-size: 1.15rem; margin-bottom: .3rem; }
.value-card p { color: var(--ink-soft); font-size: .92rem; }

/* Programs */
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.program-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--brand); }
.program-ic {
  width: 3rem; height: 3rem; display: grid; place-items: center; font-size: 1.5rem;
  background: #ffefdb; border-radius: 14px; margin-bottom: 1rem;
}
.program-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.program-card p { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1rem; }
.tag {
  display: inline-block; font-size: .78rem; font-weight: 700; color: var(--accent);
  background: #efecff; padding: .3em .8em; border-radius: 999px;
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  text-align: center; padding: 1.6rem 1.2rem; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line); position: relative;
}
.step-no {
  width: 3rem; height: 3rem; margin: 0 auto 1rem; display: grid; place-items: center;
  font-size: 1.4rem; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft)); border-radius: 50%;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .9rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.team-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.4rem; text-align: center; transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.avatar {
  width: 4.5rem; height: 4.5rem; margin: 0 auto 1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.4rem; font-weight: 800; color: #fff;
}
.av-1 { background: linear-gradient(135deg, var(--brand), var(--brand-deep)); }
.av-2 { background: linear-gradient(135deg, var(--mint), #1c9e84); }
.av-3 { background: linear-gradient(135deg, var(--accent), var(--accent-soft)); }
.av-4 { background: linear-gradient(135deg, var(--pink), #e85d86); }
.team-card h3 { font-size: 1.1rem; }
.role { display: block; color: var(--brand-deep); font-weight: 700; font-size: .85rem; margin: .2rem 0 .6rem; }
.team-card p { color: var(--ink-soft); font-size: .88rem; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.testi {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; position: relative;
}
.testi::before {
  content: "\201C"; font-size: 3.5rem; color: var(--brand); opacity: .3;
  position: absolute; top: .3rem; left: 1rem; line-height: 1;
}
.testi p { color: var(--ink); font-style: italic; margin: 1.2rem 0 1rem; }
.testi footer { color: var(--ink-soft); font-weight: 700; font-size: .88rem; }

/* CTA */
.cta { background: linear-gradient(135deg, #fff6e9, #f2ecff); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.cta-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: .8rem; }
.cta-text p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.contact-list { list-style: none; display: grid; gap: .7rem; font-weight: 600; }
.contact-list a { color: var(--brand-deep); }
.cta-form {
  background: #fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
  display: grid; gap: 1rem;
}
.cta-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .9rem; }
.cta-form input, .cta-form textarea {
  font: inherit; padding: .7rem .9rem; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--bg); transition: border-color .2s;
}
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: var(--brand); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { color: var(--mint); font-weight: 700; text-align: center; }

/* Footer */
.site-footer { background: #2c2a3f; color: #cfccdd; padding: 3rem 0 1.5rem; }
.foot-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: 2rem; border-bottom: 1px solid #423f57; }
.site-footer .logo-text { color: #fff; }
.foot-tag { color: #9c99b0; margin-top: .6rem; max-width: 26ch; }
.foot-cols { display: flex; gap: 3rem; }
.foot-cols h4 { color: #fff; margin-bottom: .8rem; font-size: .95rem; }
.foot-cols a { display: block; color: #cfccdd; margin-bottom: .5rem; font-size: .9rem; transition: color .2s; }
.foot-cols a:hover { color: var(--brand); }
.foot-bottom { padding-top: 1.5rem; text-align: center; color: #9c99b0; font-size: .85rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner, .grid-2, .cta-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; order: -1; }
  .program-grid, .steps, .team-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.btn-nav) { display: none; }
}
@media (max-width: 560px) {
  .program-grid, .steps, .team-grid, .testi-grid, .values-grid, .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.4rem; flex-wrap: wrap; }
  .foot-cols { gap: 1.8rem; }
}
