:root {
  --bg: #f7f2ee;
  --surface: #ffffff;
  --text: #2c2a44;
  --muted: #6f6a88;
  --accent-1: #f4b24c;
  --accent-2: #6a8cff;
  --accent-3: #7ed7c1;
  --accent-4: #f589aa;
  --accent-5: #ffd86f;
  --accent-6: #9b7ff9;
  --radius-xl: 40px;
  --shadow-soft: 0 22px 60px rgba(44, 42, 68, 0.08);
}

.announcement-bar {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-6));
  color: #fff;
  padding: 12px 0;
  position: relative;
  z-index: 1000;
}

.announcement-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(32px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.announcement-text {
  font-weight: 500;
  font-size: 0.95rem;
  text-align: center;
  flex: 1;
}

.announcement-text i {
  margin-right: 8px;
  color: var(--accent-5);
}

.announcement-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.announcement-bar.hidden {
  display: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

.site-frame {
  margin: 0 auto;
  background: var(--surface);
  border-radius: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero {
  padding: 48px clamp(32px, 5vw, 80px) 72px;
  position: relative;
  background: linear-gradient(135deg, #fff6ef 0%, #f2f7ff 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  font-weight: 500;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo span {
  color: var(--accent-2);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  padding: 10px 22px;
  border-radius: 30px;
  background: var(--text);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.nav-cta:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-top: clamp(48px, 8vw, 80px);
}

.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.1;
  margin: 12px 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--accent-2);
  font-size: 0.9rem;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-action {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.primary-btn,
.secondary-btn {
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-6));
  color: #fff;
  box-shadow: 0 14px 30px rgba(106, 140, 255, 0.35);
}

.primary-btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.secondary-btn {
  background: #fff;
  border: 1px solid #e5e1ff;
  color: var(--accent-6);
}

.secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 20px rgba(155, 127, 249, 0.18);
}

.hero-highlight {
  margin-top: 32px;
  padding: 18px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(161, 153, 232, 0.2);
  max-width: 520px;
}

.hero-highlight p {
  margin: 12px 0 0;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-2);
}

.badge::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
}

.hero-visual {
  position: relative;
  min-height: 340px;
}

.flower {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--accent-5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(244, 178, 76, 0.4);
}

.flower .smile {
  width: 120px;
  height: 120px;
  background: #ffb24c;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.flower .smile::before,
.flower .smile::after {
  content: "";
  position: absolute;
  background: #2c2a44;
}

.flower .smile::before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 38px;
  left: 34px;
  box-shadow: 36px 0 0 0 #2c2a44;
  z-index: 2;
}

.flower .smile::after {
  width: 54px;
  height: 32px;
  border-bottom-left-radius: 32px;
  border-bottom-right-radius: 32px;
  bottom: 20px;
  left: 28px;
  border: 6px solid #2c2a44;
  border-top: 0;
}

.flower .petal {
  position: absolute;
  width: 110px;
  height: 140px;
  background: var(--accent-4);
  border-radius: 60px 60px 20px 20px;
  transform-origin: center 120px;
}

.flower .petal:nth-child(1) {
  transform: rotate(0deg) translateY(-110px);
  background: #f589aa;
}

.flower .petal:nth-child(2) {
  transform: rotate(90deg) translateY(-110px);
  background: #7ed7c1;
}

.flower .petal:nth-child(3) {
  transform: rotate(180deg) translateY(-110px);
  background: #6a8cff;
}

.flower .petal:nth-child(4) {
  transform: rotate(270deg) translateY(-110px);
  background: #f7c35d;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.65;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: var(--accent-2);
  top: -20px;
  right: 30px;
}

.shape-2 {
  width: 56px;
  height: 56px;
  background: var(--accent-3);
  bottom: 12px;
  left: 20px;
}

.shape-3 {
  width: 44px;
  height: 44px;
  background: var(--accent-4);
  top: 30px;
  left: 40px;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: rgba(155, 127, 249, 0.35);
  bottom: -30px;
  right: 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 60px clamp(32px, 5vw, 80px) 32px;
}

.stat-card {
  background: #fff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(106, 140, 255, 0.12);
  text-align: center;
  box-shadow: 0 12px 30px rgba(106, 140, 255, 0.08);
}

.stat {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--accent-6);
}

.stat-label {
  margin: 0;
  color: var(--muted);
}

.programs {
  padding: 32px clamp(32px, 5vw, 80px) 80px;
}

.programs h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 48px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.program-card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 40px 32px;
  border: 1px solid rgba(244, 178, 76, 0.16);
  box-shadow: 0 18px 40px rgba(44, 42, 68, 0.08);
}

.program-card h3 {
  margin: 26px 0 12px;
}

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

.program-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.program-card li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}

.program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-3);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
}

.sunrise {
  background: linear-gradient(135deg, #f4b24c, #ffd86f);
}

.breathe {
  background: linear-gradient(135deg, #6a8cff, #9b7ff9);
}

.community {
  background: linear-gradient(135deg, #7ed7c1, #6ee0f0);
}

.approach {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 80px clamp(32px, 5vw, 80px);
  background: linear-gradient(135deg, #e4f4ff, #faf4ff);
}

.approach h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

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

.approach-list {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}

.approach-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}

.approach-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
  color: var(--accent-2);
  border: 1px solid rgba(106, 140, 255, 0.25);
  box-shadow: 0 10px 20px rgba(106, 140, 255, 0.2);
}

.approach-art {
  position: relative;
  min-height: 320px;
}

.cloud {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  box-shadow: 0 16px 30px rgba(44, 42, 68, 0.08);
}

.cloud-left {
  width: 220px;
  height: 120px;
  bottom: 60px;
  left: 10px;
}

.cloud-right {
  width: 260px;
  height: 140px;
  bottom: 20px;
  right: 0;
}

.sun {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd86f, #f4b24c);
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 18px 45px rgba(244, 178, 76, 0.35);
}

.impact {
  padding: 80px clamp(32px, 5vw, 80px);
}

.impact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.story-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.story-card {
  background: #fff;
  padding: 32px;
  border-radius: 26px;
  border: 1px solid rgba(126, 215, 193, 0.2);
  box-shadow: 0 18px 38px rgba(126, 215, 193, 0.2);
  display: grid;
  gap: 20px;
}

.story-quote {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
}

.story-source {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.cta {
  margin: 0 clamp(24px, 5vw, 80px) 80px;
  background: linear-gradient(135deg, #6a8cff, #f589aa);
  border-radius: 36px;
  padding: clamp(32px, 6vw, 60px);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  margin: 0 0 12px;
}

.cta-content p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.88);
}

.cta .primary-btn {
  background: #fff;
  color: var(--accent-2);
  box-shadow: none;
}

.cta-shapes .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.blob-one {
  width: 200px;
  height: 200px;
  right: -60px;
  top: -60px;
  background: rgba(255, 255, 255, 0.45);
}

.blob-two {
  width: 160px;
  height: 160px;
  left: -80px;
  bottom: -60px;
  background: rgba(255, 255, 255, 0.3);
}

.blob-three {
  width: 120px;
  height: 120px;
  right: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.4);
}

.footer {
  padding: 72px clamp(32px, 5vw, 80px) 48px;
  background: #1f1b3d;
  color: #f3f1ff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 160px;
  background: rgba(244, 178, 76, 0.2);
  filter: blur(90px);
  pointer-events: none;
}

.contact-copy {
  margin: 6px 0;
  color: rgba(243, 241, 255, 0.82);
}

.footer-link {
  display: inline-block;
  margin-top: 12px;
  color: #fff;
  font-weight: 600;
}

.footer-nav h3 {
  margin-top: 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: rgba(243, 241, 255, 0.82);
}

.footer-note {
  grid-column: 1 / -1;
  margin: 32px 0 0;
  color: rgba(243, 241, 255, 0.6);
  text-align: center;
}

@media (max-width: 768px) {
  .announcement-content {
    padding: 0 20px;
    gap: 12px;
  }

  .announcement-text {
    font-size: 0.9rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    flex-wrap: wrap;
  }

  .nav-cta {
    order: 2;
  }

  .hero-highlight {
    margin-top: 24px;
  }

  .site-frame {
    margin: 20px;
  }
}

@media (max-width: 560px) {
  .announcement-content {
    padding: 0 16px;
    gap: 8px;
  }

  .announcement-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .announcement-close {
    font-size: 1.3rem;
    padding: 2px 6px;
  }


  .hero {
    padding: 36px 26px 60px;
  }

  .stats {
    padding: 48px 26px 24px;
  }

  .programs {
    padding: 16px 26px 64px;
  }

  .approach {
    padding: 60px 26px;
  }

  .impact {
    padding: 60px 26px;
  }

  .cta {
    margin: 0 26px 64px;
  }

  .footer {
    padding: 56px 26px 40px;
  }
}
