/* ============================================================
   KIDCHEN CLUB — V2 Design System
   DM Serif Display (titles) + Poppins (subtitles & body)
   Off-white canvas · Navy blue dominant
   Small accents: pink · yellow · blue
   ============================================================ */

:root {
  /* Canvas — off-white */
  --offwhite:     #FAF8F4;
  --offwhite-2:   #F4F1EA;
  --white:        #FFFFFF;

  /* Navy — the dominant color */
  --navy:         #1B2A5E;
  --navy-deep:    #131E45;
  --navy-soft:    #46538A;
  --navy-faint:   #8B94B8;

  /* Small-detail accents */
  --pink:         #F29BC1;
  --pink-soft:    #FCEEF5;
  --yellow:       #F5C542;
  --yellow-soft:  #FDF6E1;
  --blue:         #4A7CE8;
  --blue-soft:    #E9F0FD;

  /* WhatsApp */
  --wa:           #25D366;

  /* Lines & shadows */
  --line:         rgba(27, 42, 94, 0.10);
  --line-strong:  rgba(27, 42, 94, 0.20);
  --shadow-soft:  0 2px 20px rgba(27, 42, 94, 0.07);
  --shadow-lift:  0 14px 44px rgba(27, 42, 94, 0.12);

  /* Type */
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body:    "Poppins", -apple-system, sans-serif;

  /* Rhythm */
  --radius:       20px;
  --radius-sm:    12px;
  --section-pad:  96px;
  --container:    1160px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--navy);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
section { padding: var(--section-pad) 0; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 20px;
}
h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.45rem; }
h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; margin: 0 0 8px; color: var(--navy); }
p  { margin: 0 0 18px; color: var(--navy-soft); }
p.lede { font-size: 1.15rem; line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow.pink { color: var(--pink); }
.eyebrow.yellow { color: var(--yellow); }

.center { text-align: center; }
.muted { color: var(--navy-faint); font-size: 0.92rem; }
.mb-0 { margin-bottom: 0; }

.section-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none !important;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy); background: var(--white); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-1px); }
.btn-pink { background: var(--pink); color: var(--navy); }
.btn-pink:hover { background: var(--navy); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; }
.brand-logo-spa { height: 44px; width: auto; }
.brand-divider { width: 1px; height: 32px; background: var(--line-strong); }

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
  flex-wrap: nowrap;
}
.nav-links li { flex-shrink: 0; }
.nav-links a {
  display: inline-block;
  padding: 9px 13px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--navy-soft);
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: color .18s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); font-weight: 600; box-shadow: inset 0 -2px 0 var(--pink); border-radius: 0; }

.nav-ctas { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  transition: all .2s;
}
.nav-ig:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.nav-cta {
  background: var(--wa); color: #fff;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 500; font-size: 0.88rem;
  text-decoration: none !important;
}
.nav-cta:hover { background: #1da851; }
/* Menu: always-visible top strip + optional ☰ dropdown (both) */
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

@media (max-width: 1100px) {
  /* Row 1: logo … CTAs + ☰  ·  Row 2: horizontal links strip (always visible) */
  .nav-inner { flex-wrap: wrap; padding-bottom: 0; justify-content: flex-start; }
  .nav-ctas { margin-left: auto; }
  .nav-toggle { display: block; order: 5; margin-left: 4px; }
  .nav-links {
    order: 6;
    flex-basis: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 10px;
    margin-top: 6px;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a { font-size: 0.85rem; padding: 8px 11px; }

  /* ☰ open → side drawer (banner style) sliding in from the left.
     The right edge stays uncovered so ☰ remains tappable to close. */
  .nav.open .nav-links {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--white);
    padding: 84px 26px 30px;
    margin: 0;
    border: none;
    box-shadow: 14px 0 44px rgba(27, 42, 94, 0.22);
    z-index: 200;
    animation: drawerIn .25s ease;
  }
  @keyframes drawerIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }
  .nav.open .nav-links a { display: block; font-size: 1.05rem; padding: 13px 14px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav.open .nav-links li:last-child a { border-bottom: none; }
  .nav.open .nav-links a.active { box-shadow: none; background: var(--offwhite); border-radius: 8px; }
}
@media (max-width: 480px) {
  .nav-links a { font-size: 0.82rem; padding: 7px 9px; }
}

/* ---------- Hero (photo-first) ---------- */
.hero-photo {
  padding: 0;
}
.hero-photo .container { max-width: 1280px; }
.hero-photo-frame {
  margin-top: 32px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero-photo-frame img { width: 100%; height: auto; max-height: 78vh; object-fit: cover; object-position: center 30%; }

/* ---------- Big statement ---------- */
.statement {
  text-align: center;
  padding: 88px 0 72px;
}
.statement h1 {
  margin-bottom: 0;
}
.statement .line-2 {
  display: block;
  color: var(--navy);
}
.statement .accent-dot { color: var(--pink); }

/* ---------- Story ---------- */
.story {
  background: var(--white);
}
.story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.story h2 { text-align: center; margin-bottom: 12px; }
.story .story-sub {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy-soft);
  font-style: italic;
  margin-bottom: 48px;
}
.story p { font-size: 1.04rem; line-height: 1.85; margin-bottom: 24px; }
.story p strong { color: var(--navy); }
.story .story-sig {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 48px;
  line-height: 1.6;
}
.story .divider {
  width: 60px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 40px auto;
}

/* ---------- Cards (inner pages) ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
}
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-3px); border-color: transparent; }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.04); }
.card-body { padding: 26px 26px 28px; }
.card-body .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.card-body .tag.pink { color: var(--pink); }
.card-body .tag.yellow { color: var(--yellow); }
.card-body h3 { margin-bottom: 8px; }
.card-body p { font-size: 0.93rem; margin-bottom: 16px; }
.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none !important;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: all .2s;
}
.card-link:hover { color: var(--blue); border-color: var(--blue); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1000px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.split-img img { width: 100%; height: auto; }

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
}
.stats-band .grid-4 { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---------- Feature rows ---------- */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: none; }
.feature-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.feature-row:nth-child(2n) .feature-ico { background: var(--pink-soft); }
.feature-row:nth-child(3n) .feature-ico { background: var(--yellow-soft); }
.feature-row h4 { margin-bottom: 4px; }
.feature-row p { font-size: 0.92rem; margin: 0; }

/* ---------- Packages ---------- */
.package {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.package:hover { box-shadow: var(--shadow-lift); border-color: transparent; }
.package.featured { border: 2px solid var(--navy); position: relative; }
.package.featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
}
.package .pk-name { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 4px; color: var(--navy); }
.package .pk-meta { font-size: 0.85rem; color: var(--navy-faint); margin-bottom: 18px; }
.package .pk-price { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 22px; color: var(--navy); }
.package .pk-price small { font-size: 0.95rem; color: var(--navy-faint); font-family: var(--font-body); }
.package ul { list-style: none; padding: 0; margin: 0 0 26px; flex-grow: 1; }
.package li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 0.92rem;
  color: var(--navy-soft);
  border-bottom: 1px solid var(--line);
}
.package li:last-child { border-bottom: none; }
.package li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }

/* ---------- Form ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 700px) { .form { grid-template-columns: 1fr; } }
.form .full { grid-column: 1 / -1; }
.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--navy);
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color .2s;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--navy); }
.form textarea { resize: vertical; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery a { border-radius: var(--radius-sm); overflow: hidden; display: block; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .4s ease; }
.gallery a:hover img { transform: scale(1.05); }

/* ---------- Reels ---------- */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items: center;
  align-items: start;
}
@media (max-width: 1000px) { .reels-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .reels-grid { grid-template-columns: 1fr; } }
.reels-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 800px; margin: 0 auto; }
@media (max-width: 640px) { .reels-grid.cols-2 { grid-template-columns: 1fr; } }
.reels-grid.cols-1 { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
.reel-frame { width: 100%; max-width: 360px; }
.reels-grid blockquote.instagram-media {
  width: 100% !important; min-width: 0 !important; max-width: 360px !important; margin: 0 !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) { .cta-band { grid-template-columns: 1fr; padding: 44px 32px; } }
.cta-band.pink { background: var(--pink-soft); }
.cta-band.yellow { background: var(--yellow-soft); }
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { margin-bottom: 22px; }

/* ---------- FAQ ---------- */
details.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 20px 26px;
  margin-bottom: 12px;
  transition: all .2s;
}
details.faq[open] { box-shadow: var(--shadow-soft); }
details.faq summary {
  font-weight: 600;
  font-size: 1.0rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq summary::after { content: "+"; font-size: 1.3rem; color: var(--navy-faint); transition: transform .2s; }
details.faq[open] summary::after { transform: rotate(45deg); }
details.faq p { margin: 14px 0 0; font-size: 0.94rem; }

/* ---------- Schedule ---------- */
.sched { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sched-row { display: flex; gap: 24px; padding: 18px 28px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.sched-row:last-child { border-bottom: none; }
.sched-row:nth-child(even) { background: var(--offwhite); }
.sched-time { font-weight: 600; min-width: 120px; color: var(--navy); }
.sched-act { color: var(--navy-soft); }

/* ---------- Map & steps ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.steps { counter-reset: step; list-style: none; padding: 0; margin: 20px 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 0 12px 52px;
  color: var(--navy-soft);
  font-size: 0.97rem;
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 8px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 36px;
  font-size: 0.92rem;
}
.footer a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer .grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 900px) { .footer .grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer .grid { grid-template-columns: 1fr; } }
.footer h4 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  transition: all .2s;
}
.footer-socials a:hover { background: #fff; color: var(--navy); }
.footer .legal {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Fade-up ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- Mobile ---------- */
@media (max-width: 720px) {
  :root { --section-pad: 60px; }
  .brand-logo { height: 38px; }
  .brand-logo-spa { height: 36px; }
  .statement { padding: 56px 0 44px; }
  .nav-cta { padding: 9px 14px; font-size: 0.82rem; }
}
@media (max-width: 480px) {
  .brand-divider { display: none; }
  .brand-logo, .brand-logo-spa { height: 34px; }
}
