:root {
  --pearl: #F8F6F2;
  --beige: #D9C2A3;
  --text: #2A2A2A;
  --soft-text: #70685f;
  --white: #ffffff;
  --dark: #181511;
  --gold: #C7A56A;
  --glass: rgba(255, 255, 255, 0.58);
  --shadow: 0 25px 80px rgba(60, 45, 25, 0.14);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--pearl);
  color: var(--text);
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.section {
  padding: 110px 7%;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

p {
  color: var(--soft-text);
  line-height: 1.8;
}

.section-intro {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 60px;
}


.membership-options{
display:flex;
gap:24px;
justify-content:flex-end;
align-items:center;
flex-wrap:wrap;
}

.membership-image-card{
position:relative;
overflow:hidden;

border-radius:30px;

width:100%;
max-width:500px;

aspect-ratio:500 / 340;

box-shadow:
0 30px 90px rgba(0,0,0,.16);

transition:.45s ease;

margin:0 auto;
}

.membership-image-card:hover{
transform:
translateY(-10px)
scale(1.02);
}

.membership-image-card img{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.membership-overlay{
position:relative;
z-index:2;
height:100%;
padding:40px;
display:flex;
flex-direction:column;
justify-content:flex-end;

background:linear-gradient(
180deg,
rgba(0,0,0,0),
rgba(0,0,0,.72)
);
}

.membership-overlay h3{
color:white;
font-size:2rem;
margin-bottom:12px;
}

.membership-overlay p{
color:rgba(255,255,255,.82);
margin-bottom:24px;
}

.membership-btn{
width:max-content;
padding:14px 24px;
border-radius:999px;

background:rgba(255,255,255,.18);
backdrop-filter:blur(12px);

border:1px solid rgba(255,255,255,.3);

color:white;
transition:.35s ease;
}

.membership-btn:hover

@media(max-width:900px){

.membership-options{
  display:flex;
  gap:24px;
  justify-content:flex-end;
  align-items:center;
  flex-wrap:wrap;
}

}



/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--pearl);
  display: grid;
  place-items: center;
  transition: opacity .8s ease, visibility .8s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  text-align: center;
  color: var(--text);
  letter-spacing: .35em;
}

.preloader-logo span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
}

.preloader-logo small {
  font-size: .8rem;
  color: var(--gold);
}

.logo-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
  animation: drawLine 1.6s ease forwards;
}

@keyframes drawLine {
  to { width: 180px; }
}

/* MOUSE GLOW */
.mouse-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(217,194,163,.35), rgba(217,194,163,0) 65%);
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 22px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .35s ease;
}

.navbar.scrolled {
  background: rgba(248, 246, 242, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0,0,0,.06);
  padding-block: 14px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: .9;
}

.brand small {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: .62rem;
  color: var(--gold);
  letter-spacing: .35em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 34px;
  font-size: .92rem;
}

.nav-links a {
  position: relative;
  color: var(--text);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn,
.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 500;
  transition: .35s ease;
}

.nav-btn {
  border: 1px solid rgba(42,42,42,.18);
}

.btn.primary {
  background: var(--text);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(42,42,42,.22);
}

.btn.secondary {
  border: 1px solid rgba(42,42,42,.2);
  color: var(--text);
  background: rgba(255,255,255,.35);
  backdrop-filter: blur(12px);
}

.btn:hover,
.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px rgba(42,42,42,.18);
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px 0;
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 120px 7%;
  overflow: hidden;
}

.hero-video,
.hero::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  z-index: -3;
  filter: saturate(.85) brightness(1.08);
}

.hero::before {
  content: "";
  background: url("images/hero-beauty.jpg") center/cover no-repeat;
  z-index: -4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248,246,242,.92), rgba(248,246,242,.64), rgba(248,246,242,.2));
  z-index: -2;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: .92;
  margin-bottom: 28px;
}

.hero-text {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 7%;
  font-size: .76rem;
  color: var(--soft-text);
  letter-spacing: .18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-indicator span {
  width: 38px;
  height: 1px;
  background: var(--gold);
}

/* FLOATING ELEMENTS */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.75), rgba(217,194,163,.24));
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 30px rgba(255,255,255,.6), 0 25px 80px rgba(180,150,105,.18);
  z-index: 2;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 110px;
  height: 110px;
  right: 54%;
  top: 22%;
}

.shape-2 {
  width: 82px;
  height: 82px;
  right: 8%;
  bottom: 24%;
  animation-delay: 1.5s;
}

.shape-3 {
  width: 52px;
  height: 52px;
  left: 52%;
  bottom: 18%;
  animation-delay: 2.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-28px); }
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}

.about-card {
  border-radius: var(--radius);
  padding: 48px;
}

.about-card h3 {
  font-size: 2.3rem;
  margin-bottom: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.stats strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
}

.stats span {
  font-size: .78rem;
  color: var(--soft-text);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  padding: 40px;
  min-height: 280px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(217,194,163,.32);
  box-shadow: 0 18px 60px rgba(60,45,25,.08);
  transition: .35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 90px rgba(60,45,25,.16);
  border-color: var(--beige);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--pearl);
  color: var(--gold);
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(199,165,106,.35);
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.service-card span {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold);
  font-weight: 600;
}

.service-card.highlight {
  background: linear-gradient(135deg, var(--dark), #2a2118);
  color: var(--white);
}

.service-card.highlight p {
  color: rgba(255,255,255,.72);
}

/* GALLERY */
.masonry-gallery {
  columns: 3 260px;
  column-gap: 22px;
}

.masonry-gallery img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 22px;
  break-inside: avoid;
  box-shadow: var(--shadow);
  transition: .35s ease;
}

.masonry-gallery img.tall {
  height: 450px;
}

.masonry-gallery img:hover,
.instagram-grid img:hover {
  transform: scale(1.025);
}

/* REVIEWS */
.reviews {
  background: linear-gradient(180deg, var(--pearl), #efe4d5);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  padding: 38px;
  border-radius: var(--radius);
}

.stars {
  color: var(--gold);
  letter-spacing: .14em;
  margin-bottom: 18px;
}

.review-card h4 {
  margin-top: 22px;
}

/* MEMBERSHIP */
.membership-card {
  border-radius: 36px;
  padding: 70px;
  background: linear-gradient(135deg, #1f1913, #3a2e22);
  color: var(--white);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  overflow: hidden;
  position: relative;
}

.membership-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(217,194,163,.18);
  filter: blur(10px);
}

.membership-card p {
  color: rgba(255,255,255,.7);
}

.membership-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.membership-options div {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
}

/* INSTAGRAM */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.instagram-grid img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  transition: .35s ease;
}

/* FAQ */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

details {
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(217,194,163,.35);
  border-radius: 20px;
  padding: 22px 26px;
  margin-bottom: 16px;
  box-shadow: 0 14px 40px rgba(60,45,25,.06);
}

summary {
  cursor: pointer;
  font-weight: 600;
}

/* BOOKING */
.booking {
  background: var(--dark);
  color: var(--white);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.booking-text p {
  color: rgba(255,255,255,.68);
}

.booking-form {
  padding: 44px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.booking-form label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  margin-top: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  outline: none;
  font-family: inherit;
}

.booking-form input::placeholder {
  color: rgba(255,255,255,.46);
}

.booking-form select option {
  color: var(--text);
}

.btn.full {
  border: 0;
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
  background: var(--beige);
  color: var(--text);
}

/* FOOTER */
.footer {
  padding: 55px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: #120f0c;
  color: var(--white);
  flex-wrap: wrap;
}

.footer p,
.footer-links a {
  color: rgba(255,255,255,.62);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.copyright {
  font-size: .82rem;
}

/* WHATSAPP */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 45;
  background: #1f8f57;
  color: white;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(31,143,87,.28);
  font-size: .9rem;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .9s ease, transform .9s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links.active {
    display: flex;
    position: absolute;
    top: 72px;
    left: 7%;
    right: 7%;
    padding: 24px;
    flex-direction: column;
    background: rgba(248,246,242,.94);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .about-grid,
  .booking-wrapper,
  .membership-card {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-image img {
    height: 440px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 80px 6%;
  }

  .navbar {
    padding-inline: 6%;
  }

  .hero {
    padding-inline: 6%;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .services-grid,
  .reviews-grid,
  .membership-options,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .membership-card,
  .booking-form,
  .about-card {
    padding: 32px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mouse-glow {
    display: none;
  }
}
