:root {
  --bg: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #ff6b6b;
  --primary-700: #e85a5a;
  --accent: #4f46e5;
  --accent-700: #4338ca;
  --sun: #fbbf24;
  --cloud: #e5e7eb;
  --card: #ffffff;
  --border: #e5e7eb;
}

* { 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: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

h1, h2, h3, h4 { font-family: "Baloo 2", cursive; color: #0f172a; margin: 0 0 .5rem; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { color: var(--text); margin: 0 0 1rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-700); }

.btn { display: inline-block; padding: .6rem 1rem; border-radius: 999px; border: 1px solid var(--border); color: #111827; background: #fff; transition: .2s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--primary); color: #fff; border-color: transparent; }
.btn-primary:hover { background: var(--primary-700); }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-sm { padding: .45rem .8rem; font-size: .9rem; }
.btn.full { width: 100%; text-align: center; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(180%) blur(6px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .7rem 0; }
.brand { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: #111827; }
.brand-mark { font-size: 1.25rem; }
.brand-text { font-family: "Baloo 2", cursive; font-size: 1.2rem; }
.site-nav { display: flex; gap: 1rem; align-items: center; }
.site-nav a { color: #111827; }
.nav-toggle { display: none; font-size: 1.2rem; background: transparent; border: none; }

.hero { background: linear-gradient(180deg, #e0eaff 0%, #fff 70%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; padding: 3rem 0; align-items: center; }
.hero-copy p { color: var(--muted); max-width: 50ch; }
.hero-visual { position: relative; height: 280px; }
.cloud { position: absolute; background: var(--cloud); border-radius: 999px; box-shadow: 20px 10px 0 0 var(--cloud), -20px 10px 0 0 var(--cloud); animation: float 8s ease-in-out infinite; }
.cloud.c1 { width: 120px; height: 40px; top: 20%; left: 10%; }
.cloud.c2 { width: 160px; height: 50px; top: 40%; right: 15%; animation-delay: -3s; }
.cloud.c3 { width: 140px; height: 45px; top: 10%; right: 35%; animation-delay: -1.5s; }
.hill { position: absolute; bottom: 0; left: 0; right: 0; height: 140px; background: radial-gradient(80% 60% at 50% 100%, #b9fbc0, #98f5a5 60%, #7de38a 100%); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.section { padding: 3rem 0; }
.section.alt { background: #f9fafb; }
.center { text-align: center; }
.grid-2 { display: grid; gap: 2rem; grid-template-columns: 1.2fr .8fr; align-items: start; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 1.2rem; box-shadow: 0 4px 12px rgba(0,0,0,.04); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.feature { display: grid; grid-template-columns: auto 1fr; gap: .8rem 1rem; align-items: start; padding: 1rem; border: 1px dashed var(--border); border-radius: 12px; background: #fff; }
.feature-icon { font-size: 1.6rem; }

.checklist { padding-left: 1rem; }
.checklist li { margin: .4rem 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.gallery-item { aspect-ratio: 4/3; border-radius: 12px; background: linear-gradient(135deg, #fde68a, #fca5a5, #a7f3d0); background-size: 200% 200%; animation: bg 8s ease infinite; border: 1px solid var(--border); }
@keyframes bg { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.form-card { padding-top: .6rem; }
.form-field { margin-bottom: .9rem; }
.form-field label { display: block; font-weight: 600; margin-bottom: .3rem; }
.form-field input, .form-field textarea { width: 100%; padding: .6rem .7rem; border-radius: 10px; border: 1px solid var(--border); font-size: 1rem; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid #bfdbfe; border-color: #93c5fd; }
.error-msg { color: #b91c1c; height: 1rem; display: inline-block; }
.form-status { font-size: .95rem; margin-top: .6rem; color: var(--muted); }

.map-embed { padding: 0; overflow: hidden; }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; border-radius: 12px; }

.site-footer { border-top: 1px solid var(--border); background: #fff; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.footer-nav { display: flex; gap: 1rem; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-nav { display: none; position: absolute; right: 4%; top: 60px; background: #fff; padding: .8rem; border-radius: 12px; border: 1px solid var(--border); flex-direction: column; gap: .6rem; }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-block; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}


