:root {
  --bg: #f5e0dc;
  --text: #5a4d41;
  --primary: #8b6d5e;
  --accent: #c4a69f;
  --light: #ffffff;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  backdrop-filter: blur(6px);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  width: 48px;
}
.logo h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--primary);
  transition: color var(--transition);
}
.logo h1:hover {
  color: var(--accent);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  position: relative;
  padding: 0.25rem 0;
  font-weight: 500;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  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;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text);
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: var(--bg);
    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.25rem;
  }
}

.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: var(--light);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 30vh;
}
.hero__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}
.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.5s;
}
.hero__btn {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
}
.hero__btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookies-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--light);
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  display: flex;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.cookies-button {
  background: var(--light);
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.cookies-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.site-footer {
  background: var(--bg);
  padding: 2.5rem 1rem 1rem;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.footer-logo {
  text-align: center;
}
.footer-logo img {
  width: 50px;
}
.footer-logo p {
  margin-top: 0.5rem;
  color: var(--primary);
  font-style: italic;
}
.footer-contact,
.footer-hours {
  min-width: 200px;
}
.footer-contact h3,
.footer-hours h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-socials a {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.footer-socials a img {
    width: 28px;
    height: 28px;
    filter: none;
}
.footer-socials a:hover {
  background: var(--accent);
  transform: scale(1.1);
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer-links a:hover {
  color: var(--accent);
}
.footer-bottom {
  font-size: 0.85rem;
  color: #777;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--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;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section__bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.hero-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--light);
  padding: 0 1rem;
}
.hero-section__logo {
  width: 80px;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.hero-section__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
}
.hero-section__text {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-section__title {
    font-size: 2.25rem;
  }
  .hero-section__logo {
    width: 60px;
  }
  .hero-section__text {
    font-size: 1rem;
  }
}

.about-services-section {
  padding: 6rem 1rem;
  background: var(--light-accent);
}
.about-services__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.about-services__info {
  color: var(--text);
}
.about-services__title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
}
.about-services__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.about-services__subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.about-services__list {
  list-style: none;
  padding-left: 0;
}
.about-services__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.about-services__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
}
.about-services__image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: scale(0.95);
  animation: imageFadeIn 1s ease forwards 0.5s;
}
@keyframes imageFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .about-services__wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-services__image {
    margin-top: 2rem;
  }
}

.treatments-detailed {
  padding: 6rem 1rem;
  background: var(--light-accent);
}
.treatments-detailed__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 3rem;
}
.treatments-detailed__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.treatment-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.treatment-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.treatment-card__content {
  padding: 1.5rem;
}
.treatment-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.treatment-card__list {
  list-style: none;
  padding: 0;
}
.treatment-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.treatment-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}
@media (max-width: 768px) {
  .treatments-detailed__grid {
    grid-template-columns: 1fr;
  }
}

.masters-section {
  padding: 6rem 1rem;
  background: var(--bg);
}
.masters-section__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 3rem;
}
.masters-section__gallery {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.master {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: 1 1 260px;
  max-width: 300px;
}
.master img {
  width: 100%;
  display: block;
  border-radius: 1rem;
  transition: transform var(--transition);
}
.master:hover img {
  transform: scale(1.05);
}
.master figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background: rgba(245, 224, 220, 0.85);
  transform: translateY(100%);
  text-align: center;
  transition: transform var(--transition);
}
.master:hover figcaption {
  transform: translateY(0);
}
.master h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.25rem;
}
.master p {
  margin: 0.25rem 0 0;
  color: var(--text);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .masters-section__gallery {
    gap: 1rem;
  }
  .master {
    flex: 1 1 100%;
    max-width: none;
  }
}

.testimonials-section {
  padding: 6rem 1rem;
  background: var(--light-accent);
}
.testimonials-section__title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 3rem;
}
.testimonials-section__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.testimonial {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
.testimonial__quote {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text);
  position: relative;
}
.testimonial__quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 3rem;
  color: var(--accent);
}
.testimonial__quote::after {
  content: "”";
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-size: 3rem;
  color: var(--accent);
}
.testimonial__author {
  text-align: right;
  font-weight: 500;
  color: var(--primary);
}

@media (max-width: 768px) {
  .testimonials-section__cards {
    grid-template-columns: 1fr;
  }
}

/* Contact Section */
.contact-section {
  padding: 6rem 1rem;
  background: var(--bg);
}
.contact-section__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.contact-section__info {
  color: var(--text);
}
.contact-section__title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-section__text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-section__list {
  list-style: none;
  padding: 0;
}
.contact-section__list li {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.contact-section__list strong {
  color: var(--accent);
}

.contact-section__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-section__form .form-group {
  position: relative;
}
.contact-section__form input,
.contact-section__form textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 2px solid var(--primary);
  background: transparent;
  color: var(--text);
  font-family: inherit;
}
.contact-section__form input:focus,
.contact-section__form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.contact-section__form label {
  position: absolute;
  top: 50%;
  left: 0;
  pointer-events: none;
  transform: translateY(-50%);
  color: var(--primary);
  transition: top var(--transition), font-size var(--transition),
    color var(--transition);
}
.contact-section__form input:focus + label,
.contact-section__form input:not(:placeholder-shown) + label,
.contact-section__form textarea:focus + label,
.contact-section__form textarea:not(:placeholder-shown) + label {
  top: -0.75rem;
  font-size: 0.85rem;
  color: var(--accent);
}
.contact-section__form button {
  align-self: flex-start;
  background: var(--primary);
  color: var(--light);
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition),
    box-shadow var(--transition);
}
.contact-section__form button:hover {
  background: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .contact-section__wrapper {
    grid-template-columns: 1fr;
  }
  .contact-section__info {
    text-align: center;
  }
}

.salon-detail-section {
  padding: 6rem 1rem;
  background: var(--light-accent);
}
.salon-detail__title {
  font-family: "Playfair Display", serif;
  font-size: 2.75rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}
.salon-detail__intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.6;
  text-align: center;
}
.salon-detail__features {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 3rem;
  padding: 0;
}
.salon-detail__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}
.salon-detail__features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary);
}
.salon-detail__photos {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.salon-detail__photos img {
  width: calc(33.333% - 0.67rem);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform var(--transition), box-shadow var(--transition);
}
.salon-detail__photos img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .salon-detail__photos img {
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 480px) {
  .salon-detail__photos img {
    width: 100%;
  }
}

.title_background {
  background: var(--light-accent);
  padding: 6rem 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.2em;
  position: relative;
  display: inline-block;
  padding: 0.5rem 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: var(--bg);
  padding: 3rem 1rem 5rem;
}
.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);
  line-height: 1.8;
  text-align: left;
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
  white-space: pre-wrap;
  position: relative;
}
.text_background .text::first-letter {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  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;
  }
}