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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FDF9F5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #8B7355;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #8B7355;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 2rem;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8B7355, transparent);
}

.section-desc {
  color: #5A5A5A;
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.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;
}
.btn--ghost {
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
.btn--more {
  font-weight: 500;
  color: #8B7355;
  background: rgba(139, 115, 85, 0.08);
  margin-bottom: 20px;
}
.btn--more:hover {
  background: rgba(139, 115, 85, 0.15);
  transform: translateY(-2px);
}

.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);
  transition: padding 0.3s ease, background 0.3s ease;
}
.header--scrolled {
  padding: 0.5rem 0;
  background: rgba(253, 249, 245, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .header__btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

@media (max-width: 1024px) {
  .header__btn {
    display: none;
  }
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1002;
  background: transparent;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: #1A1A1A;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FDF9F5;
    padding: 100px 2rem 2rem;
    z-index: 1001;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s;
    pointer-events: none;
  }
  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .nav.active .nav__list li {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.4s ease forwards;
  }
  .nav.active .nav__list li:nth-child(1) {
    animation-delay: 0.1s;
  }
  .nav.active .nav__list li:nth-child(2) {
    animation-delay: 0.15s;
  }
  .nav.active .nav__list li:nth-child(3) {
    animation-delay: 0.2s;
  }
  .nav.active .nav__list li:nth-child(4) {
    animation-delay: 0.25s;
  }
  .nav.active .nav__list li:nth-child(5) {
    animation-delay: 0.3s;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 1024px) {
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    height: calc(100vh - 120px);
    justify-content: flex-start;
    padding-top: 2rem;
    overflow-y: auto;
  }
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active {
  background: rgba(139, 115, 85, 0.1);
  color: #8B7355;
}
@media (max-width: 1024px) {
  .nav__link {
    font-size: 1.25rem;
    padding: 1rem;
    justify-content: center;
  }
}
.nav__link--dropdown {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
@media (min-width: 1025px) {
  .nav__link--dropdown {
    cursor: default;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .nav__link--dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1025px) {
  .nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 1001;
  }
  .nav__dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 24px;
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    transform: rotate(45deg);
    box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 1024px) {
  .nav__dropdown {
    display: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }
}
@media (min-width: 1025px) {
  .nav__dropdown li:first-child a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .nav__dropdown li:last-child a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}
@media (max-width: 1024px) {
  .nav__dropdown-link {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    justify-content: flex-start;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1024px) {
  .nav--desktop {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header__btn--desktop {
    display: none;
  }
}

.burger--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .burger--mobile {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease;
}
.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
  display: flex;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.mobile-menu__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #FDF9F5;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
  margin-bottom: 2rem;
}
.mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1A1A1A;
  border-radius: 8px;
}
.mobile-menu__close:hover {
  background: rgba(139, 115, 85, 0.1);
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}
.mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
}
.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1A1A1A;
  text-align: left;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu__link:hover, .mobile-menu__link:focus {
  background: rgba(139, 115, 85, 0.1);
  color: #8B7355;
}
.mobile-menu__item--dropdown.active .mobile-menu__arrow {
  transform: rotate(180deg);
}
.mobile-menu__arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.mobile-menu__submenu {
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.mobile-menu__submenu[hidden] {
  display: none;
}
.mobile-menu__submenu:not([hidden]) {
  animation: slideDown 0.3s ease;
}
.mobile-menu__submenu-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: #5A5A5A;
  border-radius: 6px;
}
.mobile-menu__submenu-link:hover {
  background: rgba(139, 115, 85, 0.08);
  color: #8B7355;
}
.mobile-menu__footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
  text-align: center;
}
.mobile-menu__contact {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #5A5A5A;
}
.mobile-menu__contact a {
  color: #8B7355;
  font-weight: 500;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.burger {
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: #1A1A1A;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.logo {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}
.logo__image {
  height: 45px;
  width: auto;
  object-fit: contain;
  background: transparent;
}
@media (max-width: 768px) {
  .logo__image {
    height: 35px;
  }
}
@media (max-width: 480px) {
  .logo__image {
    height: 30px;
  }
}
.logo__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(0) invert(1);
  opacity: 0;
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
}
.nav__list {
  display: flex;
  gap: 1rem;
}
.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}
.nav__link:hover {
  background: rgba(139, 115, 85, 0.1);
  color: #8B7355;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .burger {
    display: flex;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 62, 58, 0.85), rgba(139, 115, 85, 0.7)), url("../images/hero-bg.jpg") center/cover no-repeat;
  z-index: -2;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(253, 249, 245, 0.3) 100%);
  z-index: -1;
}
.hero__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 800px;
  color: #FFFFFF;
  animation: fadeInUp 0.8s ease;
}
.hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  margin-bottom: 2rem;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
.hero__subtitle {
  font-size: 1.125rem;
  margin-bottom: 4rem;
  opacity: 0.95;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  font-size: 0.875rem;
  opacity: 0.8;
}
.hero__scroll svg {
  width: 24px;
  height: 24px;
  animation: bounce 2s infinite;
}
.hero__scroll svg path {
  fill: currentColor;
}
@media (max-width: 768px) {
  .hero__scroll {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.about {
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 0;
  }
}
.about__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}
.about__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.about__image:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.about__image:hover img {
  transform: scale(1.03);
}
.about__badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.about__content {
  padding: 2rem 0;
}
.about__text {
  color: #5A5A5A;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.feature__icon {
  font-size: 1.5rem;
}
.feature strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature span {
  color: #5A5A5A;
  font-size: 0.9375rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #2C3E3A;
}
.link-arrow svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.link-arrow svg path {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

.programs {
  padding: 6rem 0;
  background: #FDF9F5;
}
@media (max-width: 768px) {
  .programs {
    padding: 4rem 0;
  }
}
.programs .section-header {
  text-align: center;
}
.programs__filters {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  margin-top: 20px;
}
.programs__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (max-width: 480px) {
  .programs__grid {
    display: flex;
    padding: 0;
    flex-direction: column;
  }
}
.programs__more {
  text-align: center;
}

.programs-swiper {
  padding: 2rem 2rem 4rem;
  overflow: hidden;
  display: block !important;
  grid-template-columns: none !important;
}
.programs-swiper .swiper-wrapper {
  align-items: stretch;
}
.programs-swiper .swiper-slide {
  height: auto;
}
.programs-swiper .program-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.programs-swiper .swiper-pagination {
  bottom: 0 !important;
}
.programs-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #8B7355;
  opacity: 0.3;
  transition: all 0.3s ease;
}
.programs-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #2C3E3A;
  transform: scale(1.2);
}
.programs-swiper .swiper-button-prev,
.programs-swiper .swiper-button-next {
  color: #2C3E3A;
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.programs-swiper .swiper-button-prev::after,
.programs-swiper .swiper-button-next::after {
  font-size: 18px !important;
  font-weight: bold;
}
.programs-swiper .swiper-button-prev:hover,
.programs-swiper .swiper-button-next:hover {
  background: #2C3E3A;
  color: #FFFFFF;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .programs-swiper .swiper-button-prev,
  .programs-swiper .swiper-button-next {
    display: none;
  }
}
.programs-swiper .swiper-button-prev {
  left: 0;
}
.programs-swiper .swiper-button-next {
  right: 0;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9375rem;
  border-radius: 50px;
  border: 1px solid rgba(139, 115, 85, 0.3);
  background: transparent;
  color: #5A5A5A;
  transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: #8B7355;
  color: #FFFFFF;
  border-color: #8B7355;
}

.program-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 640px) {
  .program-card {
    padding: 1rem;
    border-radius: 12px;
  }
}
.program-card__header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.1);
}
@media (max-width: 640px) {
  .program-card__header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.program-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 640px) {
  .program-card__title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}
.program-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .program-card__list {
    gap: 0.6rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
}
.program-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .program-card__list li {
    gap: 0.5rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }
}
.program-card__list li em {
  font-style: normal;
  color: #8B7355;
  font-weight: 500;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .program-card__list li em {
    font-size: 0.8rem;
    margin-left: 0;
    width: 100%;
    margin-top: 0.2rem;
    opacity: 0.8;
  }
}
.program-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .program-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.75rem;
    margin-bottom: 1rem;
  }
}
.program-card .duration {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #5A5A5A;
}
@media (max-width: 640px) {
  .program-card .duration {
    font-size: 0.85rem;
  }
}
.program-card .price {
  text-align: right;
}
@media (max-width: 640px) {
  .program-card .price {
    text-align: left;
    width: 100%;
  }
}
.program-card .price__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2C3E3A;
}
@media (max-width: 640px) {
  .program-card .price__value {
    font-size: 1.2rem;
  }
}
.program-card .price__label {
  font-size: 0.8rem;
  color: #5A5A5A;
}
@media (max-width: 640px) {
  .program-card .price__label {
    font-size: 0.75rem;
  }
}
.program-card .price--dual {
  border-top: 1px dashed rgba(139, 115, 85, 0.2);
}
@media (max-width: 640px) {
  .program-card .btn {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.program-card__details {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #F5F0E9;
  border-radius: 12px;
  border-left: 3px solid #8B7355;
  font-size: 0.9rem;
}
@media (max-width: 640px) {
  .program-card__details {
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    border-left-width: 2px;
  }
}
.program-card__dual {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #F5F0E9;
  border-radius: 12px;
}
@media (max-width: 640px) {
  .program-card__dual {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
  }
}
.program-card__dual strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #2C3E3A;
  font-size: 0.95rem;
}
@media (max-width: 640px) {
  .program-card__dual strong {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
  }
}
.program-card__dual .dual-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 640px) {
  .program-card__dual .dual-list li {
    font-size: 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
}
.program-card__dual .dual-list li em {
  margin-left: 0;
  color: #8B7355;
  font-weight: 500;
}

@media (max-width: 480px) {
  .program-card {
    padding: 0.75rem;
  }
  .program-card__title {
    font-size: 1.1rem;
  }
  .program-card__list li {
    font-size: 0.8rem;
    line-height: 1.3;
  }
  .program-card .price__value {
    font-size: 1.1rem;
  }
  .program-card .price__label {
    display: none;
  }
  .program-card__header {
    border-bottom: none;
    padding-bottom: 0.5rem;
  }
  .program-card__footer {
    border-top: none;
    padding-top: 0.5rem;
    margin-bottom: 0.75rem;
  }
}
@media (max-width: 640px) {
  .programs-swiper {
    padding: 1rem 1rem 4rem;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.details-desc {
  font-size: 0.95rem;
  color: #5A5A5A;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.details-list {
  font-size: 0.9rem;
  color: #1A1A1A;
}
.details-list li {
  margin-bottom: 0.375rem;
  padding-left: 1.25rem;
  position: relative;
}
.details-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 6px;
  background: #8B7355;
  border-radius: 50%;
}

@media (max-width: 480px) {
  .program-card {
    padding: 1rem;
  }
  .program-card__title {
    font-size: 1.3rem;
    max-width: 100%;
  }
  .program-card__list li {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .program-card__list li em {
    margin-left: 0;
    margin-top: 0.25rem;
    width: 100%;
    text-align: right;
  }
}
.program-card__title,
.program-card__list span,
.price__value {
  overflow-wrap: break-word;
  word-break: break-word;
}

.services-preview {
  padding: 6rem 0;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .services-preview {
    padding: 4rem 0;
  }
}
.services-preview .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  position: relative;
  display: block;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.service-card:hover .service-card__img {
  transform: scale(1.08);
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top, rgba(44, 62, 58, 0.9) 0%, rgba(44, 62, 58, 0.3) 60%, transparent 100%);
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 62, 58, 0.85) 0%, rgba(44, 62, 58, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  transition: background 0.3s ease;
}

.service-card__content {
  color: #FFFFFF;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.service-card:hover .service-card__content {
  transform: translateY(-5px);
}

.service-card__title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  font-family: "Cormorant Garamond", serif;
}

.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 1rem;
  font-family: #FFFFFF;
}

.service-card__arrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s ease;
}
.service-card:hover .service-card__arrow {
  border-color: #FFFFFF;
}

.service-card--cta {
  border: 2px solid #8B7355;
}
.service-card--cta .service-card__overlay {
  background: linear-gradient(to top, rgba(139, 115, 85, 0.9) 0%, rgba(139, 115, 85, 0.2) 60%, transparent 100%);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 300px;
  }
}
.service-card {
  border-radius: 24px;
  background: #FDF9F5;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card--cta {
  background: linear-gradient(135deg, #2C3E3A, rgb(22.8301886792, 32.1698113208, 30.0943396226));
  color: #FFFFFF;
}
.service-card--cta .service-card__icon {
  background: rgba(255, 255, 255, 0.2);
}
.service-card--cta:hover {
  transform: translateY(-6px) scale(1.02);
}
.service-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(139, 115, 85, 0.1);
  border-radius: 50%;
  color: #8B7355;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.9375rem;
  color: #FFFFFF;
}

.reviews {
  padding: 6rem 0;
  background: #F5F0E9;
}
@media (max-width: 768px) {
  .reviews {
    padding: 4rem 0;
  }
}
.reviews__slider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}
@media (max-width: 480px) {
  .reviews__slider {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
}

.review-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.review-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.review-card__rating {
  color: #FFB800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.review-card__text {
  font-style: italic;
  color: #5A5A5A;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.review-card__author .author__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.review-card__author strong {
  display: block;
  font-weight: 600;
}
.review-card__author span {
  font-size: 0.875rem;
  color: #8B7355;
}

.cta {
  background: linear-gradient(135deg, rgba(44, 62, 58, 0.95), rgba(139, 115, 85, 0.9)), url("../images/spa.jpg") center/cover;
  color: #FFFFFF;
  padding: 40px 0;
}
.cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  padding: 6rem 0;
}
@media (max-width: 992px) {
  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.cta p {
  opacity: 0.95;
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
}
.booking-form input, .booking-form select {
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}
.booking-form input::placeholder, .booking-form select::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.booking-form input:focus, .booking-form select:focus {
  outline: none;
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}
.booking-form input option, .booking-form select option {
  background: #FDF9F5;
  color: #1A1A1A;
}
.booking-form .form-note {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 0.5rem;
  text-align: center;
}

.footer {
  background: #2C3E3A;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.footer .container {
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__brand .logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__brand .logo__text {
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}
.footer__brand .logo__sub {
  font-size: 0.875rem;
  color: #8B7355;
  letter-spacing: 0.1em;
}
.footer__slogan {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 300px;
}
@media (max-width: 768px) {
  .footer__slogan {
    max-width: 100%;
    margin: 0 auto 4rem;
  }
}
@media (max-width: 768px) {
  .footer__contacts {
    margin-bottom: 4rem;
  }
}
.footer__address {
  font-style: normal;
  line-height: 2;
}
.footer__address p {
  margin: 0;
  font-size: 1rem;
}
.footer__address a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__address a:hover {
  color: #8B7355;
  border-color: #8B7355;
}
.footer__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-right: 0.5rem;
  display: inline-block;
}
.footer__socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer__socials {
    justify-content: center;
  }
}
.footer .social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer .social-btn:hover {
  transform: translateY(-3px);
}
.footer__bottom {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer__bottom .privacy-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
}
.footer__bottom .privacy-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .header__btn {
    display: none;
  }
  .hero__title {
    font-size: 2.5rem;
  }
  .program-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .price {
    text-align: left !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
:focus-visible {
  outline: 2px solid #8B7355;
  outline-offset: 2px;
}

/*
Для компиляции SCSS в CSS используйте:
$ sass scss/main.scss css/main.css --style compressed --watch

Или с autoprefixer:
$ postcss css/main.css -o css/main.css --use autoprefixer
*/
.services-list-section {
  padding: 6rem 0;
  background: #FDF9F5;
}
.services-list-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(139, 115, 85, 0.05);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.service-card:hover .service-card__link {
  color: #8B7355;
  text-decoration: underline;
}
.service-card__image {
  position: relative;
  height: 220px;
  width: 100%;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #2C3E3A;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.service-card__content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.5;
  margin-bottom: auto;
  padding-bottom: 1rem;
}
.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
@media (max-width: 400px) {
  .service-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.service-card__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.service-card .meta-item {
  font-size: 0.85rem;
  color: #5A5A5A;
  display: flex;
  align-items: center;
}
.service-card .meta-item.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2C3E3A;
  font-family: "Cormorant Garamond", serif;
}
.service-card__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.services-more {
  text-align: center;
  margin-top: 4rem;
}

.contacts {
  padding: 6rem 0;
  background: #FFFFFF;
}
.contacts__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .contacts__inner {
    flex-direction: column;
  }
}
.contacts__info {
  flex: 0 0 400px;
  max-width: 400px;
}
@media (max-width: 992px) {
  .contacts__info {
    flex: 1;
    max-width: 100%;
    text-align: center;
  }
}
.contacts__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2rem;
}
.contacts__details {
  margin-bottom: 2rem;
}
.contacts__details p {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #5A5A5A;
}
.contacts__details a {
  color: #2C3E3A;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contacts__details a:hover {
  color: #8B7355;
}
.contacts__address {
  font-weight: 500;
  color: #1A1A1A !important;
}
.contacts__cta {
  font-size: 1rem;
  line-height: 1.6;
  color: #5A5A5A;
  margin-bottom: 2rem;
}
.contacts__cta-link {
  color: #8B7355;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(139, 115, 85, 0.3);
  transition: border-color 0.2s;
}
.contacts__cta-link:hover {
  border-color: #8B7355;
}
.contacts__privacy {
  display: inline-block;
  font-size: 0.875rem;
  color: rgba(90, 90, 90, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(90, 90, 90, 0.2);
  margin-bottom: 4rem;
  transition: color 0.2s, border-color 0.2s;
}
.contacts__privacy:hover {
  color: #1A1A1A;
  border-color: #1A1A1A;
}
.contacts__socials {
  display: flex;
  gap: 1rem;
}
@media (max-width: 992px) {
  .contacts__socials {
    justify-content: center;
  }
}
.contacts .social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A89279;
  transition: color 0.2s, transform 0.2s;
}
.contacts .social-icon svg {
  width: 100%;
  height: 100%;
}
.contacts .social-icon:hover {
  color: #8B7355;
  transform: translateY(-2px);
}
.contacts__map {
  flex: 1;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
@media (max-width: 992px) {
  .contacts__map {
    width: 100%;
    height: 300px;
  }
}
.contacts__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-section {
  padding: 6rem 0;
  background: #FFFFFF;
}
.gallery-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-carousel {
  position: relative;
  padding-bottom: 3rem;
}
.gallery-carousel .swiper-slide {
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
}
.gallery-carousel .gallery-slide__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.swiper-slide:hover .gallery-carousel .gallery-slide__img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .gallery-carousel .gallery-slide__img {
    height: 350px;
  }
}
.gallery-carousel .swiper-pagination {
  bottom: 0 !important;
}
.gallery-carousel .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #D4C4B5;
  opacity: 0.4;
  transition: all 0.3s ease;
}
.gallery-carousel .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #2C3E3A;
  transform: scale(1.3);
}
.gallery-carousel .swiper-button-prev,
.gallery-carousel .swiper-button-next {
  color: #1A1A1A;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.gallery-carousel .swiper-button-prev::after,
.gallery-carousel .swiper-button-next::after {
  font-size: 20px !important;
  font-weight: 300;
}
.gallery-carousel .swiper-button-prev:hover,
.gallery-carousel .swiper-button-next:hover {
  background: #FFFFFF;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .gallery-carousel .swiper-button-prev,
  .gallery-carousel .swiper-button-next {
    display: none;
  }
}
.gallery-carousel .swiper-button-prev {
  left: 20px;
}
.gallery-carousel .swiper-button-next {
  right: 20px;
}

.simple-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.simple-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.simple-lightbox__close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 3rem;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  z-index: 10;
}
.simple-lightbox__close:hover {
  color: #8B7355;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .simple-lightbox__close {
    top: 10px;
    right: 20px;
    font-size: 2.5rem;
  }
}
.simple-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #FFFFFF;
  font-size: 3rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.simple-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.25);
}
.simple-lightbox__nav--prev {
  left: 30px;
}
.simple-lightbox__nav--next {
  right: 30px;
}
@media (max-width: 768px) {
  .simple-lightbox__nav {
    display: none;
    width: 50px;
    height: 50px;
    font-size: 2.5rem;
  }
  .simple-lightbox__nav--prev {
    left: 10px;
  }
  .simple-lightbox__nav--next {
    right: 10px;
  }
}
.simple-lightbox__content {
  max-width: 95%;
  max-height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.simple-lightbox__img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
}
.simple-lightbox__caption {
  color: #FFFFFF;
  font-size: 1rem;
  margin-top: 1rem;
  opacity: 0.8;
  text-align: center;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: #FDF9F5;
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 4rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}
.modal::-webkit-scrollbar {
  width: 6px;
}
.modal::-webkit-scrollbar-track {
  background: transparent;
}
.modal::-webkit-scrollbar-thumb {
  background: rgba(139, 115, 85, 0.3);
  border-radius: 3px;
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #5A5A5A;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 1;
}
.modal__close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #1A1A1A;
  transform: rotate(90deg);
}
.modal__header {
  margin-bottom: 4rem;
  padding-right: 3rem;
}
.modal__title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}
.modal__subtitle {
  font-size: 0.95rem;
  color: #5A5A5A;
  line-height: 1.5;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__submit {
  margin-top: 1rem;
  padding: 1rem;
}
.modal__or {
  text-align: center;
  font-size: 0.9rem;
  color: #5A5A5A;
  margin-top: 1rem;
}
.modal__or a {
  color: #2C3E3A;
  font-weight: 500;
  text-decoration: none;
}
.modal__or a:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .modal {
    padding: 2rem;
    max-height: 95vh;
  }
  .modal__header {
    padding-right: 2.5rem;
  }
  .modal__title {
    font-size: 1.4rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A1A;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: #1A1A1A;
  background: #FFFFFF;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 12px;
  transition: all 0.2s ease;
  outline: none;
}
.form-input::placeholder,
.form-select::placeholder,
.form-textarea::placeholder {
  color: rgba(90, 90, 90, 0.6);
}
.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: rgba(139, 115, 85, 0.4);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #8B7355;
  box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #E53E3E;
}
.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' fill='none' stroke='%238B7355' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-error {
  font-size: 0.8rem;
  color: #E53E3E;
  display: none;
}
.form-error.visible {
  display: block;
}

.form-consent {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #5A5A5A;
  line-height: 1.4;
}
.checkbox-label input[type=checkbox] {
  display: none;
}
.checkbox-label input[type=checkbox]:checked + .checkbox-custom::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.checkbox-label .checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid rgba(139, 115, 85, 0.3);
  border-radius: 4px;
  transition: all 0.2s ease;
  margin-top: 1px;
}
.checkbox-label .checkbox-custom::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.5);
  transition: all 0.2s ease;
}
.checkbox-label:hover .checkbox-custom {
  border-color: #8B7355;
}

.consent-link {
  color: #8B7355;
  text-decoration: underline;
}
.consent-link:hover {
  color: #2C3E3A;
}

/*# sourceMappingURL=style.css.map */
