/* ============================================================
   KLUB - Landing page styles
   Fonts: Baloo 2 (display) + Nunito (body)
   ============================================================ */

:root {
  --blue:   #34a5d8;   /* KLUB blue  */
  --yellow: #f4c430;   /* KLUB yellow */
  --green:  #6cb33f;   /* KLUB green */
  --red:    #e2574c;   /* KLUB red   */
  --ink:    #263445;
  --muted:  #5c6b7a;
  --cloud:  #f4f8fb;
  --tint:   #eef6fb;
  --white:  #ffffff;
  --ring:   rgba(52, 165, 216, 0.35);

  --radius:   18px;
  --radius-lg: 28px;
  --shadow:   0 10px 30px rgba(38, 52, 69, 0.10);
  --shadow-lg: 0 22px 50px rgba(38, 52, 69, 0.16);
  --container: 1150px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name {
  font-family: "Baloo 2", "Nunito", sans-serif;
  line-height: 1.1;
  margin: 0;
}

p { margin: 0 0 1rem; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .2px;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
  box-shadow: 0 8px 18px rgba(52, 165, 216, 0.28);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 26px rgba(52, 165, 216, 0.34); }
.btn:active { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; }

.btn-primary { --btn-bg: var(--blue); }
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(38, 52, 69, 0.15);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 2px var(--blue); color: var(--blue); }
.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--blue);
  box-shadow: inset 0 0 0 2px var(--blue);
}
.btn-outline:hover { --btn-bg: var(--blue); --btn-fg: #fff; }
.btn-small { padding: .55rem 1.1rem; font-size: .92rem; }
.btn-large { padding: 1.05rem 2.2rem; font-size: 1.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(38, 52, 69, 0.07);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.brand-logo { height: 46px; width: auto; }

.nav { display: flex; align-items: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-weight: 700;
  color: var(--muted);
  transition: color .2s;
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a.is-active { color: var(--ink); position: relative; }
.nav-menu a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}
.nav-menu .btn { color: #fff; }
.nav-menu .btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  height: 3px;
  border-radius: 3px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}

/* ---------- Hero (landing) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(340px, 52vh, 460px);
  overflow: hidden;
  color: #fff;
  /* Fixed image so it stays in one spot while the page scrolls */
  background-image:
    linear-gradient(
      90deg,
      rgba(24, 38, 52, 0.78) 0%,
      rgba(24, 38, 52, 0.55) 40%,
      rgba(24, 38, 52, 0.18) 100%
    ),
    url("assets/hero-child.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center 28%;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
}
/* iOS Safari does not render background-attachment: fixed correctly */
@supports (-webkit-touch-callout: none) {
  .hero { background-attachment: scroll, scroll; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}

.eyebrow {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -1px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.hero-title span { color: var(--yellow); }
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 1rem 0 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Ghost button on dark backgrounds */
.btn-on-dark {
  --btn-fg: #fff;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6);
}
.btn-on-dark:hover { box-shadow: inset 0 0 0 2px #fff; color: #fff; background: rgba(255,255,255,0.12); }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  --hero-overlay: linear-gradient(
    90deg,
    rgba(24, 38, 52, 0.78) 0%,
    rgba(24, 38, 52, 0.55) 40%,
    rgba(24, 38, 52, 0.18) 100%
  );
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(340px, 52vh, 460px);
  overflow: hidden;
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  /* Each page sets its own image; default fallback below */
  background-image: var(--hero-overlay), url("assets/hero-child.jpg");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center 28%;
  background-size: cover, cover;
  background-attachment: fixed, fixed;
}
/* Unique static image per page */
.page-hero--summer    { background-image: var(--hero-overlay), url("assets/hero-summer.jpg"); }
.page-hero--about     { background-image: var(--hero-overlay), url("assets/hero-about.jpg"); }
.page-hero--locations { background-image: var(--hero-overlay), url("assets/hero-locations.webp"); }
.page-hero--contact   { background-image: var(--hero-overlay), url("assets/hero-contact.jpg"); }
.page-hero--stem      { background-image: var(--hero-overlay), url("assets/stem.jpg"); }
.page-hero--stempages { background-image: var(--hero-overlay), url("assets/stempages.jpg"); }
/* iOS Safari does not render background-attachment: fixed correctly */
@supports (-webkit-touch-callout: none) {
  .page-hero { background-attachment: scroll, scroll; }
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}
.page-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.5px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}
.page-title span { color: var(--yellow); }
.page-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  margin: 1rem 0 1.5rem;
}

/* ---------- Sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section--tint { background: var(--tint); }
.section--intro { text-align: center; }
.intro-inner { max-width: 720px; margin-inline: auto; }
.intro-lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); text-align: left; }
.narrow { max-width: 720px; }
.narrow p { color: var(--muted); font-size: 1.05rem; }

@keyframes float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-22px) }
}

.section-eyebrow {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .85rem;
  color: var(--blue);
  margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 1.2rem;
}
.section-head { max-width: 620px; margin: 0 auto 3rem; text-align: center; }
.section-head .section-title { margin-bottom: 0; }
.section-head .section-sub { margin: .9rem 0 0; color: var(--muted); text-align: left; }

.link-arrow {
  display: inline-block;
  font-weight: 800;
  color: var(--blue);
  margin-top: .5rem;
  transition: transform .2s var(--ease);
}
.link-arrow:hover { transform: translateX(4px); }

/* ---------- Director (About) ---------- */
.director-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.director-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.director-copy p { color: var(--muted); }
.director-copy .section-title { margin-bottom: 1rem; }

/* Director tabs */
.director-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.75rem;
}
.director-tab {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--cloud);
  border: 2px solid transparent;
  border-radius: 999px;
  padding: .6rem 1.4rem;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}
.director-tab:hover { transform: translateY(-2px); }
.director-tab.is-active {
  background: var(--blue);
  color: #fff;
}
.director-panel { display: none; }
.director-panel.is-active { display: grid; }

/* ---------- Testimonials (About) ---------- */
.reviews-note { color: var(--muted); margin-top: .8rem; text-align: center; }
.reviews-note a { color: var(--blue); font-weight: 700; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: start;
}
.testimonial {
  position: relative;
  margin: 44px 0 0;
  padding: 3.5rem 1.6rem 1.8rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.testimonial-kid {
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 6px 10px rgba(38, 52, 69, 0.18));
}
.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.7;
}
.testimonial figcaption {
  margin-top: 1rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: .95rem;
}

/* ---------- Why KLUB ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-grid--3 { grid-template-columns: repeat(3, 1fr); max-width: 940px; margin-inline: auto; }
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--tint);
}
.feature-icon img { width: 42px; height: 42px; }
.feature:nth-child(1) .feature-icon { background: rgba(226, 87, 76, 0.12); }
.feature:nth-child(2) .feature-icon { background: rgba(244, 196, 48, 0.16); }
.feature:nth-child(3) .feature-icon { background: rgba(108, 179, 63, 0.14); }
.feature:nth-child(4) .feature-icon { background: rgba(52, 165, 216, 0.14); }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }

/* ---------- Locations ---------- */
.handbook-cta {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 0 0 2.5rem;
}
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: repeat(2, 1fr); }
}
.location-card {
  position: relative;
  overflow: hidden;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.location-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--red));
}
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.location-card h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.location-card p { color: var(--muted); margin-bottom: 1.4rem; }
.location-card--general { background: var(--tint); scroll-margin-top: 96px; }
.location-card--general .center-contact { margin-bottom: 0; }
.location-card-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  margin-bottom: .5rem;
}
.location-card-head h3 { margin-bottom: 0; }
.location-status {
  flex-shrink: 0;
  padding: .28rem .7rem;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
}
.location-status--open { color: #3c7a1e; background: rgba(108, 179, 63, 0.16); }
.location-status--waitlist { color: #b23a30; background: rgba(226, 87, 76, 0.14); }
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* Center contact details (Contact page) */
.center-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: .5rem;
}
.center-contact li { color: var(--muted); }
.center-contact a { color: var(--blue); font-weight: 600; }
.center-contact a:hover { text-decoration: underline; }
.center-contact .contact-label { min-width: 0; margin-right: .4rem; }

/* ---------- Summer announcement ---------- */
.announce {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  background: var(--tint);
  border: 1px solid rgba(52, 165, 216, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.announce-flag {
  display: inline-block;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 4vw, 2.1rem);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  background: var(--red);
  padding: .7rem 1.8rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  box-shadow: 0 12px 26px rgba(226, 87, 76, 0.38);
}
.announce-lead { font-size: 1.1rem; color: var(--ink); text-align: left; }
.announce-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1.6rem 0 1.2rem;
}
.announce-note { color: var(--muted); font-size: .95rem; margin: 0; text-align: left; }

/* Google Calendar embed (desktop only) */
.calendar-embed {
  max-width: 900px;
  margin: 2.5rem auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.calendar-embed iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: 0;
}
/* Calendar link button: hidden on desktop (embed shown), visible on mobile */
.calendar-btn { display: none; }
@media (max-width: 720px) {
  .calendar-embed { display: none; }
  .calendar-btn { display: inline-flex; }
  .location-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq { margin-top: 2rem; display: grid; gap: 1rem; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(38, 52, 69, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--blue);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--blue); }
.faq-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
}
.faq-body p { margin: 0 0 .8rem; line-height: 1.7; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body a { color: var(--blue); font-weight: 700; }
.faq-rates {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: .4rem;
}
.faq-rates li {
  padding: .55rem .9rem;
  background: var(--tint);
  border-radius: 12px;
  color: var(--ink);
}
.faq-rates strong { color: var(--blue); }

/* ---------- CTA / Programs ---------- */
.section--cta {
  background: linear-gradient(135deg, var(--blue), #2c86b8);
  color: #fff;
}
.section--cta .section-eyebrow { color: #d6f0ff; }
.section--cta .section-title { color: #fff; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cta-copy { max-width: 640px; }
.cta-copy p { color: rgba(255, 255, 255, 0.9); margin: 0; }
.cta-copy .section-title { margin-bottom: .6rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.section--cta .btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(0,0,0,0.2);
}
.section--cta .btn-primary:hover { background: #ffd451; }

/* ---------- Contact ---------- */
.contact-intro { text-align: center; }
.contact-intro > p { color: var(--muted); }
.contact-list {
  list-style: none;
  margin: 1.75rem auto 0;
  padding: 0;
  display: inline-grid;
  gap: .9rem;
  text-align: left;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-label {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  min-width: 90px;
  color: var(--ink);
}
.contact-list a { color: var(--blue); font-weight: 600; }

/* ---------- STEM activities ---------- */
.stem-level { margin-top: 3.2rem; }
.stem-level:first-of-type { margin-top: 0; }
.stem-level--easy   { --accent: var(--green); }
.stem-level--medium { --accent: var(--yellow); }
.stem-level--hard   { --accent: var(--red); }
.stem-level-head {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.stem-level-head h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin: 0;
}
.stem-badge {
  padding: .32rem .85rem;
  border-radius: 999px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 800;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.stem-badge--easy   { color: #3c7a1e; background: rgba(108, 179, 63, 0.16); }
.stem-badge--medium { color: #9a7400; background: rgba(244, 196, 48, 0.24); }
.stem-badge--hard   { color: #b23a30; background: rgba(226, 87, 76, 0.14); }
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(216px, 1fr));
  gap: 1.1rem;
}
.game-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 0 1.3rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(38, 52, 69, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-decoration: none;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.game-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--accent, var(--blue));
  z-index: 1;
}
.game-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.game-thumb {
  display: block;
  margin: 0 -1.3rem 1rem;
  aspect-ratio: 16 / 10;
  background: var(--tint);
  overflow: hidden;
}
.game-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s var(--ease);
}
.game-card:hover .game-thumb img { transform: scale(1.05); }
.game-provider {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--blue);
}
.game-name {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--ink);
}
.game-open {
  margin-top: .6rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s var(--ease);
}
.game-card:hover .game-open { color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #c6d2df;
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-logo {
  height: 56px;
  width: auto;
  background: #fff;
  padding: 8px 14px;
  border-radius: 14px;
}
.footer-tag {
  font-family: "Baloo 2", sans-serif;
  font-weight: 700;
  color: #fff;
  margin: .8rem 0 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.footer-nav a { color: #c6d2df; font-weight: 600; transition: color .2s; }
.footer-nav a:hover { color: var(--yellow); }
.footer-copy { font-size: .88rem; color: #8fa1b2; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .feature-grid,
  .feature-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .director-grid { grid-template-columns: 1fr; justify-items: center; }
  .director-photo { max-width: 320px; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    padding: .5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(38,52,69,0.08);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s var(--ease), opacity .25s;
  }
  .nav-menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu li { border-top: 1px solid rgba(38,52,69,0.06); }
  .nav-menu li:first-child { border-top: none; }
  .nav-menu a { display: block; padding: .9rem 0; }
  .nav-menu a.is-active::after { display: none; }
  .nav-menu .btn { margin-top: .6rem; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .feature-grid,
  .feature-grid--3 { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
}
