@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2d24;
  background: #faf9f4;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #268a4e;
  text-decoration: none;
}
a:hover {
  color: #1c6b3c;
}

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

:where(a, button, [tabindex]):focus-visible {
  outline: 2px solid #268a4e;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1, h2, h3, h4 {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  color: #1f2d24;
  margin: 0;
}

h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
}

h2 {
  font-size: 38px;
  line-height: 1.14;
}
@media (max-width: 768px) {
  h2 {
    font-size: 27px;
  }
}

h3 {
  font-size: 22px;
  font-weight: 700;
}

p {
  margin: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 249, 244, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e4eae2;
}
.header__inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.header__logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 17px;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
.nav__link {
  padding: 8px 13px;
  border-radius: 9px;
  color: #37473d;
}
.nav__link:hover, .nav__link--current {
  background: #eef7f0;
  color: #1c6b3c;
}
.nav__group {
  position: relative;
}
.nav__dropdown {
  position: absolute;
  top: 80%;
  right: 0;
  margin-top: 8px;
  min-width: 210px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #fff;
  border: 1px solid #e4eae2;
  border-radius: 14px;
  filter: drop-shadow(0 16px 38px rgba(31, 45, 36, 0.15));
}
.nav__dropdown[hidden] {
  display: none;
}
.nav__dropdown-link {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 15px;
  color: #37473d;
}
.nav__dropdown-link:hover {
  background: #eef7f0;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #dbe4d8;
  border-radius: 12px;
  background: #fff;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
}
.burger__bar {
  width: 22px;
  height: 2.5px;
  background: #1f2d24;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 24px 20px;
  background: #fff;
  border-bottom: 1px solid #e4eae2;
}
.mobile-nav[hidden] {
  display: none;
}
@media (max-width: 768px) {
  .mobile-nav:not([hidden]) {
    display: flex;
  }
}
.mobile-nav__link {
  padding: 12px 10px;
  border-radius: 9px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  color: #37473d;
}
.mobile-nav__link:hover {
  background: #eef7f0;
}
.mobile-nav__heading {
  margin-top: 10px;
  padding: 6px 10px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a978d;
}
.mobile-nav__separator {
  height: 1px;
  margin: 8px 0;
  background: #e4eae2;
}

.footer {
  background: #1f2d24;
  color: rgba(255, 255, 255, 0.82);
  padding-block: 56px 28px;
}
.footer__inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 14px;
}
.footer__link {
  display: block;
  padding: 4px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}
.footer__link:hover {
  color: #fff;
}
.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .footer__actions {
    flex-direction: column;
  }
  .footer__actions .btn {
    width: 100%;
  }
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  color: #9aa89f;
}

.section {
  padding-block: 84px;
}
@media (max-width: 768px) {
  .section {
    padding-block: 52px;
  }
}
.section--tinted {
  background: #f2f7f0;
}
.section--flush {
  padding-block: 0 40px;
}
@media (max-width: 768px) {
  .section--flush {
    padding-block: 0 28px;
  }
}
.section--pull-up {
  padding-block: 48px 8px;
}
.section__empty {
  grid-column: 1/-1;
  padding: 40px 0;
  text-align: center;
  color: #5f6f64;
}
.section--surface {
  background: #fff;
}
.section__inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
}
.section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section__head--between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  max-width: none;
  margin-bottom: 40px;
  text-align: left;
}
.section__eyebrow {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #268a4e;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
}
.section__eyebrow--on-white {
  background: #eef7f0;
}
.section__title {
  margin-top: 14px;
}
.section__lead {
  margin-top: 14px;
  font-size: 17px;
  color: #5f6f64;
}
.section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) and (min-width: 769px) {
  .section__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .section__grid {
    grid-template-columns: 1fr;
  }
}
.section__grid--pair {
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .section__grid--pair {
    grid-template-columns: 1fr;
  }
}
.section__grid--wide-first {
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .section__grid--wide-first {
    grid-template-columns: 1fr;
  }
}
.section__grid--stretch {
  align-items: stretch;
}
.section__footer {
  margin-top: 36px;
  text-align: center;
}
.section__split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .section__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 15.5px;
  white-space: nowrap;
  transition: transform 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
  .btn:hover {
    transform: none;
  }
}
.btn--primary {
  background: #f26b4e;
  color: #fff;
  box-shadow: 0 10px 24px rgba(242, 107, 78, 0.2);
}
.btn--primary:hover {
  color: #fff;
}
.btn--ghost {
  background: #fff;
  color: #1f2d24;
  border: 1px solid #dbe4d8;
}
.btn--ghost:hover {
  color: #1f2d24;
  border-color: #268a4e;
}
.btn--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.btn--on-dark:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.btn--compact {
  padding: 13px 22px;
  font-size: 15px;
}
.btn--small {
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
}
.btn--link {
  padding: 10px 0;
  background: transparent;
  color: #268a4e;
  font-size: 15px;
}
.btn--link:hover {
  color: #1c6b3c;
}
.btn--green {
  background: #268a4e;
  color: #fff;
}
.btn--green:hover {
  color: #fff;
}
@media (max-width: 768px) {
  .btn--header {
    display: none;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #eef7f0 0%, #faf9f4 62%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: #d6ecdb;
  opacity: 0.55;
}
.hero::after {
  bottom: -140px;
  left: -100px;
  width: 320px;
  height: 320px;
  background: #ffe2d6;
  opacity: 0.6;
}
.hero__inner {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 76px 84px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 48px 56px;
  }
}
.hero__eyebrow {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #268a4e;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(38, 138, 78, 0.12);
}
.hero__title {
  margin-top: 22px;
}
.hero__title em {
  font-style: normal;
  color: #268a4e;
}
.hero__lead {
  margin-top: 22px;
  max-width: 520px;
  font-size: 19px;
  color: #4a5852;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
}
.hero__stat-value {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #268a4e;
}
.hero__stat-label {
  font-size: 13.5px;
  color: #5f6f64;
}
.hero__divider {
  width: 1px;
  background: #dbe4d8;
}
@media (max-width: 768px) {
  .hero__divider {
    display: none;
  }
}
.hero__media {
  position: relative;
}
.hero__media::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 28px;
  background: #268a4e;
  opacity: 0.12;
}
.hero__image {
  position: relative;
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(31, 45, 36, 0.2);
}
@media (max-width: 768px) {
  .hero__image {
    height: 320px;
  }
}
.hero__pill {
  position: absolute;
  bottom: -22px;
  left: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(31, 45, 36, 0.16);
}
@media (max-width: 768px) {
  .hero__pill {
    left: 8px;
    bottom: -18px;
  }
}
.hero__pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef7f0;
  font-size: 22px;
}
.hero__pill-title {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.hero__pill-subtitle {
  font-size: 13px;
  color: #5f6f64;
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: principle;
}
.principles__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: #37473d;
  counter-increment: principle;
}
.principles__item::before {
  content: counter(principle);
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef7f0;
  color: #268a4e;
  font-weight: 800;
}

.portrait {
  position: relative;
}
.portrait__image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 20px 48px rgba(31, 45, 36, 0.16);
}
@media (max-width: 768px) {
  .portrait__image {
    height: 340px;
  }
}
.portrait__tag {
  position: absolute;
  top: -16px;
  right: -16px;
  padding: 12px 18px;
  border-radius: 16px;
  background: #f26b4e;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 20px rgba(242, 107, 78, 0.3);
}
@media (max-width: 768px) {
  .portrait__tag {
    right: 8px;
  }
}

.page-hero {
  background: linear-gradient(160deg, #eef7f0, #faf9f4);
}
.page-hero__inner {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 768px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 40px 48px;
  }
}
.page-hero--plain .page-hero__inner {
  display: block;
  padding-block: 60px;
}
@media (max-width: 768px) {
  .page-hero--plain .page-hero__inner {
    padding-block: 40px;
  }
}
.page-hero--plain .page-hero__title {
  font-size: 46px;
  line-height: 1.08;
}
@media (max-width: 768px) {
  .page-hero--plain .page-hero__title {
    font-size: 31px;
  }
}
.page-hero--narrow .page-hero__inner {
  max-width: 820px;
  padding-block: 56px 48px;
}
.page-hero--dark {
  background: linear-gradient(160deg, #1f2d24, #26332b);
  color: #fff;
}
.page-hero--dark .page-hero__title {
  color: #fff;
}
.page-hero--dark .page-hero__eyebrow {
  color: #f7b79e;
  background: rgba(242, 107, 78, 0.16);
}
.page-hero--dark .page-hero__lead {
  max-width: 700px;
  color: #c7d2cb;
}
.page-hero__badge {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #f26b4e;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(242, 107, 78, 0.2);
}
@media (max-width: 768px) {
  .page-hero__badge {
    font-size: 17px;
    padding: 11px 20px;
  }
}
.page-hero__eyebrow {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #268a4e;
  padding: 7px 15px;
  border-radius: 999px;
  background: #fff;
}
.page-hero__title {
  margin-top: 20px;
  font-size: 48px;
  line-height: 1.06;
}
@media (max-width: 768px) {
  .page-hero__title {
    font-size: 32px;
  }
}
.page-hero__subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #268a4e;
}
.page-hero__social {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1877f2;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 17px;
}
.page-hero__social:hover {
  color: #fff;
}
.page-hero__lead {
  margin-top: 20px;
  max-width: 540px;
  font-size: 17px;
  color: #4a5852;
}
.page-hero__aside {
  display: block;
  margin-top: 6px;
  color: #d9532f;
  font-style: italic;
}
.page-hero__actions {
  margin-top: 22px;
}
.page-hero__motto {
  display: inline-block;
  margin-top: 26px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #1f2d24;
}
.page-hero__motto em {
  font-style: normal;
  color: #268a4e;
}
.page-hero__portrait {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(31, 45, 36, 0.18);
}
@media (max-width: 768px) {
  .page-hero__portrait {
    height: 340px;
  }
}

.info-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 22px;
}
.info-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 22px;
}
.info-card__icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: #eef7f0;
}
.info-card__group + .info-card__group {
  margin-top: 18px;
}
.info-card__label {
  margin-bottom: 10px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #268a4e;
}
.info-card__list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: #4a5852;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: stretch;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .feature {
    grid-template-columns: 1fr;
  }
}
.feature__media {
  position: relative;
  min-height: 300px;
}
.feature__media--contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.feature__media--contain img {
  position: static;
  max-width: 100%;
  max-height: 340px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.feature__media--top img {
  object-position: top;
}
.feature__media--placeholder {
  display: grid;
  place-items: center;
  background: repeating-linear-gradient(45deg, #26332b, #26332b 14px, #2d3b32 14px, #2d3b32 28px);
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6f7d73;
}
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .feature__media {
    min-height: 0;
    aspect-ratio: 3/2;
  }
  .feature__media img {
    position: static;
  }
}
.feature__logo {
  justify-self: end;
  max-width: 100%;
  height: auto;
  margin-right: 44px;
  border-radius: 14px;
}
@media (max-width: 768px) {
  .feature__logo {
    justify-self: center;
    margin: 0 28px 28px;
  }
}
.feature__body {
  padding: 44px;
}
@media (max-width: 768px) {
  .feature__body {
    padding: 28px;
  }
}
.feature__eyebrow {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #268a4e;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
}
.feature__title {
  margin-top: 16px;
  font-size: 26px;
  line-height: 1.2;
}
.feature__text {
  margin-top: 14px;
  font-size: 16px;
}
.feature__list {
  margin: 12px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 16px;
}
.feature--coral {
  background: #fff8f2;
  border: 1px solid #f6dfd2;
}
.feature--coral .feature__eyebrow {
  color: #d9532f;
  background: #fff;
}
.feature--coral .feature__text {
  color: #4a5852;
}
.feature--green {
  background: linear-gradient(135deg, #268a4e, #1c6b3c);
  color: #fff;
}
.feature--green .feature__title {
  color: #fff;
}
.feature--green .feature__eyebrow {
  color: #c9ebd4;
  background: rgba(255, 255, 255, 0.14);
}
.feature--green .feature__text,
.feature--green .feature__list {
  color: #e4f3e8;
}
.feature--dark {
  background: #1f2d24;
  color: #fff;
  grid-template-columns: 0.85fr 1.15fr;
}
@media (max-width: 768px) {
  .feature--dark {
    grid-template-columns: 1fr;
  }
}
.feature--dark .feature__title {
  color: #fff;
}
.feature--dark .feature__eyebrow {
  color: #f7b79e;
  background: rgba(242, 107, 78, 0.16);
}
.feature--dark .feature__text {
  color: #c7d2cb;
  line-height: 1.7;
}
.feature--centered {
  align-items: center;
}
.feature__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.feature--reversed .feature__media {
  order: 2;
}
.feature--reversed .feature__body {
  order: 1;
}
@media (max-width: 768px) {
  .feature--reversed .feature__media {
    order: 1;
  }
  .feature--reversed .feature__body {
    order: 2;
  }
}

.role-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 20px;
}
.role-card__title {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #268a4e;
}
.role-card__intro {
  margin-bottom: 10px;
  font-size: 14px;
  color: #8a978d;
}
.role-card__list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: #4a5852;
}
.role-card__book {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.role-card__cover {
  flex-shrink: 0;
  width: 96px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(31, 45, 36, 0.2);
}
.role-card__text {
  font-size: 15px;
  color: #4a5852;
}
.role-card__link {
  display: inline-block;
  margin-top: 12px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #d9532f;
}
.role-card__link:hover {
  color: #d9532f;
  text-decoration: underline;
}
.role-card--book {
  background: #fff8f2;
  border-color: #f6dfd2;
}
.role-card--book .role-card__title {
  color: #d9532f;
}

.rdv-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(31, 45, 36, 0.06);
}
.rdv-card__media {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.rdv-card--step {
  background: #faf9f4;
  box-shadow: none;
}
.rdv-card--step .rdv-card__media {
  position: relative;
  height: 180px;
}
.rdv-card--step .rdv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rdv-card__price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f26b4e;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 15px;
}
.rdv-card__body {
  padding: 22px;
}
.rdv-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.rdv-card__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
}
.rdv-card__price {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #268a4e;
}
.rdv-card__list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.rdv-card__item {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: #4a5852;
}
.rdv-card__item::before {
  content: "✓";
  color: #268a4e;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(31, 45, 36, 0.06);
}
.testimonial__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eef7f0;
  color: #268a4e;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial__name {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.testimonial__age {
  font-size: 13px;
  color: #5f6f64;
}
.testimonial__result {
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff2ec;
  color: #d9532f;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
}
.testimonial__quote {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #4a5852;
}
.testimonial--interactive {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial--interactive .testimonial__avatar {
  width: 48px;
  height: 48px;
}
.testimonial--interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 45, 36, 0.1);
}
@media (prefers-reduced-motion: reduce) {
  .testimonial--interactive {
    transition: none;
  }
  .testimonial--interactive:hover {
    transform: none;
  }
}

.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(31, 45, 36, 0.06);
  transition: transform 0.2s ease;
}
.article-card:hover {
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) {
  .article-card {
    transition: none;
  }
  .article-card:hover {
    transform: none;
  }
}
.article-card__media {
  position: relative;
  height: 200px;
}
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-card__date {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9532f;
}
.article-card__title {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: #1f2d24;
}
.article-card__audio {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 6px;
  border-radius: 50%;
  background: #eef7f0;
  color: #268a4e;
  font-size: 12px;
  vertical-align: middle;
}
.article-card__excerpt {
  font-size: 14.5px;
  color: #5f6f64;
}
.article-card__more {
  margin-top: 2px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #268a4e;
}
.article-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--badge-couleur, #37473d);
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(31, 45, 36, 0.18);
}
.article-card--sans-image .article-card__badge {
  position: static;
  align-self: flex-start;
  margin: 20px 20px 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.pagination__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe4d8;
  background: #fff;
  color: #268a4e;
  font-family: "Work Sans", sans-serif;
  font-size: 18px;
  line-height: 1;
}
.pagination__arrow:hover {
  background: #eef7f0;
  color: #268a4e;
}
.pagination__arrow--disabled {
  opacity: 0.4;
  background: #fff;
  cursor: default;
}
.pagination__status {
  min-width: 120px;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1f2d24;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.toolbar__count {
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: #8a978d;
}

.recipe-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.2s ease;
  scroll-margin-top: 90px;
}
.recipe-card:hover {
  transform: translateY(-5px);
}
@media (prefers-reduced-motion: reduce) {
  .recipe-card {
    transition: none;
  }
  .recipe-card:hover {
    transform: none;
  }
}
.recipe-card:hover {
  color: inherit;
  box-shadow: 0 22px 44px rgba(31, 45, 36, 0.12);
}
.recipe-card__media {
  height: 210px;
}
.recipe-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recipe-card__body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.recipe-card__title {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: #1f2d24;
}
.recipe-card__text {
  font-size: 15px;
  color: #5f6f64;
}
.recipe-card__more {
  margin-top: 4px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  color: #268a4e;
}

.recipes {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.recipe {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 22px;
  overflow: hidden;
  scroll-margin-top: 90px;
}
@media (max-width: 768px) {
  .recipe {
    grid-template-columns: 1fr;
  }
}
.recipe__media {
  position: relative;
  min-height: 230px;
  background: #eef7f0;
}
.recipe__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .recipe__media {
    min-height: 0;
    aspect-ratio: 4/3;
  }
  .recipe__media img {
    position: static;
  }
}
.recipe__num {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #268a4e;
  color: #fff;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.recipe__body {
  padding: 30px 32px;
}
@media (max-width: 768px) {
  .recipe__body {
    padding: 24px;
  }
}
.recipe__title {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .recipe__title {
    font-size: 21px;
  }
}
.recipe__label {
  margin: 20px 0 10px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #268a4e;
}
.recipe__ing {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  color: #4a5852;
}
.recipe__steps {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: #37473d;
}
.recipe__steps::marker {
  font-weight: 700;
}
.recipe--gourmand .recipe__media {
  background: #fff8f2;
}
.recipe--gourmand .recipe__label {
  color: #d9532f;
}
.recipe__tip {
  margin-top: 18px;
  padding: 14px 18px;
  background: #fff8f2;
  border-left: 3px solid #f26b4e;
  border-radius: 0 14px 14px 0;
  font-size: 14.5px;
  color: #8A4A33;
}
.recipe__tip-label {
  display: block;
  margin-bottom: 4px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9532f;
}

.months {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .months {
    grid-template-columns: 1fr;
  }
}

.month {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 20px;
  overflow: hidden;
  scroll-margin-top: 90px;
}
.month__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #f2f7f0;
  border-bottom: 1px solid #eef1eb;
}
.month__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.month__title {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 22px;
}
.month__body {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.group__label {
  margin: 0 0 5px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.group__label--green {
  color: #268a4e;
}
.group__label--coral {
  color: #d9532f;
}
.group__label--muted {
  color: #8a978d;
}
.group__text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: #4a5852;
}
.group__text--muted {
  font-size: 14px;
  color: #5f6f64;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.check-list__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: #4a5852;
}
.check-list__item::before {
  content: "✓";
  flex-shrink: 0;
  color: #268a4e;
  font-weight: 800;
}
.check-list__item--no::before {
  content: "✗";
  color: #d9532f;
}
.check-list--light {
  margin-top: 18px;
}
.check-list--light .check-list__item {
  font-size: 16px;
  color: #e4f3e8;
}
.check-list--light .check-list__item::before {
  color: #c9ebd4;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 34px;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 22px;
}
.contact-card__title {
  margin: 0;
  font-size: 24px;
}
.contact-card__cta {
  margin-top: auto;
}

.icon-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.icon-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.icon-list__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: #eef7f0;
  font-size: 18px;
}
.icon-list__label {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  color: #1f2d24;
}
.icon-list a.icon-list__label:hover {
  color: #268a4e;
}
.icon-list__value {
  display: block;
  font-size: 15px;
  color: #5f6f64;
}

.map-embed {
  min-height: 420px;
  border: 1px solid #e6ede3;
  border-radius: 22px;
  overflow: hidden;
  background: #eef1eb;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.price-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #e6ede3;
  border-radius: 20px;
}
.price-card__title {
  margin: 0 0 18px;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: #268a4e;
}
.price-card__title--coral {
  color: #d9532f;
}
.price-card--coral {
  background: #fff8f2;
  border-color: #f6dfd2;
}

.price-list {
  margin: 0;
}
.price-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eef1eb;
}
.price-list__row:last-child {
  border-bottom: none;
}
.price-list dt {
  font-size: 15.5px;
  color: #37473d;
}
.price-list dd {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  color: #1f2d24;
  white-space: nowrap;
}
.price-list__note {
  font-size: 13px;
  color: #8a978d;
}

.callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .callout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }
}
.callout--coral {
  background: #fff8f2;
  border: 1px solid #f6dfd2;
}
.callout--dark {
  background: #1f2d24;
  color: #fff;
}
.callout--dark .callout__title {
  color: #fff;
}
.callout--dark .callout__text {
  color: #c7d2cb;
}
.callout--dark .icon-list__icon {
  background: rgba(255, 255, 255, 0.1);
}
.callout--dark .icon-list__label {
  color: #fff;
}
.callout--dark .icon-list__value {
  color: #9aa89f;
}
.callout--dark a.icon-list__label:hover {
  color: #c9ebd4;
}
.callout__eyebrow {
  display: inline-block;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #268a4e;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: #d9532f;
}
.callout__title {
  margin-top: 14px;
  font-size: 28px;
}
.callout__text {
  margin-top: 14px;
  font-size: 16px;
  color: #4a5852;
}
.callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.callout__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.prose {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 17.5px;
  line-height: 1.8;
  color: #37473d;
}
.prose a {
  text-decoration: underline;
}
.prose blockquote {
  margin-block: 8px;
  margin-inline: 0;
  padding: 24px 28px;
  background: #eef7f0;
  border-left: 4px solid #268a4e;
  border-radius: 0 14px 14px 0;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.6;
  color: #1c6b3c;
}
@media (max-width: 768px) {
  .prose blockquote {
    padding: 20px 22px;
  }
}
@media (max-width: 768px) {
  .prose {
    font-size: 16.5px;
  }
}

.article__meta {
  display: block;
  margin-top: 18px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d9532f;
}
.article__title {
  margin-top: 10px;
  font-size: 40px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .article__title {
    font-size: 29px;
  }
}
.article__content {
  max-width: 820px;
  margin-inline: auto;
  padding: 40px 24px 80px;
}
.article__cover {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(31, 45, 36, 0.14);
}
.article__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid #eef1eb;
}

.story {
  max-width: 960px;
  margin-inline: auto;
  padding: 64px 24px 80px;
}
@media (max-width: 768px) {
  .story {
    padding-block: 44px 64px;
  }
}
.story__photos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .story__photos {
    grid-template-columns: 1fr;
  }
}
.story__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #f2f5ef, #f2f5ef 14px, #eaf0e6 14px, #eaf0e6 28px);
}
.story__photo span {
  padding: 0 10px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: #9aa89f;
}
.story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story .prose {
  margin-top: 44px;
}
.story__author {
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #e6ede3;
}
.story__author-name {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: #1f2d24;
}
.story__author-role {
  font-size: 15px;
  color: #268a4e;
}
.story__cta {
  margin-top: 44px;
  text-align: center;
}

.player {
  margin: 28px 0 0;
  padding: 20px 22px;
  background: #eef7f0;
  border: 1px solid #e6ede3;
  border-radius: 18px;
}
.player__label {
  margin-bottom: 12px;
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #268a4e;
}
.player__audio {
  width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.filters__count {
  margin-left: 5px;
  opacity: 0.6;
  font-size: 12.5px;
}
.filters__item {
  padding: 9px 18px;
  border: 1px solid #dbe4d8;
  border-radius: 999px;
  background: #fff;
  color: #37473d;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
}
.filters__item--active {
  background: var(--filtre-couleur, #268a4e);
  border-color: var(--filtre-couleur, #268a4e);
  color: #fff;
}
.filters__item:hover {
  border-color: var(--filtre-couleur, #268a4e);
}

/*# sourceMappingURL=app-7d1043473d.output.css.map */
