:root {
  --purple: #1A1A1A;
  --purple-deep: #1A1A1A;
  --pink: #5BA886;
  --pink-soft: #E0F0E7;
  --teal: #5BA886;
  --orange: #5BA886;
  --lime: #5BA886;
  --cream: #F5F1EC;
  --ink: #1A1A1A;
  --muted: #6B6B6B;
  --line: #E5E2DC;
}

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

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 17px; line-height: 1.65; color: var(--ink); background: #fff; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }

/* ---------- Top navigation (static) ---------- */
.nav { background: #fff; border-bottom: 1px solid var(--line); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--purple); }
.logo-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--purple); display: flex; align-items: center; justify-content: center; color: #fff; font-family: 'Caveat', cursive; font-size: 13px; font-weight: 700; line-height: 1; text-align: center; box-shadow: 0 0 0 6px #E5E7EB, 0 0 0 12px #F3F4F6; flex-shrink: 0; }
.logo-text { font-family: 'Caveat', cursive; font-size: 22px; line-height: 1.15; color: var(--purple); font-weight: 700; }
.logo-text span { display: block; font-size: 14px; color: var(--pink); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15px; padding: 10px 16px; border-radius: 6px; transition: all 0.15s ease; }
.nav-links a:hover { background: var(--cream); color: var(--pink); }
.nav-cta { background: var(--pink) !important; color: #fff !important; margin-left: 8px; }
.nav-cta:hover { background: var(--purple) !important; color: #fff !important; }

/* ---------- Hamburger button + mobile menu ---------- */
.nav-toggle { display: none; background: transparent; border: 0; padding: 10px; cursor: pointer; color: var(--purple); border-radius: 6px; }
.nav-toggle:hover { background: var(--cream); }
.nav-toggle svg { width: 28px; height: 28px; display: block; }
.mobile-menu { position: fixed; inset: 0; background: #fff; z-index: 200; display: none; flex-direction: column; padding: 18px 32px 32px; overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.mobile-menu-close { background: transparent; border: 0; padding: 10px; cursor: pointer; color: var(--purple); border-radius: 6px; }
.mobile-menu-close:hover { background: var(--cream); }
.mobile-menu-close svg { width: 28px; height: 28px; display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0; }
.mobile-menu nav a { font-size: 28px; font-weight: 600; color: var(--purple-deep); text-decoration: none; padding: 22px 0; border-bottom: 1px solid var(--line); transition: color 0.15s ease; }
.mobile-menu nav a:hover { color: var(--pink); }
.mobile-menu .nav-cta { margin-top: 32px; text-align: center; font-size: 17px !important; padding: 18px 28px !important; background: var(--pink) !important; color: #fff !important; border-radius: 10px; border-bottom: none !important; }
.mobile-menu .nav-cta:hover { background: var(--purple) !important; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--cream); padding: 80px 32px 100px; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.eyebrow { display: inline-block; background: var(--lime); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; margin-bottom: 24px; }
h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; color: var(--purple-deep); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 24px; }
h1 .accent { font-family: 'Caveat', cursive; color: var(--pink); font-weight: 700; font-size: 1.15em; }
.hero p { font-size: 19px; color: var(--muted); margin-bottom: 32px; max-width: 540px; }
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; text-decoration: none; transition: transform 0.15s ease, box-shadow 0.15s ease; border: none; cursor: pointer; }
.btn-primary { background: var(--pink); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(91,168,134,0.30); }
.btn-secondary { background: #fff; color: var(--purple); border: 1.5px solid var(--purple); }
.btn-secondary:hover { background: var(--purple); color: #fff; }

.rainbow { position: relative; aspect-ratio: 1 / 1; max-width: 480px; margin: 0 auto; }
.rainbow svg { width: 100%; height: 100%; display: block; }

/* ---------- Notice strip ---------- */
.notice { background: var(--teal); color: #fff; padding: 24px 32px; }
.notice-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.notice-tag { background: rgba(255,255,255,0.2); padding: 4px 10px; border-radius: 4px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.notice p { font-size: 15px; flex: 1; min-width: 280px; }
.notice a { color: #fff; text-decoration: underline; font-weight: 600; white-space: nowrap; }

/* ---------- Cards section ---------- */
.section { padding: 96px 32px; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
h2 { font-size: clamp(28px, 3.5vw, 40px); color: var(--purple-deep); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px; }
.section-header p { font-size: 18px; color: var(--muted); max-width: 600px; margin: 0 auto; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; text-decoration: none; color: inherit; display: block; }
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.10); border-color: transparent; }
.card h3 { font-size: 19px; color: var(--purple-deep); margin-bottom: 10px; font-weight: 600; }
.card p { color: var(--muted); font-size: 15px; }
.card-arrow { margin-top: 16px; color: var(--pink); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.card:hover .card-arrow { gap: 10px; }

/* ---------- Page hero (compact, for About / Contact / etc) ---------- */
.page-hero { background: var(--cream); padding: 64px 32px 56px; border-bottom: 1px solid var(--line); }
.page-hero-inner { max-width: 900px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.page-hero p { font-size: 19px; color: var(--muted); max-width: 680px; }

/* ---------- Prose (long-form text blocks) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(24px, 3vw, 30px); margin-top: 40px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; color: var(--purple-deep); font-weight: 600; margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; color: #333; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 8px; color: #333; }
.prose a { color: var(--pink); text-decoration: underline; font-weight: 500; }
.prose a:hover { color: var(--purple); }
.prose strong { color: var(--purple-deep); }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--purple-deep); margin-bottom: 6px; }
.field input, .field textarea, .field select { width: 100%; padding: 11px 14px; font-size: 15px; font-family: inherit; border: 1.5px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(91,168,134,0.20); }
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.contact-info { background: var(--cream); border-radius: 14px; padding: 28px; }
.contact-info h3 { font-size: 18px; color: var(--purple-deep); margin-bottom: 14px; font-weight: 600; }
.contact-info ul { list-style: none; padding: 0; }
.contact-info li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink); }
.contact-info li:last-child { border-bottom: none; }
.contact-info strong { color: var(--purple-deep); display: block; margin-bottom: 2px; }
.contact-info a { color: var(--pink); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
footer { background: var(--purple-deep); color: rgba(255,255,255,0.85); padding: 56px 32px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-weight: 600; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; }
footer a:hover { color: var(--lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 24px; max-width: 1200px; margin: 0 auto; font-size: 13px; color: rgba(255,255,255,0.6); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 56px 24px 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .rainbow { max-width: 340px; }
  .section { padding: 64px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 48px 24px 40px; }
}
@media (min-width: 881px) {
  .mobile-menu { display: none !important; }
}