:root {
  --primary: #ff7a59;
  --primary-dark: #e85a3a;
  --secondary: #ffd166;
  --accent: #06d6a0;
  --sky: #4ec5f1;
  --ink: #2b2d42;
  --muted: #6b7280;
  --bg: #fff9f2;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(43, 45, 66, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Baloo 2', cursive; line-height: 1.15; }

.container { width: min(1160px, 92%); margin: 0 auto; }

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Baloo 2'; font-weight: 800;
  font-size: 1.35rem; color: var(--primary);
  text-decoration: none;
}
.logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a {
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: .98rem;
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.burger {
  display: none; background: none; border: none;
  font-size: 1.6rem; cursor: pointer; color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 12px 24px;
  border-radius: 999px; font-weight: 700;
  text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Nunito'; font-size: .98rem;
  transition: transform .15s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 6px 18px rgba(255,122,89,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-ghost:hover { background: var(--primary); color: #fff; }

/* ===== HERO ===== */
.hero {
  padding: 70px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, #ffe6d5 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, #d8f6ec 0%, transparent 45%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 50px; align-items: center;
}
.badge {
  display: inline-block; background: #fff;
  color: var(--primary); font-weight: 700;
  padding: 8px 16px; border-radius: 999px;
  font-size: .88rem; box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 800; margin-bottom: 18px;
}
.highlight {
  color: var(--primary);
  background: linear-gradient(180deg, transparent 65%, var(--secondary) 65%);
  padding: 0 4px;
}
.hero p { font-size: 1.1rem; color: var(--muted); margin-bottom: 28px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex; gap: 34px; list-style: none;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: 'Baloo 2'; font-size: 1.9rem;
  color: var(--primary); line-height: 1;
}
.hero-stats span { font-size: .85rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-visual img {
  width: 100%; border-radius: 32px;
  box-shadow: 0 25px 60px rgba(43,45,66,.15);
  position: relative; z-index: 2;
}
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(10px); opacity: .7; z-index: 1;
}
.blob-1 { width: 220px; height: 220px; background: var(--secondary); top: -40px; right: -30px; }
.blob-2 { width: 180px; height: 180px; background: var(--accent); bottom: -40px; left: -30px; opacity: .5; }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 55px; }
.kicker {
  display: inline-block; color: var(--primary);
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; font-size: .82rem;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); }

/* ===== ABOUT CARDS ===== */
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.card {
  background: #fff; padding: 34px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  border-bottom: 4px solid transparent;
}
.card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--primary);
  box-shadow: 0 20px 40px rgba(43,45,66,.12);
}
.card .icon { font-size: 2.2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; font-size: 1.25rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* ===== ACTIVITIES ===== */
.activities { background: #fff7ec; }
.cards-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.activity {
  background: #fff; border-radius: 18px;
  padding: 26px 16px; text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.activity:hover { transform: translateY(-4px) scale(1.03); }
.activity span { font-size: 2rem; display: block; margin-bottom: 10px; }
.activity h4 { font-size: 1rem; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: 18px; cursor: pointer;
  transition: transform .3s;
}
.gallery-grid img:hover { transform: scale(1.04); }

/* ===== CONTACT ===== */
.contact { background: linear-gradient(180deg, #fff 0%, #fff9f2 100%); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 50px; align-items: start;
}
.contact-info { list-style: none; margin-top: 24px; }
.contact-info li {
  padding: 10px 0; font-size: 1rem;
  display: flex; gap: 10px; align-items: center;
}
.contact-info a { color: var(--primary); text-decoration: none; font-weight: 600; }

.contact-form {
  background: #fff; padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid; gap: 14px;
}
.contact-form label {
  display: grid; gap: 6px;
  font-weight: 600; font-size: .9rem;
}
.contact-form input,
.contact-form textarea {
  border: 2px solid #f0e6dc; border-radius: 12px;
  padding: 12px 14px; font-family: inherit;
  font-size: .95rem; outline: none;
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form button { justify-self: start; margin-top: 6px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink); color: #d8d9e0;
  padding: 60px 0 20px; margin-top: 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.site-footer h3 { color: #fff; margin-bottom: 12px; font-size: 1.3rem; }
.site-footer h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }
.site-footer p { color: #b0b2be; font-size: .95rem; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: #b0b2be; text-decoration: none;
  font-size: .95rem; transition: color .2s;
}
.site-footer a:hover { color: var(--secondary); }
.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px; text-align: center;
  font-size: .85rem; color: #8b8d99;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .burger { display: block; }
  .site-header .btn-primary { display: none; }

  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
  }
}

@media (max-width: 560px) {
  .cards-3, .cards-4, .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}