@charset "UTF-8";
.mt-20 {
  margin-top: 20px;
}

.service-page {
  padding-top: 100px;
  background: #FDF9F5;
  min-height: 100vh;
}

.service-header {
  padding: 4rem 0 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  margin-bottom: 4rem;
}

.service-page__title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.service-page__subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #8B7355;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.service-intro {
  padding: 2rem 0 4rem;
  text-align: center;
}
.service-intro__text {
  font-size: 1.05rem;
  color: #5A5A5A;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.services-list {
  padding-bottom: 4rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
}
.service-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 768px) {
  .service-card--horizontal {
    flex-direction: column;
  }
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.service-card:hover .service-card__img {
  transform: scale(1.04);
}
.service-card__image {
  flex: 0 0 200px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .service-card__image {
    width: 100%;
    height: 180px;
  }
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-card__content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 768px) {
  .service-card__content {
    padding: 2rem;
  }
}
.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
@media (max-width: 768px) {
  .service-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 0.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-card__subtitle {
  font-size: 0.85rem;
  color: #5A5A5A;
  margin: 0;
  font-weight: 500;
}
.service-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}
@media (max-width: 768px) {
  .service-card__meta {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(139, 115, 85, 0.12);
  }
}
.service-card .meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
}
.service-card .meta-item--time {
  color: #5A5A5A;
}
.service-card .meta-item--time svg {
  width: 18px;
  height: 18px;
  color: #8B7355;
}
.service-card .meta-item--price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3E3A;
}
.service-card__description {
  margin-bottom: 2rem;
}
.service-card__description p {
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0;
}
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card .feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: #1A1A1A;
}
.service-card .feature-icon {
  color: #2C3E3A;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.service-card__footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 115, 85, 0.12);
}
@media (max-width: 480px) {
  .service-card__footer {
    flex-direction: column;
  }
}
.service-card--featured {
  border: 2px solid #C9A96E;
  position: relative;
}
.service-card--featured::before {
  content: "Популярное";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #C9A96E;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.service-card--premium {
  border: 2px solid #2C3E3A;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: #2C3E3A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid #8B7355;
  color: #8B7355;
  background: transparent;
}
.btn--outline:hover {
  background: #8B7355;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn--book {
  flex: 1;
  min-width: 0;
}
.btn--certificate {
  flex: 1;
  min-width: 0;
}
@media (max-width: 480px) {
  .btn--certificate {
    order: -1;
  }
}

.service-item {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  padding: 2rem;
}
.service-item--horizontal {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 768px) {
  .service-item--horizontal {
    flex-direction: column;
  }
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.service-item:hover .service-item__img {
  transform: scale(1.04);
}
.service-item__image {
  flex: 0 0 400px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.service-item__image img{
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-item__image {
    width: 100%;
    height: 180px;
  }
}
.service-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.service-item__content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (max-width: 768px) {
  .service-item__content {
    padding: 2rem;
  }
}
.service-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}
@media (max-width: 768px) {
  .service-item__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.service-item__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1A1A1A;
  margin: 0 0 0.25rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.service-item__subtitle {
  font-size: 0.85rem;
  color: #5A5A5A;
  margin: 0;
  font-weight: 500;
}
.service-item__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  text-align: right;
}
@media (max-width: 768px) {
  .service-item__meta {
    flex-direction: row;
    align-items: center;
    text-align: left;
    width: 100%;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(139, 115, 85, 0.12);
  }
}
.service-item .meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9rem;
}
.service-item .meta-item--time {
  color: #5A5A5A;
}
.service-item .meta-item--time svg {
  width: 18px;
  height: 18px;
  color: #8B7355;
}
.service-item .meta-item--price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3E3A;
}
.service-item__description {
  margin-bottom: 2rem;
}
.service-item__description p {
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.6;
  margin: 0;
}
.service-item__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-item .feature-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: #1A1A1A;
}
.service-item .feature-icon {
  color: #2C3E3A;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.service-item__footer {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 115, 85, 0.12);
}
@media (max-width: 480px) {
  .service-item__footer {
    flex-direction: column;
  }
}
.service-item--featured {
  border: 2px solid #C9A96E;
  position: relative;
}
.service-item--featured::before {
  content: "Популярное";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #C9A96E;
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}
.service-item--premium {
  border: 2px solid #2C3E3A;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: #2C3E3A;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}
.btn--outline {
  border: 2px solid #8B7355;
  color: #8B7355;
  background: transparent;
}
.btn--outline:hover {
  background: #8B7355;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.btn--book {
  flex: 1;
  min-width: 0;
}
.btn--certificate {
  flex: 1;
  min-width: 0;
}
@media (max-width: 480px) {
  .btn--certificate {
    order: -1;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #1A1A1A;
}

.feature-icon {
  color: #2C3E3A;
  font-weight: bold;
  flex-shrink: 0;
}

.service-features {
  padding: 4rem 0;
  background: #F5F0E9;
}
.service-features .section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
  color: #1A1A1A;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  background: #FFFFFF;
  border-radius: 12px;
}
.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  font-size: 0.9rem;
  color: #5A5A5A;
  line-height: 1.5;
}

.service-cta-simple {
  background: #2C3E3A;
  color: #FFFFFF;
  padding: 4rem 0;
  text-align: center;
}
.service-cta-simple__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-cta-simple__text {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.service-cta-simple__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.service-cta-simple__phone {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.service-cta-simple__phone:hover {
  opacity: 0.8;
}

.btn-book {
  background: #2C3E3A;
  color: #FFFFFF;
  border: none;
  padding: 1rem 3rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-book:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44, 62, 58, 0.3);
}
.btn-book:active {
  transform: translateY(0);
}
.btn-book--large {
  padding: 1.25rem 4rem;
  font-size: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(253, 249, 245, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
.header__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo__image {
  height: 45px;
  width: auto;
}

@media (max-width: 1024px) {
  .nav--desktop {
    display: none;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav__link:hover, .nav__link.active {
  background: rgba(139, 115, 85, 0.1);
  color: #8B7355;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: #1A1A1A;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn--primary {
  background: #2C3E3A;
  color: #FFFFFF;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary:hover {
  background: rgb(22.8301886792, 32.1698113208, 30.0943396226);
  transform: translateY(-2px);
}
@media (max-width: 1024px) {
  .btn--primary.header__btn--desktop {
    display: none;
  }
}

.footer {
  background: #2C3E3A;
  color: rgba(255, 255, 255, 0.9);
  padding: 4rem 0 2rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__slogan {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 1rem;
}
.footer__address {
  font-style: normal;
  line-height: 2;
}
.footer__address a {
  color: #FFFFFF;
  text-decoration: none;
}
.footer__address a:hover {
  color: #C9A96E;
}
.footer__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-right: 0.5rem;
}
.footer__bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__bottom .privacy-link {
  color: inherit;
  text-decoration: none;
}
.footer__bottom .privacy-link:hover {
  color: #FFFFFF;
}

.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .service-page {
    padding-top: 80px;
  }
  .service-item {
    padding: 1rem;
  }
  .service-item__title {
    font-size: 1.3rem;
  }
  .service-item__price {
    font-size: 1.4rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=default-page.css.map */
