@charset "UTF-8";
/* ============================
   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
   ============================ */
/* scss/sections/_about.scss */
/* ──────────────────────────────────────────
   1) ABOUT HERO (Asymmetric Splash)
────────────────────────────────────────── */
.about-hero {
  position: relative;
  padding-block: 6rem 4rem;
  background: #FAF7F2;
  overflow: hidden;
  min-block-size: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__bg-element {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(123, 158, 107, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.about-hero__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-hero__content {
  max-inline-size: 560px;
  position: relative;
  z-index: 5;
}
.about-hero__badge {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5A7A4E;
  margin-block-end: 2rem;
  position: relative;
  padding-inline-start: 20px;
}
.about-hero__badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background-color: #7B9E6B;
}
.about-hero__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  text-wrap: balance;
  margin-block-end: 2rem;
  letter-spacing: 0.5px;
}
.about-hero__title span {
  color: #7B9E6B;
  display: inline-block;
  position: relative;
}
.about-hero__title span::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;
}
.about-hero__subtitle {
  font-size: 1.1rem;
  text-wrap: pretty;
  max-inline-size: 480px;
}
.about-hero__visuals {
  position: relative;
  height: 480px;
}
.about-hero__img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.about-hero__img--main {
  top: 0;
  right: 0;
  width: 75%;
  height: 95%;
  border-radius: 28px;
  border: 8px solid #FAF7F2;
  z-index: 1;
}
.about-hero__img--accent {
  bottom: 0;
  left: 2.5%;
  width: 45%;
  aspect-ratio: 1;
  border-radius: 50%;
  /* Circle shape */
  border: 8px solid #FAF7F2;
  z-index: 2;
}
.about-hero__decor-circle, .about-hero__decor-circle-2 {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #D4A853;
  opacity: 0.2;
  z-index: 0;
  animation: float-gentle 4s ease-in-out infinite;
}
.about-hero__decor-circle-2 {
  inset: auto 5% -5% auto;
}

/* ──────────────────────────────────────────
   2) OUR STORY (Editorial Style)
────────────────────────────────────────── */
.about-story {
  padding-block: 6rem;
  background-color: #FAF7F2;
  overflow: hidden;
}
.about-story__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-story__header {
  text-align: left;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 3rem;
}
.about-story__content {
  max-inline-size: 600px;
}
.about-story__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;
}
.about-story__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
  text-wrap: balance;
}
.about-story__editorial {
  font-size: 1.1rem;
  color: #6E6E6E;
  text-wrap: balance;
}
.about-story__editorial p {
  margin-block-end: 1.5rem;
}
.about-story__editorial p span {
  color: #7B9E6B;
  font-weight: 700;
}
.about-story__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  max-height: 480px;
}
.about-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}
.about-story__decor, .about-story__decor-2 {
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 100px;
  height: 100px;
  background-color: #D4A853;
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
  animation: float-gentle 4s ease-in-out infinite;
}
.about-story__decor-2 {
  inset: -40px -40px auto auto;
}

/* ──────────────────────────────────────────
   3) FOUNDERS (Staggered Layout)
────────────────────────────────────────── */
.about-founders {
  padding-block: 6rem;
  background: #FFFFFF;
  overflow: hidden;
}
.about-founders__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
}
.about-founders__header {
  text-align: center;
  max-inline-size: 780px;
  margin-inline: auto;
  margin-block-end: 6rem;
}
.about-founders__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;
}
.about-founders__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.about-founders__subtitle {
  font-size: 1.1rem;
  text-wrap: balance;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-block-end: 6rem;
}
.founder-row:last-child {
  margin-block-end: 0;
}
.founder-row--reverse {
  flex-direction: row-reverse;
}
.founder-row__visual {
  flex: 1;
  position: relative;
  width: 100%;
}
.founder-row__img {
  width: 320px;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  margin-inline: auto;
}
.founder-row__img--pill {
  border-radius: 300px;
}
.founder-row__content {
  flex: 1;
}
.founder-row__role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5A7A4E;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-block-end: 0.75rem;
}
.founder-row__name {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1.5rem;
}
.founder-row__bio {
  font-size: 1.1rem;
  line-height: 1.8;
  text-wrap: pretty;
}

/* ──────────────────────────────────────────
   4) APPROACH (Elegant Numbered List)
────────────────────────────────────────── */
.about-approach {
  padding-block: 6rem;
  background-color: #FFFFFF;
}
.about-approach__container {
  max-inline-size: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 6rem;
  align-items: start;
}
.about-approach__header {
  position: sticky;
  top: 120px;
}
.about-approach__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;
}
.about-approach__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-block-end: 1rem;
}
.about-approach__subtitle {
  font-size: 1.1rem;
  text-wrap: balance;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.approach-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-block-end: 4rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.approach-item:last-child {
  border-bottom: none;
  padding-block-end: 0;
}
.approach-item__number {
  font-family: "DM Serif Display", serif;
  font-size: 4rem;
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(123, 158, 107, 0.4);
  font-weight: 400;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.approach-item:hover .approach-item__number, .approach-item.is-active .approach-item__number {
  -webkit-text-stroke: 1.5px #7B9E6B;
  color: rgba(123, 158, 107, 0.1);
}
.approach-item__title {
  font-size: 1.7rem;
  margin-block-end: 0.75rem;
  letter-spacing: 0.5px;
}
.approach-item__desc {
  font-size: 1rem;
  color: #6E6E6E;
  text-wrap: pretty;
}

/* ──────────────────────────────────────────
  RESPONSIVE
────────────────────────────────────────── */
@media (min-width: 1500px) {
  .about-hero__container {
    max-inline-size: 1450px;
  }
  .about-hero__content {
    max-inline-size: 720px;
  }
  .about-hero__title {
    font-size: clamp(3.4rem, 5vw, 4.2rem);
  }
  .about-hero__subtitle {
    max-inline-size: 610px;
    font-size: clamp(1.1rem, 1.5vw, 1.6rem);
  }
  .about-hero__visuals {
    height: min(720px, 60vh);
  }
  .about-hero__img--main {
    width: 90%;
    height: 100%;
  }
  .about-hero__img--accent {
    bottom: -4%;
    left: -7.5%;
  }
  .about-hero__decor-circle {
    left: 0;
    width: 80px;
    height: 80px;
  }
  .about-hero__decor-circle-2 {
    bottom: -10%;
    width: 80px;
    height: 80px;
  }
  .about-approach__container,
  .about-story__container,
  .about-founders__container {
    max-inline-size: 1450px;
  }
  .about-story__content {
    max-inline-size: 640px;
  }
}
@media (width <= 1200px) {
  .about-hero {
    padding-block: 120px 6rem;
  }
  .about-hero__visuals {
    height: 440px;
  }
}
@media (width <= 1024px) {
  .about-hero {
    min-block-size: auto;
  }
  .about-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-hero__content {
    order: 2;
    margin-inline: auto;
  }
  .about-hero__subtitle {
    max-inline-size: 100%;
    text-wrap: balance;
  }
  .about-hero__visuals {
    order: 1;
  }
  .about-hero__img--main {
    width: 85%;
  }
  .about-hero__img--accent {
    width: 38%;
  }
  .about-hero__decor-circle {
    left: 6%;
  }
  .about-story__decor {
    left: -20px;
  }
  .about-story__decor-2 {
    right: -20px;
  }
}
@media (width < 1024px) {
  .about-story__container {
    grid-template-columns: 1fr;
  }
  .about-story__header {
    text-align: center;
  }
  .about-story__content {
    max-inline-size: none;
    text-align: center;
  }
  .about-story__visual {
    max-inline-size: 640px;
    margin-inline: auto;
  }
  .about-approach__container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-approach__header {
    position: static;
    text-align: center;
    max-inline-size: 780px;
    margin-inline: auto;
    margin-block-end: 6rem;
  }
  .founder-row {
    gap: 3rem;
  }
}
@media (width <= 768px) {
  .about-hero {
    padding-block: 110px 4rem;
  }
  .about-hero__container {
    gap: 3rem;
  }
  .about-hero__visuals {
    height: 380px;
    width: 95%;
    margin-inline: auto;
  }
  .about-hero__img--main, .about-hero__img--accent {
    border-width: 5px;
  }
  .about-approach {
    padding-block: 4rem;
  }
  .about-story,
  .about-founders {
    padding-block: 4rem;
  }
  .about-founders__header {
    margin-block-end: 4rem;
  }
  .founder-row {
    flex-direction: column;
  }
  .founder-row__content {
    text-align: center;
  }
  .founder-row__bio {
    text-wrap: balance;
  }
}
@media (width < 768px) {
  .about-hero__title,
  .about-approach__title,
  .about-story__title,
  .about-founders__title {
    font-size: clamp(2rem, 3vw, 2.6rem);
  }
  .approach-list {
    gap: 3rem;
  }
  .approach-item {
    flex-direction: column;
    text-align: center;
    padding-block-end: 3rem;
  }
  .approach-item__number {
    font-size: 3rem;
    margin-inline: auto;
  }
  .about-story__container {
    gap: 2rem;
  }
  .about-story__img {
    width: 95%;
    margin-inline: auto;
  }
  .founder-row__img {
    height: 360px;
    width: 240px;
  }
}
@media (width <= 480px) {
  .about-hero__img--main {
    width: 100%;
    height: 100%;
  }
  .about-hero__visuals {
    height: 280px;
  }
  .about-hero__img--accent {
    display: none;
  }
  .about-hero__decor-circle-2 {
    bottom: -13%;
  }
  .about-hero__decor-circle {
    top: -10%;
  }
  .about-hero__container,
  .about-approach__container,
  .about-story__container,
  .about-founders__container {
    padding-inline: 1rem;
  }
}
/* ============================
   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=about.css.map */
