:root {
  --bg: #fefcf8;
  --text-primary: #333333;
  --text-light: #faf5f2;
  --primary: #8b5fbf;
  --accent: #e0c0ff;
  --hover-bg: #7a4fae;
  --transition: 0.4s ease;
  --max-width: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  transition: color var(--transition);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  width: 50px;
  height: auto;
}
.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--primary);
  transition: transform var(--transition);
}
.logo h1:hover {
  transform: scale(1.05);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.site-nav a {
  position: relative;
  color: var(--text-primary);
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition), left var(--transition);
}
.site-nav a:hover::after,
.site-nav .active::after {
  width: 100%;
  left: 0;
}
.site-nav a:hover,
.site-nav .active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-primary);
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right var(--transition);
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

button,
.btn,
.btn-submit {
  display: inline-block;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}
button:hover,
.btn:hover,
.btn-submit:hover {
  background: var(--hover-bg);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-logo {
  width: 60px;
  animation: spin 1s linear infinite;
}
.loader-text {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  margin-top: 1rem;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition);
}
.scroll-to-top.visible {
  opacity: 1;
}

.cookies-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1s ease forwards;
}
@keyframes fadeInUp {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.site-footer {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 2rem 1rem;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.footer-contact,
.footer-hours {
  min-width: 200px;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-socials img {
  width: 30px;
  transition: transform var(--transition);
}
.footer-socials img:hover {
  transform: scale(1.2);
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  font-size: 0.9rem;
  color: #777;
}

.footer-logo img {
  width: 50px;
  height: auto;
}

@media (max-width: 1024px) {
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  h1 {
    font-size: 1.75rem;
  }
  .container {
    padding: 0 0.75rem;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
  .btn,
  button {
    padding: 0.5rem 1.25rem;
  }
  .site-nav ul {
    gap: 1rem;
  }
}

.hero-slider {
  position: relative;
  height: 80vh;
  overflow: hidden;
}
.hero-slider .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slideFade 18s infinite;
}
.hero-slider .slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider .slide:nth-child(2) {
  animation-delay: 6s;
}
.hero-slider .slide:nth-child(3) {
  animation-delay: 12s;
}
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes slideFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.about-salon {
  padding: 6rem 0;
  background: #fff;
}
.about-salon__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}
.about-salon__image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  transition: transform var(--transition);
}
.about-salon__image img:hover {
  transform: scale(1.02);
}
.about-salon__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.about-salon__lead {
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.about-salon__features {
  list-style: none;
  margin-bottom: 2rem;
  padding: 0;
}
.about-salon__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  line-height: 1.5;
}
.about-salon__features .feature-dot {
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--accent);
  border-radius: 50%;
}
.about-salon__text .btn {
  background: var(--primary);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.about-salon__text .btn:hover {
  background: var(--hover-bg);
  transform: translateY(-2px) scale(1.02);
}

@media (max-width: 1024px) {
  .about-salon__wrapper {
    grid-template-columns: 1fr;
  }
  .about-salon__image {
    margin-bottom: 2rem;
  }
}

.promo-cta {
  position: relative;
  padding: 5rem 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
  animation: promoFadeIn 1s ease-in-out forwards;
}
@keyframes promoFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.promo-cta__title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  margin-bottom: 1rem;
}
.promo-cta__text {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.promo-cta__btn {
  display: inline-block;
  background: var(--text-light);
  color: var(--primary);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}
.promo-cta__btn:hover {
  background: #ffffffcc;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promo-cta::before,
.promo-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  background: #ffffff;
}
.promo-cta::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}
.promo-cta::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

@media (max-width: 768px) {
  .promo-cta__title {
    font-size: 2rem;
  }
  .promo-cta__text {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .promo-cta__btn {
    padding: 0.5rem 2rem;
  }
}

.services-interactive {
  padding: 6rem 1rem;
  background: var(--bg);
  text-align: center;
  overflow: hidden;
}
.services-interactive__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2rem;
  position: relative;
}
.services-interactive__tabs {
  display: inline-flex;
  gap: 1rem;
  margin-bottom: 3rem;
}
.services-interactive__tabs .tab {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
    transform var(--transition);
}
.services-interactive__tabs .tab.active,
.services-interactive__tabs .tab:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: scale(1.05);
}
.services-interactive__content {
  max-width: var(--max-width);
  margin: 0 auto;
}
.services-interactive .service-panel {
  display: none;
  animation: panelFadeIn 0.6s ease forwards;
}
.services-interactive .service-panel.active {
  display: block;
}
.services-interactive .service-panel ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
}
.services-interactive .service-panel li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  text-align: left;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.6;
}
.services-interactive .service-panel li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--primary);
  font-size: 1.1rem;
}
@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .services-interactive__tabs {
    flex-direction: column;
    gap: 0.75rem;
  }
  .services-interactive__tabs .tab {
    width: 100%;
  }
}

.gallery-section {
  padding: 6rem 1rem;
  background: var(--bg);
}
.gallery-section__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
}
.gallery-item {
  flex: 1 1 calc(33.333% - 1rem);
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .gallery-item {
    flex: 1 1 calc(50% - 1rem);
  }
}
@media (max-width: 480px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

.booking-section {
  padding: 6rem 1rem;
  background: var(--bg);
}
.booking-section__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
}
.booking-section__intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}
.booking-form .form-group {
  position: relative;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 2px solid var(--primary);
  background: transparent;
  color: var(--text-primary);
  font-family: inherit;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.booking-form label {
  position: absolute;
  top: 50%;
  left: 0;
  color: var(--primary);
  pointer-events: none;
  transform: translateY(-50%);
  transition: top var(--transition), font-size var(--transition),
    color var(--transition);
}
.booking-form input:focus + label,
.booking-form input:not(:placeholder-shown) + label,
.booking-form select:focus + label,
.booking-form select:not([value=""]) + label,
.booking-form textarea:focus + label,
.booking-form textarea:not(:placeholder-shown) + label {
  top: -0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
}
.booking-form__btn {
  justify-self: center;
  background: var(--primary);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}
.booking-form__btn:hover {
  background: var(--hover-bg);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .booking-section__title {
    font-size: 2rem;
  }
  .booking-section__intro {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

/* Detailed Salon Section */
.salon-details {
  padding: 6rem 1rem;
  background: #fff;
  color: var(--text-primary);
}
.salon-details__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 2rem;
}
.salon-details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.salon-details__text {
  line-height: 1.6;
}
.salon-details__features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem;
}
.salon-details__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.salon-details__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}
.salon-details__text h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.salon-details__team h3 {
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}
.salon-details__members {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.salon-details__members .member {
  text-align: center;
  max-width: 180px;
}
.salon-details__members .member img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition);
}
.salon-details__members .member img:hover {
  transform: scale(1.05);
}
.member-name {
  display: block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}
.member-role {
  display: block;
  font-size: 0.9rem;
  color: var(--accent);
}
@media (max-width: 768px) {
  .salon-details__members {
    gap: 1rem;
  }
}

/* Procedures Detailed Accordion */
.procedures-detailed {
  padding: 6rem 1rem;
  background: #fff;
}
.procedures-detailed__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 3rem;
}
.procedures-detailed__accordion {
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.accordion-item + .accordion-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.accordion-toggle {
  width: 100%;
  background: var(--bg);
  color: var(--text-primary);
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  position: relative;
  transition: background var(--transition);
}
.accordion-toggle::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform var(--transition);
}
.accordion-toggle.active {
  background: var(--accent);
  color: var(--text-light);
}
.accordion-toggle.active::after {
  content: "–";
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #faf5f2;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 1.5rem;
}
.accordion-content ul {
  list-style: none;
  padding: 1rem 0;
  margin: 0;
}
.accordion-content li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.75rem;
}
.accordion-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

@media (max-width: 768px) {
  .procedures-detailed__title {
    font-size: 2.25rem;
  }
  .accordion-toggle {
    font-size: 1rem;
    padding: 1rem;
  }
  .accordion-content {
    padding: 0 1rem;
  }
}

.title_background {
  background: var(--bg);
  padding: 8rem 1rem;
}
.title_background .container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}
.title_background .title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  position: relative;
  display: inline-block;
  padding: 0.25rem 1rem;
}
.title_background .title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.text_background {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1rem 4rem;
}
.text_background .container {
  max-width: var(--max-width);
  margin: 0 auto;
}
.text_background .text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.8;
  text-align: left;
  white-space: pre-wrap;
  position: relative;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}
.text_background .text::first-letter {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  float: left;
  line-height: 1;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.75rem;
    letter-spacing: 0.15em;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
    border-left: none;
    padding-left: 0;
  }
}
