*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FDF8F3;
  --warm-white: #f7ede2;
  --forest: #84a59d;
  --forest-mid: #3E6B22;
  --forest-light: #84a59d;
  --leaf: #7EC850;
  --amber: #E8A020;
  --amber-light: #F5C460;
  --blush: #F4D4C0;
  --rust: #C85A2A;
  --charcoal: #1E1E1E;
  --gray: #6B6B6B;
  --light-gray: #D8D8D0;
  --section-gap: 90px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  width: 100%;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(253, 248, 243, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45,80,22,0.1);
  padding: 18px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700;
  color: var(--forest);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--gray); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--forest); }
.nav-cta {
  background: var(--forest); color: white;
  padding: 10px 24px; border-radius: 50px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--forest-mid); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(126,200,80,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(232,160,32,0.10) 0%, transparent 70%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(45,80,22,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 1; max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(126,200,80,0.18); border: 1px solid rgba(126,200,80,0.4);
  color: var(--forest); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 28px;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; background: var(--leaf); border-radius: 50%; display: block; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700; line-height: 1.08;
  color: var(--forest);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--amber);
}
.hero p {
  font-size: 18px; font-weight: 300; line-height: 1.7;
  color: var(--gray); margin-bottom: 40px; max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--forest); color: white;
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--forest-mid); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--forest); color: var(--forest);
  padding: 14px 32px; border-radius: 50px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--forest); color: white; }

.hero-image {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 50%; max-width: 680px; z-index: 1;
  border-radius: 24px 0 0 24px; overflow: hidden;
  box-shadow: -20px 20px 60px rgba(45,80,22,0.15);
}
.hero-image img { width: 100%; height: 560px; object-fit: cover; display: block; }
.hero-image-placeholder {
  width: 100%; height: 560px;
  background: linear-gradient(135deg, #d4e8b8 0%, #a8d080 50%, #7ec850 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: var(--forest);
}
.hero-image-placeholder svg { width: 64px; height: 64px; opacity: 0.6; }
.hero-image-placeholder p { font-size: 15px; font-weight: 500; opacity: 0.7; }

/* ─── STATS STRIP ─── */
.stats {
  background: var(--forest);
  padding: 40px 60px;
  display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 700; color: var(--amber-light);
  display: block;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ─── SECTION BASE ─── */
section { padding: var(--section-gap) 60px; }

.section-tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--forest-light);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 700;
  color: var(--forest); line-height: 1.2; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; font-weight: 300; color: var(--gray);
  line-height: 1.7; max-width: 520px; margin-bottom: 50px;
}

/* ─── PROGRAMS ─── */
#programs { background: var(--warm-white); }
.programs-header { max-width: 600px; margin-bottom: 60px; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.program-card {
  background: white; border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(45,80,22,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.program-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(45,80,22,0.12); }
.program-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.program-img-placeholder {
  width: 100%; height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; font-size: 13px; font-weight: 500;
}
.program-img-placeholder svg { width: 40px; height: 40px; opacity: 0.7; }
.program-body { padding: 24px; }
.program-age {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 50px; display: inline-block; margin-bottom: 12px;
}
.program-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 600;
  color: var(--charcoal); margin-bottom: 10px;
}
.program-body p { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.program-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.program-features li {
  font-size: 13px; color: var(--forest-mid); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.program-features li::before { content: '✓'; font-weight: 700; color: var(--leaf); }

/* ─── GALLERY ─── */
#gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
  margin-top: 50px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden; cursor: pointer;
  transition: transform 0.2s;
  position: relative;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:first-child {
  grid-column: 1 / 2; grid-row: 1 / 3;
}
.gallery-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; font-size: 13px; font-weight: 500; color: white;
}
.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.8; }

/* ─── WHY US ─── */
#why { background: var(--warm-white); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image-block { position: relative; }
.why-img {
  width: 100%; height: auto;
  border-radius: 24px; display: block;
}
.why-img-placeholder {
  width: 100%; height: 480px;
  background: linear-gradient(160deg, #c8e4a4 0%, #7ec850 100%);
  border-radius: 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--forest);
}
.why-img-placeholder svg { width: 56px; height: 56px; opacity: 0.6; }
.why-badge-float {
  position: absolute; bottom: 30px; right: -24px;
  background: var(--forest); color: white;
  padding: 20px 28px; border-radius: 18px;
  box-shadow: 0 16px 40px rgba(45,80,22,0.2);
}
.why-badge-float .big { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--amber-light); }
.why-badge-float .small { font-size: 13px; color: rgba(255,255,255,0.75); }

.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(126,200,80,0.15); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.why-feature h4 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.why-feature p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
#testimonials { background: var(--forest); }
#testimonials .section-title { color: white; }
#testimonials .section-sub { color: rgba(255,255,255,0.6); }
#testimonials .section-tag { color: var(--amber-light); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px;
}
.stars { color: var(--amber-light); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--amber-light); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--forest);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 500; color: white; }
.author-detail { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ─── CONTACT ─── */
#contact { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }

.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-card { min-width: 0; }
.loc-card-email { font-size: 12px; color: var(--gray); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.contact-info h2 { color: var(--forest); margin-bottom: 16px; }
.contact-info p { font-size: 16px; font-weight: 300; color: var(--gray); line-height: 1.7; margin-bottom: 36px; }

.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--forest); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-detail h5 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--forest-light); margin-bottom: 8px; }
.contact-detail p { font-size: 15px; color: var(--charcoal); }
.contact-btns { display: flex; flex-direction: column; gap: 8px; }
.contact-btn {
  display: inline-block; padding: 10px 18px; border-radius: 10px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.contact-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.contact-btn-map { background: var(--forest-mid); color: white; }
.contact-btn-map:hover { background: #2d5018; }
.contact-btn-phone { background: #e8f5e9; color: var(--forest-mid); border: 1.5px solid var(--forest-mid); }
.contact-btn-phone:hover { background: var(--forest-mid); color: white; }

/* FORM */
.contact-form {
  background: white; border-radius: 24px;
  padding: 40px; border: 1px solid rgba(45,80,22,0.08);
  box-shadow: 0 8px 30px rgba(45,80,22,0.06);
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 600; color: var(--forest);
  margin-bottom: 8px;
}
.contact-form .form-sub { font-size: 14px; color: var(--gray); margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--forest); margin-bottom: 8px; letter-spacing: 0.03em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--light-gray); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--charcoal); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--forest-light);
  box-shadow: 0 0 0 3px rgba(92,158,53,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* SEND METHOD TOGGLE */
.send-method { margin-bottom: 22px; }
.send-method label { display: block; font-size: 13px; font-weight: 500; color: var(--forest); margin-bottom: 10px; }
.method-toggle {
  display: flex; gap: 10px;
}
.method-btn {
  flex: 1; padding: 10px; border-radius: 10px;
  border: 1.5px solid var(--light-gray);
  background: var(--cream); cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  color: var(--gray); transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.method-btn.active {
  background: var(--forest); color: white; border-color: var(--forest);
}
.method-btn:not(.active):hover { border-color: var(--forest-light); color: var(--forest); }

.method-panel { display: none; }
.method-panel.visible { display: block; }
.method-panel .wa-note {
  background: #e8f8e8; border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px; padding: 14px 16px;
  font-size: 13px; color: #1a7a2a; display: flex; align-items: center; gap: 10px;
}
.method-panel .wa-note svg { flex-shrink: 0; }
.wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px;
  background: #25d366; color: white; border: none;
  border-radius: 12px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; margin-top: 14px;
  text-decoration: none;
}
.wa-btn:hover { background: #1eba56; transform: translateY(-1px); }

.submit-btn {
  width: 100%; padding: 15px;
  background: var(--forest); color: white; border: none;
  border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; margin-top: 6px;
}
.submit-btn:hover { background: var(--forest-mid); transform: translateY(-1px); }

#form-success {
  display: none; text-align: center; padding: 20px 0;
  animation: fadeIn 0.4s ease;
}
#form-success .check { font-size: 48px; margin-bottom: 12px; }
#form-success h4 { font-size: 20px; color: var(--forest); margin-bottom: 8px; }
#form-success p { font-size: 14px; color: var(--gray); }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.6);
  padding: 50px 60px 30px;
  display: flex; flex-direction: column; gap: 36px;
  width: 100%;
}
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer-brand {
  font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700;
  color: white; margin-bottom: 10px;
}
.footer-brand span { color: var(--amber-light); }
.footer-tagline { font-size: 13px; max-width: 240px; }
.footer-links h5 { font-size: 13px; font-weight: 600; color: white; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; font-size: 13px; text-align: center; }

/* ─── HAMBURGER BUTTON ─── */
.nav-right {
  display: flex; align-items: center; gap: 12px;
}
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--forest); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; position: relative; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(253,248,243,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45,80,22,0.1);
    flex-direction: column; gap: 0; padding: 8px 0;
    list-style: none;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links li a {
    display: block; padding: 14px 24px;
    font-size: 15px; font-weight: 500;
    color: var(--charcoal); text-decoration: none;
    border-bottom: 1px solid rgba(45,80,22,0.06);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }

  section { padding: 60px 24px; }
  .hero { min-height: auto; padding: 80px 24px 40px; }
  .hero-image { display: none; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 15px; margin-bottom: 28px; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .why-layout { grid-template-columns: 1fr; }
  .why-badge-float { right: 8px; }
  .contact-layout { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: auto; grid-row: auto; }
  .stats { padding: 32px 24px; gap: 40px; }
  footer { padding: 40px 24px 24px; }
  .footer-top { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav-cta { display: none; }
  .stats { gap: 24px; }
  .stat-number { font-size: 32px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 16px; }
  .loc-grid { grid-template-columns: 1fr; }
}
