/* ==== Facials Hero Section Styles Start ==== */
#facials-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: var(--bgColour1);
}

#facials-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(24rem, 0.9fr);
  max-width: none;
  min-height: 46rem;
  padding-top: 80px;
}

.service-page-hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  padding: var(--spaceLg);
  margin: 0 auto;
  max-width: 42rem;
}

.service-page-hero-content h1,
.service-page-hero-content p,
.service-page-hero-content .cta-button {
  position: relative;
  z-index: 1;
}

.service-page-hero-content h1 {
  margin-bottom: var(--spaceSm);
}

.service-page-hero-content p {
  max-width: 36rem;
  margin-bottom: var(--spaceSmmd);
}

.service-page-hero-image {
  min-height: 29rem;
  overflow: hidden;
  max-height: 700px;
}

.service-page-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  #facials-hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-page-hero-content {
    min-height: 34rem;
    padding: clamp(7rem, 16vw, 9rem) 1rem var(--spaceLg);
  }

  .service-page-hero-motif {
    top: var(--spaceSm);
    right: 1rem;
    width: clamp(5rem, 18vw, 7rem);
  }

  .service-page-hero-image {
    min-height: 25rem;
  }
}

@media screen and (max-width: 500px) {
  .service-page-hero-content {
    min-height: 30rem;
  }

  .service-page-hero-image {
    min-height: 21rem;
  }
}
/* ==== Facials Hero Section Styles End ==== */

/* ===== SECTION: Contact Hero START ===== */

#contact-hero {
  position: relative;
  min-height: 65svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  background-color: var(--bgColour1);
}

#contact-hero .container {
  z-index: 1;
}

/* Background Image */
.contact-hero__media {
  position: absolute;
  inset: 0;
}

.contact-hero__media picture,
.contact-hero__image {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-hero__image {
  object-fit: cover;
}

/* Overlay */
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(250, 247, 244, 0.96) 0%,
      rgba(250, 247, 244, 0.88) 48%,
      rgba(250, 247, 244, 0.72) 100%
    ),
    rgba(250, 247, 244, 0.45);
}

/* Content */
.contact-hero__content {
  max-width: 46rem;
  margin: 0 auto;
  display: grid;
  gap: var(--spaceSmmd);
  justify-items: center;
}

/* Heading */
.contact-hero__content h1 {
  font-weight: 500;
  line-height: 1.05;
}

/* Text */
.contact-hero__content > p:last-child {
  max-width: 36rem;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.45;
}

/* Responsive */
@media (max-width: 768px) {
  #contact-hero {
    min-height: 65svh;
  }
}

/* ===== SECTION: Contact Hero END ===== */

/* ========================================
   Privacy Policy Page
======================================== */
#privacy-policy .container {
  max-width: 850px;
}

#privacy-policy h1 {
  margin-bottom: 2rem;
}

#privacy-policy h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}

#privacy-policy p {
  margin-bottom: 1.6rem;
}

#privacy-policy ul {
  margin: 0 0 2rem 2rem;
  padding: 0;
}

#privacy-policy li {
  margin-bottom: 0.8rem;
}

#privacy-policy strong {
  font-weight: 600;
  color: #2f2f2f;
}

#privacy-policy a {
  color: #b88989;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

#privacy-policy a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 768px) {
  #privacy-policy {
    padding: 6rem 0;
  }

  #privacy-policy h2 {
    margin-top: 3rem;
  }

  #privacy-policy p,
  #privacy-policy li {
    font-size: 1.5rem;
  }
}
