:root {
  --bg-start: #fef3c7; /* yellow-100 */
  --bg-mid:   #fff7ed; /* orange-50 */
  --bg-end:   #ffe4e6; /* pink-100 */
  --orange-50: #fff7ed;
  --orange-100:#ffedd5;
  --orange-200:#fed7aa;
  --orange-500:#f97316;
  --orange-600:#ea580c;
  --orange-700:#c2410c;
  --text: #374151;  /* gray-700 */
  --text-soft:#6b7280;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(0,0,0,.08);
  --shadow-strong: 0 18px 40px rgba(0,0,0,.12);
  --radius-xl: 1.25rem;   /* 20px */
  --radius-2xl: 1.5rem;   /* 24px */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, var(--bg-start), var(--bg-mid), var(--bg-end));
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Sections */
.section {
  padding: clamp(48px, 2vw, 96px) clamp(16px, 5vw, 48px);
  text-align: center;
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--orange-700);
  margin: 0 0 16px;
  font-weight: 800;
}

.section__lead {
  margin: 0 auto 32px;
  max-width: 60ch;
  color: var(--text);
  font-size: clamp(16px, 2.2vw, 18px);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--bg-start), var(--bg-mid), var(--bg-end));
}
.hero__logo {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  display: flex;
  margin: 0 auto 24px;
  box-shadow: var(--shadow);
}
.hero__title {
  margin: 0 0 10px;
  font-size: clamp(36px, 6vw, 56px);
  color: var(--orange-600);
  letter-spacing: .5px;
  text-shadow: 0 1px 0 rgba(0,0,0,.04);
  font-weight: 800;
}
.hero__tagline {
  margin: 0 0 18px;
  font-size: clamp(18px, 2.8vw, 22px);
  font-style: italic;
  color: var(--text);
}
.hero__intro {
  margin: 0 auto 28px;
  max-width: 70ch;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.65;
  color: var(--text);
}
.accent { font-weight: 700; color: var(--orange-500); }
.accent-strong { font-weight: 700; color: var(--orange-600); }

/* Buttons */
.btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: var(--shadow);
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
}
.btn-primary:hover { background: var(--orange-600); box-shadow: var(--shadow-strong); }
.btn-light {
  background: var(--white);
  color: var(--orange-600);
}
.btn-light:hover { background: #fffaf3; box-shadow: var(--shadow-strong); }

/* Media grid */
.media {
  background: var(--white);
}
.media__grid {
  display: grid;
  grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );
  gap: 24px;
  max-width: 1100px;
  margin: 24px auto 0;
}
.media__item {
  height: 300px;
  border-radius: var(--radius-2xl);
  background: #ffffff; /* white-200 */
  color: #6b7280;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.media-photo {
  background-image: url("1.png"); /* path to your photo */
  background-size:300px;        /* fills the box */
  background-position: center;   /* keeps focus centered */
  background-repeat: no-repeat;  /* avoids tiling */
  border-radius: 1.5rem;         /* matches existing rounding */
}

.media-photo-1{
  background-image: url("2.png"); /* path to your photo */
  background-size:300px;        /* fills the box */
  background-position: center;   /* keeps focus centered */
  background-repeat: no-repeat;  /* avoids tiling */
  border-radius: 1.5rem;         /* matches existing rounding */
}

.media-photo-2{
  background-image: url("3.png"); /* path to your photo */
  background-size:300px;        /* fills the box */
  background-position: center;   /* keeps focus centered */
  background-repeat: no-repeat;  /* avoids tiling */
  border-radius: 1.5rem;         /* matches existing rounding */
}

/* Programs */
.programs {
  background: linear-gradient(90deg, #ffe4e6, #fef3c7, #ffedd5);
}
.cards {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 860px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}
.card {
  background: var(--white);
  border: 2px solid var(--orange-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.card__content { padding: clamp(20px, 3vw, 32px); text-align: left; }
.card__title {
  margin: 0 0 12px;
  font-size: clamp(22px, 3vw, 28px);
  color: var(--orange-600);
  font-weight: 700;
}
.card__list {
  margin: 0 0 12px 0;
  padding: 0 0 0 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
.card__note {
  margin: 12px 0 18px;
  font-style: italic;
  color: var(--text-soft);
}

/* Testimonials */
.testimonials {
  background: var(--white);
}
.testimonials__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat( auto-fit, minmax(240px, 1fr) );
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  margin: 0;
  padding: 20px 22px;
  background: var(--orange-50);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
}
.testimonial blockquote {
  margin: 0 0 10px;
  color: var(--text);
  font-style: italic;
}
.testimonial figcaption {
  color: var(--orange-600);
  font-weight: 600;
}

/* CTA */
.cta {
  text-align: center;
  padding: 64px 24px;
  background: var(--orange-500);
  color: var(--white);
}
.cta__title {
  margin: 0 0 12px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}
.cta__lead {
  margin: 0 auto 20px;
  max-width: 60ch;
  font-size: clamp(16px, 2.2vw, 18px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 18px 16px;
  background: #fff7ed;
  color: #6b7280;
  font-size: 14px;
  border-top: 1px solid var(--orange-200);
}

/* Reveal on scroll (Framer Motion replacement) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .6s ease, transform .6s ease;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.show {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .card:hover { transform: none; }
}

