:root {
  --purple: #6a3d9a;
  --purple-dark: #4d1f7a;
  --green: #7ab648;
  --red: #e0393e;
  --yellow: #f5b921;
  --blue: #4fa8dc;
  --orange: #f0932b;
  --ink: #2c2438;
  --ink-soft: #5c5468;
  --cream: #fffaf0;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 12px 30px rgba(74, 31, 122, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', sans-serif;
  margin: 0 0 0.5em;
  color: var(--purple-dark);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

img { max-width: 100%; display: block; }

a { color: var(--purple); }

.eyebrow {
  display: block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--orange);
  margin-bottom: 0.5em;
}
.eyebrow.center, .center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  text-decoration: none;
  font-size: 1.05rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 3px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(224, 57, 62, 0.4);
}
.btn-primary:hover { box-shadow: 0 12px 24px rgba(224, 57, 62, 0.5); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.btn-large { font-size: 1.2rem; padding: 1em 2.2em; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(74, 31, 122, 0.08);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.6em 1.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-logo { height: 58px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 1.8em; }
.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}
.main-nav a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple);
  color: var(--white) !important;
  padding: 0.6em 1.3em;
  border-radius: 999px;
  font-family: 'Baloo 2', sans-serif;
}
.nav-cta:hover { background: var(--purple-dark); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--purple-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,31,122,0.88) 0%, rgba(106,61,154,0.72) 45%, rgba(45,20,75,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  padding: 2em 1.5em;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.5em 1.2em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.2em;
  backdrop-filter: blur(2px);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
  margin-bottom: 0.35em;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.94);
  margin-bottom: 1.6em;
}
.hero-actions {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats strip */
.strip { background: var(--purple-dark); }
.strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.6em 1.5em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
}
.strip-item span { color: rgba(255,255,255,0.85); font-weight: 600; font-size: 0.95rem; }

/* Sections */
.section { padding: 5.5em 1.5em; }
.section-alt { background: #f3ecfb; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-lede { max-width: 620px; margin: 0 auto 2.5em; font-size: 1.1rem; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3em;
  align-items: center;
}
.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2em;
  box-shadow: var(--shadow);
  border-top: 6px solid var(--yellow);
}
.about-card h3 { color: var(--purple); }
.about-list { list-style: none; margin: 0; padding: 0; }
.about-list li {
  display: flex;
  gap: 0.8em;
  align-items: flex-start;
  padding: 0.7em 0;
  border-bottom: 1px dashed #e3d9f3;
  font-weight: 600;
  color: var(--ink);
}
.about-list li:last-child { border-bottom: none; }
.about-list li span { font-size: 1.3rem; }

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6em;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2em 1.7em;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }
.card h3 { font-size: 1.25rem; margin-bottom: 0.3em; }
.card p { margin: 0; }
.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1em;
  color: var(--white);
}
.icon-purple { background: var(--purple); }
.icon-green { background: var(--green); }
.icon-yellow { background: var(--yellow); }
.icon-blue { background: var(--blue); }
.icon-red { background: var(--red); }
.icon-orange { background: var(--orange); }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3em;
  align-items: center;
}
.why-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.why-item { margin-bottom: 1.4em; }
.why-item h4 { margin-bottom: 0.2em; color: var(--ink); font-family: 'Baloo 2', sans-serif; font-size: 1.1rem; }
.why-item p { margin: 0; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 1.4em; }
.cta-band-inner { padding: 1em 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: start;
}
.contact-list { list-style: none; margin: 0 0 1.6em; padding: 0; }
.contact-list li {
  display: flex;
  gap: 1em;
  padding: 1em 0;
  border-bottom: 1px solid #ece3f7;
}
.contact-list li span { font-size: 1.5rem; }
.contact-list li strong { color: var(--purple); }
.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  text-align: center;
  padding: 3em 1.5em 2em;
}
.footer-logo { height: 64px; margin: 0 auto 1em; border-radius: 50%; background: var(--white); padding: 4px; }
.site-footer p { color: rgba(255,255,255,0.7); margin: 0.3em 0; }
.site-footer a { color: var(--yellow); }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .why-image { order: -1; }
  .cards { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1em 1.5em 1.5em;
    gap: 1em;
    box-shadow: 0 12px 20px rgba(74,31,122,0.1);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
}
