:root {
  --fun-bg: #f8fbf8;
  --fun-bg-2: #eef8f6;
  --fun-paper: #ffffff;
  --fun-ink: #26413c;
  --fun-muted: rgba(38, 65, 60, 0.74);

  --fun-aqua: #cfeee8;
  --fun-sky: #d9efff;
  --fun-lavender: #e8defc;
  --fun-peach: #ffd9c8;
  --fun-butter: #fff2b8;
  --fun-mint: #dff6d8;
  --fun-teal: #5baea3;
  --fun-coral: #f29b7f;

  --fun-shadow: 0 20px 50px rgba(62, 98, 90, 0.1);
  --fun-shadow-soft: 0 10px 24px rgba(62, 98, 90, 0.08);

  --fun-radius-xl: 34px;
  --fun-radius-lg: 26px;
  --fun-radius-md: 18px;
  --fun-radius-sm: 14px;

  --fun-max: 1280px;
  --fun-ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --fun-font:
    "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --fun-display: "Baloo 2", var(--fun-font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.funeriffic-page {
  font-family: var(--fun-font);
  color: var(--fun-ink);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(207, 238, 232, 0.7),
      transparent 22%
    ),
    radial-gradient(
      circle at 88% 10%,
      rgba(232, 222, 252, 0.6),
      transparent 18%
    ),
    radial-gradient(
      circle at 84% 78%,
      rgba(255, 217, 200, 0.55),
      transparent 22%
    ),
    linear-gradient(180deg, #fdfefe 0%, var(--fun-bg) 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}
/* =========================================================
   BEE CURSOR (SENSORY PANEL ONLY)
   ========================================================= */
body * {
  cursor:
    url("images/bee-cursor.png") 16 16,
    auto !important;
}
.fun-topbar,
main,
.fun-footer,
.fun-hero,
.fun-intro,
.fun-purpose,
.fun-about-programme,
.fun-activities,
.fun-support,
.fun-cta {
  position: relative;
  z-index: 1;
}

.fun-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(38, 65, 60, 0.56);
}

.fun-section-title {
  margin: 0;
  font-family: var(--fun-display);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0.2px;
  color: var(--fun-ink);
}

.fun-page-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.fun-page-blob {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.52;
  animation: funPageFloat 14s ease-in-out infinite;
}

.fun-page-blob--one {
  width: 280px;
  height: 280px;
  top: 80px;
  left: -60px;
  background: rgba(175, 233, 222, 0.9);
  animation-delay: 0s;
}

.fun-page-blob--two {
  width: 220px;
  height: 220px;
  top: 180px;
  right: -40px;
  background: rgba(202, 184, 240, 0.85);
  animation-delay: 2s;
}

.fun-page-blob--three {
  width: 240px;
  height: 240px;
  top: 620px;
  left: 8%;
  background: rgba(255, 242, 184, 0.85);
  animation-delay: 4s;
}

.fun-page-blob--four {
  width: 260px;
  height: 260px;
  top: 1050px;
  right: 6%;
  background: rgba(207, 238, 232, 0.82);
  animation-delay: 1.5s;
}

.fun-page-blob--five {
  width: 230px;
  height: 230px;
  top: 1580px;
  left: -40px;
  background: rgba(232, 222, 252, 0.82);
  animation-delay: 3.5s;
}

.fun-page-blob--six {
  width: 250px;
  height: 250px;
  top: 2100px;
  right: -60px;
  background: rgba(255, 242, 184, 0.82);
  animation-delay: 5s;
}

@keyframes funPageFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-18px) translateX(10px) scale(1.04);
  }
}

/* =========================================================
   TOPBAR
   ========================================================= */
.fun-topbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248, 251, 248, 0.82);
  /* backdrop-filter: blur(14px); */
  /* -webkit-backdrop-filter: blur(14px); */
  border-bottom: 1px solid rgba(38, 65, 60, 0.08);
}

.fun-topbar__inner {
  width: min(var(--fun-max), 94vw);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fun-brand img {
  width: auto;
  height: 72px;
}

.fun-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fun-menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(38, 65, 60, 0.84);
  transition:
    transform 180ms var(--fun-ease),
    background 180ms var(--fun-ease),
    color 180ms var(--fun-ease);
}

.fun-menu a:hover {
  transform: translateY(-1px);
  background: rgba(91, 174, 163, 0.14);
}

.fun-menu__cta {
  background: var(--fun-teal);
  color: #fff !important;
}

.fun-menu__cta:hover {
  background: #4a9d92 !important;
}

.fun-topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.fun-language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fun-language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  transition: transform 180ms ease;
}

.fun-language-link:hover {
  transform: translateY(-1px);
}

.fun-language-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.fun-language-link.is-active {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.18);
}

.fun-burger,
.fun-mobile-overlay {
  display: none;
}

.fun-burger {
  width: 52px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(38, 65, 60, 0.12);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--fun-shadow-soft);
  cursor: pointer;
  position: relative;
}

.fun-burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: rgba(38, 65, 60, 0.9);
  border-radius: 999px;
  transition:
    transform 0.22s var(--fun-ease),
    top 0.22s var(--fun-ease),
    opacity 0.2s var(--fun-ease);
}

.fun-burger span:nth-child(1) {
  top: 13px;
}
.fun-burger span:nth-child(2) {
  top: 21px;
}
.fun-burger span:nth-child(3) {
  top: 29px;
}

.fun-burger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.fun-burger.open span:nth-child(2) {
  opacity: 0;
}
.fun-burger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.fun-mobile-overlay {
  position: fixed;
  inset: 82px 0 0 0;
  z-index: 300;
  background: rgba(38, 65, 60, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.22s var(--fun-ease),
    transform 0.22s var(--fun-ease);
}

.fun-mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fun-mobile-panel {
  height: calc(100dvh - 82px);
  display: grid;
  place-items: center;
  padding: 18px 16px;
}

.fun-mobile-nav {
  width: min(560px, 92vw);
  display: grid;
  gap: 14px;
}

.fun-mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  border-radius: 18px;
  padding: 16px 18px;
  color: rgba(246, 244, 243, 0.95);
  font-family: var(--icta-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 0.6;
}

.fun-mobile-link--cta {
  background: var(--fun-teal);
  color: #fff;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.fun-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition:
    transform 180ms var(--fun-ease),
    background 180ms var(--fun-ease),
    color 180ms var(--fun-ease),
    border-color 180ms var(--fun-ease);
}

.fun-btn:hover {
  transform: translateY(-2px);
}

.fun-btn--primary {
  background: var(--fun-teal);
  color: #fff;
  box-shadow: 0 12px 26px rgba(91, 174, 163, 0.24);
}

.fun-btn--secondary {
  background: rgba(255, 255, 255, 0.86);
  color: var(--fun-ink);
  border: 1px solid rgba(38, 65, 60, 0.14);
}
/* =========================================================
   HERO
   ========================================================= */
.fun-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
}

.fun-hero__shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
}

/* .fun-hero__shape--one {
  width: 360px;
  height: 360px;
  top: 30px;
  left: -90px;
  background: rgba(207, 238, 232, 0.8);
}

.fun-hero__shape--two {
  width: 280px;
  height: 280px;
  right: -70px;
  top: 60px;
  background: rgba(232, 222, 252, 0.7);
}

.fun-hero__shape--three {
  width: 320px;
  height: 320px;
  right: 12%;
  bottom: -120px;
  background: rgba(255, 217, 200, 0.55);
} */

.fun-hero__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
  position: relative;
  z-index: 2;
}

.fun-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 30px;
}

.fun-hero__title {
  margin: 0 0 18px;
  max-width: 12ch;
  font-family: var(--fun-display);
  font-size: clamp(58px, 7.2vw, 110px);
  line-height: 0.92;
  color: var(--fun-ink);
}

.fun-hero__title span {
  color: var(--fun-teal);
}

.fun-hero__text {
  margin: 0;
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.9;
  color: var(--fun-muted);
}

.fun-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.fun-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fun-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fun-ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(38, 65, 60, 0.08);
}

.fun-hero__visual {
  position: relative;
  min-height: 760px;
  isolation: isolate;
}

/* soft moving tabs behind cutout */
.fun-hero__orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.82;
  animation: funOrbFloat 8s ease-in-out infinite;
}

.fun-hero__orb--one {
  width: 270px;
  height: 270px;
  left: 10px;
  top: 170px;
  background: rgba(255, 242, 184, 0.92);
  animation-delay: 0s;
}

.fun-hero__orb--two {
  width: 210px;
  height: 210px;
  right: 0;
  top: 250px;
  background: rgba(223, 246, 216, 0.9);
  animation-delay: 1.5s;
}

.fun-hero__orb--three {
  width: 180px;
  height: 180px;
  right: 60px;
  bottom: 70px;
  background: rgba(232, 222, 252, 0.9);
  animation-delay: 3s;
}

/* cutout image anchored to top and enlarged */
.fun-hero__card {
  position: absolute;
  z-index: 2;
  top: -80px;
  right: -140px;
  width: min(820px, 145%);
  height: auto;
  overflow: visible;
}

.fun-hero__card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top right;
}

/* floating labels */
.fun-hero__bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 16px 18px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--fun-shadow-soft);
  border: 1px solid rgba(38, 65, 60, 0.08);
}

.fun-hero__bubble strong {
  font-size: 18px;
  line-height: 1.1;
  color: var(--fun-ink);
}

.fun-hero__bubble span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--fun-muted);
}

.fun-hero__bubble--one {
  left: 50px;
  top: 150px;
  background: rgba(216, 250, 205, 0.96);
}

.fun-hero__bubble--two {
  right: -80px;
  top: 220px;
  background: rgba(171, 180, 248, 0.96);
}

.fun-hero__bubble--three {
  right: 25px;
  bottom: 40px;
  background: rgba(217, 239, 255, 0.96);
}

@keyframes funOrbFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(-12px) translateX(8px) scale(1.03);
  }
}

@media (max-width: 1100px) {
  .fun-hero__inner {
    grid-template-columns: 1fr;
  }

  .fun-hero__content {
    padding-top: 0;
  }

  .fun-hero__visual {
    min-height: 620px;
  }

  .fun-hero__bubble--one {
    display: none;
  }

  .fun-hero__bubble--two {
    display: none;
  }

  .fun-hero__bubble--three {
    display: none;
  }

  .fun-hero__orb--one {
    width: 220px;
    height: 220px;
    left: 10px;
    top: 150px;
  }

  .fun-hero__orb--two {
    width: 170px;
    height: 170px;
    right: 0;
    top: 230px;
  }

  .fun-hero__orb--three {
    width: 150px;
    height: 150px;
    right: 50px;
    bottom: 60px;
  }
}

@media (max-width: 760px) {
  .fun-hero__title {
    font-size: clamp(48px, 14vw, 74px);
  }

  .fun-hero__visual {
    min-height: 500px;
  }

  .fun-hero__bubble {
    padding: 12px 14px;
  }

  @media (max-width: 760px) {
    .fun-hero__card {
      top: 0;
      left: 50%;
      right: auto;
      width: min(440px, 118vw);
      transform: translateX(-50%);
    }
  }

  .fun-hero__bubble--one {
    left: 45px;
    top: 70px;
  }

  .fun-hero__bubble--two {
    right: 0px;
    top: 225px;
  }

  .fun-hero__bubble--three {
    right: 100px;
    bottom: -45px;
  }

  .fun-hero__orb--one {
    width: 150px;
    height: 150px;
    left: 0;
    top: 120px;
  }

  .fun-hero__orb--two {
    width: 120px;
    height: 120px;
    right: 0;
    top: 190px;
  }

  .fun-hero__orb--three {
    width: 100px;
    height: 100px;
    right: 35px;
    bottom: 35px;
  }
}
/* =========================================================
   INTRO
   ========================================================= */
.fun-intro {
  padding: clamp(42px, 6vw, 92px) 0;
}

.fun-intro__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: start;
}

.fun-intro__right {
  display: grid;
  gap: 22px;
}

.fun-info-card {
  padding: 26px 26px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow-soft);
}

.fun-info-card--soft {
  background:
    linear-gradient(
      135deg,
      rgba(217, 239, 255, 0.55),
      rgba(223, 246, 216, 0.45)
    ),
    rgba(255, 255, 255, 0.85);
}

.fun-info-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.1;
  color: var(--fun-ink);
}

.fun-info-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--fun-muted);
}

.fun-info-card p:last-child {
  margin-bottom: 0;
}
.fun-intro__left {
  position: relative;
}

.fun-intro-decor {
  position: relative;
  width: min(320px, 78%);
  margin-top: 34px;
  margin-left: 0;
  z-index: 1;
}

.fun-intro-decor__flower {
  display: block;
  width: 100%;
  height: auto;
}

.fun-intro-decor__bee {
  position: absolute;
  width: 300px;
  height: auto;
  right: 14px;
  top: 12px;
  animation: funBeeBob 3.8s ease-in-out infinite;
  transform-origin: center;
  cursor: pointer;
}

.fun-intro-decor__speech {
  position: absolute;
  top: -50px;
  right: -120px;
  width: 140px;
  z-index: 3;
  animation: funSpeechFloat 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes funSpeechFloat {
  0%,
  100% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(-1px) rotate(15deg);
  }
}
@keyframes funBeeBob {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) translateX(4px) rotate(2deg);
  }
  50% {
    transform: translateY(-4px) translateX(8px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) translateX(2px) rotate(-2deg);
  }
}

/* @media (max-width: 1100px) {
  .fun-intro-decor {
    width: min(260px, 62vw);
    margin-top: 26px;
  }
} */

@media (max-width: 760px) {
  .fun-intro-decor {
    width: min(220px, 70vw);
    margin-top: 20px;
    overflow: visible;
  }

  .fun-intro-decor__bee {
    width: 380px;
    max-width: 100%;
    right: -18px;
    top: 42px;
  }

  .fun-intro-decor__speech {
    top: -10px;
    right: -90px;
    width: 90px;
  }
}

/* =========================================================
   PURPOSE
   ========================================================= */
.fun-purpose {
  padding: clamp(36px, 5vw, 84px) 0;
}

.fun-purpose__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
}

.fun-purpose__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.fun-purpose-card {
  padding: 22px 20px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow-soft);
}

.fun-purpose-card:nth-child(1) {
  background: rgba(223, 246, 216, 0.82);
}
.fun-purpose-card:nth-child(2) {
  background: rgba(217, 239, 255, 0.82);
}
.fun-purpose-card:nth-child(3) {
  background: rgba(232, 222, 252, 0.82);
}
.fun-purpose-card:nth-child(4) {
  background: rgba(255, 242, 184, 0.82);
}

.fun-purpose-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: var(--fun-ink);
  background: rgba(255, 255, 255, 0.75);
}

.fun-purpose-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
  color: var(--fun-ink);
}

.fun-purpose-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--fun-muted);
}

/* =========================================================
   ABOUT PROGRAMME
   ========================================================= */
.fun-about-programme {
  padding: clamp(38px, 5vw, 86px) 0;
}

.fun-about-programme__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.fun-about-programme__content p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--fun-muted);
  max-width: 70ch;
}

.fun-about-programme__side {
  display: grid;
  gap: 18px;
}

.fun-stat-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow-soft);
  background: rgba(255, 255, 255, 0.82);
}

.fun-stat-card:nth-child(1) {
  background: rgba(255, 217, 200, 0.72);
}
.fun-stat-card:nth-child(2) {
  background: rgba(223, 246, 216, 0.75);
}
.fun-stat-card:nth-child(3) {
  background: rgba(217, 239, 255, 0.75);
}

.fun-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
  color: var(--fun-ink);
}

.fun-stat-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--fun-muted);
}

/* =========================================================
   ACTIVITIES
   ========================================================= */
.fun-activities {
  padding: clamp(40px, 6vw, 96px) 0;
}

.fun-activities__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
}

.fun-activities__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.fun-activity-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow-soft);
}

.fun-activity-card__media {
  height: 230px;
  overflow: hidden;
}

.fun-activity-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms var(--fun-ease);
}

.fun-activity-card:hover .fun-activity-card__media img {
  transform: scale(1.03);
}

.fun-activity-card__body {
  padding: 20px 20px 22px;
}

.fun-activity-card__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--fun-ink);
}

.fun-activity-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--fun-muted);
}
.fun-about-programme {
  position: relative;
  padding: clamp(38px, 5vw, 86px) 0;
  overflow: visible;
}

.fun-about-programme__caterpillar {
  position: absolute;
  right: 0;
  top: 520px;
  width: 550px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  transform-origin: 100% 100%;
  /* animation: funLeafSway 7s ease-in-out infinite; */
  will-change: transform;
}
/* @keyframes funLeafSway {
  0%,
  100% {
    transform: rotate(-0.6deg);
  }
  50% {
    transform: rotate(1.2deg);
  }
} */

.fun-activity-card {
  position: relative;
  overflow: visible;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow-soft);
}

.fun-activity-card__media {
  height: 230px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}

.fun-activity-card__body {
  position: relative;
  z-index: 2;
  padding: 20px 20px 22px;
  background: #fff;
  border-radius: 0 0 28px 28px;
}

.fun-activity-card--climb {
  z-index: 3;
}

.fun-activity-card__climber {
  position: absolute;
  left: -450px;
  top: 32px;
  width: 150px;
  height: auto;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(38, 65, 60, 0.18));
}
/* =========================================================
   SUPPORT
   ========================================================= */
.fun-support {
  padding: clamp(38px, 5vw, 90px) 0;
}

.fun-support__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.fun-support__left p {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--fun-muted);
  max-width: 68ch;
}

.fun-support__right {
  display: grid;
  gap: 18px;
}

.fun-support-card {
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow-soft);
}

.fun-support-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
  color: var(--fun-ink);
}

.fun-support-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--fun-muted);
}

/* =========================================================
   CTA
   ========================================================= */
.fun-cta {
  padding: clamp(44px, 6vw, 100px) 0 clamp(58px, 7vw, 110px);
}

.fun-cta__inner {
  width: min(1020px, 94vw);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 34px;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(207, 238, 232, 0.68),
      rgba(217, 239, 255, 0.68)
    ),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(38, 65, 60, 0.08);
  box-shadow: var(--fun-shadow);
}

.fun-cta__lead {
  margin: 18px auto 0;
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.95;
  color: var(--fun-muted);
}

.fun-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.fun-cta__inner {
  position: relative;
  overflow: visible;
}

.fun-cta-decor {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 140px;
  height: auto;
}

.fun-cta-decor--one {
  top: -170px;
  right: 155px;
  width: 200px;
  z-index: 2;
}

.fun-cta-decor--two {
  top: -170px;
  right: 155px;
  width: 200px;
  z-index: 3;
  transform-origin: 50% 50%;
  animation: funLadybugRock 5.2s ease-in-out infinite;
  will-change: transform;
}

.fun-cta-decor--three {
  top: -140px;
  left: -115px;
  width: 200px;
  z-index: -2;
  transform: rotate(-38deg);
}

.fun-cta-decor--four {
  bottom: -0px;
  left: -255px;
  width: 200px;
  z-index: 2;
}
.fun-cta-decor--five {
  bottom: -160px;

  right: -225px;
  width: 200px;
  z-index: 2;
}

@keyframes funLadybugRock {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  50% {
    transform: rotate(-0.8deg);
  }
  75% {
    transform: rotate(8deg);
  }
}

@media (max-width: 760px) {
  .fun-stat-card-2 {
    margin-bottom: 50%;
  }

  .fun-about-programme__caterpillar {
    position: absolute;
    right: 0;
    top: 1200px;
    width: 550px;
    height: auto;
    z-index: 1;
    pointer-events: none;
    transform-origin: 100% 100%;
    /* animation: funLeafSway 7s ease-in-out infinite; */
    will-change: transform;
  }
  .fun-cta-decor {
    width: 90px;
  }

  .fun-cta-decor--one,
  .fun-cta-decor--two,
  .fun-cta-decor--three,
  .fun-cta-decor--four,
  .fun-cta-decor--five {
    display: none;
  }

  .fun-cta-decor--two {
    right: -10px;
    bottom: -25px;
  }
}
/* =========================================================
   FOOTER
   ========================================================= */
.fun-footer {
  padding: 30px 0 42px;
  background: rgba(38, 65, 60, 0.98);
  color: rgba(255, 255, 255, 0.9);
}

.fun-footer__inner {
  width: min(var(--fun-max), 94vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.fun-footer__brand img {
  width: auto;
  height: 82px;
  margin-bottom: 14px;
}

.fun-footer__brand p,
.fun-footer__contact span,
.fun-footer__contact a,
.fun-footer__links a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.76);
}

.fun-footer__links,
.fun-footer__contact {
  display: grid;
  gap: 8px;
}

.fun-footer__links a:hover,
.fun-footer__contact a:hover {
  color: #fff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .fun-hero__inner,
  .fun-intro__inner,
  .fun-about-programme__inner,
  .fun-support__inner {
    grid-template-columns: 1fr;
  }

  .fun-hero__visual {
    min-height: 520px;
  }

  .fun-purpose__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fun-activities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fun-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .fun-menu {
    display: none;
  }

  .fun-burger,
  .fun-mobile-overlay {
    display: block;
  }
}

@media (max-width: 760px) {
  .fun-topbar__inner {
    min-height: 74px;
  }

  .fun-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .fun-footer__brand img {
    width: auto;
    height: 172px;
    margin: 0 auto 14px;
  }
  .fun-brand img {
    height: 62px;
  }

  .fun-mobile-overlay {
    inset: 74px 0 0 0;
  }

  .fun-mobile-panel {
    height: calc(100dvh - 74px);
  }

  .fun-hero__title {
    font-size: clamp(48px, 14vw, 74px);
  }

  .fun-hero__visual {
    min-height: 420px;
  }

  /* .fun-hero__card--main {
    inset: 30px 14px 90px 14px;
  } */

  .fun-hero__bubble {
    padding: 12px 14px;
  }

  .fun-hero__orb--one {
    width: 180px;
    height: 180px;
    left: -10px;
    top: 80px;
  }

  .fun-hero__orb--two {
    width: 120px;
    height: 120px;
    right: -10px;
    top: 180px;
  }

  .fun-hero__orb--three {
    width: 110px;
    height: 110px;
    right: 50px;
    bottom: 60px;
  }

  .fun-purpose__grid,
  .fun-activities__grid {
    grid-template-columns: 1fr;
  }

  .fun-section-title {
    font-size: clamp(36px, 11vw, 56px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
