/* ===========================================================
   Miss Liz IBG — shared stylesheet (v2)
   =========================================================== */

:root {
  --pink: #E8449E;
  --pink-dark: #B8267A;
  --pink-soft: #FBD7EC;
  --teal: #12BFBF;
  --teal-dark: #0D8F8F;
  --teal-soft: #CFF6F6;
  --purple: #8B4FE0;
  --purple-dark: #6A31B8;
  --purple-soft: #E7D9FB;
  --orange: #FF9D2F;
  --orange-dark: #D97D14;
  --orange-soft: #FFE4C2;
  --yellow: #FFD34D;
  --cream: #FFF9F2;
  --ink: #2A2020;
  --ink-soft: #5B4C4C;
  --white: #FFFFFF;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(42, 32, 32, 0.10);
  --shadow-sm: 0 4px 14px rgba(42, 32, 32, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Mulish", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fredoka", "Mulish", sans-serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

/* bigger type scale */
h1 { font-size: clamp(2.6rem, 5.8vw, 3.9rem); font-weight: 700; }
h2 { font-size: clamp(2.05rem, 4.2vw, 2.9rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* eyebrow badges: bigger, always black text, crisper background */
.eyebrow {
  display: inline-block;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--ink) !important;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--ink); }
.btn-pink { background: var(--pink); color: var(--white); }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-outline { background: transparent; border: 2px solid currentColor; box-shadow: none; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-link-pill:hover { transform: translateY(-2px); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,249,242,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--ink);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-family: "Fredoka"; font-weight: 700; font-size: 1.4rem; }
.nav-brand img { width: 46px; height: 46px; border-radius: 50%; }
.nav-links { display: flex; align-items: center; gap: 28px; font-family: "Fredoka"; font-weight: 600; font-size: 1.05rem; flex-wrap: wrap; }
.nav-links a { padding: 6px 2px; border-bottom: 3px solid transparent; }
.nav-links a:hover, .nav-links a.active { border-bottom-color: var(--pink); }
.nav-cta { background: var(--pink); color: var(--white); padding: 10px 22px; border-radius: 999px; font-weight: 700; white-space: nowrap; }
.nav-toggle { display: none; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: none; font-size: 1.6rem; cursor: pointer; }
  .nav-inner { flex-wrap: wrap; }
  .nav-links.open { display: flex; flex-direction: column; width: 100%; align-items: flex-start; gap: 10px; padding-top: 10px; }
}

/* ---------- Section blocks (color bands) ---------- */
.band { padding: 76px 0; position: relative; }
.band-cream { background: var(--cream); }
.band-pink { background: var(--pink); color: var(--white); }
.band-teal { background: var(--teal); color: var(--white); }
.band-purple { background: var(--purple); color: var(--white); }
.band-orange { background: var(--orange); color: var(--white); }
.band-yellow { background: var(--yellow); color: var(--ink); }
.band-white { background: var(--white); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 90px;
}
.hero-photo-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}
.hero-photo-wrap img { border-radius: var(--radius-md); width: 100%; }
.hero h1 span { color: var(--yellow); }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-photo-wrap { max-width: 340px; margin: 0 auto; transform: rotate(0); }
  .btn-row { justify-content: center; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
  margin-top: 40px;
}

/* forces all 5 cards into a single row on desktop, wraps on smaller screens */
.card-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.card-grid-5 .card { padding: 22px 18px; }
.card-grid-5 .card h3 { font-size: 1.1rem; }
.card-grid-5 .card p { font-size: 0.92rem; }
@media (max-width: 1000px) {
  .card-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .card-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .card-grid-5 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.card .icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }

/* sticky-note callout */
.sticky-note {
  background: var(--yellow);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  max-width: 640px;
  transform: rotate(-1.2deg);
  box-shadow: var(--shadow-sm);
  font-family: "Fredoka";
  font-size: 1.35rem;
  color: var(--ink);
}

/* ---------- Lesson / fee cards ---------- */
.lesson-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: start;
}
.lesson-card .badge {
  width: 66px; height: 66px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--white);
}
.lesson-price {
  display: inline-block;
  margin-top: 14px;
  font-family: "Fredoka";
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
@media (max-width: 600px) {
  .lesson-card { grid-template-columns: 1fr; }
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
}
.testimonial img { border-radius: var(--radius-md); object-fit: cover; width: 150px; height: 150px; }
.testimonial-name { font-family: "Fredoka"; font-weight: 600; color: var(--pink-dark); margin-top: 12px; }
.zh { color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 640px) {
  .testimonial { grid-template-columns: 1fr; }
  .testimonial img { width: 100%; height: 200px; }
}

/* ---------- Steps ---------- */
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  margin-bottom: 34px;
}
.step .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--white); color: var(--pink);
  font-family: "Fredoka"; font-weight: 700; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { font-family: "Fredoka"; color: var(--yellow); margin-bottom: 14px; }
.footer-grid a { display: block; margin-bottom: 8px; color: var(--cream); opacity: 0.85; }
.footer-grid a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 22px; font-size: 0.85rem; opacity: 0.7; text-align: center; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.max-prose { max-width: 720px; }
.mx-auto { margin-left: auto; margin-right: auto; }
ul.check { list-style: none; padding: 0; margin: 0; }
ul.check li { position: relative; padding-left: 30px; margin-bottom: 12px; }
ul.check li::before { content: "✓"; position: absolute; left: 0; font-weight: 700; color: var(--teal-dark); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-lang {
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  white-space: nowrap;
}
.nav-lang:hover { color: var(--pink); }

.nav-yt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FF0000;
  flex-shrink: 0;
}
.nav-yt svg {
  width: 16px;
  height: 16px;
  color: #fff;
}
.story-grid { display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:center; }
@media (max-width: 860px) {
  .story-grid { grid-template-columns: 1fr; text-align:center; }
  .story-grid .hero-photo-wrap { max-width:340px; margin:0 auto; transform:rotate(0); }
}
