/* ══ RESET & VARS ══ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --amber:   #FF8C00;
  --yellow:  #FFD23F;
  --sky:     #3DA5D9;
  --teal:    #2EC4B6;
  --pink:    #FF4D8D;
  --purple:  #7B5EA7;
  --green:   #44BBA4;
  --red:     #E63946;
  --cream:   #FFFBF2;
  --white:   #FFFFFF;
  --oak:     #3D1F00;
  --muted:   #7A5C3A;
  --sand:    #FFE8C0;
  --r:       20px;
  --r-lg:    32px;
  --r-xl:    48px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--oak);
  overflow-x: hidden;
}

/* ══ CONFETTI BG PATTERN ══ */
.confetti-bg {
  background-image:
    radial-gradient(circle, var(--yellow) 2px, transparent 2px),
    radial-gradient(circle, var(--pink) 2px, transparent 2px),
    radial-gradient(circle, var(--sky) 2px, transparent 2px),
    radial-gradient(circle, var(--green) 2px, transparent 2px);
  background-size: 80px 80px, 120px 120px, 60px 60px, 100px 100px;
  background-position: 0 0, 40px 40px, 20px 60px, 70px 10px;
  background-color: var(--cream);
}

/* ══ NAV ══ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: var(--oak);
  box-shadow: 0 4px 0 var(--amber);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-bear {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--amber));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; box-shadow: 0 0 0 3px rgba(255,210,63,0.4);
  animation: spinBear 8s linear infinite;
}
@keyframes spinBear {
  0%,100% { box-shadow: 0 0 0 3px rgba(255,210,63,0.4); }
  50%     { box-shadow: 0 0 0 6px rgba(255,210,63,0.2); }
}
.nav-bear svg { width:100%; height:100%; }

.nav-wordmark {
  font-family: 'Baloo 2', cursive; font-weight: 900; font-size: 22px;
  color: var(--white); letter-spacing: -0.5px;
}
.nav-wordmark span { color: var(--yellow); }

.nav-links { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 14px;
  color: rgba(255,255,255,0.75); padding: 8px 14px; border-radius: 50px;
  transition: all 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.1); }
.nav-shop {
  background: var(--yellow) !important; color: var(--oak) !important;
  font-weight: 800 !important; padding: 10px 20px !important;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
  transition: all 0.15s !important;
}
.nav-shop:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 0 rgba(0,0,0,0.2) !important; }

/* ══ SECTION SHARED ══ */
.section-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 800; font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 50px; margin-bottom: 18px;
}
.section-h {
  font-family: 'Baloo 2', cursive; font-weight: 900;
  font-size: clamp(30px, 4.5vw, 54px); line-height: 1.1;
  margin-bottom: 18px;
}
.section-p {
  font-size: 17px; line-height: 1.8; font-weight: 600;
  color: var(--muted); max-width: 520px;
}

.container { max-width: 1160px; margin: 0 auto; }

/* ══ HERO ══ */
#hero {
  min-height: 100vh;
  padding: 100px 5% 80px;
  position: relative; overflow: hidden;
  background: var(--oak);
}

/* Bold diagonal stripes */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(255,210,63,0.04) 60px,
      rgba(255,210,63,0.04) 62px
    );
  pointer-events: none;
}

/* Big colour blobs */
.blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  pointer-events: none; z-index: 0;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 { width:500px;height:500px; background:rgba(255,140,0,0.25);  top:-100px; right:-100px; animation-delay:0s; }
.blob-2 { width:400px;height:400px; background:rgba(61,165,217,0.2);  bottom:-80px; left:-80px; animation-delay:2s; }
.blob-3 { width:300px;height:300px; background:rgba(255,77,141,0.15); top:40%;  left:30%; animation-delay:4s; }

@keyframes blobFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px,20px) scale(1.08); }
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1160px; margin: 0 auto;
}

/* Left */
.hero-left { animation: heroIn 0.8s 0.1s cubic-bezier(.22,1,.36,1) both; }

@keyframes heroIn {
  from { opacity:0; transform: translateX(-40px); }
  to   { opacity:1; transform: translateX(0); }
}

.hero-badges { display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 28px; }
.hbadge {
  display:inline-flex; align-items:center; gap:6px;
  font-weight:800; font-size:11px; letter-spacing:1.5px; text-transform:uppercase;
  padding:7px 14px; border-radius:50px;
}
.hb-yellow { background:var(--yellow); color:var(--oak); }
.hb-pink   { background:var(--pink);   color:white; }
.hb-teal   { background:var(--teal);   color:white; }

.hero-h1 {
  font-family: 'Baloo 2', cursive; font-weight: 900;
  font-size: clamp(44px, 6vw, 80px); line-height: 1;
  color: white; margin-bottom: 22px;
}
.hero-h1 .line-amber  { color: var(--yellow); display:block; }
.hero-h1 .line-normal { color: white; display:block; }

.hero-sub {
  font-size: 18px; line-height: 1.8; font-weight: 600;
  color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 460px;
}

.hero-ctas { display:flex; gap:14px; margin-bottom:52px; flex-wrap:wrap; }

.cta-main {
  display:inline-flex; align-items:center; gap:10px;
  background: var(--yellow); color: var(--oak);
  font-family:'Baloo 2',cursive; font-weight:800; font-size:18px;
  padding:16px 36px; border-radius:50px; text-decoration:none;
  border:none; cursor:pointer;
  box-shadow: 0 6px 0 rgba(0,0,0,0.25), 0 12px 30px rgba(255,210,63,0.3);
  transition:all 0.15s;
}
.cta-main:hover { transform:translateY(-3px); box-shadow: 0 9px 0 rgba(0,0,0,0.25), 0 18px 40px rgba(255,210,63,0.35); }
.cta-main:active { transform:translateY(1px); box-shadow: 0 3px 0 rgba(0,0,0,0.25); }

.cta-ghost {
  display:inline-flex; align-items:center; gap:10px;
  background:transparent; color:white;
  font-family:'Baloo 2',cursive; font-weight:800; font-size:18px;
  padding:16px 36px; border-radius:50px; text-decoration:none;
  border:3px solid rgba(255,255,255,0.3); cursor:pointer;
  transition:all 0.2s;
}
.cta-ghost:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.6); }

.hero-trust {
  display:flex; gap:28px; flex-wrap:wrap;
}
.trust-item {
  display:flex; flex-direction:column;
}
.trust-num {
  font-family:'Baloo 2',cursive; font-weight:900; font-size:32px;
  color:var(--yellow); line-height:1;
}
.trust-lbl {
  font-size:11px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; color:rgba(255,255,255,0.5); margin-top:2px;
}

/* Right — big mascot */
.hero-right {
  display:flex; align-items:center; justify-content:center;
  animation: heroIn 0.8s 0.3s cubic-bezier(.22,1,.36,1) both;
}

.mascot-wrap {
  position:relative;
  width: clamp(260px, 36vw, 460px);
  height: clamp(260px, 36vw, 460px);
}

.mascot-bg {
  width:100%; height:100%; border-radius:50%;
  background: conic-gradient(from 0deg, var(--amber), var(--yellow), var(--amber), var(--yellow));
  animation: rotateConic 6s linear infinite;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 0 80px rgba(255,140,0,0.5);
}
@keyframes rotateConic {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.mascot-inner {
  position:absolute; inset:6px; border-radius:50%;
  background: radial-gradient(circle at 38% 35%, #FFCA7A, #F07010);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  box-shadow: inset 0 -12px 30px rgba(140,60,0,0.2);
}
.mascot-inner svg { width:90%; height:90%; }

/* Floating tags */
.ftag {
  position:absolute; background:white; border-radius:16px;
  padding:10px 16px; font-weight:800; font-size:13px; color:var(--oak);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), 0 3px 0 rgba(0,0,0,0.1);
  display:flex; align-items:center; gap:8px; white-space:nowrap;
  animation: ftagFloat 3s ease-in-out infinite alternate;
}
.ft1 { top:4%;   left:-8%;  animation-delay:0s; }
.ft2 { top:50%;  right:-10%;animation-delay:1s; }
.ft3 { bottom:6%;left:4%;  animation-delay:2s; }
@keyframes ftagFloat {
  from { transform:translateY(0) rotate(-2deg); }
  to   { transform:translateY(-10px) rotate(2deg); }
}

/* ══ ZIGZAG BANNER ══ */
.banner-strip {
  background: var(--yellow);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}
.banner-strip::before, .banner-strip::after {
  content: '';
  position: absolute; left:0; right:0; height:8px;
}
.banner-strip::before { top:0; background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 12px, transparent 12px, transparent 24px); }
.banner-strip::after  { bottom:0; background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 12px, transparent 12px, transparent 24px); }

.banner-track {
  display:flex; gap:0; white-space:nowrap;
  animation: marquee 20s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
.banner-item {
  font-family:'Baloo 2',cursive; font-weight:800; font-size:15px;
  color:var(--oak); padding:0 28px; display:inline-flex; align-items:center; gap:10px;
}
.banner-dot { width:8px; height:8px; border-radius:50%; background:var(--oak); flex-shrink:0; }

/* ══ ABOUT ══ */
#about {
  padding: 110px 5%;
  background: white;
  position: relative; overflow: hidden;
}

#about::before {
  content: '';
  position: absolute; top:-120px; right:-120px;
  width:400px; height:400px; border-radius:50%;
  background: radial-gradient(circle, rgba(255,210,63,0.15), transparent);
  pointer-events:none;
}

.about-grid {
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1160px; margin: 0 auto;
}

.about-visual {
  position:relative;
}

.about-big-card {
  background: var(--oak); border-radius: var(--r-xl);
  padding: 50px 40px; position:relative; overflow:hidden;
  box-shadow: 8px 8px 0 var(--yellow);
}
.about-big-card::before {
  content:'';
  position:absolute; top:0; right:0;
  width:200px; height:200px; border-radius:0 var(--r-xl) 0 100%;
  background: rgba(255,210,63,0.08);
}

.about-big-emoji { font-size:80px; margin-bottom:24px; display:block; animation:swing 3s ease-in-out infinite; }
@keyframes swing {
  0%,100% { transform:rotate(-5deg); }
  50%     { transform:rotate(5deg); }
}
.about-big-card h3 {
  font-family:'Baloo 2',cursive; font-weight:800; font-size:26px;
  color:var(--yellow); margin-bottom:12px;
}
.about-big-card p { font-size:15px; line-height:1.8; color:rgba(255,251,242,0.8); font-weight:600; }

.about-mini-cards {
  display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:14px;
}
.mini-card {
  border-radius:var(--r); padding:20px; border:3px solid;
  transition:all 0.25s;
}
.mini-card:hover { transform:translateY(-4px) rotate(1deg); }
.mc-yellow { background:rgba(255,210,63,0.15); border-color:var(--yellow); }
.mc-pink   { background:rgba(255,77,141,0.1);  border-color:var(--pink); }
.mc-sky    { background:rgba(61,165,217,0.1);  border-color:var(--sky); }
.mc-teal   { background:rgba(44,196,182,0.1);  border-color:var(--teal); }

.mini-card .mc-icon { font-size:30px; margin-bottom:8px; display:block; }
.mini-card h4 { font-family:'Baloo 2',cursive; font-weight:800; font-size:15px; color:var(--oak); margin-bottom:4px; }
.mini-card p  { font-size:12px; font-weight:600; color:var(--muted); line-height:1.5; }

.about-text .section-pill { background:rgba(255,140,0,0.12); color:var(--amber); }
.about-text .section-h { color:var(--oak); }

.about-list { list-style:none; margin:28px 0 36px; display:flex; flex-direction:column; gap:14px; }
.about-list li {
  display:flex; align-items:flex-start; gap:14px;
  font-size:16px; font-weight:600; color:var(--muted); line-height:1.6;
}
.about-list li::before {
  content:'✓'; flex-shrink:0;
  width:26px; height:26px; border-radius:50%;
  background:var(--yellow); color:var(--oak);
  font-weight:900; font-size:13px;
  display:flex; align-items:center; justify-content:center;
  margin-top:1px;
}

/* ══ SHOP ══ */
#shop {
  padding: 110px 5%;
  background: var(--cream);
  position:relative;
}

.zigzag-top {
  position:absolute; top:0; left:0; right:0; height:24px;
  background: repeating-linear-gradient(
    135deg,
    white 0px, white 17px,
    var(--cream) 17px, var(--cream) 34px
  );
}

.shop-header {
  display:flex; align-items:flex-end; justify-content:space-between;
  max-width:1160px; margin:0 auto 52px; flex-wrap:wrap; gap:20px;
}
.shop-header .section-pill { background:rgba(61,165,217,0.12); color:var(--sky); }
.shop-header .section-h { color:var(--oak); margin-bottom:0; }

.view-all-btn {
  display:inline-flex; align-items:center; gap:8px;
  background: var(--oak); color:white;
  font-family:'Baloo 2',cursive; font-weight:700; font-size:15px;
  padding:12px 24px; border-radius:50px; text-decoration:none;
  box-shadow: 0 4px 0 rgba(0,0,0,0.2);
  transition:all 0.15s;
}
.view-all-btn:hover { transform:translateY(-2px); box-shadow: 0 6px 0 rgba(0,0,0,0.2); }

/* Filter tabs */
.filter-tabs {
  display:flex; gap:8px; flex-wrap:wrap;
  max-width:1160px; margin:0 auto 40px;
}
.ftab {
  font-weight:800; font-size:13px; padding:9px 20px; border-radius:50px;
  cursor:pointer; border:2px solid; transition:all 0.2s;
  font-family:'Quicksand',sans-serif;
}
.ftab.active, .ftab:hover { color:white; border-color:transparent; }
.ftab-all    { border-color:var(--oak);    color:var(--oak);   } .ftab-all.active    { background:var(--oak); }
.ftab-books  { border-color:var(--sky);    color:var(--sky);   } .ftab-books.active  { background:var(--sky); }
.ftab-games  { border-color:var(--pink);   color:var(--pink);  } .ftab-games.active  { background:var(--pink); }
.ftab-kits   { border-color:var(--green);  color:var(--green); } .ftab-kits.active   { background:var(--green); }

.products-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:22px; max-width:1160px; margin:0 auto;
}

.p-card {
  background:white; border-radius:var(--r-xl);
  overflow:hidden; cursor:pointer;
  border:3px solid transparent;
  box-shadow: 0 4px 0 rgba(0,0,0,0.06);
  transition:all 0.25s;
}
.p-card:hover { transform:translateY(-10px) rotate(-1deg); box-shadow: 0 16px 0 rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.1); }

.p-img {
  height:190px; display:flex; align-items:center; justify-content:center;
  font-size:72px; position:relative;
}

.p-badge {
  position:absolute; top:12px; right:12px;
  font-weight:800; font-size:10px; letter-spacing:1px; text-transform:uppercase;
  padding:5px 12px; border-radius:50px; color:white;
}

.p-body { padding:20px; }
.p-cat {
  font-size:10px; font-weight:800; letter-spacing:2px; text-transform:uppercase;
  margin-bottom:8px; display:inline-block; padding:3px 10px; border-radius:50px;
}
.p-body h4 {
  font-family:'Baloo 2',cursive; font-weight:800; font-size:16px;
  color:var(--oak); margin-bottom:6px; line-height:1.3;
}
.p-body .p-desc { font-size:12.5px; color:var(--muted); font-weight:600; line-height:1.5; margin-bottom:14px; }
.p-ages { font-size:11px; font-weight:700; color:var(--muted); margin-bottom:14px; }

.p-footer { display:flex; align-items:center; justify-content:space-between; }
.p-price { font-family:'Baloo 2',cursive; font-weight:900; font-size:22px; color:var(--oak); }

.add-btn {
  width:40px; height:40px; border-radius:50%;
  border:none; cursor:pointer; font-size:22px;
  display:flex; align-items:center; justify-content:center;
  font-weight:900; transition:all 0.2s;
  box-shadow: 0 4px 0 rgba(0,0,0,0.15);
}
.add-btn:hover { transform:scale(1.15) translateY(-2px); }
.add-btn:active { transform:scale(0.95); box-shadow:none; }

/* card color themes */
.theme-sky   { border-color:rgba(61,165,217,0.3);  }  .theme-sky   .p-img { background:linear-gradient(135deg,#E8F4FD,#C5E4F5); } .theme-sky   .add-btn { background:var(--sky); color:white; box-shadow:0 4px 0 #2980a8; } .theme-sky .p-cat { background:rgba(61,165,217,0.12); color:var(--sky); }
.theme-pink  { border-color:rgba(255,77,141,0.3);  }  .theme-pink  .p-img { background:linear-gradient(135deg,#FDE8F1,#FAC0D9); } .theme-pink  .add-btn { background:var(--pink); color:white; box-shadow:0 4px 0 #c93070; } .theme-pink  .p-cat { background:rgba(255,77,141,0.1); color:var(--pink); }
.theme-amber { border-color:rgba(255,140,0,0.3);   }  .theme-amber .p-img { background:linear-gradient(135deg,#FFF4E0,#FFE0A0); } .theme-amber .add-btn { background:var(--amber); color:white; box-shadow:0 4px 0 #c06800; } .theme-amber .p-cat { background:rgba(255,140,0,0.12); color:var(--amber); }
.theme-teal  { border-color:rgba(44,196,182,0.3);  }  .theme-teal  .p-img { background:linear-gradient(135deg,#DFF8F6,#AAEAE4); } .theme-teal  .add-btn { background:var(--teal); color:white; box-shadow:0 4px 0 #1e9486; } .theme-teal  .p-cat { background:rgba(44,196,182,0.12); color:var(--teal); }
.theme-purple{ border-color:rgba(123,94,167,0.3); }   .theme-purple.p-img { background:linear-gradient(135deg,#EDE8F5,#D4C4ED); } .theme-purple .add-btn { background:var(--purple); color:white; box-shadow:0 4px 0 #5a3f80; } .theme-purple .p-cat { background:rgba(123,94,167,0.12); color:var(--purple); }
.theme-green { border-color:rgba(68,187,164,0.3);  }  .theme-green .p-img { background:linear-gradient(135deg,#E0F5F1,#B5E8DF); } .theme-green .add-btn { background:var(--green); color:white; box-shadow:0 4px 0 #2e8a78; } .theme-green .p-cat { background:rgba(68,187,164,0.12); color:var(--green); }

.p-badge-new  { background:var(--pink); }
.p-badge-best { background:var(--amber); }
.p-badge-sale { background:var(--green); }

/* ══ ABOUT (mission) ══ */
#mission {
  padding: 110px 5%;
  background: white;
}

.mission-inner {
  max-width: 1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center;
}

.mission-text .section-pill { background:rgba(255,77,141,0.1); color:var(--pink); }

.mission-big-number {
  font-family:'Baloo 2',cursive; font-weight:900;
  font-size:clamp(80px,12vw,160px); line-height:0.9;
  color:var(--yellow); position:relative; display:inline-block;
  text-shadow: 6px 6px 0 rgba(255,140,0,0.3);
}
.mission-big-number span { font-size:0.35em; color:var(--oak); display:block; line-height:1.2; }

.mission-cards { display:flex; flex-direction:column; gap:14px; }
.mcard {
  display:flex; align-items:center; gap:18px;
  padding:20px 24px; border-radius:var(--r-lg); border:3px solid;
  transition:all 0.25s;
}
.mcard:hover { transform:translateX(8px); }
.mcard-1 { border-color:var(--yellow); background:rgba(255,210,63,0.08); }
.mcard-2 { border-color:var(--sky);    background:rgba(61,165,217,0.08); }
.mcard-3 { border-color:var(--pink);   background:rgba(255,77,141,0.06); }
.mcard-4 { border-color:var(--teal);   background:rgba(44,196,182,0.08); }

.mcard-icon { font-size:36px; flex-shrink:0; }
.mcard-body h4 { font-family:'Baloo 2',cursive; font-weight:800; font-size:16px; color:var(--oak); margin-bottom:4px; }
.mcard-body p  { font-size:13px; font-weight:600; color:var(--muted); line-height:1.5; }

/* ══ AGES STRIP ══ */
#ages {
  padding: 80px 5%;
  background: var(--oak);
  position:relative; overflow:hidden;
}
#ages::before {
  content:'';
  position:absolute; inset:0;
  background:repeating-linear-gradient(-45deg,transparent,transparent 30px,rgba(255,210,63,0.03) 30px,rgba(255,210,63,0.03) 32px);
}

.ages-inner { max-width:1160px; margin:0 auto; text-align:center; }
.ages-inner .section-pill { background:rgba(255,210,63,0.15); color:var(--yellow); }
.ages-inner .section-h { color:white; }

.ages-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:16px; margin-top:48px; position:relative; z-index:1;
}

.age-tile {
  border-radius:var(--r-xl); padding:36px 20px; text-align:center;
  cursor:pointer; transition:all 0.25s;
  border:3px solid rgba(255,255,255,0.1);
}
.age-tile:hover { transform:translateY(-10px) scale(1.03); border-color:rgba(255,255,255,0.3); }
.at-1 { background:rgba(255,210,63,0.15); }
.at-2 { background:rgba(61,165,217,0.15); }
.at-3 { background:rgba(255,77,141,0.12); }
.at-4 { background:rgba(44,196,182,0.15); }

.age-tile .ae { font-size:56px; margin-bottom:12px; display:block; animation:bounce 2s ease-in-out infinite; }
.age-tile:nth-child(2) .ae { animation-delay:0.3s; }
.age-tile:nth-child(3) .ae { animation-delay:0.6s; }
.age-tile:nth-child(4) .ae { animation-delay:0.9s; }

@keyframes bounce {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-10px); }
}

.age-pill {
  display:inline-block; font-family:'Baloo 2',cursive; font-weight:900;
  font-size:22px; color:white; margin-bottom:8px;
}
.age-tile h4 { font-family:'Baloo 2',cursive; font-weight:700; font-size:16px; color:rgba(255,255,255,0.9); margin-bottom:8px; }
.age-tile p  { font-size:13px; font-weight:600; color:rgba(255,255,255,0.6); line-height:1.6; }

/* ══ CONTACT ══ */
#contact {
  padding: 110px 5%;
  background: var(--cream);
  position:relative; overflow:hidden;
}

#contact::after {
  content:'';
  position:absolute; bottom:-100px; right:-100px;
  width:400px; height:400px; border-radius:50%;
  background:radial-gradient(circle, rgba(61,165,217,0.12), transparent);
  pointer-events:none;
}

.contact-inner {
  max-width: 1160px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start;
}

.contact-text .section-pill { background:rgba(44,196,182,0.12); color:var(--teal); }

.contact-reasons { display:flex; flex-direction:column; gap:12px; margin-top:32px; }
.cr {
  display:flex; align-items:center; gap:14px;
  padding:16px 20px; border-radius:var(--r);
  background:white; border:2px solid var(--sand);
  font-weight:700; font-size:15px; color:var(--oak);
  transition:all 0.2s;
}
.cr:hover { border-color:var(--teal); transform:translateX(4px); }
.cr-icon { font-size:22px; }

/* Form */
.contact-form {
  background:white; border-radius:var(--r-xl);
  padding:48px 40px;
  border:3px solid var(--sand);
  box-shadow: 6px 6px 0 var(--yellow);
}

.contact-form h3 {
  font-family:'Baloo 2',cursive; font-weight:800; font-size:26px;
  color:var(--oak); margin-bottom:8px;
}
.contact-form .form-sub {
  font-size:14px; font-weight:600; color:var(--muted); margin-bottom:32px;
}

.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.form-group { margin-bottom:18px; }

.form-group label {
  display:block; font-weight:800; font-size:12px; letter-spacing:1.5px;
  text-transform:uppercase; color:var(--oak); margin-bottom:8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:14px 18px; border-radius:var(--r);
  border:2.5px solid var(--sand); background:var(--cream);
  font-family:'Quicksand',sans-serif; font-size:15px; font-weight:600;
  color:var(--oak); outline:none; transition:border-color 0.2s;
  -webkit-appearance:none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--teal); background:white; }
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(122,92,58,0.4); }
.form-group textarea { resize:vertical; min-height:110px; }

.form-submit {
  width:100%; padding:17px; border-radius:50px;
  background:var(--oak); color:white; border:none; cursor:pointer;
  font-family:'Baloo 2',cursive; font-weight:800; font-size:18px;
  box-shadow: 0 5px 0 rgba(0,0,0,0.25);
  transition:all 0.15s; display:flex; align-items:center; justify-content:center; gap:10px;
}
.form-submit:hover { background:#2a1400; transform:translateY(-2px); box-shadow:0 7px 0 rgba(0,0,0,0.25); }
.form-submit:active { transform:translateY(1px); box-shadow:0 2px 0 rgba(0,0,0,0.25); }

/* ══ FOOTER ══ */
footer {
  background: var(--oak);
  padding: 80px 5% 0;
  position:relative; overflow:hidden;
}

footer::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:6px;
  background: linear-gradient(90deg, var(--yellow), var(--pink), var(--sky), var(--teal), var(--yellow));
}

.footer-top {
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
  gap:48px; max-width:1160px; margin:0 auto 64px;
}

.footer-brand .nav-wordmark { font-size:28px; color:white; }
.footer-brand .nav-wordmark span { color:var(--yellow); }

.footer-tagline {
  font-size:15px; font-weight:600; color:rgba(255,251,242,0.65);
  line-height:1.8; margin-top:14px; max-width:280px;
}

.social-row { display:flex; gap:10px; margin-top:24px; }
.soc {
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center; font-size:18px;
  text-decoration:none; transition:all 0.2s;
  border:2px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.06);
}
.soc:hover { transform:translateY(-3px) rotate(-5deg); }
.soc-pin  { background:rgba(230,57,70,0.25);  border-color:var(--red);    }
.soc-ig   { background:rgba(255,77,141,0.2);  border-color:var(--pink);   }
.soc-fb   { background:rgba(61,165,217,0.2);  border-color:var(--sky);    }
.soc-tik  { background:rgba(44,196,182,0.2);  border-color:var(--teal);   }

.footer-col h5 {
  font-family:'Baloo 2',cursive; font-weight:800; font-size:15px;
  color:var(--yellow); margin-bottom:20px; display:flex; align-items:center; gap:8px;
}
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { text-decoration:none; color:rgba(255,251,242,0.65); font-weight:600; font-size:14px; transition:all 0.2s; }
.footer-col ul a:hover { color:white; padding-left:4px; }

.footer-bottom {
  border-top:1px solid rgba(255,251,242,0.1);
  padding:24px 0;
  max-width:1160px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-bottom p { font-size:13px; font-weight:600; color:rgba(255,251,242,0.4); }
.footer-badges { display:flex; gap:8px; }
.fbadge {
  font-size:10px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 12px; border-radius:50px; color:white;
}
.fb-green  { background:rgba(68,187,164,0.3);  }
.fb-yellow { background:rgba(255,210,63,0.2);  color:var(--yellow); }