.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 239, 228, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(53, 51, 44, 0.09);
  font-family: "Mulish", sans-serif;
}
.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-header__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  color: #35332C;
  text-decoration: none;
}
.site-header__brand-name {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.site-header__brand-tagline {
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #8C8676;
  font-weight: 600;
}
.site-header__nav {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.site-header__nav-link {
  padding: 8px 14px;
  border-radius: 100px;
  text-decoration: none;
  color: #4A473E;
}
.site-header__nav-link--active {
  color: #35332C;
  background: rgba(92, 110, 80, 0.12);
}
.site-header__cta {
  padding: 9px 20px;
  border-radius: 100px;
  background: #5C6E50;
  color: #FBF8F2;
  text-decoration: none;
  font-weight: 600;
}
.site-header__cta:hover {
  background: #4d5c43;
}

.site-footer {
  background: #35332C;
  color: #D8D2C4;
  padding: 56px 32px 34px;
  font-family: "Mulish", sans-serif;
}
.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.site-footer__brand {
  max-width: 320px;
}
.site-footer__brand-name {
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 600;
  color: #F5EFE4;
  margin-bottom: 8px;
}
.site-footer__brand-text {
  margin: 0;
  font-size: 14px;
  color: #A9A392;
  line-height: 1.7;
}
.site-footer__columns {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.site-footer__col-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  color: #7C7768;
  font-weight: 700;
  margin-bottom: 4px;
}
.site-footer__link {
  color: #D8D2C4;
  text-decoration: none;
}
.site-footer__link:hover {
  text-decoration: underline;
}
.site-footer__address {
  color: #A9A392;
  line-height: 1.6;
}
.site-footer__bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #7C7768;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.btn--primary {
  background: #5C6E50;
  color: #FBF8F2;
  box-shadow: 0 14px 30px -12px rgba(92, 110, 80, 0.6);
}
.btn--primary:hover {
  background: #4d5c43;
}
.btn--accent {
  background: #BC8A6B;
  color: #FBF8F2;
  box-shadow: 0 14px 30px -12px rgba(188, 138, 107, 0.6);
}
.btn--accent:hover {
  background: #b27956;
}
.btn--secondary {
  background: transparent;
  border: 1px solid rgba(53, 51, 44, 0.25);
  color: #4A473E;
}
.btn--secondary:hover {
  border-color: #4A473E;
}
.btn--sm {
  padding: 13px 26px;
}

.approach-card {
  background: #FBF8F2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(53, 51, 44, 0.4);
  display: flex;
  flex-direction: column;
  color: #35332C;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 60px -34px rgba(53, 51, 44, 0.5);
}
.approach-card__image-wrap {
  height: 230px;
  overflow: hidden;
}
.approach-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.approach-card__body {
  padding: 32px 34px 36px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.approach-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.approach-card__icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.approach-card__title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 26px;
  margin: 0;
  color: #5C6E50;
}
.approach-card__text {
  margin: 8px 0 18px;
  color: #5F5B4F;
}
.approach-card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: #5C6E50;
}
.approach-card--accent .approach-card__title,
.approach-card--accent .approach-card__link {
  color: #BC8A6B;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #FBF8F2;
  border: 1px solid rgba(53, 51, 44, 0.07);
  border-radius: 20px;
  padding: 30px 28px;
  color: #35332C;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  box-shadow: 0 24px 46px -30px rgba(53, 51, 44, 0.5);
  transform: translateY(-3px);
}
.blog-card__tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
  margin-bottom: 14px;
}
.blog-card__title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 12px;
}
.blog-card__excerpt {
  margin: 0 0 18px;
  font-size: 15px;
  color: #5F5B4F;
}
.blog-card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: 14px;
  color: #5C6E50;
}

.blog-article {
  background: #FBF8F2;
}

.blog-index {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 32px 84px;
}
.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .blog-index__grid {
    grid-template-columns: 1fr;
  }
}

.blog-date {
  color: #5C6E50 !important;
  font-size: 13px;
}

.page-hero {
  padding: 72px 32px 64px;
}
.page-hero--sophrologie {
  background: #E7EDE0;
}
.page-hero--dien-chan {
  background: #F5E9DF;
}
.page-hero--dien-chan .page-hero__breadcrumb,
.page-hero--dien-chan .page-hero__breadcrumb a {
  color: #A88B76;
}
.page-hero--dien-chan .page-hero__image-wrap {
  border-radius: 220px 24px 24px 24px;
  aspect-ratio: 1/1;
}
.page-hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 760px) {
  .page-hero__inner {
    grid-template-columns: 1fr;
  }
}
.page-hero__breadcrumb {
  font-size: 13px;
  color: #8C8676;
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero__breadcrumb a {
  color: #8C8676;
}
.page-hero__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 18px;
}
.page-hero__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin: 0 0 18px;
  color: #3F4B37;
}
.page-hero__text {
  font-size: 18px;
  color: #5A5C4E;
  margin: 0 0 28px;
  max-width: 520px;
}
.page-hero__media {
  justify-self: center;
}
.page-hero__image-wrap {
  width: min(400px, 84vw);
  aspect-ratio: 1/1.05;
  border-radius: 24px 220px 24px 24px;
  overflow: hidden;
  box-shadow: 0 34px 70px -34px rgba(53, 51, 44, 0.45);
}
.page-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 32px 84px;
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: grid;
  gap: 16px;
  align-content: start;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FBF8F2;
  border: 1px solid rgba(53, 51, 44, 0.08);
  border-radius: 16px;
  padding: 18px 22px;
  color: #4A473E;
  font-weight: 600;
  text-decoration: none;
}
.contact-info__item--address {
  align-items: flex-start;
}
.contact-info__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #E7EDE0;
  display: grid;
  place-items: center;
  color: #5C6E50;
  flex-shrink: 0;
}
.contact-info__address-detail {
  font-weight: 400;
  color: #6E6A5E;
}
.contact-info__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .contact-info__gallery {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.contact-info__photo {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px -40px rgba(53, 51, 44, 0.4);
  min-height: 0;
}
@media (max-width: 760px) {
  .contact-info__photo {
    aspect-ratio: 4/3;
  }
}
.contact-info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form {
  background: #FBF8F2;
  border: 1px solid rgba(53, 51, 44, 0.08);
  border-radius: 24px;
  padding: 38px;
  display: grid;
  gap: 20px;
}
.contact-form__title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 23px;
  margin: 0;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}
.contact-form__field {
  display: grid;
  gap: 6px;
}
.contact-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: #4A473E;
}
.contact-form__field input,
.contact-form__field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(53, 51, 44, 0.15);
  background: #F5EFE4;
  color: #35332C;
  resize: vertical;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #5C6E50;
}
.contact-form__submit {
  justify-self: start;
  padding: 15px 32px;
  border: none;
  border-radius: 100px;
  background: #5C6E50;
  color: #FBF8F2;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(92, 110, 80, 0.6);
}
.contact-form__submit:hover {
  background: #4d5c43;
}
.contact-form__success {
  color: #5C6E50;
  font-weight: 600;
  font-size: 14px;
}

.contact-info-height {
  height: 311px;
}
@media (max-width: 760px) {
  .contact-info-height {
    height: auto;
  }
}

.bio {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px 64px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 760px) {
  .bio {
    grid-template-columns: 1fr;
  }
}
.bio__media {
  justify-self: center;
}
.bio__image-wrap {
  width: min(360px, 82vw);
  aspect-ratio: 1/1.18;
  border-radius: 24px 24px 200px 200px;
  overflow: hidden;
  box-shadow: 0 34px 70px -34px rgba(53, 51, 44, 0.45);
}
.bio__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.bio__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 45px);
  line-height: 1.08;
  margin: 0 0 22px;
}
.bio__text {
  color: #5F5B4F;
  margin: 0 0 16px;
}
.bio__text:last-child {
  margin-bottom: 0;
}

.breadcrumb {
  font-size: 13px;
  color: #8C8676;
  font-weight: 600;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #8C8676;
}

.story {
  padding: 0 32px 72px;
}
.story__inner {
  max-width: 740px;
  margin: 0 auto;
}
.story__lead {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(21px, 2.6vw, 28px);
  line-height: 1.3;
  color: #5C6E50;
  margin: 0 0 22px;
}
.story__text {
  color: #5F5B4F;
  margin: 0 0 16px;
}
.story__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 760px) {
  .story {
    padding: 0 20px 56px;
  }
}

.origin {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 32px 20px;
}
.origin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 760px) {
  .origin__grid {
    grid-template-columns: 1fr;
  }
}
.origin__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.origin__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(23px, 2.6vw, 31px);
  margin: 12px 0 16px;
}
.origin__text {
  color: #5F5B4F;
  margin: 0;
}
.origin__cards {
  display: grid;
  gap: 20px;
}

.info-card {
  background: #FBF8F2;
  border-radius: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(53, 51, 44, 0.06);
}
.info-card__title {
  font-weight: 700;
  color: #BC8A6B;
  margin-bottom: 4px;
}
.info-card__text {
  margin: 0;
  font-size: 15px;
  color: #5F5B4F;
}

.pillars {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 32px 20px;
}
.pillars__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.pillars__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.pillars__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(25px, 3vw, 34px);
  margin: 12px 0 0;
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 760px) {
  .pillars__grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: #FBF8F2;
  border-radius: 20px;
  padding: 34px 30px;
  border: 1px solid rgba(53, 51, 44, 0.06);
}
.pillar-card__title {
  font-family: "Fraunces", serif;
  font-size: 21px;
  color: #5C6E50;
  font-weight: 600;
  margin-bottom: 10px;
}
.pillar-card__text {
  margin: 0;
  color: #5F5B4F;
  font-size: 15px;
}

.credentials {
  background: #EDE4D3;
  padding: 76px 32px;
}
.credentials__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.credentials__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 44px;
}
.credentials__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.credentials__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(25px, 3vw, 34px);
  margin: 12px 0 0;
}
.credentials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 700px) {
  .credentials__grid {
    grid-template-columns: 1fr;
  }
}

.credential-card {
  background: #FBF8F2;
  border-radius: 22px;
  padding: 38px 34px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.credential-card__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}
.credential-card__title {
  font-family: "Fraunces", serif;
  font-size: 23px;
  font-weight: 600;
  color: #5C6E50;
  margin-bottom: 6px;
}
.credential-card__title--accent {
  color: #BC8A6B;
}
.credential-card__text {
  margin: 0;
  color: #5F5B4F;
  font-size: 15px;
}

.process {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 32px 84px;
}
.process__panel {
  background: #FBF8F2;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 50px -40px rgba(53, 51, 44, 0.4);
}
.process__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid rgba(53, 51, 44, 0.1);
  padding-bottom: 18px;
  margin-bottom: 32px;
}
.process__title {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 26px;
  margin: 0;
}
.process__duration {
  color: #A08F6E;
  font-weight: 700;
  font-size: 14px;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
@media (max-width: 760px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}
.process__grid--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .process__grid--four {
    grid-template-columns: repeat(2, 1fr);
  }
}
.process--dien-chan .process__panel {
  background: #F5E9DF;
  box-shadow: none;
}
.process--dien-chan .process__header {
  border-bottom-color: rgba(188, 138, 107, 0.3);
}
.process--dien-chan .process__duration {
  color: #BC8A6B;
}
.process--dien-chan .process-step__number {
  font-size: 40px;
  color: #E0BBA1;
}

.process-step__number {
  font-family: "Fraunces", serif;
  font-size: 38px;
  color: #C7D0BC;
  font-weight: 600;
  line-height: 1;
}
.process-step__title {
  font-weight: 700;
  margin: 8px 0;
  color: #4A473E;
}
.process-step__text {
  margin: 0;
  font-size: 15px;
  color: #5F5B4F;
}

.pricing {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 32px 40px;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
@media (max-width: 560px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: #FBF8F2;
  border: 1px solid rgba(53, 51, 44, 0.08);
  border-radius: 22px;
  padding: 36px;
  text-align: center;
}
.pricing-card__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto 14px;
}
.pricing-card__label {
  font-weight: 700;
  color: #4A473E;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: "Fraunces", serif;
  font-size: 42px;
  font-weight: 600;
  color: #5C6E50;
  line-height: 1;
}
.pricing-card__price--accent {
  color: #BC8A6B;
}
.pricing-card__unit {
  font-size: 17px;
  color: #8C8676;
}

.quote {
  background: #5C6E50;
  color: #F5EFE4;
  padding: 74px 32px;
}
.quote__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.quote__mark {
  font-family: "Fraunces", serif;
  font-size: 56px;
  line-height: 0;
  color: rgba(245, 239, 228, 0.5);
}
.quote__text {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  margin: 6px 0 0;
}
.quote__author {
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(245, 239, 228, 0.7);
  font-weight: 600;
}
.quote__role {
  margin-top: 6px;
  font-size: 14px;
  font-style: italic;
  color: rgba(245, 239, 228, 0.65);
}
.quote__action {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 32px;
  border-radius: 100px;
  background: #F5EFE4;
  color: #3F4B37;
  font-weight: 700;
  text-decoration: none;
}
.quote--dien-chan {
  background: #BC8A6B;
  color: #FBF3EA;
}
.quote--dien-chan .quote__mark {
  color: rgba(251, 243, 234, 0.5);
}
.quote--dien-chan .quote__author {
  color: rgba(251, 243, 234, 0.7);
}
.quote--dien-chan .quote__role {
  color: rgba(251, 243, 234, 0.65);
}
.quote--dien-chan .quote__action {
  background: #FBF3EA;
  color: #9A6A4C;
}

.diploma {
  background: #EDE4D3;
  padding: 76px 32px;
}
.diploma__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.diploma__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.diploma__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(25px, 3vw, 34px);
  margin: 12px 0 0;
}
.diploma__text {
  margin: 14px auto 0;
  max-width: 620px;
  color: #5F5B4F;
  font-size: 15px;
}
.diploma__figure {
  margin: 40px 0 0;
}
.diploma__frame {
  display: block;
  background: #FBF8F2;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 24px 50px -34px rgba(53, 51, 44, 0.4);
}
.diploma__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
.diploma__caption {
  margin-top: 18px;
  font-size: 13px;
  color: #A9A392;
}
.diploma--dien-chan {
  background: #F5E9DF;
}
.diploma--dien-chan .diploma__eyebrow {
  color: #BC8A6B;
}
@media (max-width: 700px) {
  .diploma {
    padding: 56px 20px;
  }
  .diploma__frame {
    padding: 12px;
  }
}

.reviews {
  background: #F5EFE4;
  padding: 80px 32px;
}
.reviews__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.reviews__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.reviews__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.reviews__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(27px, 3.1vw, 38px);
  margin: 14px 0 0;
}
.reviews__score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}
.reviews__score-value {
  font-family: "Fraunces", serif;
  font-size: 25px;
  font-weight: 600;
  color: #5C6E50;
  line-height: 1;
}
.reviews__count {
  font-size: 14px;
  color: #5F5B4F;
}
.reviews__viewport {
  overflow: hidden;
}
.reviews__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}
.reviews__arrow {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(92, 110, 80, 0.35);
  background: transparent;
  color: #5C6E50;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.reviews__arrow:hover, .reviews__arrow:focus-visible {
  background: #5C6E50;
  color: #F5EFE4;
}
.reviews__dots {
  display: flex;
  align-items: center;
  gap: 9px;
}
.reviews__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(92, 110, 80, 0.28);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.reviews__dot--active {
  background: #5C6E50;
  transform: scale(1.35);
}
.reviews--static .reviews__controls {
  display: none;
}
.reviews__link {
  display: block;
  text-align: center;
  margin-top: 26px;
  font-weight: 700;
  font-size: 14px;
  color: #5C6E50;
  text-decoration: none;
}
.reviews__link:hover {
  text-decoration: underline;
}
@media (max-width: 720px) {
  .reviews {
    padding: 60px 20px;
  }
}

.review-card {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 24px) / 2);
  display: flex;
  flex-direction: column;
  background: #FBF8F2;
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0 24px 50px -34px rgba(53, 51, 44, 0.4);
}
@media (max-width: 760px) {
  .review-card {
    flex-basis: 100%;
    padding: 28px 24px;
  }
}
.review-card__text {
  margin: 16px 0 0;
  font-size: 15px;
  color: #5F5B4F;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(53, 51, 44, 0.1);
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__avatar--initial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #869A78;
  color: #FBF8F2;
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
}
.review-card__author {
  font-weight: 700;
  color: #4A473E;
  line-height: 1.3;
}
.review-card__date {
  font-size: 13px;
  color: #A9A392;
}

.stars {
  display: inline-flex;
  gap: 2px;
}
.stars__icon {
  width: 17px;
  height: 17px;
  fill: #E3A32B;
}
.stars__icon--off {
  fill: rgba(53, 51, 44, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .reviews__track {
    transition: none;
  }
}
.cta-band {
  background: #5C6E50;
  color: #F5EFE4;
  padding: 64px 32px;
}
.cta-band__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(23px, 2.6vw, 31px);
  margin: 0 0 6px;
}
.cta-band__text {
  margin: 0;
  color: rgba(245, 239, 228, 0.85);
}
.cta-band__action {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 100px;
  background: #F5EFE4;
  color: #3F4B37;
  font-weight: 700;
  text-decoration: none;
}
.cta-band--dien-chan {
  background: #BC8A6B;
  color: #FBF3EA;
}
.cta-band--dien-chan .cta-band__text {
  color: rgba(251, 243, 234, 0.9);
}
.cta-band--dien-chan .cta-band__action {
  background: #FBF3EA;
  color: #9A6A4C;
}

.section-intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 32px 30px;
  text-align: center;
}
.section-intro__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.section-intro__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 45px);
  margin: 12px 0 10px;
}
.section-intro__text {
  color: #5F5B4F;
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
}

.form__section {
  margin: 30px 0;
}
.form__container {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form__title {
  color: #35332C;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.form__infos {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 15px;
}
.form__submit {
  display: flex;
  margin: auto;
}
.form__input {
  display: flex;
  flex-direction: column;
}
.form__input input {
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
}

.hero {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 32px 68px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero__glow {
  position: absolute;
  top: 30px;
  right: 0;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle at 50% 50%, rgba(134, 154, 120, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}
.hero__content {
  position: relative;
  animation: fadeUp 0.8s ease both;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(34px, 4.3vw, 53px);
  line-height: 1.06;
  margin: 0 0 22px;
}
.hero__text {
  font-size: 18px;
  color: #5F5B4F;
  max-width: 460px;
  margin: 0 0 32px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__media {
  position: relative;
  justify-self: center;
}
.hero__frame {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(134, 154, 120, 0.4);
  border-radius: 280px 280px 24px 280px;
}
.hero__image-wrap {
  width: min(512px, 100%);
  aspect-ratio: 1/0.86;
  border-radius: 280px 280px 24px 280px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(53, 51, 44, 0.4);
}
.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__badge {
  position: absolute;
  bottom: -26px;
  left: -30px;
  width: 118px;
  height: 118px;
  object-fit: contain;
  background: #FBF8F2;
  border-radius: 50%;
  padding: 14px;
  box-shadow: 0 18px 40px -16px rgba(53, 51, 44, 0.4);
  animation: floaty 6s ease-in-out infinite;
}
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 56px 24px 60px;
    text-align: center;
  }
  .hero .hero__media,
  .hero .hero__glow {
    display: none;
  }
  .hero .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero .hero__actions {
    justify-content: center;
  }
}
@media (max-width: 760px) {
  .hero {
    padding: 44px 20px 52px;
  }
}

.approaches {
  background: #EDE4D3;
  padding: 80px 32px;
}
.approaches__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.approaches__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.approaches__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.approaches__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(27px, 3.1vw, 38px);
  margin: 14px 0 0;
}
.approaches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 720px) {
  .approaches__grid {
    grid-template-columns: 1fr;
  }
}

.about {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 32px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 720px) {
  .about {
    grid-template-columns: 1fr;
  }
}
.about__media {
  justify-self: center;
}
.about__image-wrap {
  width: min(340px, 80vw);
  aspect-ratio: 1/1.15;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 34px 70px -34px rgba(53, 51, 44, 0.45);
}
.about__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about__eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #A08F6E;
  font-weight: 700;
}
.about__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(27px, 3.1vw, 38px);
  margin: 14px 0 20px;
}
.about__text {
  color: #5F5B4F;
  margin: 0 0 24px;
}

.blog {
  max-width: 1180px;
  margin: 0 auto;
  padding: 84px 32px;
}
.blog__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}
.blog__title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(25px, 2.9vw, 36px);
  margin: 0;
}
.blog__link {
  font-weight: 700;
  font-size: 14px;
  color: #5C6E50;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
body {
  margin: 0;
  background: #F5EFE4;
  color: #35332C;
  font-family: "Mulish", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.col-4 {
  width: 33%;
}

.col-6 {
  width: 50%;
}

.col-12 {
  width: 100%;
}

.d-flex {
  display: flex;
}

.mt-3 {
  margin-top: 16px;
}

.mb-3 {
  margin-bottom: 16px;
}

.gap-1 {
  gap: 16px;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.text-start {
  text-align: start !important;
}

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