/* =============================================
   PARKSIDE EDUCARE CENTER — MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800&display=swap');

/* ─── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:        #710627;
  --primary-dark:   #4e031a;
  --primary-light:  #9b1a3e;
  --coral:          #FF6B6B;
  --teal:           #4ECDC4;
  --yellow:         #FFD93D;
  --mint:           #6BCB77;
  --purple:         #9B8EC4;
  --bg:             #FFF9F5;
  --bg-alt:         #FEF3EB;
  --text:           #2D1B1E;
  --text-mid:       #5C3D45;
  --text-light:     #9A7E83;
  --white:          #FFFFFF;
  --shadow-sm:      0 2px 12px rgba(113,6,39,.10);
  --shadow-md:      0 6px 30px rgba(113,6,39,.14);
  --shadow-lg:      0 14px 50px rgba(113,6,39,.18);
  --radius-sm:      10px;
  --radius-md:      20px;
  --radius-lg:      32px;
  --radius-pill:    100px;
  --font-heading:   'Fredoka One', cursive;
  --font-body:      'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Utility ───────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(113,6,39,.08);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto 56px;
}

/* ─── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(113,6,39,.35);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 8px 28px rgba(113,6,39,.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255,255,255,.75);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.btn-light {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { box-shadow: var(--shadow-md); }

/* ─── Navigation ────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(113,6,39,.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.nav-brand-text { line-height: 1.15; }
.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--primary);
  letter-spacing: .01em;
}
.nav-brand-tagline {
  font-size: .7rem;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: .02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-mid);
  transition: background .2s, color .2s;
}

.nav-link span { font-size: 1rem; }
.nav-link:hover { background: var(--bg-alt); color: var(--primary); }
.nav-link.active { background: rgba(113,6,39,.09); color: var(--primary); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid rgba(113,6,39,.08);
  padding: 16px 24px 24px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link { padding: 12px 18px; }

/* ─── Page Banner (inner pages) ─────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}

.page-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 12px;
}
.page-banner p { font-size: 1.05rem; opacity: .85; }

.wave-divider {
  display: block;
  width: 100%;
  margin-top: -1px;
}

/* ─── HERO ──────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #c53060 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  opacity: .12;
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: var(--yellow);
  top: -120px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-2 {
  width: 320px; height: 320px;
  background: var(--teal);
  bottom: -80px; left: -60px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-blob-3 {
  width: 180px; height: 180px;
  background: var(--coral);
  top: 40%; left: 30%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-24px) rotate(8deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--yellow);
  position: relative;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  backdrop-filter: blur(4px);
}
.hero-badge-icon { font-size: 1.1rem; }

/* Floating mascots */
.hero-mascots {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mascot-card {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .3s;
  cursor: default;
}
.mascot-card:hover { transform: translateY(-6px) scale(1.04); }
.mascot-card:nth-child(1) { animation: float 7s ease-in-out infinite; }
.mascot-card:nth-child(2) { animation: float 9s ease-in-out infinite 1s; }
.mascot-card:nth-child(3) { animation: float 8s ease-in-out infinite 2s; }
.mascot-card:nth-child(4) { animation: float 6s ease-in-out infinite .5s; }

.mascot-emoji { font-size: 3rem; display: block; margin-bottom: 8px; }
.mascot-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  display: block;
}
.mascot-age {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  font-weight: 600;
}

/* ─── Highlights / Feature Cards ────────────── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.highlight-card::after {
  content: '';
  position: absolute;
  bottom: -30px; right: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  opacity: .07;
  transition: transform .4s;
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.highlight-card:hover::after { transform: scale(2); }

.highlight-card.coral { border-top-color: var(--coral); }
.highlight-card.coral::after { background: var(--coral); }
.highlight-card.teal  { border-top-color: var(--teal); }
.highlight-card.teal::after  { background: var(--teal); }
.highlight-card.yellow { border-top-color: var(--yellow); }
.highlight-card.yellow::after { background: var(--yellow); }
.highlight-card.mint  { border-top-color: var(--mint); }
.highlight-card.mint::after  { background: var(--mint); }

.highlight-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
}
.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text);
}
.highlight-text { font-size: .95rem; color: var(--text-mid); line-height: 1.65; }

/* ─── Pricing ───────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-6px); }

.pricing-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.pricing-featured .pricing-name { color: var(--white); }

.pricing-hours {
  font-size: .88rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.pricing-card.featured .pricing-hours { color: rgba(255,255,255,.7); }

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 28px;
}
.pricing-currency { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.pricing-card.featured .pricing-currency { color: var(--yellow); }
.pricing-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--text);
}
.pricing-card.featured .pricing-number { color: var(--white); }
.pricing-per { font-size: .85rem; color: var(--text-light); align-self: flex-end; margin-bottom: 4px; }
.pricing-card.featured .pricing-per { color: rgba(255,255,255,.7); }

.pricing-features { margin-bottom: 30px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(113,6,39,.06);
  color: var(--text-mid);
}
.pricing-card.featured .pricing-feature {
  border-bottom-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-check { font-size: 1.1rem; }

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 24px;
  background: rgba(113,6,39,.05);
  border-radius: var(--radius-md);
  font-size: .9rem;
  color: var(--text-mid);
}
.pricing-note strong { color: var(--primary); }

/* Aftercare table */
.aftercare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.aftercare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.aftercare-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(113,6,39,.1);
}

.aftercare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(113,6,39,.05);
  font-size: .88rem;
}
.aftercare-row:last-child { border-bottom: none; }
.aftercare-desc { color: var(--text-mid); flex: 1; }
.aftercare-time { color: var(--text-light); font-size: .8rem; display: block; }
.aftercare-price {
  font-weight: 800;
  color: var(--primary);
  white-space: nowrap;
  margin-left: 12px;
}

/* ─── Classes Page ──────────────────────────── */
.class-cards { display: flex; flex-direction: column; gap: 60px; }

.class-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.class-card:hover { box-shadow: var(--shadow-md); }
.class-card.reverse { direction: rtl; }
.class-card.reverse > * { direction: ltr; }

.class-mascot-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.class-emoji-big {
  font-size: 8rem;
  display: block;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.12));
}

.class-age-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 24px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .9rem;
  color: var(--white);
}

.class-name {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 6px;
}
.class-grade {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.class-teacher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}
.class-description {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.class-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.class-tag {
  background: rgba(113,6,39,.07);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  font-weight: 700;
}

/* class color themes */
.class-card.dino .class-name { color: #2e7d32; }
.class-card.dino .class-age-badge { background: linear-gradient(135deg, #43a047, #1b5e20); }
.class-card.dino .class-emoji-big { animation-delay: 0s; }

.class-card.dolphin .class-name { color: #0277bd; }
.class-card.dolphin .class-age-badge { background: linear-gradient(135deg, #0288d1, #01579b); }
.class-card.dolphin .class-emoji-big { animation-delay: 1s; }

.class-card.teddy .class-name { color: #e65100; }
.class-card.teddy .class-age-badge { background: linear-gradient(135deg, #ef6c00, #bf360c); }
.class-card.teddy .class-emoji-big { animation-delay: 2s; }

.class-card.bunny .class-name { color: var(--primary); }
.class-card.bunny .class-age-badge { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.class-card.bunny .class-emoji-big { animation-delay: .5s; }

/* ─── Contact Page ──────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-icon.coral { background: rgba(255,107,107,.12); }
.contact-icon.teal  { background: rgba(78,205,196,.12); }
.contact-icon.yellow { background: rgba(255,217,61,.15); }
.contact-icon.mint  { background: rgba(107,203,119,.12); }

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-card-text {
  font-size: .92rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.contact-card-text a { color: var(--primary); font-weight: 700; }
.contact-card-text a:hover { text-decoration: underline; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* Hours table */
.hours-section { margin-top: 60px; }
.hours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.hours-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
}
.hours-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .9rem;
  border-bottom: 1px solid rgba(113,6,39,.06);
}
.hours-row:last-child { border-bottom: none; }
.hours-label { color: var(--text-mid); }
.hours-time { font-weight: 700; color: var(--text); }

/* ─── Footer ────────────────────────────────── */
.site-footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: rgba(255,255,255,.85);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
}
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.footer-blurb {
  font-size: .9rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-link:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: 8px;
}

/* ─── Scroll Animations ─────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ─── Responsive ────────────────────────────── */
@media (max-width: 960px) {
  .hero-mascots { display: none; }
  .hero-content { max-width: 100%; }

  .class-card { grid-template-columns: 1fr; padding: 36px 28px; gap: 28px; }
  .class-card.reverse { direction: ltr; }
  .class-emoji-big { font-size: 5rem; }
  .class-mascot-area { flex-direction: row; justify-content: flex-start; }

  .contact-grid { grid-template-columns: 1fr; }
  .aftercare-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 80px 0 60px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .pricing-card.featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .class-mascot-area { flex-direction: column; align-items: center; }
  .class-name { font-size: 1.9rem; }
  .class-mascot-img { max-width: 140px; }
}

/* ─── Brand Logo Image ──────────────────────── */
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(113,6,39,.2);
}

/* ─── Class Mascot Images ───────────────────── */
.class-mascot-img {
  max-width: 200px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.14));
  animation: float 7s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

.class-preview-img {
  height: 90px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto 14px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.10));
}

/* ─── Diagonal Pricing Section ──────────────── */
.pricing-diagonal {
  background: #eaf4d8;
  clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
  padding: 10rem 0;
  position: relative;
}
@media (max-width: 640px) {
  .pricing-diagonal {
    clip-path: polygon(0 3%, 100% 0%, 100% 97%, 0% 100%);
    padding: 6rem 0;
  }
}
.pricing-diagonal .section-label { background: rgba(60,90,20,.10); color: #3d6017; }
.pricing-diagonal .pricing-note  { background: rgba(60,90,20,.08); }
.pricing-diagonal .pricing-note strong { color: #3d6017; }
.pricing-diagonal .pricing-note a      { color: #3d6017; }

/* ─── Leaves Texture Overlay ────────────────── */
.leaves-section { position: relative; }
.leaves-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../public/img/tiles/leaves.png');
  background-repeat: repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}
.leaves-section > .container       { position: relative; z-index: 1; }
.leaves-section .highlights-grid   { position: relative; z-index: 1; }

/* ─── Watercolor Texture (Classes Page) ─────── */
.watercolor-section {
  position: relative;
  background-image: url('../public/img/tiles/watercolor-blue.jpg');
  background-size: cover;
  background-position: center;
}
.watercolor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.88);
  z-index: 0;
  pointer-events: none;
}
.watercolor-section > .container { position: relative; z-index: 1; }
.watercolor-section .class-cards { position: relative; z-index: 1; }

/* ─── Page Banner with Classroom Image ──────── */
.page-banner.with-image {
  background:
    linear-gradient(135deg, rgba(78,3,26,.88) 0%, rgba(113,6,39,.82) 50%, rgba(155,26,62,.88) 100%),
    url('../public/img/banner/classroom.jpg');
  background-size: auto, cover;
  background-position: center, center top;
}
