/* ========================================
   HONEY BEE BILINGUAL PRESCHOOL
   "The Golden Hive" — Premium Preschool Design
   ======================================== */

:root {
  /* Honey palette */
  --honey:        #F5A623;
  --honey-light:  #FFD54F;
  --honey-dark:   #D4910B;
  --honey-glow:   #FFF3D6;
  --honey-cream:  #FFFDF7;

  /* Accent colors — playful & rich */
  --coral:        #E8708A;
  --coral-light:  #FDE8ED;
  --sky:          #5BB5E8;
  --sky-light:    #E3F2FD;
  --sage:         #6BBF59;
  --sage-light:   #E8F5E3;
  --lavender:     #9B8FD9;
  --lavender-light:#EDE8F5;
  --peach:        #FFAB76;

  /* Neutrals */
  --ink:          #2A1F14;
  --ink-soft:     #5C4D3C;
  --ink-muted:    #8B7D6B;
  --sand:         #F5F0E8;
  --white:        #FFFFFF;
  --warm-white:   #FFFDF7;

  /* System */
  --shadow-sm:    0 2px 8px rgba(42,31,20,0.06);
  --shadow-md:    0 8px 30px rgba(42,31,20,0.08);
  --shadow-lg:    0 20px 60px rgba(42,31,20,0.12);
  --shadow-honey: 0 8px 30px rgba(245,166,35,0.25);
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --font-head:    'Baloo 2', cursive;
  --font-body:    'DM Sans', sans-serif;
  --nav-h:        76px;
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
strong { font-weight: 600; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-honey { color: var(--honey); }

/* ========== TYPOGRAPHY ========== */
.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.section-label--center { justify-content: center; }
.section-label span {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--honey-dark);
}
.section-label__line {
  width: 40px;
  height: 3px;
  background: var(--honey);
  border-radius: 3px;
}
.section-label__line--light { background: var(--honey-light); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 580px;
  margin: 0 auto 56px;
  line-height: 1.8;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-bounce);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn--honey {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-honey);
}
.btn--honey:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245,166,35,0.35);
}

.btn--glass {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--glass:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
}

.btn--full { width: 100%; }
.btn--lg { padding: 18px 40px; font-size: 1.1rem; }

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,253,247,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.4s var(--ease-smooth);
}
.nav--scrolled {
  background: rgba(255,253,247,0.96);
  box-shadow: 0 4px 30px rgba(42,31,20,0.08);
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-bee {
  font-size: 1.8rem;
  line-height: 1;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  background: linear-gradient(135deg, var(--honey) 30%, var(--honey-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s var(--ease-smooth);
}
.nav__links a:not(.nav__cta):not(.nav__dropdown-trigger):hover {
  color: var(--honey-dark);
  background: var(--honey-glow);
}
.nav__cta {
  background: linear-gradient(135deg, var(--honey), var(--honey-dark)) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  box-shadow: 0 4px 16px rgba(245,166,35,0.3);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,166,35,0.4) !important;
}

/* Nav Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown-trigger svg {
  transition: transform 0.3s;
}
.nav__dropdown:hover .nav__dropdown-trigger svg {
  transform: rotate(180deg);
}
.nav__dropdown:hover .nav__dropdown-trigger {
  color: var(--honey-dark);
  background: var(--honey-glow);
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-smooth);
  z-index: 1001;
  border: 1px solid var(--honey-glow);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu li a {
  display: block;
  padding: 10px 16px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 0.9rem !important;
  color: var(--ink-soft) !important;
  transition: all 0.2s !important;
}
.nav__dropdown-menu li a:hover {
  background: var(--honey-glow) !important;
  color: var(--honey-dark) !important;
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ========== BREADCRUMB ========== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
}
.breadcrumb a {
  color: var(--honey);
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--honey-dark);
}
.breadcrumb__sep {
  color: var(--ink-muted);
  opacity: 0.5;
}
.breadcrumb span:last-child {
  color: var(--ink-muted);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 20px) 24px 100px;
  background: linear-gradient(145deg, #FFF8E7 0%, #FFE9B0 25%, #FFD54F 55%, #F5A623 85%, #E8960E 100%);
  overflow: hidden;
}

/* Bilingual Welcome Banner */
.hero__bilingual-banner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease-out;
}
.hero__bilingual-en {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.hero__bilingual-divider {
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}
.hero__bilingual-es {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--honey-cream);
  font-style: italic;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero badge — LARGER for bilingual emphasis */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero__badge--large {
  padding: 12px 28px;
  font-size: 1rem;
  gap: 12px;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.hero__badge-flag {
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.hero__badge-dot {
  width: 8px; height: 8px;
  background: #6BBF59;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Floating honeycomb cells */
.hcomb {
  position: absolute;
  width: 100px; height: 100px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.08;
  background: var(--white);
}
.hcomb--1 { top: 8%; right: 12%; width: 140px; height: 140px; animation: floatHex 12s ease-in-out infinite; }
.hcomb--2 { top: 25%; left: 3%; width: 80px; height: 80px; animation: floatHex 10s ease-in-out infinite 1s; }
.hcomb--3 { bottom: 25%; right: 5%; width: 60px; height: 60px; animation: floatHex 14s ease-in-out infinite 2s; }
.hcomb--4 { top: 60%; left: 8%; width: 100px; height: 100px; animation: floatHex 11s ease-in-out infinite 0.5s; }
.hcomb--5 { top: 15%; left: 25%; width: 50px; height: 50px; animation: floatHex 13s ease-in-out infinite 3s; }
.hcomb--6 { bottom: 15%; left: 20%; width: 70px; height: 70px; animation: floatHex 15s ease-in-out infinite 1.5s; }
.hcomb--7 { top: 40%; right: 20%; width: 90px; height: 90px; animation: floatHex 9s ease-in-out infinite 2.5s; }
.hcomb--8 { bottom: 35%; right: 30%; width: 45px; height: 45px; animation: floatHex 16s ease-in-out infinite 4s; }

@keyframes floatHex {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

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

.hero__content { padding-right: 20px; }

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(42,31,20,0.1);
}
.hero__word {
  display: inline-block;
  position: relative;
  padding: 0 4px;
}
.hero__word--play {
  color: #FF8F3F;
  transform: rotate(-2deg);
  text-decoration: underline;
  text-decoration-color: rgba(255,143,63,0.4);
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
  text-decoration-style: wavy;
}
.hero__word--learn {
  color: var(--sky);
  transform: rotate(1deg);
}
.hero__word--grow {
  color: var(--sage);
  transform: rotate(-1deg);
}
.hero__comma, .hero__amp {
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  max-width: 460px;
  line-height: 1.8;
}
.hero__sub strong { color: var(--white); font-weight: 600; }

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.hero__trust-sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* Hero Image Placeholders */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 16px;
}
.hero__main-image {
  width: 100%;
  max-width: 420px;
}
.hero__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-xl);
  border: 3px dashed rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(5px);
  transition: all 0.4s var(--ease-bounce);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.hero__image-placeholder:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}
.hero__image-placeholder--main {
  height: 280px;
  padding: 24px;
}
.hero__image-placeholder--small {
  height: 120px;
  padding: 16px;
  font-size: 0.75rem;
}
.hero__secondary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  max-width: 420px;
}

/* Hero hex visual grid */
.hero__hexgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 300px;
  transform: rotate(3deg);
  margin-top: 16px;
}
.hero__hex {
  aspect-ratio: 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: transform 0.5s var(--ease-bounce);
}
.hero__hex:hover { transform: scale(1.1); }
.hero__hex-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.05);
}
/* Offset odd row */
.hero__hex--2 { transform: translateY(50%); }
.hero__hex--5 { transform: translateY(50%); }
.hero__hex--7 { grid-column: 2; }

/* Wave bottom */
.hero__wave {
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  z-index: 3;
  line-height: 0;
}
.hero__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ========== BEES ========== */
.bee {
  position: absolute;
  z-index: 10;
  filter: drop-shadow(0 6px 12px rgba(42,31,20,0.15));
  pointer-events: none;
}
.bee--1 { top: 18%; right: 10%; animation: beePath1 9s ease-in-out infinite; }
.bee--2 { top: 50%; left: 4%; animation: beePath2 11s ease-in-out infinite; }
.bee--3 { top: 30%; left: 22%; animation: beePath3 13s ease-in-out infinite; }

.bee__wings {
  animation: wingFlap 0.15s ease-in-out infinite alternate;
  transform-origin: center 20px;
}
@keyframes wingFlap {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0.7); }
}

@keyframes beePath1 {
  0%, 100% { transform: translate(0, 0) rotate(-5deg); }
  25% { transform: translate(-40px, -25px) rotate(8deg); }
  50% { transform: translate(25px, -50px) rotate(-3deg); }
  75% { transform: translate(-20px, 15px) rotate(10deg); }
}
@keyframes beePath2 {
  0%, 100% { transform: translate(0, 0) rotate(3deg) scaleX(-1); }
  25% { transform: translate(50px, -20px) rotate(-5deg) scaleX(-1); }
  50% { transform: translate(25px, 30px) rotate(6deg) scaleX(-1); }
  75% { transform: translate(-25px, -15px) rotate(-3deg) scaleX(-1); }
}
@keyframes beePath3 {
  0%, 100% { transform: translate(0, 0) rotate(-2deg); }
  33% { transform: translate(35px, -35px) rotate(4deg); }
  66% { transform: translate(-30px, 20px) rotate(-6deg); }
}

/* ========== ABOUT ========== */
.about {
  position: relative;
  padding: 100px 0 120px;
  background: var(--warm-white);
}
.about__texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(245,166,35,0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about__photo-col { position: relative; }
.about__blob-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--honey-glow) 0%, #FFE9B0 50%, var(--honey-light) 100%);
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-radius 0.8s var(--ease-smooth);
}
.about__blob-frame:hover {
  border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
}
.about__photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--honey-dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  gap: 12px;
}
.about__badge-float {
  position: absolute;
  top: -10px; right: -10px;
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-honey);
  z-index: 2;
  animation: badgeBob 3s ease-in-out infinite;
}
@keyframes badgeBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about__years {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.about__years-label {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.3;
  opacity: 0.9;
}
.about__badge-women {
  position: absolute;
  bottom: 20px; left: -20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--coral);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.about__heading {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about__lead {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 16px;
  color: var(--ink);
}
.about__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.about__quote {
  position: relative;
  padding: 28px 32px 28px 40px;
  background: linear-gradient(135deg, var(--honey-glow), rgba(255,213,79,0.15));
  border-radius: var(--radius-lg);
  border-left: 5px solid var(--honey);
}
.about__quote-mark {
  position: absolute;
  top: -10px; left: 16px;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: var(--honey);
  opacity: 0.2;
}
.about__quote p {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  position: relative;
}

/* ========== PROGRAMS ========== */
.programs {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #FFF4DC 0%, #FFF9EC 50%, #FFF4DC 100%);
}
.programs__wave-top,
.programs__wave-bottom {
  position: absolute;
  left: 0; right: 0;
  z-index: 1;
  line-height: 0;
}
.programs__wave-top { top: -1px; }
.programs__wave-bottom { bottom: -1px; }
.programs__wave-top svg,
.programs__wave-bottom svg {
  display: block;
  width: 100%;
  height: 60px;
}

.programs__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.program-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.45s var(--ease-bounce);
  overflow: hidden;
  border: 2px solid transparent;
}
.program-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.program-card--coral .program-card__accent { background: linear-gradient(90deg, var(--coral), var(--peach)); }
.program-card--sky .program-card__accent { background: linear-gradient(90deg, var(--sky), var(--lavender)); }
.program-card--sage .program-card__accent { background: linear-gradient(90deg, var(--sage), #A8D89C); }

.program-card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}
.program-card--coral:hover { border-color: var(--coral-light); }
.program-card--sky:hover { border-color: var(--sky-light); }
.program-card--sage:hover { border-color: var(--sage-light); }

.program-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.program-card__emoji {
  font-size: 2.8rem;
  line-height: 1;
}
.program-card__age-badge {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
}
.program-card--coral .program-card__age-badge { background: var(--coral-light); color: var(--coral); }
.program-card--sky .program-card__age-badge { background: var(--sky-light); color: var(--sky); }
.program-card--sage .program-card__age-badge { background: var(--sage-light); color: var(--sage); }

.program-card__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
}
.program-card__desc {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.program-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.program-card__list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.program-card--coral .program-card__list li::before { background: var(--coral); }
.program-card--sky .program-card__list li::before { background: var(--sky); }
.program-card--sage .program-card__list li::before { background: var(--sage); }

.program-card__bee {
  position: absolute;
  bottom: 12px; right: 16px;
  font-size: 1.6rem;
  opacity: 0.15;
  transition: all 0.4s var(--ease-bounce);
}
.program-card:hover .program-card__bee {
  opacity: 0.4;
  transform: scale(1.3) rotate(-10deg);
}

/* Perks */
.programs__perks {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--white);
  border-radius: 60px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-bounce);
}
.perk:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.perk__icon { font-size: 1.3rem; }

/* ========== WHY HONEY BEE ========== */
.why {
  padding: 100px 0 120px;
  background: var(--warm-white);
  position: relative;
}

.honeycomb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hc-cell { perspective: 800px; }

.hc-cell__shape {
  position: relative;
  padding-bottom: 115.47%; /* hexagon aspect ratio */
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, var(--honey-glow), var(--honey-light));
  transition: all 0.5s var(--ease-bounce);
  cursor: default;
}
.hc-cell:hover .hc-cell__shape {
  background: linear-gradient(160deg, var(--honey-light), var(--honey));
  transform: scale(1.05);
}

.hc-cell__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20%;
  text-align: center;
}
.hc-cell__icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.hc-cell__content h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.hc-cell__content p {
  font-size: 0.75rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Offset rows for honeycomb effect */
.hc-cell--2,
.hc-cell--5 {
  transform: translateY(50%);
}

/* ========== LOCATIONS ========== */
.locations {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--warm-white) 100%);
}
.locations__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(245,166,35,0.03) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}
.locations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.loc-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.45s var(--ease-bounce);
  overflow: hidden;
}
.loc-card--link {
  display: block;
  cursor: pointer;
}
.loc-card--link:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.loc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.loc-card--featured {
  border-color: var(--honey);
  box-shadow: var(--shadow-honey);
}

.loc-card__featured-tag {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(90deg, var(--honey), var(--honey-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  padding: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.loc-card--featured { padding-top: 52px; }

.loc-card__ribbon {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  background: var(--honey-glow);
  border-radius: 50px;
  color: var(--honey-dark);
  margin-bottom: 16px;
}
.loc-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.loc-card__icon-wrap {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}
.loc-card__header h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
}
.loc-card__header h3 span {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.loc-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.loc-card__row {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.loc-card__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--honey-dark);
  min-width: 52px;
  padding-top: 1px;
}
.loc-card__row a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.loc-card__row a:hover { color: var(--honey); }

/* ========== TESTIMONIALS ========== */
.testimonials {
  position: relative;
  padding: 100px 0 120px;
  background: var(--warm-white);
  overflow: hidden;
}
.testimonials__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66Z' fill='none' stroke='rgba(245,166,35,0.05)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  pointer-events: none;
}

.testimonials__carousel {
  margin-top: 48px;
  position: relative;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials__track {
  display: flex;
  transition: transform 0.6s var(--ease-bounce);
}

.test-card {
  min-width: 100%;
  padding: 0 20px;
}
.test-card__inner {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 44px 40px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--honey-glow);
  text-align: center;
}
.test-card__quote-mark {
  position: absolute;
  top: 10px; left: 28px;
  font-family: var(--font-head);
  font-size: 6rem;
  line-height: 1;
  color: var(--honey);
  opacity: 0.12;
  pointer-events: none;
}
.test-card__stars {
  font-size: 1.4rem;
  color: var(--honey);
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.test-card__text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
}
.test-card__source {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.test-card__avatar {
  width: 44px; height: 44px;
  background: var(--honey-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.test-card__name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.test-card__platform {
  font-size: 0.8rem;
  color: var(--ink-muted);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.testimonials__btn {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--honey-glow);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  color: var(--honey);
  transition: all 0.3s var(--ease-bounce);
}
.testimonials__btn:hover {
  background: var(--honey);
  color: var(--white);
  border-color: var(--honey);
  transform: scale(1.1);
}
.testimonials__dots {
  display: flex;
  gap: 8px;
}
.testimonials__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--honey-glow);
  border: 2px solid var(--honey-light);
  cursor: pointer;
  transition: all 0.35s var(--ease-bounce);
  padding: 0;
}
.testimonials__dot.active {
  background: var(--honey);
  border-color: var(--honey);
  width: 32px;
  border-radius: 6px;
}

/* ========== VIDEO ========== */
.video-section {
  padding: 80px 0 100px;
  background: var(--sand);
}
.video-section__frame {
  max-width: 800px;
  margin: 44px auto 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--honey-light);
  transition: all 0.4s var(--ease-bounce);
}
.video-section__frame:hover {
  transform: scale(1.01);
  box-shadow: 0 25px 70px rgba(245,166,35,0.2);
}
.video-section__placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--honey-glow) 0%, #FFE9B0 50%, var(--honey-light) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--honey-dark);
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
}
.video-section__play-btn {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-honey);
  transition: all 0.4s var(--ease-bounce);
}
.video-section__play-btn:hover {
  transform: scale(1.15);
}
.video-section__placeholder p {
  font-size: 1rem;
  opacity: 0.7;
}
.video-section__frame video,
.video-section__frame iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
}

/* ========== TOUR / CTA ========== */
.tour {
  position: relative;
  padding: 100px 0 120px;
  background: linear-gradient(160deg, #2A1F14 0%, #3D2E1E 50%, #2A1F14 100%);
  overflow: hidden;
}
.tour__bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66Z' fill='none' stroke='rgba(245,166,35,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}
.tour__bee {
  position: absolute;
  bottom: 60px; right: 80px;
  animation: beePath1 12s ease-in-out infinite;
}
.tour__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tour__heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.tour__heading span {
  color: var(--honey-light);
  position: relative;
}
.tour__desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.tour__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tour__contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}
.tour__contact-icon { font-size: 1.2rem; }
.tour__contact-row a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.tour__contact-row a:hover { color: var(--honey-light); }

/* Form */
.tour__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.tour__form-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  text-align: center;
}

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tour__form input,
.tour__form select,
.tour__form textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--sand);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--ink);
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}
.tour__form input:focus,
.tour__form select:focus,
.tour__form textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.1);
  background: var(--white);
}
.tour__form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%238B7D6B' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.tour__form textarea { resize: vertical; min-height: 80px; }

/* ========== FOOTER ========== */
.footer {
  position: relative;
  background: #1E1B18;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
}
.footer__wave {
  position: absolute;
  top: -2px; left: 0; right: 0;
  line-height: 0;
}
.footer__wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__logo-mark {
  font-size: 2.2rem;
  line-height: 1;
}
.footer__name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.footer__tagline {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--honey-light);
  font-size: 0.9rem;
}

.footer__col h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1rem;
}
.footer__col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--honey-light); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.footer__credit a {
  color: var(--honey);
  font-weight: 600;
  transition: color 0.2s;
}
.footer__credit a:hover { color: var(--honey-light); }

/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  color: var(--white);
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 60px;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(245,166,35,0.4), 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.35s var(--ease-bounce);
  letter-spacing: 0.5px;
}
.lang-toggle:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 44px rgba(245,166,35,0.5), 0 4px 12px rgba(0,0,0,0.15);
}
.lang-toggle:active {
  transform: translateY(-2px) scale(1.02);
}
.lang-toggle__globe {
  font-size: 1.4rem;
  line-height: 1;
}
.lang-toggle__label strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lang-toggle--active {
  background: linear-gradient(135deg, var(--sage) 0%, #4CAF50 100%);
  box-shadow: 0 8px 32px rgba(107,191,89,0.4), 0 2px 8px rgba(0,0,0,0.1);
}
.lang-toggle--active:hover {
  box-shadow: 0 12px 44px rgba(107,191,89,0.5), 0 4px 12px rgba(0,0,0,0.15);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-bounce);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PAGE HERO (Interior Pages) ========== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  background: linear-gradient(145deg, #FFF8E7 0%, #FFE9B0 50%, #FFD54F 100%);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero__desc {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.8;
}

/* ========== STAFF PAGE ========== */
.staff-founder {
  padding: 80px 0 60px;
  background: var(--warm-white);
}
.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--honey-glow);
}
.founder-card__photo {
  position: relative;
}
.founder-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--honey-glow) 0%, #FFE9B0 50%, var(--honey-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--honey-dark);
  font-family: var(--font-head);
  font-weight: 700;
}
.founder-card__label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--honey-dark);
  margin-bottom: 8px;
}
.founder-card__name {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 4px;
}
.founder-card__role {
  font-size: 1rem;
  color: var(--honey);
  font-weight: 600;
  margin-bottom: 20px;
}
.founder-card__bio {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.founder-card__languages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.language-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--honey-glow);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--honey-dark);
}
.language-badge--featured {
  padding: 10px 20px;
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--honey-glow), rgba(255,213,79,0.3));
  border: 1px solid var(--honey-light);
}
.language-badge__icon { font-size: 1rem; }

/* Staff Grid */
.staff-grid-section {
  padding: 60px 0 80px;
  background: var(--sand);
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.staff-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-bounce);
  border: 2px solid transparent;
}
.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--honey-glow);
}
.staff-card__photo {
  margin: 0 auto 20px;
  width: 120px;
  height: 120px;
}
.staff-card__photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--honey-glow), var(--honey-light));
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-card__name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.staff-card__role {
  font-size: 0.9rem;
  color: var(--honey);
  font-weight: 600;
  margin-bottom: 12px;
}
.staff-card__bio {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.staff-card__languages {
  display: flex;
  justify-content: center;
  gap: 6px;
}

/* Careers CTA */
.careers {
  padding: 80px 0 100px;
  background: var(--warm-white);
}
.careers__card {
  text-align: center;
  background: linear-gradient(160deg, #2A1F14 0%, #3D2E1E 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  box-shadow: var(--shadow-lg);
}
.careers__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.careers__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.careers__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* ========== LOCATION PAGE STYLES ========== */

/* Location Hero */
.loc-hero {
  position: relative;
  padding: calc(var(--nav-h) + 48px) 0 56px;
  background: linear-gradient(145deg, #FFF8E7 0%, #FFE9B0 50%, #FFD54F 100%);
  overflow: hidden;
}
.loc-hero__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
.loc-hero__newest-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  color: var(--white);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.loc-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 24px;
}
.loc-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.loc-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.loc-hero__meta-icon {
  font-size: 1.2rem;
}
.loc-hero__meta-item a {
  color: var(--ink-soft);
  font-weight: 600;
  transition: color 0.2s;
}
.loc-hero__meta-item a:hover {
  color: var(--honey-dark);
}

/* Location Photo Gallery */
.loc-gallery {
  padding: 60px 0;
  background: var(--warm-white);
}
.loc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 32px;
}
.loc-gallery__item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.loc-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
}
.loc-gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, var(--honey-glow), rgba(255,213,79,0.15));
  border: 2px dashed var(--honey-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--honey-dark);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}
.loc-gallery__placeholder:hover {
  background: linear-gradient(135deg, rgba(255,213,79,0.2), rgba(255,213,79,0.3));
}
.loc-gallery__item--large .loc-gallery__placeholder {
  min-height: 376px;
}

/* Location About */
.loc-about {
  padding: 60px 0;
  background: var(--sand);
}
.loc-about__content {
  max-width: 720px;
}
.loc-about__content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-top: 16px;
}

/* Location Programs */
.loc-programs {
  padding: 60px 0;
  background: var(--warm-white);
}
.loc-programs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.loc-programs__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--honey-glow);
  transition: all 0.3s var(--ease-bounce);
}
.loc-programs__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.loc-programs__emoji {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.loc-programs__card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

/* Location Events */
.loc-events {
  padding: 60px 0;
  background: var(--sand);
}
.loc-events__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  max-width: 760px;
}
.loc-events__empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  color: var(--ink-muted);
  font-size: 1rem;
}

/* Event Cards */
.event-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: all 0.3s var(--ease-bounce);
}
.event-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--honey-glow);
}
.event-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  border-radius: var(--radius-sm);
  color: var(--white);
  flex-shrink: 0;
}
.event-card__month {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
}
.event-card__day {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}
.event-card__info {
  flex: 1;
}
.event-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.event-card__desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.event-card__meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  font-weight: 500;
}

/* Location Staff Avatars */
.loc-staff {
  padding: 60px 0;
  background: var(--warm-white);
}
.loc-staff__grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.loc-staff__avatar {
  width: 72px;
  height: 72px;
}
.loc-staff__avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--honey-glow), var(--honey-light));
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

/* Location Tour CTA */
.loc-tour-cta {
  padding: 60px 0;
  background: var(--sand);
}
.loc-tour-cta__card {
  text-align: center;
  background: linear-gradient(160deg, #2A1F14 0%, #3D2E1E 100%);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  box-shadow: var(--shadow-lg);
}
.loc-tour-cta__card h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.loc-tour-cta__card p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 28px;
}

/* Location Map */
.loc-map {
  padding: 60px 0 80px;
  background: var(--warm-white);
}
.loc-map__placeholder {
  margin-top: 32px;
  aspect-ratio: 16/7;
  background: var(--sand);
  border: 2px dashed var(--honey-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loc-map__inner {
  text-align: center;
  color: var(--ink-muted);
  font-family: var(--font-head);
}
.loc-map__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}
.loc-map__inner p {
  font-size: 1rem;
  font-weight: 600;
}
.loc-map__note {
  font-size: 0.85rem !important;
  font-weight: 400 !important;
  opacity: 0.6;
  margin-top: 4px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero__layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero__content { padding-right: 0; }
  .hero__bilingual-banner { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .hero__hexgrid { max-width: 280px; margin: 16px auto 0; }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__photo-col { max-width: 380px; margin: 0 auto; }

  .programs__cards { grid-template-columns: 1fr; max-width: 440px; margin: 48px auto 0; }

  .honeycomb-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .locations__grid { grid-template-columns: 1fr; max-width: 440px; margin: 48px auto 0; }

  .tour__layout { grid-template-columns: 1fr; gap: 40px; }
  .tour__text { text-align: center; }
  .tour__contact { align-items: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand { align-items: center; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .founder-card { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .founder-card__photo { max-width: 280px; margin: 0 auto; }

  .loc-gallery__grid { grid-template-columns: 1fr 1fr; }
  .loc-gallery__item--large { grid-column: 1 / 3; grid-row: auto; }

  .loc-hero__meta { flex-direction: column; gap: 12px; }
}

@media (max-width: 968px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    flex-direction: column;
    background: var(--white);
    padding: 100px 36px 40px;
    gap: 8px;
    box-shadow: -8px 0 40px rgba(42,31,20,0.1);
    transition: right 0.4s var(--ease-bounce);
    z-index: 999;
  }
  .nav__links.open { right: 0; }
  .nav__links a {
    font-size: 1.1rem !important;
    padding: 14px 20px !important;
    border-radius: var(--radius-sm) !important;
  }

  /* Mobile dropdown — always visible in mobile menu */
  .nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    background: transparent;
  }
  .nav__dropdown-trigger svg {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero__title { font-size: 2.4rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .hero__trust-sep { display: none; }
  .hero__visual .hero__hexgrid { display: none; }
  .hero__secondary-images { grid-template-columns: 1fr; }

  .honeycomb-grid {
    grid-template-columns: 1fr;
    max-width: 240px;
  }
  .hc-cell--2, .hc-cell--5 { transform: none; }

  .form-row { grid-template-columns: 1fr; }

  .programs__perks { flex-direction: column; align-items: center; }

  .test-card__inner { padding: 32px 24px 28px; }
  .test-card__text { font-size: 1.05rem; }

  .bee { display: none; }

  .lang-toggle {
    bottom: 16px;
    right: 16px;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .loc-gallery__grid {
    grid-template-columns: 1fr;
  }
  .loc-gallery__item--large {
    grid-column: auto;
  }

  .event-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .event-card__date {
    flex-direction: row;
    gap: 8px;
    height: auto;
    padding: 8px 16px;
    border-radius: 50px;
  }
}
