/* ===========================================================
   HAPPY HIVE FAMILY DAYCARE — Design System
   Pastel palette pulled from the logo (honey + bee + nursery)
   =========================================================== */

:root {
  /* Pastel core */
  --honey: #F5B82E;
  --honey-soft: #FFD66B;
  --honey-cream: #FFF4D6;
  --pink: #FFB6C1;
  --pink-soft: #FFD7E1;
  --lavender: #C8B6FF;
  --lavender-soft: #E4DBFF;
  --mint: #B8E8D6;
  --mint-soft: #DAF2E9;
  --peach: #FFCBA4;
  --peach-soft: #FFE4D0;
  --sky: #BEE3F8;
  --sky-soft: #DCEEFB;

  /* Neutrals */
  --cream: #FFFAF0;
  --cream-deep: #FFF4DD;
  --ink: #4A3424;       /* warm brown body text */
  --ink-soft: #7A6552;
  --line: #F2E5C8;
  --white: #FFFFFF;

  /* Brand actions */
  --brand: #F5B82E;
  --brand-dark: #E29F12;
  --accent: #C8B6FF;
  --accent-pink: #FF9EB5;

  /* Layout */
  --maxw: 1180px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(74, 52, 36, 0.06);
  --shadow: 0 12px 30px rgba(74, 52, 36, 0.08);
  --shadow-lg: 0 24px 60px rgba(74, 52, 36, 0.12);

  /* Type */
  --font-head: 'Fredoka', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: 'Nunito', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-script: 'Caveat', cursive;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brand-dark); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p { margin: 0 0 1em; }

/* ============ Utility ============ */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.center { text-align: center; }
.section { padding: clamp(60px, 9vw, 110px) 0; position: relative; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: .25em;
  transform: rotate(-2deg);
}
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 620px; }
.muted { color: var(--ink-soft); }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1rem;
  border: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--honey) 0%, #FFA500 100%);
  color: #4A2D00;
  box-shadow: 0 8px 20px rgba(245, 184, 46, .35);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 30px rgba(245, 184, 46, .5);
  color: #4A2D00;
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--honey);
}
.btn-outline:hover { background: var(--honey-cream); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ============ NOW ENROLLING sticky banner ============ */
.now-enrolling {
  position: relative;
  z-index: 60;
  background: linear-gradient(90deg, var(--honey) 0%, #FFC93C 50%, var(--honey) 100%);
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
  color: #4A2D00;
  font-family: var(--font-head);
  font-weight: 600;
  text-align: center;
  padding: 10px 44px 10px 18px;
  font-size: .95rem;
  box-shadow: 0 2px 0 rgba(0,0,0,.05);
}
.now-enrolling .pulse {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #C8102E; margin-right: 8px; vertical-align: middle;
  animation: pulse 1.6s ease-out infinite;
}
.now-enrolling a { text-decoration: underline; font-weight: 700; }
.now-enrolling .close-banner {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.08); border: 0; width: 26px; height: 26px;
  border-radius: 50%; line-height: 1; font-size: 16px; color: inherit;
}
.now-enrolling .close-banner:hover { background: rgba(0,0,0,.16); }
@keyframes shimmer { 0% { background-position: 0 0; } 100% { background-position: 200% 0; } }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200,16,46,.55); }
  70% { box-shadow: 0 0 0 10px rgba(200,16,46,0); }
  100% { box-shadow: 0 0 0 0 rgba(200,16,46,0); }
}

/* ============ Header / Nav ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,250,240,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(242, 229, 200, .5);
  transition: padding .25s, box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 6px 20px rgba(74,52,36,.06); }
.nav {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { width: 56px; height: 56px; border-radius: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
  color: var(--brand-dark);
}
.brand-text .tag {
  font-family: var(--font-script); font-size: .95rem; color: var(--ink-soft);
}
.nav-links { display: flex; gap: 6px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: inline-block; padding: 9px 14px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { background: var(--honey-cream); color: var(--brand-dark); }
.nav-cta { margin-left: 8px; }

.hamburger {
  display: none; width: 44px; height: 44px;
  border-radius: 12px; border: 0; background: var(--honey-cream);
  position: relative;
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px;
  background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s, top .3s;
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(86%, 360px);
  background: var(--cream);
  transform: translateX(100%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  z-index: 70; padding: 90px 28px 28px;
  box-shadow: -20px 0 60px rgba(74,52,36,.16);
  overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0; }
.mobile-drawer li a {
  display: block; padding: 14px 4px; font-size: 1.15rem; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn { margin-top: 22px; width: 100%; justify-content: center; }
.scrim {
  position: fixed; inset: 0; background: rgba(74,52,36,.35);
  opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 65;
}
.scrim.show { opacity: 1; pointer-events: auto; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 90px) 0 clamp(60px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, var(--honey-cream) 0%, transparent 40%),
    radial-gradient(circle at 88% 18%, var(--sky-soft) 0%, transparent 38%),
    radial-gradient(circle at 60% 90%, var(--mint-soft) 0%, transparent 42%),
    linear-gradient(180deg, var(--cream) 0%, #FFF4DD 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center;
}
.hero h1 { margin-top: .25em; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent-pink) 50%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { font-size: 1.15rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 1.6em; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 28px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
  font-size: .9rem; color: var(--ink-soft);
}
.hero-trust .dot { width: 4px; height: 4px; background: var(--ink-soft); border-radius: 50%; opacity: .4; }

.hero-art {
  position: relative; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
}
.hero-art .logo-disc {
  position: relative; width: 88%; max-width: 460px; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--white), var(--honey-cream) 70%, var(--honey-soft));
  box-shadow: 0 30px 80px rgba(245,184,46,.35), inset 0 -10px 30px rgba(245,184,46,.18);
  display: flex; align-items: center; justify-content: center;
  animation: float 6s ease-in-out infinite;
}
.hero-art .logo-disc img { width: 92%; border-radius: 50%; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* Decorative pastel orbs in hero */
.orb {
  position: absolute; border-radius: 50%; filter: blur(0.5px); opacity: .85;
  pointer-events: none;
}
.orb.o1 { width: 90px; height: 90px; background: var(--pink); top: 8%; left: 6%; animation: drift 9s ease-in-out infinite; }
.orb.o2 { width: 64px; height: 64px; background: var(--lavender); bottom: 14%; left: 12%; animation: drift 11s ease-in-out infinite reverse; }
.orb.o3 { width: 110px; height: 110px; background: var(--mint); top: 12%; right: 10%; animation: drift 13s ease-in-out infinite; }
.orb.o4 { width: 70px; height: 70px; background: var(--peach); bottom: 10%; right: 8%; animation: drift 10s ease-in-out infinite reverse; }
@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(18px,-22px) scale(1.06); }
}

/* ============ Floating bees ============ */
.bees { position: fixed; inset: 0; pointer-events: none; z-index: 5; overflow: hidden; }
.bee {
  position: absolute;
  width: 38px; height: 38px;
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.12));
  animation: bee-flutter 0.18s steps(2) infinite;
  will-change: transform;
}
@keyframes bee-flutter {
  0% { transform: translateY(0); }
  100% { transform: translateY(-1px); }
}
/* svg bee paths get assigned by JS to vary path/duration */

/* ============ Cards / sections ============ */
.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.value-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 24px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--line);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-icon {
  width: 76px; height: 76px; margin: 0 auto 14px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.value-card.c1 .value-icon { background: var(--pink-soft); color: #C44569; }
.value-card.c2 .value-icon { background: var(--mint-soft); color: #22885E; }
.value-card.c3 .value-icon { background: var(--lavender-soft); color: #6A4FBE; }
.value-card.c4 .value-icon { background: var(--peach-soft); color: #B85C20; }
.value-card h3 { margin: 8px 0 6px; }
.value-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* Honeycomb decorative pattern strip */
.hex-strip {
  height: 40px;
  background-image:
    radial-gradient(circle at center, var(--honey) 8%, transparent 8%),
    radial-gradient(circle at center, var(--honey-cream) 8%, transparent 8%);
  background-size: 36px 36px;
  background-position: 0 0, 18px 18px;
  opacity: .25;
}

/* Programs cards */
.programs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.program-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  border: 1px solid var(--line);
}
.program-card::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  opacity: .35;
}
.program-card.weekday::before { background: var(--mint); }
.program-card.weekend::before { background: var(--pink); }
.program-card .pill {
  display: inline-block; font-size: .8rem; font-weight: 700;
  padding: 6px 14px; border-radius: 999px; background: var(--honey-cream); color: var(--brand-dark);
  letter-spacing: .04em; text-transform: uppercase;
  position: relative; z-index: 1;
}
.program-card h3 { margin-top: 14px; font-size: 1.5rem; position: relative; z-index: 1; }
.program-card .hours { color: var(--ink-soft); font-weight: 600; margin-bottom: 14px; position: relative; z-index: 1; }
.program-card ul { margin: 0; padding-left: 0; list-style: none; position: relative; z-index: 1; }
.program-card ul li { padding: 8px 0 8px 26px; position: relative; }
.program-card ul li::before {
  content: "🐝"; position: absolute; left: 0; top: 6px; font-size: 16px;
}

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: var(--white); padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--line); position: relative;
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: "“"; position: absolute; top: -10px; left: 22px;
  font-family: Georgia, serif; font-size: 90px; color: var(--honey-soft); line-height: 1;
}
.testimonial p { font-style: italic; color: var(--ink); margin: 22px 0 18px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .who .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-family: var(--font-head); font-size: 1rem;
}
.testimonial .who .a1 { background: linear-gradient(135deg, var(--pink), #FF85A2); }
.testimonial .who .a2 { background: linear-gradient(135deg, var(--lavender), #9F88E0); }
.testimonial .who .a3 { background: linear-gradient(135deg, var(--mint), #6FC9A0); }
.testimonial .who strong { display: block; font-size: .98rem; }
.testimonial .who small { color: var(--ink-soft); }
.stars { color: var(--honey); letter-spacing: 2px; font-size: .9rem; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--honey) 0%, #FFC93C 50%, var(--peach) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(245,184,46,.3);
  position: relative; overflow: hidden;
}
.cta-banner h2 { color: #4A2D00; max-width: 600px; margin: 0; }
.cta-banner p { color: #5A3E10; max-width: 540px; margin: 8px 0 0; }
.cta-banner::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,.4) 0%, transparent 70%);
  border-radius: 50%;
}

/* Instagram embed */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ig-tile {
  aspect-ratio: 1; border-radius: 14px; overflow: hidden; position: relative;
  background: var(--cream-deep); display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-size: 36px; transition: transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.ig-tile:hover { transform: scale(1.04); box-shadow: var(--shadow); z-index: 1; }
.ig-tile.t1 { background: linear-gradient(135deg, var(--pink-soft), var(--peach-soft)); }
.ig-tile.t2 { background: linear-gradient(135deg, var(--lavender-soft), var(--sky-soft)); }
.ig-tile.t3 { background: linear-gradient(135deg, var(--mint-soft), var(--honey-cream)); }
.ig-tile.t4 { background: linear-gradient(135deg, var(--peach-soft), var(--pink-soft)); }
.ig-tile.t5 { background: linear-gradient(135deg, var(--sky-soft), var(--mint-soft)); }
.ig-tile.t6 { background: linear-gradient(135deg, var(--honey-cream), var(--peach-soft)); }
.ig-tile.t7 { background: linear-gradient(135deg, var(--lavender-soft), var(--pink-soft)); }
.ig-tile.t8 { background: linear-gradient(135deg, var(--mint-soft), var(--sky-soft)); }
.ig-cta { text-align: center; margin-top: 22px; }

/* Footer */
.footer {
  background: linear-gradient(180deg, var(--cream-deep) 0%, #FFE9B8 100%);
  padding: 70px 0 28px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  position: relative;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-head); font-size: 1rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: var(--brand-dark);
  margin-bottom: 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { padding: 4px 0; }
.footer .brand img { width: 64px; height: 64px; }
.footer .map-frame {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.footer .map-frame iframe { display: block; width: 100%; height: 100%; border: 0; min-height: 200px; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
  color: var(--brand-dark);
}
.socials a:hover { transform: translateY(-3px) rotate(-4deg); box-shadow: var(--shadow); color: var(--accent-pink); }
.footer-bottom {
  border-top: 1px solid rgba(74,52,36,.1); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; font-size: .88rem; color: var(--ink-soft);
}

/* ============ Forms ============ */
.form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.form-section + .form-section { margin-top: 28px; padding-top: 28px; border-top: 1px dashed var(--line); }
.form-section h3 { display: flex; align-items: center; gap: 10px; }
.form-section h3 .num {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--honey); color: #4A2D00;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 14px; }
.form-row.one { grid-template-columns: 1fr; }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
.field label {
  display: block; font-weight: 700; font-size: .9rem;
  margin-bottom: 6px; color: var(--ink);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px;
  border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--cream); color: var(--ink);
  font-family: inherit; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--honey);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(245,184,46,.18);
}
.field textarea { resize: vertical; min-height: 100px; }
.field .hint { font-size: .82rem; color: var(--ink-soft); margin-top: 4px; }
.field.required label::after { content: " *"; color: #D14343; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.check-card {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px;
  background: var(--cream); cursor: pointer; transition: border-color .2s, background .2s;
}
.check-card:hover { background: var(--honey-cream); border-color: var(--honey); }
.check-card input { margin-top: 4px; accent-color: var(--honey); }
.check-card span { font-size: .95rem; }
.form-success {
  display: none; padding: 22px; border-radius: var(--radius);
  background: var(--mint-soft); border: 1.5px solid var(--mint); color: #1F6B4E; margin-bottom: 22px;
}
.form-error {
  display: none; padding: 14px 18px; border-radius: 12px;
  background: #FCE9E9; border: 1.5px solid #F5A6A6; color: #952424; margin-bottom: 14px;
}

/* ============ Page hero (small) ============ */
.page-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(circle at 20% 30%, var(--pink-soft) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--lavender-soft) 0%, transparent 40%),
    var(--cream);
  text-align: center;
}
.page-hero h1 { margin-bottom: .3em; }
.page-hero .crumbs { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; }

/* ============ Reveal animation ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

/* ============ Map (full) ============ */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--line); background: var(--white);
}
.map-wrap iframe { display: block; width: 100%; height: 480px; border: 0; }

/* ============ Tuition cards ============ */
.tuition-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tuition-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 26px; text-align: center;
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.tuition-card.featured {
  border-color: var(--honey); box-shadow: 0 18px 40px rgba(245,184,46,.25);
}
.tuition-card.featured::before {
  content: "Most popular"; position: absolute; top: 14px; right: -36px;
  background: var(--honey); color: #4A2D00;
  font-size: .72rem; font-weight: 700; padding: 4px 40px;
  transform: rotate(40deg); letter-spacing: .04em; text-transform: uppercase;
}
.tuition-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tuition-card .price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--brand-dark); margin: 6px 0; }
.tuition-card .price small { font-size: 1rem; color: var(--ink-soft); font-weight: 500; }
.tuition-card ul { list-style: none; padding: 0; margin: 18px 0; text-align: left; }
.tuition-card ul li { padding: 8px 0 8px 26px; position: relative; font-size: .95rem; color: var(--ink); }
.tuition-card ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--mint); color: #1F6B4E;
  font-size: 11px; line-height: 18px; font-weight: 700; text-align: center;
}

/* ============ About / schedule ============ */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.split.reverse { grid-template-columns: .9fr 1.1fr; }
.split img, .split .image-card {
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  background: linear-gradient(135deg, var(--honey-cream), var(--peach-soft));
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  font-size: 80px;
}

.daily-schedule { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.daily-schedule .row {
  display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 12px 0;
  border-bottom: 1px dashed var(--line); align-items: baseline;
}
.daily-schedule .row:last-child { border-bottom: 0; }
.daily-schedule .time { font-weight: 700; color: var(--brand-dark); font-family: var(--font-head); }
.daily-schedule .what strong { display: block; }
.daily-schedule .what small { color: var(--ink-soft); }

/* ============ Gallery ============ */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 28px;
}
.gallery-filters button {
  padding: 8px 18px; border-radius: 999px;
  background: var(--white); border: 1.5px solid var(--line);
  color: var(--ink); font-weight: 700; font-family: var(--font-body); font-size: .92rem;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
}
.gallery-filters button:hover { background: var(--honey-cream); border-color: var(--honey); }
.gallery-filters button.active {
  background: var(--honey); color: #4A2D00; border-color: var(--honey);
}

.gallery-grid {
  column-count: 3; column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  display: block;
}
.gallery-item:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-lg); }
.gallery-item img {
  width: 100%; height: auto; display: block;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item .placeholder {
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(48px, 8vw, 90px);
  aspect-ratio: var(--ph-ratio, 4/3);
}
.gallery-item.tall .placeholder { aspect-ratio: 3/4; }
.gallery-item.wide .placeholder { aspect-ratio: 16/10; }
.gallery-item .ph-1 { background: linear-gradient(135deg, var(--pink-soft), var(--peach-soft)); }
.gallery-item .ph-2 { background: linear-gradient(135deg, var(--lavender-soft), var(--sky-soft)); }
.gallery-item .ph-3 { background: linear-gradient(135deg, var(--mint-soft), var(--honey-cream)); }
.gallery-item .ph-4 { background: linear-gradient(135deg, var(--peach-soft), var(--pink-soft)); }
.gallery-item .ph-5 { background: linear-gradient(135deg, var(--sky-soft), var(--mint-soft)); }
.gallery-item .ph-6 { background: linear-gradient(135deg, var(--honey-cream), var(--peach-soft)); }
.gallery-item .ph-7 { background: linear-gradient(135deg, var(--lavender-soft), var(--pink-soft)); }
.gallery-item .ph-8 { background: linear-gradient(135deg, var(--mint-soft), var(--sky-soft)); }
.gallery-item .caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(to top, rgba(74,52,36,.8), transparent);
  color: #fff; font-weight: 600; font-size: .92rem;
  opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s;
  font-family: var(--font-head);
}
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(74,52,36,.92);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.lightbox.open { display: flex; animation: fadeIn .3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-content {
  max-width: 95vw; max-height: 88vh;
  position: relative;
  animation: zoomIn .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes zoomIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-content img,
.lightbox-content .placeholder {
  max-width: 100%; max-height: 88vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  display: block; margin: 0 auto;
}
.lightbox-content .placeholder {
  width: min(80vw, 700px); aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 140px;
}
.lightbox-caption {
  text-align: center; color: #fff; margin-top: 14px;
  font-family: var(--font-head); font-size: 1rem;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,.15); border: 0;
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,.3); transform: scale(1.08);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { top: 50%; left: 20px; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox-next { top: 50%; right: 20px; transform: translateY(-50%); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }

@media (max-width: 800px) {
  .gallery-grid { column-count: 2; }
}
@media (max-width: 480px) {
  .gallery-grid { column-count: 1; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============ Admin ============ */
.admin-shell {
  max-width: 1100px; margin: 0 auto; padding: 30px 22px;
}
.admin-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--line);
}
.admin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat {
  background: linear-gradient(135deg, var(--honey-cream), var(--white));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px;
}
.stat .num { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--brand-dark); }
.stat .lbl { color: var(--ink-soft); font-size: .9rem; }
.inquiry-list { list-style: none; padding: 0; margin: 0; }
.inquiry-list li {
  padding: 16px; border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 12px; background: var(--cream);
}
.inquiry-list .meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .88rem; color: var(--ink-soft); }
.inquiry-list strong { font-size: 1rem; }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 420px; margin: 0 auto; }
  /* Tone down floating orbs on tablet so they don't overlap text */
  .orb { opacity: .35; }
  .orb.o1, .orb.o3 { width: 70px; height: 70px; }
  .orb.o2, .orb.o4 { width: 50px; height: 50px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .tuition-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .admin-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: inline-block; }
}
@media (max-width: 760px) {
  /* Hide floating orbs on phone — they overlap hero text */
  .orb { display: none; }
}

@media (max-width: 560px) {
  .nav { padding: 10px 16px; }
  .brand img { width: 46px; height: 46px; }
  .brand-text .name { font-size: 1rem; }
  .brand-text .tag { font-size: .85rem; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .now-enrolling { font-size: .85rem; padding: 9px 38px 9px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important; scroll-behavior: auto !important;
  }
}
