:root {
  --cream: #fff8ec;
  --paper: #fffdf9;
  --ink: #241f47;
  --ink-soft: #151416;
  --yellow: #ffc94a;
  --coral: #ff6b4a;
  --turquoise: #2fada4;
  --grape: #8b6fd1;
  --pink: #ff8fa3;
  --line: rgba(36, 31, 71, 0.12);
  --shadow: 0 10px 30px rgba(36, 31, 71, 0.1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Solitreo", cursive;
  color: var(--ink);
  line-height: 1.15;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  align-items: center;
  gap: 8px;
  font-family: "Solitreo", cursive;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 15px;
  color: var(--coral);
  margin-left: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 0 #c6532f;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-color: #d55630;
  border-color: #d55630;
}
.btn-primary:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #c6532f;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.crayon-underline {
  display: block;
  margin-top: 6px;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 70px 0 110px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 14px 0 18px;
  font-weight: 600;
  font-family: "Solitreo", cursive;
}
.hero h1 .hl-coral {
  color: var(--coral);
}
.hero h1 .hl-turq {
  color: var(--turquoise);
}
.hero h1 .hl-grape {
  color: var(--grape);
}
.hero p.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 28px;
  font-weight: 600;
}
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #000;
  border: 2px solid var(--ink);
  border-radius: 100px;
  padding: 12px 18px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 3px 3px 0 var(--ink);
  animation: none;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-note {
  font-size: 1rem;
  color: #000;
  margin-top: 14px;
  font-weight: 600;
}

.hero-art {
  position: relative;
  height: 440px;
}
.hero-art .blob {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 44% 56% 60% 40% / 45% 40% 60% 55%;
  background: var(--yellow);
  top: -20px;
  right: 10px;
  z-index: 0;
}
.hero-art img {
  position: relative;
  z-index: 99;
}
.floaty {
  position: absolute;
  animation: float 5s ease-in-out infinite;
}
.floaty.d2 {
  animation-delay: 0.6s;
}
.floaty.d3 {
  animation-delay: 1.2s;
}
.floaty.d4 {
  animation-delay: 1.8s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--r, 0deg));
  }
  50% {
    transform: translateY(-14px) rotate(var(--r, 0deg));
  }
}

/* ---------- SECTION HEADERS ---------- */
.section {
  padding: 90px 0;
  position: relative;
}
.section-head {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 10px 0 14px;
  font-weight: 600;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 500;
}
.torn {
  position: relative;
  width: 100%;
  height: 46px;
  margin-top: -1px;
}

/* ---------- ABOUT / QUICK FACTS ---------- */
.about {
  background: var(--ink);
  color: var(--cream);
}
.about h2,
.about .eyebrow {
  color: var(--cream);
}
.about .eyebrow {
  color: var(--yellow);
}
.about-text {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
  color: #d9d5f0;
  font-size: 1.08rem;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .facts {
    grid-template-columns: 1fr;
  }
}
.fact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
}
.fact-card .num {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 6px;
}
.fact-card h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.fact-card p {
  color: #c7c2e8;
  font-size: 0.92rem;
}

/* ---------- ACTIVITIES ---------- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }
}
.craft-card {
  background: #fff;
  padding: 30px 24px;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
  clip-path: polygon(2% 4%, 22% 0%, 45% 2%, 68% 0%, 98% 3%, 100% 22%, 98% 48%, 100% 74%, 97% 98%, 76% 100%, 52% 98%, 28% 100%, 2% 97%, 0% 74%, 3% 50%, 0% 24%);
}
.craft-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}
.craft-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.craft-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.craft-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.craft-card:nth-child(6n + 1) .ic {
  background: #ffe7be;
}
.craft-card:nth-child(6n + 2) .ic {
  background: #ffd3c7;
}
.craft-card:nth-child(6n + 3) .ic {
  background: #cfede9;
}
.craft-card:nth-child(6n + 4) .ic {
  background: #e3dbfa;
}
.craft-card:nth-child(6n + 5) .ic {
  background: #ffdce3;
}
.craft-card:nth-child(6n + 6) .ic {
  background: #d8f0c4;
}
.craft-card:nth-child(odd) {
  transform: rotate(-0.6deg);
}
.craft-card:nth-child(even) {
  transform: rotate(0.6deg);
}
.craft-card:nth-child(odd):hover {
  transform: translateY(-6px) rotate(-1.6deg);
}
.craft-card:nth-child(even):hover {
  transform: translateY(-6px) rotate(1.6deg);
}

/* ---------- GALLERY ---------- */
.gallery {
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 26px;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.polaroid {
  background: #fff;
  padding: 14px 14px 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.polaroid:nth-child(odd) {
  transform: rotate(-2deg);
}
.polaroid:nth-child(even) {
  transform: rotate(2deg);
}
.polaroid .tape {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 70px;
  height: 26px;
  background: rgba(255, 201, 74, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.polaroid .art {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 2px;
  overflow: hidden;
}
.polaroid figcaption {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
  padding-top: 12px;
  color: var(--ink-soft);
}

/* ---------- BENEFITS ---------- */
.benefits {
  background: var(--ink);
}
.benefits .eyebrow {
  color: var(--yellow);
}
.benefits h2 {
  color: #fff;
}
.benefits .section-head p {
  color: #c7c2e8;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit {
  display: flex;
  gap: 16px;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.benefit .ic {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  color: var(--turquoise);
}
.benefit h4 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 6px;
}
.benefit p {
  color: #c7c2e8;
  font-size: 0.9rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.note {
  background: #fff4c7;
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  position: relative;
  font-family: "Poppins", sans-serif;
}
.note:nth-child(1) {
  background: #fff4c7;
  transform: rotate(-1.5deg);
}
.note:nth-child(2) {
  background: #d8f0ec;
  transform: rotate(1deg);
}
.note:nth-child(3) {
  background: #fbe0e6;
  transform: rotate(-0.8deg);
}
.note .tape {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 56px;
  height: 22px;
  background: rgba(139, 111, 209, 0.55);
  transform: rotate(-6deg);
}
.note p {
  font-family: "Solitreo", cursive;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 14px;
}
.note .who {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ---------- ENROLL / LEAD FORM ---------- */
.enroll {
  background: linear-gradient(180deg, var(--paper) 0%, #fbefd8 100%);
}
.enroll-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}
@media (max-width: 900px) {
  .enroll-grid {
    grid-template-columns: 1fr;
  }
}
.enroll-info h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  margin-bottom: 14px;
}
.enroll-info p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.enroll-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.enroll-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 0.98rem;
}
.enroll-list li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--coral);
  margin-top: 2px;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  margin-bottom: 10px;
}
.price-tag .amt {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--yellow);
}
.price-tag .per {
  font-size: 0.85rem;
  color: #d9d5f0;
}

.form-card {
  background: #fff;
  border-radius: 26px;
  padding: 38px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
}
.form-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.form-card .sub {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink);
}
.field input,
.field select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1.8px solid var(--line);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  background: var(--cream);
  outline: none;
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus {
  border-color: var(--turquoise);
}
.field.invalid input,
.field.invalid select {
  border-color: var(--coral);
}
.field .err {
  display: none;
  color: var(--coral);
  font-size: 0.78rem;
  margin-top: 5px;
  font-weight: 700;
}
.field.invalid .err {
  display: block;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 6px 0 22px;
}
.consent input {
  margin-top: 3px;
}
.submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px 6px;
}
.form-success.show {
  display: block;
}
.form-success .check {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: var(--turquoise);
}
.form-success h3 {
  margin-bottom: 8px;
}
.form-success p {
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.ref {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--coral);
}
#enrollForm.hide {
  display: none;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: #c7c2e8;
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.footer-logo svg {
  width: 34px;
  height: 34px;
}
footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: #fff;
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a:hover {
  background: var(--coral);
}
.socials svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #8f89b8;
}

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 8px 20px rgb(37, 211, 101);
  }
  50% {
    box-shadow: 0 8px 26px rgb(37, 211, 101);
  }
}

::selection {
  background: var(--coral);
  color: #fff;
}
