@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --dark: #090706;
  --dark-2: #14100e;
  --cream: #f8efe2;
  --gold: #d7b56d;
  --soft: #b99678;
  --white: #ffffff;
  --muted: #c8b9aa;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  overflow-x:hidden;
  width:100%;
}

html{
  width:100%;
  overflow-x:hidden;
}

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

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

/* HEADER */
.site-header{
    width: min(1320px, calc(100% - 70px));
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 28px;
    border-radius: 26px;

     background:rgba(9,7,6,.88);

    border:1px solid rgba(215,181,109,.22);

    backdrop-filter:blur(20px);

    box-shadow:0 10px 35px rgba(0,0,0,.45);
}

.navlogo
{
  height: 70px;
  width: 70px;
}

.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border-radius: 30px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(215,181,109,.18);
}

.nav-links a{
    font-size:13px;
    padding:9px 17px;
    border-radius:22px;

    color:#f8efe2;

    transition:.35s;
}

.nav-links a:hover,
.nav-links a.active{

    background:#d7b56d;
    color:#111;

    box-shadow:0 8px 18px rgba(215,181,109,.35);

}

.book-btn,
.primary-btn,
.dark-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:50px;

    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;

    text-decoration:none;
    cursor:pointer;

    transition:all .35s ease;
}
.book-btn{

    background:linear-gradient(
        135deg,
        #d7b56d,
        #f0d28d
    );

    color:#111;

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

    box-shadow:
        0 8px 25px rgba(215,181,109,.35);
}

.book-btn:hover{

    transform:translateY(-4px);

    background:linear-gradient(
        135deg,
        #e5c67f,
        #f8deb0
    );

    box-shadow:
        0 14px 35px rgba(215,181,109,.45);
}

.primary-btn{

    background:#fff;

    color:#111;

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

    box-shadow:
        0 12px 30px rgba(255,255,255,.15);
}

.primary-btn:hover{

    background:#d7b56d;

    color:#111;

    transform:translateY(-4px);
}

.dark-btn{

    background:#d7b56d;

    color:#111;

    border:1px solid rgba(215,181,109,.4);

    box-shadow:
        0 10px 28px rgba(215,181,109,.30);
}

.dark-btn:hover{

    background:#e5c67f;

    transform:translateY(-4px);

    box-shadow:
        0 15px 35px rgba(215,181,109,.45);
}

.menu-btn {
  display: none;
  border: none;
  background: #fff;
  color: #111;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 0 46px 30px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(215,181,109,.18), transparent 24%),
    radial-gradient(circle at 80% 70%, rgba(185,150,120,.16), transparent 28%);
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: 1.2s ease;
}

.hero-bg.active {
  opacity: 0.78;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.52) 42%, rgba(0,0,0,.65) 100%),
    linear-gradient(0deg, rgba(0,0,0,.88) 0%, transparent 42%);
}

.hero-frame {
  width: min(1320px, 100%);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  margin-top: 26px;
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 40px 100px rgba(0,0,0,.55);
  display: flex;
  align-items: center;
  padding: 120px 64px 70px;
}

.hero-content {
  max-width: 730px;
  animation: fadeUp 1s ease both;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 11vw, 150px);
  line-height: .82;
  font-weight: 700;
  color: #fff;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.hero-sub {
  max-width: 520px;
  color: #d9cbbd;
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.primary-btn {
  background: #fff;
  color: #111;
  padding: 15px 27px;
  box-shadow: 0 16px 40px rgba(255,255,255,.16);
}

.hero-note {
  position: absolute;
  right: 70px;
  bottom: 90px;
  max-width: 320px;
  color: #eee1d2;
  animation: fadeUp 1s .25s ease both;
}

.hero-note span {
  display: block;
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}

.hero-note p {
  font-size: 14px;
  line-height: 1.8;
}

.slider-dots {
  position: absolute;
  left: 64px;
  bottom: 42px;
  display: flex;
  gap: 10px;
}

.dot {
  width: 34px;
  height: 5px;
  border-radius: 20px;
  border: none;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* COMMON SECTION */
.section {
  padding: 110px 7%;
}

.section-head {
  text-align: center;
  margin-bottom: 58px;
}

.section-head p {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1;
  color: #fff;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

/* ABOUT */
.about {
  background: linear-gradient(180deg, #090706, #130f0d);
}

.about-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  height: 570px;
  width: 100%;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}

.floating-card {
  position: absolute;
  right: -25px;
  bottom: 36px;
  padding: 24px 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  color: #fff;
  display: block;
  line-height: 1;
}

.floating-card span {
  color: var(--muted);
  font-size: 14px;
}

.about-text p {
  color: #d2c4b6;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 24px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 30px 0;
}

.about-points div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: #eee;
}

.about-points i {
  color: var(--gold);
  margin-right: 8px;
}

.dark-btn {
  background: var(--gold);
  color: #16100d;
  padding: 15px 27px;
}

/* SERVICES */
.treatments {
  background:
    linear-gradient(rgba(0,0,0,.78), rgba(0,0,0,.9)),
    url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=1700&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.service-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 430px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  background: #111;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: .72;
  transition: .6s ease;
}

.service-card:hover img {
  transform: scale(1.12);
  opacity: .52;
}

.service-card div {
  position: absolute;
  inset: auto 0 0 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
}

.service-card i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #fff;
  margin-bottom: 8px;
}

.service-card p {
  color: #d7c7b7;
  font-size: 14px;
  line-height: 1.7;
}

/* COUNTER */
.counter-section {
  padding: 80px 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: #f5eadb;
  color: #120f0d;
}

.counter-box {
  text-align: center;
  padding: 42px 20px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.counter-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 62px;
}

.counter-box p {
  color: #7a6654;
  font-weight: 700;
}

/* WHY */
.why {
  background: #0b0807;
}

.why-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  padding: 38px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.11);
  transition: .35s ease;
}

.why-card:hover {
  transform: translateY(-12px);
  border-color: rgba(215,181,109,.55);
}

.why-card i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: rgba(215,181,109,.16);
  color: var(--gold);
  border-radius: 50%;
  font-size: 26px;
  margin-bottom: 28px;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  font-size: 30px;
  margin-bottom: 12px;
}

.why-card p {
  color: #bdb0a2;
  line-height: 1.7;
}

/* TEAM */
.team {
  background: linear-gradient(180deg, #130f0d, #090706);
}

.team-grid {
  width: min(1040px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.team-card {
  text-align: center;
  padding: 22px 22px 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  transition: .35s ease;
}

.team-card:hover {
  transform: translateY(-10px);
}

.team-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 26px;
  margin-bottom: 22px;
}

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: #fff;
}

.team-card p {
  color: var(--gold);
}

/* CONTACT */
.contact {
  background:
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(0,0,0,.62)),
    url('https://images.unsplash.com/photo-1560066984-138dadb4c035?auto=format&fit=crop&w=1700&q=80');
  background-size: cover;
  background-position: center;
}

.contact-card {
  width: min(1100px, 100%);
  margin: auto;
  padding: 58px;
  border-radius: 38px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
}

.contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1;
}

.contact-desc {
  color: #d5c4b3;
  margin-top: 22px;
  line-height: 1.8;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info p {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  color: #fff;
}

.contact-info i {
  color: var(--gold);
  margin-right: 10px;
}

/* FOOTER */
footer {
  background: #050403;
  padding: 70px 7% 28px;
}

.footer-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

footer img{
  height: 100px;
  width: 100px;
  margin-left: 70px;
}

footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 2px;
}


footer h4 {
  color: var(--gold);
  margin-bottom: 18px;

}

footer p,
footer a {
  display: block;
  color: #b7a99a;
  margin-bottom: 12px;
  line-height: 1.7;
  width: 250px;
}

.social {
  display: flex;
  gap: 12px;
}

.social i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  margin: 0;
}

.whatsapp {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 18px 40px rgba(37,211,102,.35);
  animation: pulse 1.6s infinite;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

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

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

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  100% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .nav-links {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    margin: auto;
    width: 92%;
    flex-direction: column;
    border-radius: 25px;
    background: rgba(9,7,6,.95);
    padding: 18px;
  }

  .nav-links.show { display: flex; }

  .menu-btn { display: block; }

  .book-btn { display: none; }

  .service-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-note {
    display: none;
  }
}

@media (max-width:768px){

  .site-header {
    width: calc(100% - 24px);
    top:14px;
    padding:12px 18px;
  }

  .brand {
    font-size:22px;
  }


 .hero {
  padding:0;
  min-height:100vh;
}


  .hero-frame {

    min-height:100vh;

    margin-top:0;

    padding:110px 24px 60px;

    border-width:5px;

  }



  .hero h1 {
    font-size: 68px;
    letter-spacing: -2px;
  }

  .about-grid,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .floating-card {
    right: 18px;
    bottom: 18px;
  }

  .about-points,
  .service-grid,
  .why-grid,
  .team-grid,
  .counter-section {
    grid-template-columns: 1fr;
  }

 .section {
    padding:78px 16px;
}

  .contact-card {
    padding: 34px 22px;
  }

  .slider-dots {
    left: 24px;
  }

  /* FOOTER: fix off-center logo and fixed-width overflow once stacked */
  .footer-grid > div {
    text-align: center;
  }

  footer img {
    margin: 0 auto 18px;
  }

  footer p,
  footer a {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .social {
    justify-content: center;
  }
}

/* Small phones: shrink header/hero further so nothing overflows */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 14px;
    gap: 8px;
  }

  .navlogo {
    height: 46px;
    width: 46px;
  }

  .brand {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 46px;
    letter-spacing: -1px;
  }

  .hero-sub {
    font-size: 15px;
  }

  .whatsapp {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }

  .team-card img {
    height: 260px;
  }
}


/* GALLERY */
.gallery {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(215,181,109,.18), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(245,234,219,.10), transparent 28%),
    linear-gradient(180deg, #0b0807, #15100d 55%, #0b0807);
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.gallery .section-head,
.gallery-grid,
.gallery-tags {
  position: relative;
  z-index: 1;
}

.gallery-tags {
  width: min(1180px, 100%);
  margin: -18px auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-tags span {
  padding: 10px 18px;
  border-radius: 999px;
  color: #f5eadb;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid rgba(215,181,109,.36);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(215,181,109,.24);
  background: rgba(255,255,255,.05);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  isolation: isolate;
  display:block;
  text-decoration:none;
  color:inherit;
  cursor:zoom-in;
} 

.gallery-item::before,
.gallery-item::after{
    pointer-events:none;
}


.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.98) contrast(1.05) brightness(.92);
  transition: transform .75s ease, filter .75s ease;
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border-radius: 24px;
  border: 1px solid rgba(245,234,219,.28);
  opacity: 0;
  transform: scale(.96);
  transition: .45s ease;
  pointer-events: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.78)),
    linear-gradient(45deg, rgba(215,181,109,.22), transparent 45%);
}

.gallery-item:hover img {
  transform: scale(1.12);
  filter: saturate(1.08) contrast(1.08) brightness(1);
}

.gallery-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.gallery-content {
  position: absolute;
  left: 24px;
  right: 20px;
  bottom: 22px;
  z-index: 3;
}

.gallery-content small {
  display: inline-block;
  margin-bottom: 8px;
  color: #d7b56d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.gallery-content span {
  display: block;
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: .95;
  font-weight: 800;
}

/* PROCESS */
.process {
  background:
    linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.88)),
    url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1700&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.process-grid {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-card {
  padding: 34px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}

.process-card span {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 48px;
  font-weight: 800;
}

.process-card h3 {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  margin: 14px 0 10px;
}

.process-card p { color: #d2c4b6; line-height: 1.75; }

/* PACKAGES */
.packages {
  background: #f5eadb;
  color: #160f0b;
}

.packages .section-head h2 { color: #160f0b; }

.package-grid {
  width: min(1120px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.package-card {
  padding: 38px 30px;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 25px 70px rgba(80,50,20,.12);
  border: 1px solid rgba(215,181,109,.25);
  transition: .35s ease;
}

.package-card.featured {
  background: linear-gradient(180deg, #1b1410, #0d0907);
  color: #fff;
  transform: translateY(-16px);
  border-color: rgba(215,181,109,.65);
}

.package-card:hover { transform: translateY(-12px); }
.package-card.featured:hover { transform: translateY(-24px); }

.package-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(215,181,109,.18);
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 24px;
}

.package-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.package-card p { color: #7a6654; line-height: 1.75; margin-bottom: 24px; }
.package-card.featured p { color: #d6c8b8; }
.package-card strong { display: block; font-size: 24px; margin-bottom: 24px; }

.package-card a {
  display: inline-flex;
  padding: 13px 24px;
  border-radius: 28px;
  background: var(--gold);
  color: #160f0b;
  font-weight: 800;
}

/* REVIEWS */
.reviews {
  background: linear-gradient(180deg, #120d0a, #090706);
  overflow: hidden;
}

.review-track {
  width: min(1180px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.review-card {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
}

.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 18px; }
.review-card p { color: #d5c7b8; line-height: 1.8; margin-bottom: 22px; }
.review-card h3 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 28px; }

/* CTA */
.beauty-cta {
  margin: 0;
  padding: 62px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #d7b56d, #f5eadb);
  color: #130d09;
}

.beauty-cta p { text-transform: uppercase; letter-spacing: 3px; font-weight: 800; margin-bottom: 10px; }
.beauty-cta h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 62px); line-height: 1; }
.beauty-cta a { background: #130d09; color: #fff; padding: 15px 28px; border-radius: 40px; font-weight: 800; white-space: nowrap; }

@media (max-width: 1100px) {
  .gallery-grid,
  .process-grid,
  .review-track { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .gallery-grid,
  .process-grid,
  .review-track { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 260px; }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: span 1; grid-column: span 1; }
  .beauty-cta { flex-direction: column; align-items: flex-start; }
}


/* ===============================
   Luxury Beauty Services Marquee
================================= */

.services-marquee{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:22px 0;

    /* Luxury Cream Background */
    background:linear-gradient(
        90deg,
        #fffaf3 0%,
        #f8efe2 25%,
        #f4e6d3 50%,
        #f8efe2 75%,
        #fffaf3 100%
    );

    border-top:1px solid rgba(198,155,92,.35);
    border-bottom:1px solid rgba(198,155,92,.35);

    box-shadow:
        inset 0 8px 20px rgba(255,255,255,.6),
        inset 0 -8px 20px rgba(0,0,0,.03);
}

/* Left Fade */
.services-marquee::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:140px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

/* Right Fade */
.services-marquee::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:140px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.marquee-track{
    display:flex;
    align-items:center;
    gap:36px;
    width:max-content;

    animation:scrollService 35s linear infinite;
}

.services-marquee:hover .marquee-track{
    animation-play-state:paused;
}

.marquee-track span{
    white-space:nowrap;

    font-family:'Poppins',sans-serif;
    font-size:20px;
    font-weight:600;
    letter-spacing:.6px;

    color:#8a6234;

    transition:.35s ease;
}

.marquee-track span:hover{
    color:#c99b4b;
    transform:translateY(-2px);
}

@keyframes scrollService{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}

/* ===============================
   Mobile Responsive
================================= */

@media(max-width:768px){

    .services-marquee{
        padding:16px 0;
    }

    .marquee-track{
        gap:24px;
        animation-duration:28s;
    }

    .marquee-track span{
        font-size:16px;
    }

    .services-marquee::before,
    .services-marquee::after{
        width:70px;
    }

}


/* =========================
        LIGHTBOX
========================= */

.gallery-item{
    cursor:pointer;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    cursor:zoom-in;
}

#lightbox{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.95);
    z-index:999999;
}

#lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:18px;
    box-shadow:0 30px 80px rgba(0,0,0,.5);
    animation:zoom .3s ease;
}

#closeBtn{
    position:absolute;
    top:25px;
    right:40px;
    font-size:60px;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    user-select:none;
}

#closeBtn:hover{
    color:#d7b56d;
    transform:rotate(90deg);
}

@keyframes zoom{
    from{ transform:scale(.7); opacity:0; }
    to{ transform:scale(1); opacity:1; }
}

@media(max-width:768px){

html,
body{
    overflow-x:hidden;
    width:100%;
}


.hero{
    padding:0;
}


.section{
    padding-left:16px;
    padding-right:16px;
}


footer{
    overflow:hidden;
}

}