@charset "UTF-8";
/**************************/
/* BREAKPOINTS */
/**************************/
/**************************/
/* COLORS */
/**************************/
/**************************/
/* FONT_FAMILY */
/**************************/
/**************************/
/* TRANSITIONS */
/**************************/
/**************************/
/* FUNCTIONS */
/**************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  overflow-anchor: none;
  scroll-behavior: smooth;
}
@media (min-width: 48em) {
  html {
    font-size: 106.25%;
  }
}
@media (min-width: 80em) {
  html {
    font-size: 112.5%;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #483832;
  background-color: #fcfbfb;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fcfbfb;
  border-bottom: 1px solid #dfdadb;
  z-index: 100;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  min-height: 5rem;
}
@media (min-width: 48em) {
  .header__container {
    padding: 0.875rem 2rem;
  }
}
@media (min-width: 80em) {
  .header__container {
    padding: 1rem 2.5rem;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.header__logo:hover .header__logo-icon {
  color: #c35367;
  transform: scale(1.08);
}
.header__logo:hover .header__logo-name,
.header__logo:hover .header__logo-title {
  color: #c35367;
}
.header__logo-icon {
  color: #a83d4d;
  width: 3.25rem;
  height: 3.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
@media (min-width: 80em) {
  .header__logo-icon {
    width: 3.875rem;
    height: 3.875rem;
  }
}
.header__logo-text {
  display: flex;
  flex-direction: column;
}
.header__logo-name, .header__logo-title {
  color: #483832;
  transition: color 0.2s ease;
}
.header__logo-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 80em) {
  .header__logo-name {
    font-size: 1.25rem;
  }
}
.header__logo-title {
  font-size: 0.875rem;
}
.header__logo-spec {
  font-size: 0.8125rem;
  color: #5a5255;
}
.header__burger {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  width: 24px;
  height: 18px;
  position: relative;
  padding: 0;
}
@media (min-width: 80em) {
  .header__burger {
    display: none;
  }
}
.header__burger::before, .header__burger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #483832;
  border-radius: 2px;
  left: 0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.header__burger::before {
  top: 0;
  box-shadow: 0 8px 0 #483832;
}
.header__burger::after {
  top: 16px;
}
.header__burger.is-active::before {
  transform: translateY(8px) rotate(45deg);
  box-shadow: none;
}
.header__burger.is-active::after {
  transform: translateY(-8px) rotate(-45deg);
}

.nav {
  display: none;
}
@media (min-width: 80em) {
  .nav {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 1rem;
  color: #483832;
  transition: color 0.2s;
}
.nav__link:hover {
  color: #c35367;
}
.nav__link.is-active {
  color: #c35367;
}

.btn--primary {
  border: 1px solid transparent;
}
@media (min-width: 80em) {
  .btn--primary {
    display: inline-block;
  }
}
.hero .btn--primary {
  display: inline-block;
}
.btn--primary {
  padding: 0.75rem 1.75rem;
  background-color: #c35367;
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.btn--primary:hover {
  opacity: 0.85;
}

.hero {
  background-color: #fcfbfb;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  position: relative;
}
@media (min-width: 48em) {
  .hero {
    flex-direction: row;
    min-height: 100vh;
    padding-top: 0;
  }
}
@media (min-width: 80em) {
  .hero {
    flex-direction: row;
    min-height: 100vh;
    padding-top: 0;
  }
}
.hero__content {
  order: 3;
  padding: 1.25rem 1.375rem;
}
@media (min-width: 48em) {
  .hero__content {
    order: 2;
    width: 55%;
    padding: 6.25rem 2.5rem 2.5rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
}
@media (min-width: 80em) {
  .hero__content {
    order: 2;
    width: 50%;
    padding: 8.75rem 5rem 3.75rem;
    display: flex;
    align-items: center;
    min-height: 100vh;
  }
}
.hero__image {
  order: 1;
  width: 100%;
  max-height: 60vh;
  overflow: hidden;
  position: relative;
  border-radius: 0 0 1.5rem 1.5rem;
}
@media (min-width: 48em) {
  .hero__image {
    order: 2;
    position: absolute;
    right: 0;
    top: 5rem;
    bottom: 0;
    width: 45%;
    max-height: none;
    border-radius: 0;
  }
}
@media (min-width: 48em) {
  .hero__image img {
    height: 100vh;
    -o-object-position: center 0%;
       object-position: center 0%;
  }
}
.hero__image::after {
  content: "";
  position: absolute;
  display: none;
}
@media (min-width: 48em) {
  .hero__image::after {
    display: block;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, #fcfbfb, transparent);
  }
}
@media (min-width: 80em) {
  .hero__image {
    order: 2;
    position: absolute;
    right: 0;
    top: 5rem;
    bottom: 0;
    width: 50%;
    max-height: none;
    overflow: hidden;
    border-radius: 0;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 20%;
     object-position: center 20%;
}
@media (min-width: 80em) {
  .hero__image img {
    height: 100vh;
    -o-object-position: center 0%;
       object-position: center 0%;
  }
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 1.625rem;
  font-weight: 700;
  color: #483832;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .hero__title {
    font-size: 2.375rem;
  }
}
@media (min-width: 80em) {
  .hero__title {
    font-size: 3.25rem;
  }
}
.hero__title--accent {
  color: #c35367;
}
.hero__spec {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #483832;
  margin-bottom: 0.75rem;
}
@media (min-width: 80em) {
  .hero__spec {
    font-size: 1rem;
  }
}
.hero__desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #5a5255;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
@media (min-width: 80em) {
  .hero__desc {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
@media (min-width: 48em) {
  .hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}
@media (min-width: 80em) {
  .hero__stats {
    flex-direction: row;
    gap: 1.5rem;
    margin: 0 0 3rem;
  }
}
.hero__stat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dfdadb;
}
.hero__stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 48em) {
  .hero__stat {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media (min-width: 80em) {
  .hero__stat {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.hero__stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(195, 83, 103, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__stat-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: #c35367;
  color: #c35367;
}
.hero__stat-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.hero__stat-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #483832;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: #5a5255;
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__buttons .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
@media (min-width: 48em) {
  .hero__buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__buttons .btn {
    width: 18.125rem;
  }
}
@media (min-width: 80em) {
  .hero__buttons {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid #c35367;
  color: #c35367;
  border-radius: 0.5rem;
  font-size: 1rem;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
}
.btn--outline svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}
.btn--outline:hover {
  background-color: #c35367;
  color: #fff;
}

.btn--hero {
  display: inline-block;
}

.about {
  padding: 1.25rem 1.375rem;
  overflow-anchor: none;
}
@media (min-width: 48em) {
  .about {
    padding: 1.25rem 2rem;
  }
}
@media (min-width: 80em) {
  .about {
    padding: 1.875rem 5rem;
  }
}
.about__container {
  display: flex;
  flex-direction: column;
  max-width: 75rem;
  margin: 0 auto;
  gap: 1.5rem;
}
@media (min-width: 48em) {
  .about__container {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    grid-template-areas: "image title" "image content";
    -moz-column-gap: 2.5rem;
         column-gap: 2.5rem;
    row-gap: 1.5rem;
    align-items: start;
  }
}
@media (min-width: 80em) {
  .about__container {
    display: grid;
    grid-template-columns: 23.75rem 1fr;
    grid-template-areas: "image title" "image content";
    -moz-column-gap: 5rem;
         column-gap: 5rem;
    row-gap: 1.5rem;
    align-items: start;
  }
}
.about__image {
  width: 100%;
  max-height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
  overflow-anchor: none;
}
@media (min-width: 48em) {
  .about__image {
    max-height: none;
    grid-area: image;
    width: 17.5rem;
    position: sticky;
    top: 5.625rem;
  }
}
@media (min-width: 80em) {
  .about__image {
    grid-area: image;
    width: 23.75rem;
    position: sticky;
    top: 8.125rem;
  }
}
.about__image img {
  width: 100%;
  aspect-ratio: 3/4;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center top;
     object-position: center top;
}
@media (min-width: 80em) {
  .about__content {
    grid-area: content;
  }
}
.about__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #483832;
}
@media (min-width: 80em) {
  .about__title {
    grid-area: title;
    font-size: 2.5rem;
    margin-bottom: 0;
  }
}
.about__text {
  font-size: 0.9375rem;
  color: #5a5255;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about__text:first-of-type {
  font-size: 1.0625rem;
  color: #483832;
  line-height: 1.7;
  font-weight: 500;
}
.about__quote {
  position: relative;
  border-left: 3px solid #c35367;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  margin: 1.75rem 0;
  background-color: rgba(195, 83, 103, 0.06);
  border-radius: 0 0.75rem 0.75rem 0;
  font-family: "Playfair Display", serif;
  font-size: 1.0625rem;
  font-style: italic;
  color: #c35367;
  line-height: 1.7;
}
.about__quote::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  font-size: 2.5rem;
  color: rgba(195, 83, 103, 0.15);
  font-family: "Playfair Display", serif;
  line-height: 1;
}
.about__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #483832;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 80em) {
  .about__subtitle {
    margin-top: 2rem;
  }
}
.about__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about__list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dfdadb;
}
.about__list-item:last-child {
  border-bottom: none;
}
.about__list-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c35367;
  white-space: nowrap;
  min-width: 3rem;
}
.about__list-text {
  font-size: 0.9375rem;
  color: #5a5255;
  line-height: 1.5;
}
.about__carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
}
.about__carousel-prev, .about__carousel-next {
  display: none;
}
@media (min-width: 48em) {
  .about__carousel-prev, .about__carousel-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fcfbfb;
    border: 1px solid #dfdadb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    color: #483832;
    transition: background-color 0.2s, color 0.2s;
  }
  .about__carousel-prev:hover, .about__carousel-next:hover {
    background-color: #c35367;
    color: #fff;
  }
}
.about__carousel-prev {
  left: 0.375rem;
}
.about__carousel-next {
  right: 0.375rem;
}
.about__carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 0.75rem;
}
.about__carousel-track::-webkit-scrollbar {
  display: none;
}
.about__carousel-item {
  flex: 0 0 100%;
  scroll-snap-align: start;
  min-width: 100%;
}
.about__carousel-item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: #fcfbfb;
}
@media (min-width: 80em) {
  .about__carousel-item img {
    height: 34.375rem;
  }
}
.about__carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.about__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #dfdadb;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.about__dot--active {
  background-color: #c35367;
}
.about__details {
  border-top: 1px solid #dfdadb;
  padding-top: 1.25rem;
  overflow-anchor: none;
}
.about__details-container {
  max-width: 75rem;
  margin: 0 auto;
  overflow-anchor: none;
}
@media (min-width: 48em) {
  .about__details-container {
    padding-left: calc(17.5rem + 2.5rem);
  }
}
@media (min-width: 80em) {
  .about__details-container {
    padding-left: calc(23.75rem + 5rem);
  }
}
.about__summary {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #483832;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.125rem;
}
.about__summary::after {
  content: "+";
  font-size: 1.25rem;
  color: #c35367;
  transition: transform 0.3s ease;
}
.about__summary:focus {
  outline: none;
}
.about__summary:focus-visible {
  outline: 2px solid #c35367;
  outline-offset: 4px;
  border-radius: 0.25rem;
}
.about__details.is-open .about__summary::after {
  content: "−";
  transform: rotate(180deg);
}
.about__details-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow-anchor: none;
}
.about__details.is-open .about__details-wrapper {
  grid-template-rows: 1fr;
}
.about__details-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  overflow-anchor: none;
  min-height: 0;
}
.about__edu-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #dfdadb;
}
.about__edu-item:last-child {
  border-bottom: none;
}
.about__edu-year {
  font-size: 0.875rem;
  font-weight: 600;
  color: #c35367;
  white-space: nowrap;
  min-width: 3rem;
}
.about__edu-text {
  font-size: 0.875rem;
  color: #5a5255;
  line-height: 1.5;
}

.symptoms {
  padding: 1.25rem 1rem;
  background-color: #fcfbfb;
}
@media (min-width: 48em) {
  .symptoms {
    padding: 1.875rem 2rem;
  }
}
@media (min-width: 80em) {
  .symptoms {
    padding: 1.875rem 5rem;
  }
}
.symptoms__container {
  max-width: 75rem;
  margin: 0 auto;
}
.symptoms__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c35367;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.symptoms__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .symptoms__title {
    font-size: 2.125rem;
  }
}
@media (min-width: 80em) {
  .symptoms__title {
    font-size: 2.5rem;
  }
}
.symptoms__intro {
  font-size: 1rem;
  color: #5a5255;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 37.5rem;
}
@media (min-width: 80em) {
  .symptoms__intro {
    margin-bottom: 3rem;
  }
}
.symptoms__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 48em) {
  .symptoms__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (min-width: 80em) {
  .symptoms__list {
    gap: 1.25rem;
  }
}
.symptoms__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #dfdadb;
  border-radius: 0.75rem;
  transition: border-color 0.2s, transform 0.2s;
}
@media (min-width: 80em) {
  .symptoms__item {
    padding: 1.25rem 1.5rem;
  }
  .symptoms__item:hover {
    border-color: #c35367;
    transform: translateY(-2px);
  }
}
.symptoms__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(195, 83, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.symptoms__icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: #c35367;
}
.symptoms__text {
  font-size: 0.9375rem;
  color: #483832;
  line-height: 1.5;
}
@media (min-width: 80em) {
  .symptoms__text {
    font-size: 1rem;
  }
}
.symptoms__btn {
  display: inline-flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 48em) {
  .symptoms__btn {
    width: auto;
    display: inline-flex;
    margin-top: 2rem;
  }
}

.services {
  padding: 1.25rem 1rem;
  background-color: #fcfbfb;
  scroll-margin-top: 5rem;
}
@media (min-width: 48em) {
  .services {
    padding: 1.875rem 2rem;
    scroll-margin-top: 4.375rem;
  }
}
@media (min-width: 80em) {
  .services {
    padding: 1.875rem 5rem;
  }
}
.services__container {
  max-width: 75rem;
  margin: 0 auto;
}
.services__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 1rem;
}
@media (min-width: 48em) {
  .services__title {
    font-size: 2.125rem;
  }
}
@media (min-width: 80em) {
  .services__title {
    font-size: 2.5rem;
  }
}
.services__intro {
  font-size: 1rem;
  color: #5a5255;
  margin-bottom: 2rem;
}
@media (min-width: 80em) {
  .services__intro {
    margin-bottom: 3rem;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 48em) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 80em) {
  .services__grid {
    gap: 1.5rem;
  }
}
.services__card {
  position: relative;
  padding: 1.5rem 1.25rem;
  background-color: #fff;
  border: 1px solid #dfdadb;
  border-radius: 1rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
@media (min-width: 80em) {
  .services__card {
    padding: 2rem 1.75rem;
  }
  .services__card:hover {
    border-color: #c35367;
    transform: translateY(-4px);
    box-shadow: 0 0.75rem 1.5rem rgba(195, 83, 103, 0.1);
  }
}
.services__number {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #dfdadb;
  line-height: 1;
}
@media (min-width: 80em) {
  .services__number {
    font-size: 2rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}
.services__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(195, 83, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.services__icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #c35367;
}
.services__card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #483832;
  margin-bottom: 0.625rem;
  padding-right: 2.5rem;
  line-height: 1.3;
}
@media (min-width: 80em) {
  .services__card-title {
    font-size: 1.125rem;
  }
}
.services__card-text {
  font-size: 0.875rem;
  color: #5a5255;
  line-height: 1.6;
}
@media (min-width: 80em) {
  .services__card-text {
    font-size: 0.9375rem;
  }
}
.services__btn {
  display: inline-flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 2rem;
}
@media (min-width: 48em) {
  .services__btn {
    width: auto;
    display: inline-flex;
  }
}

.appointment {
  padding: 1.25rem 1rem;
  background-color: #fcfbfb;
  scroll-margin-top: 5rem;
}
@media (min-width: 48em) {
  .appointment {
    padding: 1.875rem 2rem;
    scroll-margin-top: 4.375rem;
  }
}
@media (min-width: 80em) {
  .appointment {
    padding: 1.875rem 5rem;
  }
}
.appointment__container {
  max-width: 75rem;
  margin: 0 auto;
}
.appointment__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 0.5rem;
}
@media (min-width: 48em) {
  .appointment__title {
    font-size: 2.125rem;
  }
}
@media (min-width: 80em) {
  .appointment__title {
    font-size: 2.5rem;
  }
}
.appointment__intro {
  font-size: 1rem;
  color: #5a5255;
  margin-bottom: 2rem;
}
@media (min-width: 80em) {
  .appointment__intro {
    margin-bottom: 3rem;
  }
}
.appointment__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 48em) {
  .appointment__grid {
    grid-template-columns: 1fr 1.3fr;
    align-items: start;
  }
}
@media (min-width: 80em) {
  .appointment__grid {
    gap: 2rem;
  }
}
.appointment__card {
  background-color: #fff;
  border: 1px solid #dfdadb;
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 80em) {
  .appointment__card {
    padding: 2rem;
  }
}
.appointment__card--online {
  border-color: rgba(195, 83, 103, 0.3);
  background-color: rgba(195, 83, 103, 0.03);
}
.appointment__card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.appointment__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(195, 83, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment__icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #c35367;
}
.appointment__card-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #483832;
}
@media (min-width: 80em) {
  .appointment__card-title {
    font-size: 1.3125rem;
  }
}
.appointment__card-text {
  font-size: 0.9375rem;
  color: #5a5255;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.appointment__card-text a {
  color: #c35367;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.appointment__card-text a:hover {
  text-decoration: none;
}
.appointment__contacts {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.appointment__contact {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: #483832;
}
.appointment__contact svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #c35367;
}
.appointment__contact-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: inherit;
  transition: color 0.2s;
}
.appointment__contact-link svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #c35367;
}
.appointment__contact-link:hover {
  color: #c35367;
}
.appointment__sub {
  font-size: 1rem;
  font-weight: 600;
  color: #483832;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}
.appointment__steps {
  list-style: none;
  counter-reset: step;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.appointment__steps li {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5a5255;
}
.appointment__steps li::before {
  content: counter(step);
  flex: 0 0 1.375rem;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c35367;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}
.appointment__checklist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.appointment__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #5a5255;
}
.appointment__checklist li::before {
  content: "";
  flex: 0 0 0.375rem;
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.4375rem;
  border-radius: 50%;
  background-color: #c35367;
}
.appointment__btn {
  display: inline-flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.reviews {
  padding: 1.25rem 1rem;
  background-color: #fcfbfb;
  scroll-margin-top: 5rem;
}
@media (min-width: 48em) {
  .reviews {
    padding: 1.875rem 2rem;
    scroll-margin-top: 4.375rem;
  }
}
@media (min-width: 80em) {
  .reviews {
    padding: 1.875rem 5rem;
  }
}
.reviews__container {
  max-width: 75rem;
  margin: 0 auto;
}
.reviews__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 48em) {
  .reviews__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
  }
}
.reviews__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 0.5rem;
}
@media (min-width: 48em) {
  .reviews__title {
    font-size: 2.125rem;
  }
}
@media (min-width: 80em) {
  .reviews__title {
    font-size: 2.5rem;
  }
}
.reviews__intro {
  font-size: 1rem;
  color: #5a5255;
}
.reviews__source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #c35367;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.reviews__source-link svg:first-child {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.reviews__source-link:hover {
  opacity: 0.7;
}
.reviews__source-link:hover .reviews__source-arrow {
  transform: translate(2px, -2px);
}
.reviews__source-arrow {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
}
.reviews__carousel {
  position: relative;
}
@media (min-width: 48em) {
  .reviews__carousel {
    padding: 0 3.125rem;
  }
}
.reviews__prev, .reviews__next {
  display: none;
}
@media (min-width: 48em) {
  .reviews__prev, .reviews__next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.75rem;
    height: 2.75rem;
    background-color: #fff;
    border: 1px solid #dfdadb;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.125rem;
    color: #483832;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s, color 0.2s;
  }
  .reviews__prev:hover, .reviews__next:hover {
    background-color: #c35367;
    color: #fff;
  }
}
.reviews__prev {
  left: 0;
}
.reviews__next {
  right: 0;
}
.reviews__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.reviews__track::-webkit-scrollbar {
  display: none;
}
@media (min-width: 48em) {
  .reviews__track {
    gap: 1.25rem;
  }
}
.reviews__card {
  flex: 0 0 100%;
  aspect-ratio: 4/5;
  scroll-snap-align: start;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #dfdadb;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.04);
  height: 37.5rem;
}
@media (min-width: 48em) {
  .reviews__card {
    flex: 0 0 calc(50% - 0.625rem);
    aspect-ratio: auto;
    height: auto;
  }
}
@media (min-width: 80em) {
  .reviews__card {
    flex: 0 0 calc(33.333% - 0.875rem);
  }
}
.reviews__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: top;
     object-position: top;
}
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
@media (min-width: 48em) {
  .reviews__dots {
    display: none;
  }
}
.reviews__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #dfdadb;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.reviews__dot--active {
  background-color: #c35367;
}

.contacts {
  padding: 1.25rem 1rem;
  background-color: #fcfbfb;
  scroll-margin-top: 5rem;
}
@media (min-width: 48em) {
  .contacts {
    padding: 1.875rem 2rem;
    scroll-margin-top: 4.375rem;
  }
}
@media (min-width: 80em) {
  .contacts {
    padding: 1.875rem 5rem;
  }
}
.contacts__container {
  max-width: 75rem;
  margin: 0 auto;
}
.contacts__title {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 0.5rem;
}
@media (min-width: 48em) {
  .contacts__title {
    font-size: 2.125rem;
  }
}
@media (min-width: 80em) {
  .contacts__title {
    font-size: 2.5rem;
  }
}
.contacts__intro {
  font-size: 1rem;
  color: #5a5255;
  margin-bottom: 2rem;
}
@media (min-width: 80em) {
  .contacts__intro {
    margin-bottom: 2.5rem;
  }
}
.contacts__panel {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #dfdadb;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (min-width: 48em) {
  .contacts__panel {
    flex-direction: row;
    min-height: 26.25rem;
  }
}
.contacts__info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 48em) {
  .contacts__info {
    width: 21.25rem;
    flex-shrink: 0;
    padding: 2rem;
  }
}
@media (min-width: 80em) {
  .contacts__info {
    width: 23.75rem;
  }
}
.contacts__info-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 1.25rem;
}
.contacts__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}
.contacts__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  color: #483832;
  border-bottom: 1px solid #dfdadb;
}
.contacts__item:last-child {
  border-bottom: none;
}
.contacts__item-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  transition: opacity 0.2s;
}
.contacts__item-link:hover {
  opacity: 0.7;
}
.contacts__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: rgba(195, 83, 103, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacts__icon svg {
  width: 0.9375rem;
  height: 0.9375rem;
  color: #c35367;
}
.contacts__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}
.contacts__map {
  position: relative;
  min-height: 17.5rem;
  background-color: #fcfbfb;
}
@media (min-width: 48em) {
  .contacts__map {
    flex-grow: 1;
    min-height: auto;
  }
}
.contacts__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.contacts__map-card {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: 1rem;
  z-index: 5;
  background-color: #fff;
  border-radius: 0.875rem;
  padding: 1rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 48em) {
  .contacts__map-card {
    left: auto;
    width: 13.75rem;
  }
}
.contacts__map-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #483832;
  margin-bottom: 0.125rem;
}
.contacts__map-address {
  font-size: 0.8125rem;
  color: #5a5255;
  margin-bottom: 0.375rem;
}
.contacts__map-hours {
  font-size: 0.8125rem;
  color: #483832;
}

.footer {
  background-color: #3d1f26;
  padding: 2.5rem 1rem 1.25rem;
}
@media (min-width: 48em) {
  .footer {
    padding: 3.75rem 2rem 1.5rem;
  }
}
@media (min-width: 80em) {
  .footer {
    padding: 5rem 5rem 2rem;
  }
}
.footer__container {
  max-width: 75rem;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 48em) {
  .footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
  }
}
@media (min-width: 80em) {
  .footer__top {
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 48em) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
@media (min-width: 80em) {
  .footer__brand {
    grid-column: auto;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.footer__logo:hover .footer__logo-icon {
  transform: scale(1.08);
}
.footer__logo-icon {
  width: 3.25rem;
  height: 3.25rem;
  color: #f5ebdd;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
@media (min-width: 80em) {
  .footer__logo-icon {
    width: 3.875rem;
    height: 3.875rem;
  }
}
.footer__logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f5ebdd;
  transition: color 0.2s ease;
  line-height: 1.3;
}
.footer__spec {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 17.5rem;
}
.footer__cta {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 16.25rem;
}
@media (min-width: 48em) {
  .footer__cta {
    flex-direction: row;
    max-width: none;
  }
}
.footer__cta .footer__cta-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}
@media (min-width: 48em) {
  .footer__cta .footer__cta-btn {
    width: auto;
  }
}
.footer__cta .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.footer__cta .btn--outline:hover {
  background-color: #c35367;
  border-color: #c35367;
}
.footer__contact-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}
.footer__contact {
  margin-bottom: 1rem;
}
.footer__contact:last-child {
  margin-bottom: 0;
}
.footer__link--icon {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.footer__link--icon svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.125rem;
}
.footer__link--icon span {
  line-height: 1.5;
}
.footer__link--telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__link--telegram svg {
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer__link--telegram:hover svg {
  color: #c35367;
}
.footer__link--telegram:hover .footer__link-arrow {
  transform: translateX(3px);
}
.footer__col-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.footer__link:hover {
  color: #c35367;
}
.footer__contact {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.2s, color 0.2s;
}
.footer__social-icon svg {
  width: 1rem;
  height: 1rem;
}
.footer__social-icon:hover {
  background-color: #c35367;
  color: #fff;
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
}
@media (min-width: 48em) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
.footer__contact-label {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.25rem;
}
.footer__link--telegram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__link--telegram svg {
  flex-shrink: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer__link--telegram .footer__link-arrow {
  display: inline-block;
  transition: transform 0.2s;
}
.footer__link--telegram:hover svg {
  color: #c35367;
}
.footer__link--telegram:hover .footer__link-arrow {
  transform: translateX(3px);
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 48em) {
  .footer__legal {
    flex-direction: row;
    gap: 1.25rem;
  }
}
.footer__legal-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer__legal-link:hover {
  color: #fff;
}
.footer__dev-link {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer__dev-link:hover {
  color: #fff;
}
.footer__disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 5rem);
  background-color: #fcfbfb;
  border-bottom: 1px solid #dfdadb;
  padding: 1.5rem 1.375rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
@media (min-width: 48em) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 48em) {
  .mobile-menu__list {
    max-width: 26.25rem;
    width: 16.25rem;
  }
}
.mobile-menu__link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: #483832;
  border-bottom: 1px solid #dfdadb;
}
.mobile-menu__link:hover {
  color: #c35367;
}
.mobile-menu.is-active {
  color: #c35367;
  font-weight: 600;
}

.mobile-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  min-height: calc(100vh - 5rem);
  background-color: #fcfbfb;
  border-bottom: 1px solid #dfdadb;
  padding: 1.5rem 1.375rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (min-width: 48em) {
  .mobile-menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media (min-width: 48em) {
  .mobile-menu__list {
    width: 16.25rem;
  }
}
.mobile-menu__link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.125rem;
  color: #483832;
  border-bottom: 1px solid #dfdadb;
}
.mobile-menu__link:hover {
  color: #c35367;
}

.btn--full {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
}
@media (min-width: 48em) {
  .btn--full {
    display: inline-flex;
    justify-content: center;
    width: 16.25rem;
    margin-top: 1rem;
  }
  .btn--full:first-of-type {
    margin-top: 2.25rem;
  }
}

section[id] {
  scroll-margin-top: 5.625rem;
}
@media (min-width: 48em) {
  section[id] {
    scroll-margin-top: 6.25rem;
  }
}/*# sourceMappingURL=main.css.map */