@charset "UTF-8";
/* ==========================================================================
   MAIN SCSS ENTRY POINT
   ========================================================================== */
/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  --clr-sage: #7B9E6B;
  --clr-sage-light: #A8C49A;
  --clr-sage-dark: #5A7A4E;
  --clr-cream: #FAF7F2;
  --clr-cream-warm: #F5F0E8;
  --clr-gold: #D4A853;
  --clr-gold-light: #E8CC8A;
  --clr-charcoal: #2D2D2D;
  --clr-text: #3A3A3A;
  --clr-text-muted: #6E6E6E;
  --clr-white: #FFFFFF;
  --clr-black: #000000;
  --clr-overlay: rgba(250, 247, 242, 0.85);
  --ff-heading: DM Serif Display, serif;
  --ff-body: Inter, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-float: 0 12px 40px rgba(123, 158, 107, 0.15);
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================
   MIXINS
   ============================ */
/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

[id] {
  scroll-margin-top: 100px;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #3A3A3A;
  background: #FAF7F2;
  line-height: 1.6;
  overflow-x: clip;
}

img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: "DM Serif Display", serif;
  color: #2D2D2D;
  line-height: 1.2;
}

p {
  font-family: "Inter", sans-serif;
  color: #6E6E6E;
}

/* ============================
   ANIMATIONS & KEYFRAMES
   ============================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float-gentle {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}
@keyframes gentle-sway {
  0%, 100% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes float-circles {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.04);
  }
  100% {
    transform: translate(0, 0) scale(1);
  }
}
@keyframes grid-shift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 50px 50px;
  }
}
/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1rem;
  transition: background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav--scrolled {
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  padding-block: 0.75rem;
}
.nav__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__logo:hover {
  transform: scale(1.02);
}
.nav__logo:-webkit-any-link:focus-visible {
  outline: 0;
}
.nav__logo-icon--animate {
  animation: float-gentle 4s infinite ease-in-out;
}
.nav__logo-text {
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  color: #2D2D2D;
}
.nav__logo-text em {
  color: #7B9E6B;
  font-style: normal;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: #6E6E6E;
  transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.nav__link::after {
  content: "";
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 2px;
  background: #7B9E6B;
  border-radius: 2px;
  transition: inline-size 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav__link:hover {
  color: #5A7A4E;
}
.nav__link:hover::after {
  inline-size: 100%;
}
.nav__link.active {
  color: #5A7A4E;
  font-weight: 700;
}
.nav__link.active::after {
  inline-size: 0;
}
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in, visibility 0.6s;
  height: 100dvh;
}
.nav__overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.85s;
}
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  inline-size: 28px;
  block-size: 28px;
  position: relative;
  z-index: 103;
  color: #2D2D2D;
}
.nav__hamburger > svg, .nav__hamburger > site-icon {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease, transform 0.4s ease, fill 0.4s;
}
.nav__hamburger .icon-menu {
  opacity: 1;
  transform: scale(1) rotate(0);
  visibility: visible;
}
.nav__hamburger .icon-close {
  opacity: 0;
  transform: scale(0.5) rotate(-45deg);
  visibility: hidden;
}
.nav__hamburger.active {
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), fill 0.6s;
}
.nav__hamburger.active .icon-menu {
  opacity: 0;
  transform: scale(0.5) rotate(45deg);
  visibility: hidden;
}
.nav__hamburger.active .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0);
  visibility: visible;
}

/* ============================
   FOOTER SECTION
   ============================ */
.footer {
  background: #F5F0E8;
  padding-block-start: 6rem;
  color: #3A3A3A;
  position: relative;
  overflow: visible;
  z-index: 10;
}
.footer__divider {
  position: absolute;
  inset-block-start: -59px;
  inset-inline: 0;
  width: 100%;
  overflow: visible;
  line-height: 0;
  z-index: 11;
  pointer-events: none;
}
.footer__divider svg, .footer__divider site-icon {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
.footer__bg-decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.footer__bg-decor--blob {
  inset-block-end: 0;
  inset-inline-start: -60px;
  animation: float-circles 24s infinite ease-in-out;
}
.footer__bg-decor--leaf {
  inset-block-start: 5%;
  inset-inline-end: 1%;
  animation: float-gentle 12s infinite ease-in-out;
  transform: rotate(-10deg);
  z-index: 15;
}
.footer__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  position: relative;
  z-index: 10;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr;
  gap: 6rem;
  margin-block-end: 4rem;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-block-end: 1.5rem;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__logo:hover {
  transform: scale(1.02);
}
.footer__logo-icon--animate {
  animation: float-gentle 4s infinite ease-in-out;
}
.footer__logo-text {
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  color: #2D2D2D;
}
.footer__logo-text em {
  color: #7B9E6B;
  font-style: normal;
}
.footer__description {
  font-size: 1rem;
  line-height: 1.7;
  color: #6E6E6E;
  max-inline-size: 320px;
  margin-block-end: 2rem;
  text-wrap: pretty;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #A8C49A;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5A7A4E;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #FFFFFF;
}
.footer__social-link:hover {
  background: #7B9E6B;
  color: #FFFFFF;
  border-color: #7B9E6B;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(123, 158, 107, 0.25);
}
.footer__title {
  font-family: "DM Serif Display", serif;
  font-size: 1.35rem;
  margin-block-end: 2rem;
  color: #5A7A4E;
  letter-spacing: 0.02em;
  line-height: 1.75;
  position: relative;
  width: fit-content;
}
.footer__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__link {
  color: #6E6E6E;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  position: relative;
  width: fit-content;
}
.footer__link::after {
  content: "";
  position: absolute;
  inset-block-end: -4px;
  inset-inline-start: 0;
  inline-size: 0;
  block-size: 2px;
  background: #7B9E6B;
  border-radius: 2px;
  transition: inline-size 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__link:hover {
  color: #5A7A4E;
  transform: translateX(4px);
}
.footer__link:hover::after {
  inline-size: 100%;
}
.footer__contact-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #6E6E6E;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.footer__contact-item:hover {
  transform: translateX(4px);
}
.footer__contact-item > svg, .footer__contact-item > site-icon {
  color: #7B9E6B;
  flex-shrink: 0;
  margin-top: 4px;
}
.footer__contact-item .footer__link {
  text-decoration: none;
  line-height: 1.6;
}
.footer__contact-item .footer__link::after {
  display: none;
}
.footer__contact-item .footer__link:hover {
  text-decoration: none;
  transform: none;
}
.footer__bottom {
  margin-block-start: 4rem;
  padding-block: 2rem;
  border-block-start: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
  position: relative;
}
.footer__copyright {
  color: #6E6E6E;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-block-size: 100vh;
  min-block-size: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 6rem 4rem;
  background: #FAF7F2;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset-block-start: -20%;
  inset-inline-end: -10%;
  inline-size: 60%;
  block-size: 80%;
  background: radial-gradient(ellipse, rgba(123, 158, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset-block-end: -10%;
  inset-inline-start: -5%;
  inline-size: 40%;
  block-size: 50%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero__decor {
  position: absolute;
  pointer-events: none;
}
.hero__decor--leaf {
  inset-block-start: 8%;
  inset-inline-end: 3%;
  inline-size: 120px;
  opacity: 0.15;
  transform: rotate(15deg);
  animation: gentle-sway 8s ease-in-out infinite;
}
.hero__decor--circle-1 {
  inset-block-start: 15%;
  inset-inline-start: 5%;
  inline-size: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(123, 158, 107, 0.1);
  border-radius: 50%;
  animation: pulse-ring 6s ease-in-out infinite;
}
.hero__decor--circle-2 {
  inset-block-end: 10%;
  inset-inline-end: 15%;
  inline-size: 100px;
  aspect-ratio: 1;
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: 50%;
  animation: pulse-ring 8s ease-in-out infinite 2s;
}
.hero__decor--dots {
  inset-block-end: 20%;
  inset-inline-start: 8%;
  inline-size: 60px;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, rgba(123, 158, 107, 0.15) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}
.hero__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero__content {
  max-inline-size: 560px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  margin-block-end: 2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}
.hero__badge-dot {
  inline-size: 7px;
  aspect-ratio: 1;
  background: #7B9E6B;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
.hero__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 2rem;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.35s forwards;
}
.hero__title-accent {
  color: #7B9E6B;
  position: relative;
  display: inline-block;
  font-style: normal;
}
.hero__title-accent::after {
  content: "";
  position: absolute;
  inset-block-end: 2px;
  inset-inline: -4px;
  block-size: 12px;
  background: rgba(123, 158, 107, 0.15);
  border-radius: 4px;
  z-index: -1;
}
.hero__subtitle {
  margin-block-end: 2rem;
  max-inline-size: 480px;
  font-size: 1.1rem;
  text-wrap: pretty;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block-end: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.65s forwards;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  padding: 1rem 1.5rem;
}
.hero__btn--primary {
  background: #7B9E6B;
  color: #FFFFFF;
  padding-inline: 2rem;
  box-shadow: 0 4px 16px rgba(123, 158, 107, 0.25);
}
.hero__btn--primary:hover {
  background: #5A7A4E;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 158, 107, 0.35);
}
.hero__btn--primary:hover svg {
  transform: translateX(4px);
}
.hero__btn--primary:active {
  transform: translateY(0);
}
.hero__btn--primary svg {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__btn--secondary {
  color: #3A3A3A;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.hero__btn--secondary:hover {
  border-color: #A8C49A;
  color: #5A7A4E;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}
.hero__trust-item {
  display: flex;
  flex-direction: column-reverse;
}
.hero__trust-item + .hero__trust-item {
  padding-inline-start: 2rem;
  border-inline-start: 1px solid rgba(0, 0, 0, 0.08);
}
.hero__trust-number {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: #2D2D2D;
  line-height: 1;
  margin-block-end: 6px;
  font-weight: 600;
}
.hero__trust-label {
  font-size: 0.78rem;
  color: #6E6E6E;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.hero__visual {
  position: relative;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
  margin: 0;
}
.hero__image-wrapper {
  position: relative;
  display: block;
  border-radius: 28px;
  overflow: visible;
}
.hero__image-wrapper::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 31px;
  background: linear-gradient(135deg, rgba(123, 158, 107, 0.2), rgba(212, 168, 83, 0.15), rgba(123, 158, 107, 0.1));
  z-index: -1;
}
.hero__image {
  inline-size: 100%;
  block-size: 480px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.hero__float-card {
  position: absolute;
  inset-block-end: -20px;
  inset-inline-start: -24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFFFFF;
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: float-gentle 4s ease-in-out infinite;
  z-index: 3;
}
.hero__float-rating {
  font-weight: 700;
  font-size: 1rem;
  color: #7B9E6B;
  display: block;
  line-height: 1.5;
}
.hero__float-label {
  font-size: 0.72rem;
  color: #6E6E6E;
  display: block;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-block-start: 1px;
}
.hero__float-badge {
  position: absolute;
  inset-block-start: -14px;
  inset-inline-end: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #FFFFFF;
  padding: 10px 16px;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: #5A7A4E;
  border: 1px solid rgba(123, 158, 107, 0.1);
  z-index: 3;
  animation: float-gentle 4s ease-in-out infinite 1s;
}
.hero__float-badge svg {
  color: #7B9E6B;
}
.hero__float-badge span {
  margin-block-end: -2px;
}

/* ============================
   PROGRAMS SECTION
   ============================ */
.programs {
  padding-block: 6rem;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.programs__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.programs__header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}
.programs__badge {
  display: inline-block;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 1.5rem;
}
.programs__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.programs__subtitle {
  font-size: 1.1rem;
  text-wrap: balance;
}
.programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal--active {
  opacity: 1;
  transform: translateY(0);
}

/* Program Card */
.program-card {
  position: relative;
  padding: 1px;
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(245, 245, 245) 100%);
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}
.program-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 30px 60px rgba(123, 158, 107, 0.1);
}
.program-card:hover .program-card__inner {
  background: #FFFFFF;
  border-color: rgba(123, 158, 107, 0.15);
}
.program-card:hover .program-card__deco {
  opacity: 0.15;
  transform: scale(2);
}
.program-card:hover .program-card__icon-wrapper {
  transform: rotate(-10deg) scale(1.1);
}
.program-card:hover .program-card__age-badge {
  background: #5A7A4E;
}
.program-card__inner {
  position: relative;
  height: 100%;
  padding: 2rem 1.5rem;
  background: #FAF7F2;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: background 0.4s ease;
}
.program-card__deco {
  position: absolute;
  inset-block-start: -40px;
  inset-inline-end: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: all 0.8s ease;
  z-index: -1;
}
.program-card {
  /* Theme-specific deco colors */
}
.program-card--playgroup .program-card__deco {
  background: #D4A853;
}
.program-card--nursery .program-card__deco {
  background: #7B9E6B;
}
.program-card--kindergarten .program-card__deco {
  background: #F08C6E;
}
.program-card--daycare .program-card__deco {
  background: #A0B4DC;
}
.program-card__age-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  line-height: 1;
  background: #7B9E6B;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  margin-block-end: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.02);
  width: fit-content;
  transition: all 0.3s ease;
}
.program-card__age-badge svg {
  color: #FFFFFF;
}
.program-card__icon-wrapper {
  width: 64px;
  height: 64px;
  background: #FFFFFF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  margin-block-end: 2rem;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.program-card__title {
  font-size: 1.7rem;
  margin-block-end: 0.75rem;
  letter-spacing: 0.5px;
}
.program-card__focus {
  font-size: 1rem;
  color: #6E6E6E;
  text-wrap: pretty;
}

/* ============================
   ACTIVITIES SECTION
   ============================ */
.activities {
  padding-block: 6rem;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.activities__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.activities__header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}
.activities__badge {
  display: inline-block;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 1.5rem;
}
.activities__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.activities__subtitle {
  font-size: 1.1rem;
  text-wrap: balance;
}
.activities__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 320px;
  gap: 2rem;
}
.activities__item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
}
.activities__item--top {
  grid-column: span 2;
}
.activities__item--bottom {
  grid-column: span 3;
}
.activities__item:hover .activities__img {
  transform: scale(1.1) rotate(1deg);
}
.activities__item:hover .activities__overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.8) 100%);
}
.activities__item:hover .activities__item-title {
  transform: translateY(0);
}
.activities__item:hover .activities__item-desc {
  opacity: 1;
  transform: translateY(0);
}
.activities__card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: #F5F0E8;
}
.activities__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.activities__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
  transition: opacity 0.4s ease;
  z-index: 2;
}
.activities__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #FFFFFF;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.activities__item-title {
  font-size: 1.7rem;
  margin-block-end: 0.5rem;
  letter-spacing: 0.5px;
  transform: translateY(60px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #FFFFFF;
}
.activities__item-desc {
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-wrap: pretty;
  max-inline-size: 90%;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================
   USP SECTION
   ============================ */
.usp {
  padding-block: 6rem;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}
.usp__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.usp__header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}
.usp__badge {
  display: inline-block;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 1.5rem;
}
.usp__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.usp__subtitle {
  font-size: 1.1rem;
  color: #6E6E6E;
  text-wrap: balance;
}
.usp__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.usp__card {
  display: flex;
  gap: 2rem;
  padding: 3rem 2rem;
  background: #FAF7F2;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.usp__card:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border-color: rgba(123, 158, 107, 0.15);
}
.usp__card:hover .usp__icon-box {
  background: #7B9E6B;
  color: #FFFFFF;
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(123, 158, 107, 0.2);
}
.usp__icon-box {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  color: #7B9E6B;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.usp__icon-box svg {
  width: 32px;
  height: 32px;
}
.usp__item-title {
  font-size: 1.7rem;
  margin-block-end: 0.75rem;
  letter-spacing: 0.5px;
}
.usp__item-desc {
  font-size: 1rem;
  color: #6E6E6E;
  text-wrap: balance;
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials {
  padding-block: 6rem;
  background: #FAF7F2;
  position: relative;
  overflow: hidden;
}
.testimonials__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.testimonials__header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}
.testimonials__badge {
  display: inline-block;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 1.5rem;
}
.testimonials__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.testimonials__subtitle {
  font-size: 1.1rem;
  text-wrap: balance;
}
.testimonials__carousel-wrapper {
  position: relative;
}
.testimonials__carousel {
  width: 100%;
  position: relative;
}
.testimonials__track-container {
  overflow: hidden;
  margin-inline: auto;
  display: flex;
  position: relative;
}
.testimonials__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  list-style: none;
  padding: 0;
  margin: 0;
}
.testimonials__slide {
  flex: 0 0 auto;
  width: 420px;
  padding-inline: 1rem;
}
.testimonials__card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(123, 158, 107, 0.08);
  box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.03);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonials__card:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  box-shadow: 0 20px 50px -20px rgba(123, 158, 107, 0.12);
  border-color: rgba(123, 158, 107, 0.15);
}
.testimonials__quote-icon {
  width: 28px;
  height: 28px;
  color: #A8C49A;
  margin-block-end: 2rem;
  display: inline-block;
}
.testimonials__text {
  font-size: 1rem;
  color: #3A3A3A;
  line-height: 1.6;
  margin-block-end: 3rem;
  flex-grow: 1;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-wrap: pretty;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block-start: 2rem;
  border-block-start: 1px solid rgba(123, 158, 107, 0.1);
}
.testimonials__info {
  display: flex;
  flex-direction: column;
}
.testimonials__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.testimonials__name {
  font-family: "DM Serif Display", serif;
  font-size: 1rem;
  color: #2D2D2D;
  margin-block-end: 2px;
}
.testimonials__relation {
  font-size: 0.75rem;
  color: #5A7A4E;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================
   FAQ SECTION
   ============================ */
.faq {
  padding-block: 6rem;
  background: #FFFFFF;
  position: relative;
}
.faq__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.faq__header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}
.faq__badge {
  display: inline-block;
  background: rgba(123, 158, 107, 0.1);
  color: #5A7A4E;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 1.5rem;
}
.faq__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.faq__subtitle {
  font-size: 1.1rem;
  text-wrap: balance;
}
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.faq__item {
  background: #FFFFFF;
  border: 1px solid rgba(123, 158, 107, 0.15);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.faq__item:hover {
  border-color: #A8C49A;
  box-shadow: 0 10px 30px -10px rgba(123, 158, 107, 0.1);
}
.faq__item.active {
  border-color: #A8C49A;
  background: #FAF7F2;
  box-shadow: 0 15px 40px -12px rgba(123, 158, 107, 0.15);
}
.faq__item.active .faq__question {
  color: #5A7A4E;
}
.faq__item.active .faq__icon {
  background: #7B9E6B;
  color: #FFFFFF;
  transform: rotate(135deg);
}
.faq__item.active .faq__content {
  opacity: 1;
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  outline: none;
}
.faq__question {
  font-family: "DM Serif Display", serif;
  font-size: 1.5rem;
  color: #2D2D2D;
  font-weight: 500;
  transition: color 0.3s ease;
}
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 158, 107, 0.08);
  border-radius: 50%;
  color: #5A7A4E;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-inline-start: 1rem;
}
.faq__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease-out;
  opacity: 0;
}
.faq__answer {
  padding: 0.75rem 3rem 2rem;
  color: #6E6E6E;
  line-height: 1.6;
  font-size: 1rem;
  text-wrap: pretty;
}

/* ============================
   CTA SECTION
   ============================ */
.cta--geometric {
  padding-block: 6rem 150px;
  background: #0A1F12;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__background-geometric {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.cta__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212, 168, 83, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 83, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
  animation: grid-shift 12s linear infinite;
  opacity: 0.8;
}

.cta__shape {
  position: absolute;
  border: 1px solid rgba(212, 168, 83, 0.2);
  border-radius: 50%;
  pointer-events: none;
}
.cta__shape--1 {
  width: 350px;
  height: 350px;
  top: -80px;
  right: -40px;
  animation: float-circles 8s infinite alternate;
}
.cta__shape--2 {
  width: 250px;
  height: 250px;
  bottom: -40px;
  left: -40px;
  opacity: 0.6;
  animation: float-circles 10s infinite alternate-reverse;
}

.cta__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  position: relative;
  z-index: 10;
}

.cta__content {
  text-align: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta__badge {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #D4A853;
  margin-block-end: 0.5rem;
}

.cta__title {
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-block-end: 0;
  font-weight: 400;
  color: #FFFFFF;
}

.cta__year {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  font-size: clamp(3.8rem, 7vw, 5rem);
  color: #FFFFFF;
}

.cta__subtitle {
  font-size: 1.25rem;
  opacity: 0.85;
  line-height: 1.6;
  text-wrap: balance;
  max-inline-size: 720px;
  color: #FAF7F2;
}

.cta__btn--signature {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 20px 48px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(212, 168, 83, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
}
.cta__btn--signature:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.cta__btn--signature:hover > svg, .cta__btn--signature:hover > site-icon {
  transform: translateX(6px);
}
.cta__btn--signature > svg, .cta__btn--signature > site-icon {
  width: 22px;
  stroke-width: 2;
  transition: transform 0.4s ease;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
/* ──────────────────────────────────────────
   1) HERO SECTION
────────────────────────────────────────── */
.blog-hero {
  position: relative;
  background-color: #FAF7F2;
  padding-block: 6rem;
  overflow: hidden;
  min-block-size: 75dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(123, 158, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  right: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(212, 168, 83, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.blog-hero__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  position: relative;
  z-index: 10;
}

/* Floating SVG icons */
.blog-hero__icons {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.blog-hero__icon {
  position: absolute;
  color: #7B9E6B;
  width: 28px !important;
  opacity: 0.3 !important;
  animation: float-icon var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.blog-hero__icon:nth-child(1) {
  top: 15%;
  left: 8%;
  --dur: 9s;
}
.blog-hero__icon:nth-child(2) {
  top: 50%;
  left: 10%;
  --dur: 12s;
  --delay: 1.5s;
  color: #D4A853;
}
.blog-hero__icon:nth-child(3) {
  top: 12%;
  right: 9%;
  --dur: 10s;
  --delay: 0.5s;
}
.blog-hero__icon:nth-child(4) {
  top: 55%;
  right: 14%;
  --dur: 11s;
  --delay: 2s;
  color: #D4A853;
}
.blog-hero__icon:nth-child(5) {
  top: 0%;
  left: 25%;
  --dur: 8s;
  --delay: 3s;
}
.blog-hero__icon:nth-child(6) {
  bottom: 12%;
  left: 15%;
  --dur: 13s;
  --delay: 1s;
}
.blog-hero__icon:nth-child(7) {
  top: 40%;
  right: 5%;
  --dur: 14s;
  --delay: 2.5s;
  color: #D4A853;
}
.blog-hero__icon:nth-child(8) {
  bottom: 15%;
  right: 8%;
  --dur: 10s;
  --delay: 0.8s;
}

@keyframes float-icon {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(8deg);
  }
}
.blog-hero__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  letter-spacing: 0.5px;
  margin-block-end: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-fade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}
.blog-hero__title em {
  color: #7B9E6B;
  font-style: italic;
  position: relative;
  display: inline-block;
}
.blog-hero__title em::after {
  content: "";
  position: absolute;
  inset-block-end: 2px;
  inset-inline: -4px;
  block-size: 12px;
  background: rgba(123, 158, 107, 0.15);
  border-radius: 8px;
  z-index: -1;
}

.blog-hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  color: #6E6E6E;
  max-width: 540px;
  margin: auto;
  opacity: 0;
  text-wrap: pretty;
  transform: translateY(20px);
  animation: hero-fade 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

@keyframes hero-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ──────────────────────────────────────────
   2) BLOG GRID & CARDS
────────────────────────────────────────── */
.blog-section {
  background-color: #FFFFFF;
  padding-block: 6rem 150px;
}

.blog-section__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}
.blog-card:hover {
  background: #fdfbf7;
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
  border-color: rgba(123, 158, 107, 0.15);
}
.blog-card:hover .blog-card__img {
  box-shadow: 0 15px 30px rgba(123, 158, 107, 0.2);
  transform: scale(1.1);
}
.blog-card:hover .blog-card__title {
  color: #7B9E6B;
}
.blog-card:hover .blog-card__btn {
  color: #7B9E6B;
}
.blog-card:hover .blog-card__btn-icon {
  background: #7B9E6B;
  color: #FFFFFF;
  transform: translateX(4px);
}
.blog-card.is-visible {
  animation: card-reveal 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.blog-card.is-hidden {
  display: none !important;
}

@keyframes card-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Image container */
.blog-card__image-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #F5F0E8;
  border-radius: 12px;
}

.blog-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Category Badge (Pill) */
.blog-card__category {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #7B9E6B;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 1px 10px 0;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(123, 158, 107, 0.2);
  z-index: 2;
}

/* Content Area */
.blog-card__content {
  padding: 1.5rem 0.5rem 0.5rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  color: #6E6E6E;
  font-weight: 500;
}

.blog-card__title {
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  color: #2D2D2D;
  line-height: 1.2;
  margin-block-end: 1rem;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__excerpt {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #6E6E6E;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
  text-wrap: pretty;
}

/* ──────────────────────────────────────────
   3) "READ MORE" BUTTON
────────────────────────────────────────── */
.blog-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3A3A3A;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-card__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #F5F0E8;
  color: #7B9E6B;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.75rem;
}

/* ──────────────────────────────────────────
   4) PAGINATION
────────────────────────────────────────── */
.blog-pagination {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.blog-loadmore__btn {
  display: inline-flex;
  align-items: center;
  background: #7B9E6B;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 9999px;
  white-space: nowrap;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(123, 158, 107, 0.25);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-loadmore__btn svg {
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-loadmore__btn:hover {
  background: #5A7A4E;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(123, 158, 107, 0.35);
}
.blog-loadmore__btn:hover svg {
  transform: translateX(4px);
}
.blog-loadmore__btn:active {
  transform: translateY(0);
}
.blog-loadmore__btn.is-hidden {
  display: none !important;
}

.blog-all-caught {
  display: none;
  align-items: center;
  gap: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #6E6E6E;
  text-transform: uppercase;
}
.blog-all-caught.is-visible {
  display: flex;
}
.blog-all-caught::before, .blog-all-caught::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background-color: #6E6E6E;
  opacity: 0.4;
}

#blog-scroll-sentinel {
  height: 1px;
  width: 100%;
}

/* ──────────────────────────────────────────
   5) RESPONSIVE
────────────────────────────────────────── */
@media (min-width: 1500px) {
  .blog-section__container {
    max-inline-size: 1450px;
  }
  .blog-hero__title {
    font-size: clamp(3.4rem, 5vw, 4.2rem);
  }
  .blog-hero__subtitle {
    max-inline-size: 780px;
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  }
  .blog-loadmore__btn {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    padding: clamp(16px, 1.5vw, 20px) clamp(32px, 3vw, 44px);
  }
}
@media (width <= 1024px) {
  .blog-hero {
    min-block-size: 45dvh;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 768px) {
  .blog-hero {
    padding-block: 5rem 4rem;
  }
  .blog-section {
    padding-block: 4rem 115px;
  }
}
@media (width < 768px) {
  .blog-hero__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
  .blog-hero__subtitle {
    max-width: 90%;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    min-block-size: 50dvh;
  }
}
@media (width <= 480px) {
  .blog-hero {
    min-block-size: 55dvh;
  }
  .blog-section__container {
    padding-inline: 1rem;
  }
  .blog-hero__icon:nth-child(1) {
    left: 6%;
  }
  .blog-hero__icon:nth-child(2) {
    top: 44%;
    left: 5%;
  }
  .blog-hero__icon:nth-child(3) {
    right: 5%;
    top: 5%;
  }
  .blog-hero__icon:nth-child(4) {
    top: 52%;
    right: 6%;
  }
  .blog-hero__icon:nth-child(5) {
    left: 30%;
  }
  .blog-hero__icon:nth-child(7) {
    top: 30%;
  }
}
/* ============================
   RESPONSIVE STYLES
   ============================ */
@media (width <= 1200px) {
  .hero {
    padding-block: 120px 6rem;
  }
  .hero__image {
    block-size: 440px;
  }
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 1200px) and (width >= 1024px) {
  .activities__item--bottom .activities__item-title {
    transform: translateY(35px);
  }
}
@media (width <= 1024px) {
  .hero {
    min-block-size: auto;
  }
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__content {
    max-inline-size: 600px;
    margin-inline: auto;
    order: 2;
  }
  .hero__subtitle {
    max-inline-size: 100%;
    text-wrap: balance;
    margin-block-end: 3rem;
  }
  .hero__actions {
    justify-content: center;
    margin-block-end: 3rem;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__visual {
    order: 1;
    max-inline-size: 520px;
    margin-inline: auto;
    width: 100%;
  }
  .hero__float-card {
    inset-block-end: -16px;
    inset-inline-start: 16px;
  }
  .hero__float-badge {
    inset-block-start: -10px;
    inset-inline-end: 16px;
  }
  .hero__float-rating {
    text-align: left;
  }
  .hero--leaf {
    inline-size: 80px;
    inset-block-start: 5%;
  }
  .hero__btn--primary, .hero__btn--secondary {
    inline-size: 45%;
    justify-content: center;
  }
  .testimonials__slide {
    width: 380px;
  }
  .faq__trigger,
  .faq__answer {
    padding-inline: 2rem;
  }
  .footer__grid {
    gap: 2rem;
  }
  .footer__link {
    text-wrap: balance;
  }
}
@media (width < 1024px) {
  .activities__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .activities__item--top:nth-child(1), .activities__item--top:nth-child(2) {
    grid-column: span 2;
  }
  .activities__item--top:nth-child(3), .activities__item--bottom {
    grid-column: span 2;
  }
  .usp__grid {
    grid-template-columns: 1fr;
  }
}
@media (width <= 768px) {
  .nav__links {
    position: fixed;
    inset-block-start: 0;
    inset-inline-end: -100%;
    inline-size: 350px;
    max-inline-size: 85vw;
    block-size: 100vh;
    block-size: 100dvh;
    background: #FAF7F2;
  }
  @supports (backdrop-filter: blur(20px)) {
    .nav__links {
      background: #FAF7F2;
      backdrop-filter: blur(20px);
    }
  }
  .nav__links {
    border-start-start-radius: 28px;
    border-end-start-radius: 28px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-inline: 4rem;
    gap: 1.5rem;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.08);
    transition: inset-inline-end 0.6s ease-in, box-shadow 0.6s ease;
    z-index: 102;
  }
  .nav__links.open {
    inset-inline-end: 0;
    transition: inset-inline-end 0.85s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.85s ease;
  }
  .nav__links li {
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .nav__links.open li {
    opacity: 1;
    transform: translateY(0);
  }
  .nav__links.open li:nth-child(1) {
    transition-delay: 0.58s;
  }
  .nav__links.open li:nth-child(2) {
    transition-delay: 0.66s;
  }
  .nav__links.open li:nth-child(3) {
    transition-delay: 0.74s;
  }
  .nav__links.open li:nth-child(4) {
    transition-delay: 0.82s;
  }
  .nav__links.open li:nth-child(5) {
    transition-delay: 0.9s;
  }
  .nav__links.open li:nth-child(6) {
    transition-delay: 0.98s;
  }
  .nav__link {
    font-size: 1.5em;
    color: #6E6E6E;
    display: inline-block;
    width: 100%;
    padding-block: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .nav__link::after {
    display: none;
  }
  .nav__link:hover {
    color: #7B9E6B;
    transform: translateX(10px);
  }
  .nav__hamburger {
    display: block;
  }
  .hero {
    padding-block: 110px 4rem;
  }
  .hero__image {
    block-size: 380px;
  }
  .hero__container {
    gap: 3rem;
  }
  .hero__actions {
    gap: 0.75rem;
  }
  .hero__decor--circle-1, .hero__decor--circle-2, .hero__decor--dots {
    display: none;
  }
  .hero__visual {
    width: 95%;
  }
  .programs,
  .activities,
  .usp,
  .testimonials,
  .faq {
    padding-block: 4rem;
  }
  .cta--geometric {
    padding-block: 4rem 115px;
  }
  .programs__header,
  .activities__header,
  .usp__header,
  .testimonials__header,
  .faq__header {
    margin-block-end: 4rem;
  }
  .activities__grid {
    grid-template-columns: 1fr;
  }
  .activities__item .activities__content {
    padding: 1.5rem;
  }
  .activities__item-desc, .activities__item-title {
    opacity: 1;
    transform: translateY(0);
  }
  .usp__card {
    padding: 2rem 1.5rem;
  }
  .footer {
    padding-block-start: 4rem;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand {
    grid-column: span 2;
    margin-block-end: 2rem;
  }
  .footer__description {
    max-inline-size: 95%;
  }
  .footer__bg-decor--leaf {
    inset-block-start: 30%;
  }
}
@media (width < 768px) {
  .hero__title,
  .programs__title,
  .activities__title,
  .usp__title,
  .testimonials__title,
  .faq__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
  .hero__trust {
    gap: 1.5rem;
  }
  .hero__trust-item + .hero__trust-item {
    padding-inline-start: 1.5rem;
  }
  .usp__card {
    flex-direction: column;
    gap: 1.5rem;
  }
  .usp__item-desc {
    text-wrap: pretty;
  }
  .faq__trigger {
    padding: 1.5rem;
  }
  .faq__icon {
    width: 22px;
    height: 22px;
  }
  .faq__answer {
    padding: 0.75rem 1.5rem 1.5rem;
  }
  .faq__question {
    font-size: 1.1rem;
    padding-inline-end: 1rem;
  }
  .cta__title {
    font-size: 2.2rem;
  }
  .cta__year {
    font-size: 3rem;
  }
  .cta__btn--signature {
    padding: 18px 36px;
  }
  .cta__shape--1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -20px;
  }
  .cta__shape--2 {
    width: 100px;
    height: 100px;
    bottom: -20px;
    left: -20px;
  }
  .cta__subtitle {
    font-size: 1.15rem;
  }
}
@media (width <= 640px) {
  .programs__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__slide {
    width: 350px;
  }
  .nav__links {
    inline-size: 285px;
  }
}
@media (width <= 480px) {
  .nav__container {
    padding-inline: 1.5rem;
  }
  .hero__container {
    padding-inline: 1rem;
  }
  .hero__image {
    block-size: 280px;
  }
  .hero__float-card {
    inset-inline-start: 8px;
    inset-block-end: -12px;
    padding: 10px 14px;
  }
  .hero__float-badge {
    inset-inline-end: 8px;
    inset-block-start: -8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__btn--primary,
  .hero__btn--secondary {
    inline-size: 90%;
  }
  .hero__trust {
    gap: 1rem;
  }
  .hero__trust-item + .hero__trust-item {
    padding-inline-start: 1rem;
  }
  .programs__container,
  .activities__container,
  .usp__container,
  .testimonials__container,
  .faq__container,
  .cta__container {
    padding-inline: 1rem;
  }
  .program-card__inner {
    padding: 2rem 1.5rem;
  }
  .activities__grid {
    grid-auto-rows: 300px;
    gap: 1.5rem;
  }
  .footer__container {
    padding-inline: 1.5rem;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer__col--brand {
    grid-column: span 1;
    margin-block-end: 0;
  }
}
@media (min-width: 1500px) {
  .hero__content {
    max-inline-size: 720px;
  }
  .hero__title {
    font-size: clamp(3.4rem, 5vw, 4.2rem);
  }
  .hero__subtitle {
    max-inline-size: 610px;
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  }
  .hero__btn {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
  }
  .hero__btn--primary {
    padding: clamp(16px, 1.5vw, 20px) clamp(32px, 3vw, 44px);
  }
  .hero__btn--secondary {
    padding: clamp(16px, 1.5vw, 20px) clamp(24px, 2.5vw, 36px);
  }
  .hero__trust-number {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  }
  .hero__trust-label {
    font-size: clamp(0.78rem, 1vw, 1.1rem);
  }
  .hero__image {
    block-size: min(720px, 60vh);
  }
  .nav__container,
  .hero__container,
  .programs__container,
  .activities__container,
  .usp__container,
  .testimonials__container,
  .faq__container,
  .cta__container,
  .footer__container {
    max-inline-size: 1450px;
  }
  .activities__item--bottom .activities__item-title {
    transform: translateY(32px);
  }
}

/*# sourceMappingURL=styles.css.map */
